@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   DESIGN SYSTEM — Balancert Helse
   Cinematic Scandinavian Editorial
   ============================================================ */

:root {
  /* Palette — Muted nordic naturals */
  --c-forest: #3d5a3e;
  --c-forest-deep: #2a3f2b;
  --c-sage: #8a9f7f;
  --c-sage-light: #b5c4ab;
  --c-sand: #d4c5b2;
  --c-sand-light: #e8dfd4;
  --c-cream: #f6f3ee;
  --c-warm-white: #faf8f5;
  --c-off-white: #f0ece6;
  --c-terra: #c07a56;
  --c-terra-dark: #a86843;
  --c-berry: #8b5e6b;
  --c-charcoal: #1e1e1e;
  --c-graphite: #3a3a3a;
  --c-stone: #6b6560;
  --c-mist: #a39e97;
  --c-ash: #c8c3bc;

  /* Typography */
  --f-display: 'Cormorant Garamond', 'Georgia', serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8px base) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 80px;
  --s-9: 100px;
  --s-10: 120px;
  --s-11: 160px;
  --s-12: 200px;

  /* Layout */
  --max-w: 1380px;
  --gutter: 72px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 9999px;

  /* Shadows */
  --sh-subtle: 0 1px 3px rgba(30,30,30,0.04);
  --sh-soft: 0 4px 20px rgba(30,30,30,0.06);
  --sh-medium: 0 12px 40px rgba(30,30,30,0.08);
  --sh-heavy: 0 24px 80px rgba(30,30,30,0.12);
  --sh-glow-terra: 0 8px 32px rgba(192,122,86,0.25);
  --sh-glow-sage: 0 8px 32px rgba(138,159,127,0.2);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.4s;
  --dur-slow: 0.7s;
  --dur-xl: 1s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  color: var(--c-charcoal);
  background: var(--c-warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.wrap--narrow {
  max-width: 860px;
}

.wrap--wide {
  max-width: 1600px;
}

/* ============================================================
   AD DISCLOSURE BAR
   ============================================================ */

.ad-bar {
  background: var(--c-off-white);
  border-bottom: 1px solid var(--c-ash);
  padding: 9px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--c-mist);
  position: relative;
  z-index: 1100;
}

.ad-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ad-bar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-sage);
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */

.hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,245,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  transition: box-shadow var(--dur-med) var(--ease-out);
}

.hdr.is-scrolled {
  box-shadow: 0 1px 0 var(--c-ash), var(--sh-subtle);
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo: typographic, elegant */
.logo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--c-forest-deep);
  transition: opacity var(--dur-fast);
}

.logo:hover {
  opacity: 0.7;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-stone);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-forest);
  transition: width var(--dur-med) var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--c-charcoal);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* CTA pill in nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 28px;
  background: var(--c-forest);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}

.nav__cta:hover {
  background: var(--c-forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--sh-glow-sage);
}

/* Burger */
.burger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.burger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-charcoal);
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast);
  transform-origin: center;
}

.burger.is-open .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.is-open .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile overlay */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--c-warm-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

.mob-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mob-menu a {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--c-charcoal);
  transition: color var(--dur-fast);
}

.mob-menu a:hover {
  color: var(--c-forest);
}

/* Scroll progress — sits below sticky header + ad bar */
.scroll-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-terra));
  width: 0%;
  z-index: 1001;
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: var(--r-full);
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 15px;
}

.btn--md {
  padding: 14px 32px;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn--fill {
  background: var(--c-terra);
  color: #fff;
  border: none;
}

.btn--fill:hover {
  background: var(--c-terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-glow-terra);
}

.btn--forest {
  background: var(--c-forest);
  color: #fff;
  border: none;
}

.btn--forest:hover {
  background: var(--c-forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--sh-glow-sage);
}

.btn--ghost {
  background: transparent;
  color: var(--c-charcoal);
  border: 1.5px solid var(--c-ash);
}

.btn--ghost:hover {
  border-color: var(--c-forest);
  color: var(--c-forest);
  transform: translateY(-2px);
}

.btn--text {
  background: none;
  border: none;
  color: var(--c-charcoal);
  padding: 0;
  font-weight: 500;
  position: relative;
}

.btn--text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--c-charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}

.btn--text:hover::after {
  transform: scaleX(1);
}

.btn--white {
  background: #fff;
  color: var(--c-charcoal);
  border: none;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-medium);
}

/* Arrow animation inside buttons */
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.t-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-sage);
}

.t-display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-charcoal);
}

.t-display--hero { font-size: clamp(48px, 7vw, 96px); }
.t-display--xl   { font-size: clamp(40px, 5vw, 72px); }
.t-display--lg   { font-size: clamp(34px, 4vw, 56px); }
.t-display--md   { font-size: clamp(28px, 3vw, 42px); }
.t-display--sm   { font-size: clamp(22px, 2.5vw, 32px); }

.t-body { font-size: 16px; line-height: 1.7; color: var(--c-stone); }
.t-body--lg { font-size: 19px; line-height: 1.7; color: var(--c-stone); }
.t-body--sm { font-size: 14px; line-height: 1.65; color: var(--c-mist); }

.t-serif-body {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-stone);
}

/* ============================================================
   HERO — Cinematic split
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-8) var(--s-8) var(--s-8) var(--gutter);
  position: relative;
  z-index: 2;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}

.hero:hover .hero__img {
  transform: scale(1.03);
}

/* Organic shape overlapping left panel */
.hero__shape {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 380px;
  background: var(--c-warm-white);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  z-index: 3;
  opacity: 0.85;
  filter: blur(0px);
}

.hero__label {
  margin-bottom: var(--s-4);
}

.hero__title {
  margin-bottom: var(--s-4);
  max-width: 560px;
}

.hero__desc {
  margin-bottom: var(--s-6);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Floating badge on hero */
.hero__badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 5;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(16px);
  padding: 20px 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-medium);
  max-width: 220px;
}

.hero__badge-number {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--c-forest);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__badge-text {
  font-size: 13px;
  color: var(--c-stone);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee {
  background: var(--c-forest);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 60px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.marquee__item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-sage-light);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SPACING
   ============================================================ */

.sec {
  padding-top: var(--s-11);
  padding-bottom: var(--s-11);
}

.sec--sm {
  padding-top: var(--s-9);
  padding-bottom: var(--s-9);
}

.sec--cream { background: var(--c-cream); }
.sec--sand { background: var(--c-sand-light); }
.sec--sage { background: #eef2eb; }
.sec--dark { background: var(--c-charcoal); color: #fff; }
.sec--forest { background: var(--c-forest-deep); color: #fff; }

/* ============================================================
   EDITORIAL BENTO GRID — "A day of meals"
   ============================================================ */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento__cell {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.bento__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.bento__cell:hover img {
  transform: scale(1.04);
}

/* Cell sizes */
.bento__cell--hero   { grid-column: span 7; grid-row: span 2; min-height: 560px; }
.bento__cell--tall   { grid-column: span 5; grid-row: span 2; }
.bento__cell--wide   { grid-column: span 7; }
.bento__cell--medium { grid-column: span 5; }
.bento__cell--text   { grid-column: span 5; }

/* Text cell */
.bento__text {
  background: var(--c-forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-6);
}

.bento__text .t-display {
  color: #fff;
}

.bento__text .t-body {
  color: rgba(255,255,255,0.65);
  margin-top: var(--s-2);
}

/* Overlay caption on image cells */
.bento__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-4) var(--s-3);
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  z-index: 2;
}

.bento__caption-time {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-sage-light);
  margin-bottom: 4px;
}

.bento__caption-title {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

/* ============================================================
   PROCESS SECTION — Horizontal storytelling
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-ash);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.process__step {
  background: var(--c-warm-white);
  padding: var(--s-6) var(--s-5);
  position: relative;
  transition: background var(--dur-med) var(--ease-out);
}

.process__step:hover {
  background: var(--c-cream);
}

.process__num {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--c-off-white);
  line-height: 1;
  margin-bottom: var(--s-3);
  transition: color var(--dur-med) var(--ease-out);
}

.process__step:hover .process__num {
  color: var(--c-sage-light);
}

.process__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: var(--s-2);
  color: var(--c-charcoal);
}

.process__desc {
  font-size: 14px;
  color: var(--c-stone);
  line-height: 1.65;
}

/* ============================================================
   CINEMATIC IMAGE BREAK
   ============================================================ */

.cinema {
  position: relative;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinema__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,63,43,0.6) 0%, rgba(30,30,30,0.4) 100%);
}

.cinema__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: var(--s-5);
}

.cinema__quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
  margin-bottom: var(--s-3);
}

.cinema__attr {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PLAN CARDS — Floating glass morphism
   ============================================================ */

.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,195,188,0.5);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4);
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-heavy);
  border-color: var(--c-sage);
}

.plan-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-terra);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.plan-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--s-3);
  border: 2px solid var(--c-off-white);
}

.plan-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-sage);
  margin-bottom: var(--s-1);
}

.plan-card__title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: var(--s-1);
  line-height: 1.2;
}

.plan-card__desc {
  font-size: 14px;
  color: var(--c-stone);
  line-height: 1.6;
  margin-bottom: var(--s-3);
}

.plan-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--s-3);
}

.plan-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-mist);
}

.plan-card__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-sage);
  fill: none;
  stroke-width: 1.5;
}

.plan-card__price {
  margin-bottom: var(--s-3);
  padding-top: var(--s-2);
  border-top: 1px solid var(--c-off-white);
}

.plan-card__price-amount {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--c-charcoal);
  line-height: 1;
}

.plan-card__price-amount span {
  font-size: 16px;
  color: var(--c-stone);
  font-family: var(--f-body);
}

.plan-card__price-period {
  font-size: 13px;
  color: var(--c-mist);
  margin-top: 2px;
}

.plan-card .btn {
  width: 100%;
}

/* ============================================================
   MOSAIC GALLERY
   ============================================================ */

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}

.mosaic__item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.mosaic__item:hover img {
  transform: scale(1.06);
}

.mosaic__item--1 { grid-column: 1 / 6;  grid-row: 1 / 4; }
.mosaic__item--2 { grid-column: 6 / 9;  grid-row: 1 / 3; }
.mosaic__item--3 { grid-column: 9 / 13; grid-row: 1 / 3; }
.mosaic__item--4 { grid-column: 6 / 9;  grid-row: 3 / 4; }
.mosaic__item--5 { grid-column: 9 / 13; grid-row: 3 / 4; }

.mosaic__item--quote {
  background: var(--c-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}

.mosaic__item--quote p {
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS — Editorial quote cards
   ============================================================ */

.quotes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-medium);
}

.quote-card__mark {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--c-off-white);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 28px;
}

.quote-card__text {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--c-graphite);
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}

.quote-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.quote-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-charcoal);
}

.quote-card__loc {
  font-size: 12px;
  color: var(--c-mist);
}

/* ============================================================
   CTA SECTION — Dramatic
   ============================================================ */

.cta-block {
  text-align: center;
  padding: var(--s-11) var(--s-5);
  background: var(--c-forest-deep);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

.cta-block__shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,159,127,0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.cta-block__shape--2 {
  top: auto;
  bottom: -250px;
  right: auto;
  left: -250px;
}

.cta-block .t-display { color: #fff; margin-bottom: var(--s-3); }
.cta-block .t-body--lg { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto var(--s-6); }
.cta-block .note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: var(--s-3); }

/* ============================================================
   FOOTER
   ============================================================ */

.ftr {
  background: var(--c-charcoal);
  color: rgba(255,255,255,0.6);
  padding: var(--s-9) 0 var(--s-5);
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}

.ftr__brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--s-2);
}

.ftr__brand-text {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.ftr__heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--s-3);
}

.ftr__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  transition: color var(--dur-fast), transform var(--dur-fast);
}

.ftr__link:hover {
  color: #fff;
  transform: translateX(3px);
}

.ftr__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
}

.ftr__contact-row svg {
  width: 15px;
  height: 15px;
  stroke: var(--c-sage);
  fill: none;
  stroke-width: 1.5;
  margin-top: 3px;
  flex-shrink: 0;
}

.ftr__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-4);
}

.ftr__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.75;
  margin-bottom: var(--s-2);
  max-width: 880px;
}

.ftr__sources {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: var(--s-2);
}

.ftr__sources a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur-fast);
}

.ftr__sources a:hover {
  color: var(--c-sage-light);
}

.ftr__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   INNER PAGES — Shared
   ============================================================ */

.page-intro {
  padding: var(--s-9) 0 var(--s-8);
  text-align: center;
}

.page-intro .t-display {
  max-width: 720px;
  margin: 0 auto var(--s-3);
}

.page-intro .t-body--lg {
  max-width: 540px;
  margin: 0 auto;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.split__img:hover img {
  transform: scale(1.03);
}

.split__body h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--s-3);
}

.split__body p {
  font-size: 16px;
  color: var(--c-stone);
  line-height: 1.75;
  margin-bottom: var(--s-2);
}

/* ============================================================
   PRICING
   ============================================================ */

.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--c-ash);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-heavy);
}

.price-card.is-featured {
  border-color: var(--c-terra);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-terra);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.price-card__name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}

.price-card__sub {
  font-size: 13px;
  color: var(--c-mist);
  margin-bottom: var(--s-4);
}

.price-card__amount {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--c-charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card__amount span {
  font-size: 20px;
  color: var(--c-stone);
}

.price-card__period {
  font-size: 14px;
  color: var(--c-mist);
  margin-bottom: var(--s-4);
}

.price-card__features {
  text-align: left;
  border-top: 1px solid var(--c-off-white);
  padding-top: var(--s-4);
  margin-bottom: var(--s-4);
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-stone);
  margin-bottom: 14px;
  line-height: 1.5;
}

.price-card__features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-sage);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  padding: var(--s-4) var(--s-5);
  background: var(--c-cream);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-stone);
  margin-top: var(--s-5);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-group {
  margin-bottom: var(--s-6);
}

.faq-group__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--c-ash);
}

.faq-item {
  border-bottom: 1px solid var(--c-off-white);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  text-align: left;
  padding: var(--s-3) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-charcoal);
  cursor: pointer;
  transition: color var(--dur-fast);
}

.faq-q:hover {
  color: var(--c-forest);
}

.faq-q__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-q__icon::before,
.faq-q__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-mist);
  transition: transform var(--dur-med) var(--ease-out);
}

.faq-q__icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-q__icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-q__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out);
}

.faq-item.is-open .faq-a {
  max-height: 600px;
}

.faq-a__inner {
  padding-bottom: var(--s-4);
  font-size: 15px;
  color: var(--c-stone);
  line-height: 1.75;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-8);
  align-items: start;
}

.field {
  margin-bottom: var(--s-3);
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-graphite);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid var(--c-ash);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--c-charcoal);
  font-size: 15px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--c-sage);
  box-shadow: 0 0 0 3px rgba(138,159,127,0.12);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-aside {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
}

.contact-aside h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: var(--s-4);
}

.contact-aside__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: var(--s-3);
}

.contact-aside__row svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-forest);
  fill: none;
  stroke-width: 1.5;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-aside__row h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 3px;
}

.contact-aside__row p {
  font-size: 14px;
  color: var(--c-stone);
  line-height: 1.6;
}

.contact-aside__row a {
  color: var(--c-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}

.contact-aside__row a:hover {
  color: var(--c-forest-deep);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-medium);
}

.value-card__num {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--c-off-white);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.value-card h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: var(--s-2);
}

.value-card p {
  font-size: 15px;
  color: var(--c-stone);
  line-height: 1.7;
}

/* ============================================================
   MENU PAGE
   ============================================================ */

.tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.tab {
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-stone);
  background: var(--c-cream);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.tab:hover {
  border-color: var(--c-ash);
  color: var(--c-charcoal);
}

.tab.is-active {
  background: var(--c-forest);
  color: #fff;
  border-color: var(--c-forest);
}

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish {
  background: #fff;
  border: 1px solid var(--c-off-white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}

.dish:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-medium);
}

.dish__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.dish__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.dish:hover .dish__img img {
  transform: scale(1.06);
}

.dish__body {
  padding: var(--s-3);
}

.dish__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--s-1);
}

.dish__tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-sage);
  background: #eef2eb;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.dish__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.dish__desc {
  font-size: 14px;
  color: var(--c-stone);
  line-height: 1.6;
}

/* ============================================================
   PLANS PAGE — Detailed cards
   ============================================================ */

.plans-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.plan-detail {
  background: #fff;
  border: 1.5px solid var(--c-off-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur-med), border-color var(--dur-med);
}

.plan-detail:hover {
  box-shadow: var(--sh-heavy);
  border-color: var(--c-sage-light);
}

.plan-detail__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  aspect-ratio: 3/1;
}

.plan-detail__imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-detail__body {
  padding: var(--s-5) var(--s-4);
}

.plan-detail__body h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: var(--s-1);
}

.plan-detail__body > p {
  font-size: 15px;
  color: var(--c-stone);
  line-height: 1.7;
  margin-bottom: var(--s-3);
}

.plan-detail__toggle {
  width: 100%;
  text-align: left;
  padding: var(--s-2) 0;
  border-top: 1px solid var(--c-off-white);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-forest);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color var(--dur-fast);
}

.plan-detail__toggle:hover {
  color: var(--c-forest-deep);
}

.plan-detail__toggle .chevron {
  display: inline-block;
  transition: transform var(--dur-med) var(--ease-out);
  font-size: 12px;
}

.plan-detail__toggle.is-open .chevron {
  transform: rotate(180deg);
}

.plan-detail__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out);
}

.plan-detail__menu.is-open {
  max-height: 700px;
}

.plan-detail__menu-inner {
  padding: var(--s-2) 0 var(--s-3);
  font-size: 14px;
  color: var(--c-stone);
  line-height: 1.85;
}

.plan-detail__menu-inner strong {
  color: var(--c-charcoal);
  font-weight: 600;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s-3);
}

.comparison th {
  text-align: left;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-charcoal);
  background: var(--c-cream);
  border-bottom: 2px solid var(--c-sage-light);
}

.comparison th:first-child { border-radius: var(--r-sm) 0 0 0; }
.comparison th:last-child  { border-radius: 0 var(--r-sm) 0 0; }

.comparison td {
  padding: 12px 18px;
  font-size: 14px;
  color: var(--c-stone);
  border-bottom: 1px solid var(--c-off-white);
}

.comparison .check { color: var(--c-sage); font-weight: 600; }

/* ============================================================
   PLAN COMPARE — Visual interactive cards
   ============================================================ */

.compare-intro {
  text-align: center;
  margin-bottom: var(--s-7);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.compare-card {
  background: #fff;
  border: 1.5px solid var(--c-off-white);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4);
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
  display: flex;
  flex-direction: column;
}

.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-heavy);
  border-color: var(--c-sage);
}

.compare-card.is-featured {
  border-color: var(--c-terra);
  box-shadow: var(--sh-soft);
}

.compare-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-terra);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.compare-card__header {
  text-align: center;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-off-white);
  margin-bottom: var(--s-3);
}

.compare-card__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-sage);
  margin-bottom: 6px;
}

.compare-card__name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--c-charcoal);
  margin-bottom: var(--s-2);
  line-height: 1.15;
}

.compare-card__price-block {
  margin-bottom: 4px;
}

.compare-card__price-big {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--c-charcoal);
  line-height: 1;
}

.compare-card__price-big span {
  font-size: 18px;
  color: var(--c-stone);
  font-family: var(--f-body);
}

.compare-card__price-sub {
  font-size: 13px;
  color: var(--c-mist);
}

.compare-card__body {
  flex: 1;
}

.compare-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-off-white);
}

.compare-card__row:last-child {
  border-bottom: none;
}

.compare-card__row-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef2eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-card__row-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--c-forest);
  fill: none;
  stroke-width: 1.5;
}

.compare-card__row-text {
  flex: 1;
}

.compare-card__row-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 2px;
}

.compare-card__row-value {
  font-size: 14px;
  color: var(--c-stone);
  line-height: 1.45;
}

.compare-card__highlight {
  background: #eef2eb;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-top: var(--s-3);
  margin-bottom: var(--s-3);
}

.compare-card__highlight p {
  font-size: 13px;
  color: var(--c-forest);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.compare-card__cta {
  margin-top: auto;
  padding-top: var(--s-3);
}

.compare-card__cta .btn {
  width: 100%;
}

.compare-note {
  text-align: center;
  padding: var(--s-4) var(--s-5);
  background: var(--c-cream);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-stone);
  margin-top: var(--s-5);
}

@media (max-width: 1200px) {
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .compare-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */

.prose {
  max-width: 740px;
  padding-bottom: var(--s-11);
}

.prose h2 {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  line-height: 1.2;
}

.prose h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}

.prose p {
  font-size: 16px;
  color: var(--c-stone);
  line-height: 1.8;
  margin-bottom: var(--s-2);
}

.prose ul li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  color: var(--c-stone);
  line-height: 1.8;
  margin-bottom: 8px;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: var(--c-sage);
  border-radius: 50%;
}

.prose a {
  color: var(--c-forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--c-sage-light);
  transition: text-decoration-color var(--dur-fast);
}

.prose a:hover {
  text-decoration-color: var(--c-forest);
}

/* ============================================================
   THANK YOU
   ============================================================ */

.thankyou {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-9) var(--s-3);
}

.thankyou__inner {
  max-width: 480px;
}

.thankyou__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eef2eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
}

.thankyou__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--c-forest);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================================
   ANIMATIONS — Scroll reveal
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-xl) var(--ease-out), transform var(--dur-xl) var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible {
  transform: none;
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  :root { --gutter: 40px; }
  .plans-row { grid-template-columns: repeat(2, 1fr); }
  .ftr__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}

@media (max-width: 992px) {
  .nav { display: none; }
  .burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__left {
    padding: var(--s-7) var(--gutter);
    order: 2;
  }

  .hero__right {
    height: 50vh;
    min-height: 320px;
    order: 1;
  }

  .hero__shape { display: none; }
  .hero__badge { bottom: 20px; right: 20px; }

  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .bento__cell--hero,
  .bento__cell--tall,
  .bento__cell--wide,
  .bento__cell--medium,
  .bento__cell--text {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }

  .bento__cell--hero {
    grid-column: span 2;
    min-height: 320px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }

  .split--reverse { direction: ltr; }

  .plans-detail { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .quotes-row { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .values-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--s-5); }
  .dishes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .hero__left { padding: var(--s-5) var(--gutter); }
  .hero__right { height: 40vh; min-height: 260px; }

  .bento { grid-template-columns: 1fr; }
  .bento__cell--hero { grid-column: span 1; min-height: 260px; }

  .process { grid-template-columns: 1fr; }

  .plans-row { grid-template-columns: 1fr; }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .mosaic__item--1 { grid-column: 1 / 3; grid-row: 1 / 3; }
  .mosaic__item--2 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .mosaic__item--3 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .mosaic__item--4 { grid-column: 1 / 2; grid-row: 4 / 5; }
  .mosaic__item--5 { grid-column: 2 / 3; grid-row: 4 / 5; }

  .dishes { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }

  .cinema { height: 55vh; min-height: 360px; }

  .page-intro { padding: var(--s-7) 0 var(--s-6); }

  .cta-block { padding: var(--s-8) var(--s-3); border-radius: var(--r-lg); }
}
