/* ============================================================
   Dreamland Destinations — styles
   Editorial travel-journal · warm terracotta / forest / cream
   ============================================================ */

:root {
  /* Palette derived from the Dreamland Destinations logo (teal-green + yellow).
     Note: --terracotta / --terracotta-deep are the PRIMARY BRAND ACCENT slots
     (now an emerald green); names kept to avoid churn across the stylesheet. */
  --cream:        oklch(0.970 0.010 135);
  --cream-2:      oklch(0.950 0.013 138);
  --cream-3:      oklch(0.918 0.016 142);
  --ink:          oklch(0.25 0.024 178);
  --ink-soft:     oklch(0.44 0.024 180);
  --ink-faint:    oklch(0.60 0.020 182);
  --terracotta:   oklch(0.52 0.118 160);
  --terracotta-deep: oklch(0.44 0.110 162);
  --forest:       oklch(0.47 0.098 168);
  --forest-deep:  oklch(0.31 0.055 185);
  --sand:         oklch(0.85 0.110 104);
  --gold:         oklch(0.85 0.150 100);
  --gold-deep:    oklch(0.72 0.140 96);
  --sky:          oklch(0.60 0.100 216);
  --line:         oklch(0.88 0.014 148);
  --whatsapp:     oklch(0.66 0.16 150);
  --whatsapp-deep: oklch(0.58 0.16 150);

  --radius: 14px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);       /* ease-out-expo-ish */
  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 5rem);

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--terracotta); color: var(--cream); }

/* ---------- shared typography ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--sand); }

.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.ital { font-style: italic; font-weight: 400; }

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

.section-head { max-width: var(--maxw); margin: 0 auto 3.5rem; padding: 0 var(--pad); }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s, box-shadow 0.4s var(--ease), color 0.3s;
  will-change: transform;
}
.btn--lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn:hover { transform: translateY(-2px); }

.btn--wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px -10px var(--whatsapp-deep);
}
.btn--wa:hover { background: var(--whatsapp-deep); box-shadow: 0 14px 30px -12px var(--whatsapp-deep); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: color-mix(in oklch, var(--cream) 55%, transparent);
}
.btn--ghost:hover { background: color-mix(in oklch, var(--cream) 15%, transparent); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline span { display: inline-block; transition: transform 0.4s var(--ease); }
.btn--outline:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.btn--outline:hover span { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px var(--ink);
}

.brand { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--cream); transition: color 0.4s; flex: none; }
.brand__mark { flex: none; }
.nav.scrolled .brand { color: var(--ink); }
.brand__mark { display: inline-flex; }
.brand__mark img { display: block; width: 36px; height: 36px; }
.brand--footer .brand__mark img { width: 40px; height: 40px; }
/* real logo wordmark (matches the brand's script font exactly) */
.brand__word { height: 25px; width: auto; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35)); transition: filter 0.4s var(--ease); }
/* when the nav turns to light frosted glass on scroll, darken the teal wordmark so it stays readable */
.nav.scrolled .brand__word { filter: brightness(0.42) saturate(1.25); }
/* footer: centered vertical lockup, like the original logo (mark on top, wordmark, tagline) */
.brand--footer { flex-direction: column; align-items: center; text-align: center; gap: 0.7rem; }
.brand--footer .brand__mark img { width: 62px; height: 62px; }
.brand--footer .brand__word { height: 28px; filter: none; }
.brand--footer .brand__tagline { height: 17px; width: auto; display: block; }
.brand__text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand__text em { font-style: normal; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: currentColor; opacity: 0.75; }

.nav__links { margin-left: auto; display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--cream);
  position: relative; transition: color 0.3s; opacity: 0.92;
}
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--terracotta); transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 0.6rem 1.1rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 0 var(--pad);
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.nav__mobile.open { max-height: 340px; }
.nav__mobile a { padding: 0.95rem 0; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink); }
.nav__mobile a:last-child { border-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  /* reserve space for the fixed nav so tall content never slides under it on short viewports */
  padding: clamp(96px, 14vh, 150px) var(--pad) clamp(3rem, 8vh, 6rem);
  color: var(--cream);
  overflow: hidden;
}
/* on tall desktop screens, vertically center the hero content; short windows & mobile stay
   bottom-aligned so tall content never slides under the fixed nav */
@media (min-width: 1024px) and (min-height: 740px) {
  .hero { align-items: center; }
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  width: 100%; height: 116%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 20s ease-out forwards;
  will-change: transform;
}
@keyframes kenburns { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.24 0.02 60 / 0.35) 0%, transparent 30%, oklch(0.20 0.03 55 / 0.15) 55%, oklch(0.18 0.03 55 / 0.82) 100%);
}
.hero__content { max-width: 50rem; position: relative; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px oklch(0.18 0.03 55 / 0.4);
}
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 42ch; color: color-mix(in oklch, var(--cream) 92%, transparent); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid color-mix(in oklch, var(--cream) 60%, transparent);
  border-radius: 20px; display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 3px; background: var(--cream); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-2px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* hero floating postcards — layered so parallax, float & hover transforms never fight:
   .pc (mouse parallax)  >  .pc__card (idle float + tilt)  >  .pc__inner (hover pop) */
.hero__postcards { position: absolute; inset: 0; z-index: 1; pointer-events: none; perspective: 1200px; }
.pc {
  position: absolute; margin: 0; width: 172px;
  pointer-events: auto; cursor: pointer;
  transform: translate3d(calc(var(--px, 0px) * var(--depth, 1)), calc(var(--py, 0px) * var(--depth, 1)), 0);
  transition: transform 0.45s var(--ease);
}
.pc__card {
  display: block;
  transform: rotate(var(--r));
  animation: floaty var(--dur, 7s) ease-in-out infinite var(--delay, 0s);
  will-change: transform;
}
.pc__inner {
  display: block; position: relative;
  border-radius: 16px; overflow: hidden;
  background: var(--cream); padding: 8px 8px 30px;
  box-shadow: 0 30px 55px -22px oklch(0.18 0.03 55 / 0.7);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), filter 0.5s var(--ease);
}
.pc img { width: 100%; height: 128px; object-fit: cover; border-radius: 10px; display: block; }
.pc figcaption {
  position: absolute; left: 0; right: 0; bottom: 7px; text-align: center;
  font-family: var(--f-display); font-weight: 500; font-size: 0.95rem; color: var(--ink);
}
/* pick-it-up-off-the-table hover: straighten, lift, grow, deepen shadow, come forward */
.pc:hover { z-index: 5; }
.pc:hover .pc__inner {
  transform: rotate(calc(var(--r) * -1)) scale(1.09) translateY(-6px);
  box-shadow: 0 46px 72px -26px oklch(0.18 0.03 55 / 0.85);
  filter: saturate(1.08);
}
/* Default (mid-size desktops, ~900–1360px): the original edge-hugging trio, which sits
   clear of the hero copy & planner. The two extras stay hidden until there's more room. */
.pc--1 { --r: -6deg; top: 15%; right: 7%;  width: 150px; --depth: 1.4; --dur: 7s;   --delay: 0s;   } /* Bali */
.pc--2 { --r: 5deg;  top: 34%; right: 20%; width: 150px; --depth: 2.0; --dur: 8s;   --delay: 0.6s; } /* Maldives */
.pc--3 { --r: -3deg; top: 55%; right: 9%;  width: 156px; --depth: 1.1; --dur: 6.5s; --delay: 0.3s; } /* Dubai */
.pc--4, .pc--5 { display: none; }
@keyframes floaty { 0%,100% { transform: rotate(var(--r)) translateY(0); } 50% { transform: rotate(var(--r)) translateY(-14px); } }

/* Wide + tall desktops: a compact cluster of all five, anchored to the vertical centre with
   FIXED px offsets so the group keeps the same tight physical size on any height (percent
   tops fan the cards apart on tall windows). Two px lanes — outer (edge) & inner — staggered
   so nothing overlaps, even with the idle float (±14px) and the mouse-parallax drift. */
@media (min-width: 1360px) and (min-height: 800px) {
  .pc--4, .pc--5 { display: block; }
  .pc--1 { top: calc(50% - 278px); right: 82px;  } /* Bali — outer top */
  .pc--3 { top: calc(50% + 72px);  right: 82px;  } /* Dubai — outer low */
  .pc--4 { top: calc(50% - 308px); right: 300px; width: 132px; --depth: 2.0; --dur: 7.6s; --delay: 0.9s; } /* Singapore — inner top */
  .pc--2 { top: calc(50% - 73px);  right: 300px; --depth: 2.4; } /* Maldives — inner mid */
  .pc--5 { top: calc(50% + 167px); right: 300px; width: 136px; --depth: 1.6; --dur: 8.4s; --delay: 0.2s; } /* Thailand — inner low */
}

/* hero quick planner */
.planner {
  display: flex; align-items: stretch; gap: 0.4rem;
  background: color-mix(in oklch, var(--cream) 96%, transparent);
  border-radius: 20px; padding: 0.6rem; margin-top: 2rem; max-width: 820px;
  box-shadow: 0 30px 60px -30px oklch(0.18 0.03 55 / 0.6);
  backdrop-filter: blur(4px);
}
.planner__field { display: flex; flex-direction: column; justify-content: center; padding: 0.5rem 1.15rem; flex: 1 1 0; min-width: 0; }
.planner__field--where { flex: 1.9 1 0; }
.planner__field--when { flex: 1.3 1 0; }
.planner__field--pax { flex: 0 0 auto; }
.planner__field label, .planner__lbl { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; white-space: nowrap; }
.planner__field input { border: 0; background: none; font-family: var(--f-body); font-size: 1.05rem; font-weight: 500; color: var(--ink); width: 100%; padding: 0; min-width: 0; }
.planner__field input:focus { outline: none; }
.planner__field input::placeholder { color: var(--ink-faint); font-weight: 400; }
.planner__div { flex: 0 0 1px; width: 1px; background: var(--line); margin: 0.6rem 0; }
.planner__go { flex: 0 0 auto; border-radius: 14px; padding: 1rem 1.55rem; font-size: 1.02rem; white-space: nowrap; }

/* travellers stepper */
.stepper { display: inline-flex; align-items: center; gap: 0.5rem; }
.stepper__btn { width: 30px; height: 30px; flex: none; border-radius: 8px; border: 1px solid var(--line); background: var(--cream-2); color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.stepper__btn:hover { background: var(--terracotta); color: #fff; border-color: transparent; }
.stepper__btn:active { transform: scale(0.94); }
.stepper__val { min-width: 22px; text-align: center; font-weight: 600; font-size: 1.05rem; color: var(--ink); }

/* month + year picker */
.planner__field--when { position: relative; }
.planner__whenbtn { border: 0; background: none; padding: 0; margin: 0; width: 100%; text-align: left; cursor: pointer; font-family: var(--f-body); font-size: 1.05rem; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.planner__whenbtn:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }
.planner__whenbtn .ph { color: var(--ink-faint); font-weight: 400; }
.mpick {
  position: absolute; bottom: calc(100% + 12px); left: 0; z-index: 60;
  width: min(272px, 78vw); padding: 0.9rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 30px 60px -24px oklch(0.2 0.03 180 / 0.5);
  animation: mpickin 0.28s var(--ease);
}
.mpick[hidden] { display: none; }
@keyframes mpickin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mpick__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.mpick__year { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.mpick__nav { width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--line); background: var(--cream-2); color: var(--ink); cursor: pointer; font-size: 1.2rem; line-height: 1; display: grid; place-items: center; transition: background 0.2s, color 0.2s; }
.mpick__nav:hover:not(:disabled) { background: var(--terracotta); color: #fff; border-color: transparent; }
.mpick__nav:disabled { opacity: 0.32; cursor: not-allowed; }
.mpick__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.mpick__m { padding: 0.55rem 0; border: 1px solid transparent; border-radius: 9px; background: var(--cream-2); color: var(--ink); font-family: var(--f-body); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: background 0.2s, color 0.2s; }
.mpick__m:hover:not(:disabled) { background: var(--terracotta); color: #fff; }
.mpick__m:disabled { opacity: 0.3; cursor: not-allowed; }
.mpick__m.sel { background: var(--terracotta); color: #fff; }

.hero__more { display: inline-block; margin-top: 1.4rem; color: color-mix(in oklch, var(--cream) 90%, transparent); font-weight: 500; font-size: 0.95rem; border-bottom: 1px solid color-mix(in oklch, var(--cream) 40%, transparent); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.hero__more span { display: inline-block; transition: transform 0.4s var(--ease); }
.hero__more:hover { color: var(--cream); }
.hero__more:hover span { transform: translateY(3px); }

/* ============================================================
   WHY / BENEFITS
   ============================================================ */
.why { position: relative; padding: clamp(3.5rem, 7vw, 5.5rem) 0; overflow: hidden; }
.why__word {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(9rem, 26vw, 24rem); line-height: 1; color: var(--terracotta);
  opacity: 0.05; white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.why__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
}
.why__item { text-align: left; }
.why__ic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  margin-bottom: 1.1rem; color: #fff;
}
.why__ic--terra { background: var(--terracotta); }
.why__ic--gold { background: var(--gold-deep); }
.why__ic--sky { background: var(--sky); }
.why__ic--forest { background: var(--forest); }
.why__item h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.why__item p { color: var(--ink-soft); font-size: 0.95rem; max-width: 30ch; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--forest);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid var(--forest-deep);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.4rem;
  font-family: var(--f-display); font-size: 1.15rem; font-style: italic;
  animation: marquee 32s linear infinite;
}
.marquee__track span { letter-spacing: 0.02em; }
.marquee__track i { color: var(--sand); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.about__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; box-shadow: 0 40px 60px -40px oklch(0.24 0.03 55 / 0.55); }
.about__badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--terracotta); color: var(--cream);
  border-radius: 100px; padding: 0.9rem 1.4rem; text-align: center;
  box-shadow: 0 20px 40px -20px var(--terracotta-deep);
}
.about__badge strong { font-family: var(--f-display); font-size: 1.5rem; display: block; line-height: 1; }
.about__badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }

/* founder photo placeholder (swap .founderph for an <img> when the photo arrives) */
.about__media { margin: 0; }
.founderph {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  display: grid; place-content: center; justify-items: center; gap: 0.5rem; text-align: center; padding: 1.5rem;
  background: linear-gradient(152deg, var(--terracotta) 0%, var(--terracotta-deep) 48%, var(--forest) 128%);
  color: var(--cream); box-shadow: 0 40px 60px -40px oklch(0.24 0.03 55 / 0.55);
}
.founderph::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 34%, transparent 42%, oklch(0.2 0.03 40 / 0.4)); }
.founderph > * { position: relative; z-index: 1; }
.founderph__mark { color: color-mix(in oklch, var(--cream) 85%, transparent); display: grid; place-items: center; }
.founderph__mono { font-family: var(--f-display); font-weight: 500; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.founderph__soon { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in oklch, var(--cream) 76%, transparent); }
.about__plate {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: var(--cream); color: var(--ink); border-radius: 12px; padding: 0.6rem 1rem;
  display: flex; flex-direction: column; box-shadow: 0 16px 34px -18px oklch(0.24 0.03 55 / 0.7);
  font-family: var(--f-display); font-weight: 500; font-size: 1.05rem; line-height: 1.1;
}
.about__plate em { font-style: normal; font-family: var(--f-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-top: 4px; }
.about__sign { margin-top: 1.7rem; font-family: var(--f-display); font-style: italic; font-size: 1.2rem; color: var(--terracotta); }
.about__cta { margin-top: 2rem; display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.about__tagline { font-family: var(--f-display); font-style: italic; font-size: 1.05rem; color: var(--ink-faint); }

/* ============================================================
   ABOUT PAGE (about.html)
   ============================================================ */
.pagehero {
  position: relative; padding: calc(84px + clamp(3rem, 8vw, 6rem)) 0 clamp(3rem, 8vw, 6rem);
  background: var(--forest-deep); color: var(--cream); overflow: hidden; text-align: center;
}
.pagehero__word {
  position: absolute; bottom: -0.35em; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display); font-style: italic; font-size: clamp(8rem, 24vw, 22rem);
  line-height: 1; color: var(--cream); opacity: 0.05; white-space: nowrap; pointer-events: none; z-index: 0;
}
.pagehero__inner { position: relative; z-index: 1; max-width: 52rem; margin: 0 auto; padding: 0 var(--pad); }
.pagehero h1 {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -0.02em; margin: 0.6rem 0 1.2rem;
}
.pagehero p { color: color-mix(in oklch, var(--cream) 85%, transparent); font-size: 1.15rem; max-width: 46ch; margin: 0 auto; }
.pagehero__crumb { font-size: 0.85rem; color: var(--sand); }
.pagehero__crumb a { color: var(--sand); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.pagehero__crumb a:hover { border-color: var(--sand); }

/* narrative blocks on the about page */
.story { padding: clamp(4rem, 9vw, 7rem) 0; }
.story__lede {
  max-width: 46rem; margin: 0 auto; padding: 0 var(--pad); text-align: center;
}
.story__lede .eyebrow { text-align: center; }
.story__lede p { font-size: 1.2rem; color: var(--ink-soft); margin-top: 1.2rem; }
.story__lede p strong { color: var(--ink); }

.whychoose { background: var(--cream-2); border-block: 1px solid var(--line); padding: clamp(4.5rem, 10vw, 8rem) 0; }
.whychoose__inner { max-width: 60rem; margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.whychoose__lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 48ch; margin: 1.2rem auto 2.6rem; }
.whychoose__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 44rem; margin: 0 auto; }
.whychoose__list li {
  list-style: none; font-family: var(--f-display); font-weight: 500; font-size: 1.5rem;
  color: var(--ink); padding: 1.4rem 1.2rem; background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--line);
}
.whychoose__list li em { font-style: italic; color: var(--terracotta); }

.finale { padding: clamp(4.5rem, 10vw, 8rem) 0; text-align: center; }
.finale__inner { max-width: 46rem; margin: 0 auto; padding: 0 var(--pad); }
.finale h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.015em; }
.finale p { color: var(--ink-soft); font-size: 1.15rem; margin: 1.3rem auto 2rem; max-width: 52ch; }
.finale__mark { margin-top: 2.6rem; font-family: var(--f-display); font-style: italic; font-size: 1.3rem; color: var(--terracotta); }

/* ============================================================
   PURPOSE (why we exist)
   ============================================================ */
.purpose { background: var(--forest-deep); color: var(--cream); padding: clamp(4rem, 9vw, 6.5rem) 0; text-align: center; }
.purpose__inner { max-width: 60rem; margin: 0 auto; padding: 0 var(--pad); }
.purpose__quote {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(1.55rem, 3.3vw, 2.5rem);
  line-height: 1.28; letter-spacing: -0.01em; margin: 0.8rem auto 1.5rem; max-width: 22ch; position: relative;
}
.purpose__quote::before {
  content: "\201C"; font-family: var(--f-display); font-size: 3.5em; line-height: 0; color: var(--terracotta);
  position: absolute; top: 0.35em; left: 50%; transform: translateX(-50%); opacity: 0.35; z-index: 0;
}
.purpose__sub { color: color-mix(in oklch, var(--cream) 82%, transparent); max-width: 54ch; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   PHILOSOPHY (Relax. Rely. Repeat.)
   ============================================================ */
.philo { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.philo__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.philo__item { padding: 0.4rem 2.4rem; }
.philo__item:first-child { padding-left: 0; }
.philo__item:last-child { padding-right: 0; }
.philo__item:not(:last-child) { border-right: 1px solid var(--line); }
.philo__word { display: block; margin-bottom: 1rem; font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(2.3rem, 3.8vw, 3.2rem); letter-spacing: -0.01em; color: var(--terracotta); }
.philo__item:nth-child(2) .philo__word { color: var(--sky); }
.philo__item:nth-child(3) .philo__word { color: var(--gold-deep); }
.philo__item p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   PROMISE
   ============================================================ */
.promise { background: var(--cream-2); border-top: 1px solid var(--line); padding: clamp(4.5rem, 10vw, 8rem) 0; }
.promise__grid { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.promise__head .lead { margin: 1.2rem 0 2rem; }
.promise__list { list-style: none; display: grid; gap: 0; }
.promise__list li {
  display: flex; align-items: flex-start; gap: 0.9rem; font-weight: 500; color: var(--ink); font-size: 1.02rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
}
.promise__list li:first-child { padding-top: 0; }
.promise__list li::before {
  content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%; margin-top: 1px;
  background: var(--terracotta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-11'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.about__body p:not(.about__sign) { margin-bottom: 1.1rem; color: var(--ink); font-size: 1.15rem; }
.about__body .lead { color: var(--ink); }
.about__body strong { color: var(--ink); font-weight: 600; }
.section-title + p, .about__body .section-title { margin-bottom: 1.5rem; }

.about__points { list-style: none; margin-top: 2rem; display: grid; gap: 0.9rem; }
.about__points li {
  display: flex; align-items: baseline; gap: 1rem;
  font-weight: 500; color: var(--ink);
  padding-bottom: 0.9rem; border-bottom: 1px solid var(--line);
}
.about__points span { font-family: var(--f-display); color: var(--terracotta); font-size: 0.95rem; font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--cream-2); border-block: 1px solid var(--line); }
.services__list {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.svc {
  display: flex; gap: 1.3rem; padding: 2rem 1.6rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
  position: relative;
}
.svc:nth-child(odd) { border-right: 1px solid var(--line); }
.svc:hover { background: var(--cream); }
.svc__num {
  font-family: var(--f-display); font-size: 0.95rem; font-weight: 600;
  color: var(--terracotta); padding-top: 0.35rem; min-width: 1.6rem;
}
.svc__body h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.4rem; margin-bottom: 0.5rem; letter-spacing: -0.01em; transition: color 0.3s; }
.svc:hover .svc__body h3 { color: var(--terracotta); }
.svc__body p { color: var(--ink-soft); font-size: 0.98rem; }
.svc__tags { margin-top: 0.7rem; font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.01em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
  grid-auto-flow: dense;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 20px 40px -30px oklch(0.24 0.03 55 / 0.5);
}
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tile:hover img { transform: scale(1.07); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, oklch(0.18 0.03 55 / 0.72) 100%);
}
.tile figcaption {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; color: var(--cream);
  display: flex; flex-direction: column; transform: translateY(6px); opacity: 0.92;
  transition: transform 0.5s var(--ease), opacity 0.4s;
}
.tile:hover figcaption { transform: translateY(0); opacity: 1; }
.tile figcaption span { font-family: var(--f-display); font-size: 1.25rem; font-weight: 500; }
.tile figcaption em { font-style: normal; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); }
.tile { cursor: pointer; }
.tile__cta {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--cream); color: var(--ink); font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.75rem; border-radius: 100px;
  opacity: 0; transform: translateY(-6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tile__cta svg { transition: transform 0.4s var(--ease); }
.tile:hover .tile__cta { opacity: 1; transform: translateY(0); }
.tile:hover .tile__cta svg { transform: translateX(2px); }
.tile:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   CLIENT DIARIES (Instagram reels)
   ============================================================ */
.diaries { padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 4.5rem); background: var(--cream-2); overflow: hidden; }
.diaries__head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem 2.5rem; flex-wrap: wrap;
}
.diaries__head .section-head { margin: 0; max-width: none; text-align: left; flex: 1 1 420px; }
.diaries__head .lead { max-width: 52ch; color: var(--ink-soft); margin-top: 0.9rem; }
.diaries__follow {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; flex: 0 0 auto;
  padding: 0.7rem 1.15rem; border-radius: 100px; border: 1px solid var(--line);
  background: var(--cream); color: var(--ink); font-weight: 600; font-size: 0.92rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.diaries__follow:hover { background: var(--terracotta); color: var(--cream); border-color: transparent; transform: translateY(-2px); }

.reelrail { margin-top: 2.5rem; padding: 0.5rem 0 1.5rem; overflow: hidden; }
.reeltrack {
  display: flex; width: max-content;
  animation: reelscroll 64s linear infinite; will-change: transform;
}
.reelrail:hover .reeltrack,
.reeltrack.paused { animation-play-state: paused; }
@keyframes reelscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .reeltrack { animation: none; }
  .reelrail { overflow-x: auto; scrollbar-width: none; }
  .reelrail::-webkit-scrollbar { display: none; }
}

.reel {
  position: relative; flex: 0 0 auto; width: clamp(220px, 24vw, 268px); aspect-ratio: 9 / 16;
  margin-right: 18px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 48px -28px oklch(0.24 0.03 55 / 0.6); background: var(--cream-3);
  cursor: pointer; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.reel:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -26px oklch(0.24 0.03 55 / 0.72); }
.reel:hover img { transform: scale(1.06); }
.reel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.18 0.03 55 / 0.15) 0%, transparent 32%, transparent 52%, oklch(0.15 0.03 55 / 0.82) 100%);
}
.reel__play {
  position: absolute; top: 50%; left: 50%; z-index: 2; width: 58px; height: 58px;
  transform: translate(-50%, -50%) scale(0.9); border-radius: 50%;
  background: color-mix(in oklch, var(--cream) 20%, transparent);
  backdrop-filter: blur(4px); border: 1.5px solid color-mix(in oklch, var(--cream) 75%, transparent);
  opacity: 0.92; transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.reel__play::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent var(--cream);
}
.reel:hover .reel__play { transform: translate(-50%, -50%) scale(1.05); background: color-mix(in oklch, var(--terracotta) 82%, transparent); }
.reel__meta {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2; color: var(--cream);
  display: flex; flex-direction: column; gap: 0.15rem;
  transform: translateY(6px); transition: transform 0.5s var(--ease);
}
.reel:hover .reel__meta { transform: translateY(0); }
.reel__meta em { font-style: normal; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); }
.reel__meta span { font-family: var(--f-display); font-size: 1.12rem; font-weight: 500; line-height: 1.2; }
.reel:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.reelrail__hint {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 0.6rem; color: var(--ink-faint);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
}
@media (min-width: 1024px) { .reelrail__hint { display: none; } }

/* Lightbox */
.rlbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: oklch(0.16 0.02 180 / 0.86); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  padding: clamp(1rem, 4vw, 3rem);
}
.rlbox.open { opacity: 1; visibility: visible; }
.rlbox__stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.rlbox__stage video {
  max-height: min(82vh, 720px); max-width: 90vw; aspect-ratio: 9 / 16; width: auto; height: 82vh;
  border-radius: var(--radius-lg); background: #000; box-shadow: 0 40px 80px -30px oklch(0 0 0 / 0.7);
  transform: scale(0.96); transition: transform 0.45s var(--ease);
}
.rlbox.open .rlbox__stage video { transform: scale(1); }
.rlbox__cap { text-align: center; color: var(--cream); }
.rlbox__place { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); }
.rlbox__client { font-family: var(--f-display); font-size: 1.25rem; margin: 0.15rem 0 0.5rem; }
.rlbox__ig { display: inline-block; color: var(--cream); font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid color-mix(in oklch, var(--cream) 50%, transparent); padding-bottom: 2px; }
.rlbox__ig:hover { color: var(--gold); }
.rlbox__close {
  position: absolute; top: -0.5rem; right: -0.5rem; z-index: 3; width: 44px; height: 44px;
  border-radius: 50%; border: none; background: var(--cream); color: var(--ink);
  font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 10px 24px -10px oklch(0 0 0 / 0.5); transition: transform 0.3s var(--ease);
}
.rlbox__close:hover { transform: rotate(90deg); }
@media (max-width: 560px) {
  .rlbox__stage video { height: auto; max-height: 74vh; width: 90vw; }
  .rlbox__close { top: 0.25rem; right: 0.25rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--forest-deep);
  color: var(--cream);
}
.tcols {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  columns: 3; column-gap: 1.2rem;
}
.tcard {
  margin: 0 0 1.2rem;
  break-inside: avoid;
  position: relative;
  background: color-mix(in oklch, var(--cream) 8%, transparent);
  border: 1px solid color-mix(in oklch, var(--cream) 14%, transparent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(2px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.tcard::before {
  content: "\201C";
  position: absolute; top: 0.35rem; right: 1.1rem;
  font-family: var(--f-display, Georgia, serif);
  font-size: 3.4rem; line-height: 1;
  color: color-mix(in oklch, var(--sand) 30%, transparent);
  pointer-events: none;
}
.tcard:hover {
  transform: translateY(-4px);
  background: var(--terracotta);
  border-color: transparent;
  box-shadow: 0 34px 55px -28px oklch(0.3 0.1 40 / 0.9);
}
/* on hover, every card takes on the emerald "featured" treatment */
.tcard:hover::before { color: color-mix(in oklch, var(--cream) 40%, transparent); }
.tcard:hover p { color: var(--cream); }
.tcard:hover .tavatar { background: var(--cream); color: var(--terracotta-deep); }
.tcard:hover .tstars { color: var(--cream); }
.tcard:hover .tsource { color: color-mix(in oklch, var(--cream) 80%, transparent); }

.tcard--accent {
  background: var(--terracotta);
  border-color: color-mix(in oklch, var(--sand) 60%, transparent);
  box-shadow: 0 30px 50px -30px oklch(0.3 0.1 40 / 0.8), 0 0 0 1px color-mix(in oklch, var(--sand) 45%, transparent);
}
.tcard--accent::before { color: color-mix(in oklch, var(--cream) 40%, transparent); }
.tcard--accent:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 34px 55px -28px oklch(0.3 0.1 40 / 0.9);
}
.tcard p { font-size: 0.98rem; line-height: 1.65; color: color-mix(in oklch, var(--cream) 92%, transparent); }
.tcard--accent p { color: var(--cream); }
.tcard footer { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.1rem; }
.tavatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sand); color: var(--forest-deep); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.tcard--accent .tavatar { background: var(--cream); color: var(--terracotta-deep); }
.tcard cite { font-style: normal; font-weight: 600; font-size: 0.95rem; display: block; }
.tmeta { display: flex; flex-direction: column; gap: 0.15rem; }
.tstars {
  font-size: 0.8rem; letter-spacing: 0.06em; line-height: 1;
  color: var(--sand);
}
.tcard--accent .tstars { color: var(--cream); }
.tsource {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em;
  color: color-mix(in oklch, var(--cream) 60%, transparent);
}
.tcard--accent .tsource { color: color-mix(in oklch, var(--cream) 80%, transparent); }
@media (prefers-reduced-motion: reduce) {
  .tcard { transition: none; }
  .tcard:hover, .tcard--accent:hover { transform: none; }
}
.grating {
  display: flex; align-items: center; gap: 0.7rem; width: fit-content;
  margin: 2.6rem auto 0; padding: 0.7rem 1.3rem;
  background: color-mix(in oklch, var(--cream) 10%, transparent);
  border: 1px solid color-mix(in oklch, var(--cream) 18%, transparent);
  border-radius: 100px; color: var(--cream);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.grating:hover { transform: translateY(-2px); background: color-mix(in oklch, var(--cream) 16%, transparent); }
.grating__logo { background: #fff; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }
.grating strong { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; line-height: 1; }
.grating__stars { color: var(--sand); letter-spacing: 0.08em; font-size: 1rem; }
.grating__count { font-size: 0.9rem; color: color-mix(in oklch, var(--cream) 82%, transparent); }
@media (max-width: 460px) { .grating { flex-wrap: wrap; justify-content: center; text-align: center; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(4.5rem, 10vw, 8rem) 0; background: var(--cream-2); border-block: 1px solid var(--line); }
.faq__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head .lead { margin-top: 1.3rem; }
.faq__list { display: grid; gap: 0.4rem; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}
.faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--f-display); font-weight: 500; font-size: 1.2rem;
  color: var(--ink); letter-spacing: -0.01em;
  padding: 1.1rem 2.5rem 1.1rem 0; position: relative;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 0.3rem; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--terracotta); border-bottom: 2px solid var(--terracotta);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.4s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item summary:hover { color: var(--terracotta); }
.faq__item p {
  color: var(--ink-soft); font-size: 1rem; max-width: 60ch;
  padding: 0 2.5rem 1.2rem 0;
  animation: faqreveal 0.5s var(--ease);
}
@keyframes faqreveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.contact__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.contact__intro .lead { margin-bottom: 2rem; }
.contact__facts { list-style: none; display: grid; gap: 1.3rem; }
.contact__facts li { display: flex; gap: 1rem; align-items: flex-start; }
.cfic {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--cream-3); color: var(--terracotta);
  display: grid; place-items: center; font-size: 1.15rem;
}
.contact__facts em { display: block; font-style: normal; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.2rem; }
.contact__facts li > div { min-width: 0; }
.contact__facts div a { font-weight: 500; color: var(--ink); transition: color 0.3s; overflow-wrap: anywhere; }
.contact__facts div a:hover { color: var(--terracotta); }

/* form */
.cform {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 40px 70px -50px oklch(0.24 0.03 55 / 0.5);
}
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row:has(.field--pax) { grid-template-columns: 1fr 1fr 0.82fr; }
.field--pax label { white-space: nowrap; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 0.98rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.75rem 0.9rem; width: 100%; transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--terracotta) 18%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 1rem; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field select { appearance: none; }
.cform__note { text-align: center; font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.9rem; }
.field input.invalid { border-color: var(--terracotta); box-shadow: 0 0 0 3px color-mix(in oklch, var(--terracotta) 16%, transparent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
.footer__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 2.5rem;
}
.brand--footer .brand__text { color: var(--cream); }
.brand--footer .brand__text em { color: var(--sand); opacity: 1; }
.footer__brand { text-align: center; }
.footer__brand p { margin: 1.1rem auto 0; color: color-mix(in oklch, var(--cream) 70%, transparent); max-width: 34ch; font-size: 0.95rem; }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col a { display: block; color: color-mix(in oklch, var(--cream) 78%, transparent); font-size: 0.92rem; padding: 0.35rem 0; transition: color 0.3s, transform 0.3s var(--ease); }
.footer__col a:hover { color: var(--cream); transform: translateX(3px); }

.socials { display: flex; align-items: center; gap: 0.7rem; }
.soc {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: inline-grid; place-items: center; line-height: 0;
  color: color-mix(in oklch, var(--cream) 94%, transparent);
  background: color-mix(in oklch, var(--cream) 12%, transparent);
  border: 1px solid color-mix(in oklch, var(--cream) 34%, transparent);
  transition: transform 0.4s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.soc svg { width: 19px; height: 19px; display: block; }
.soc:hover { transform: translateY(-3px); color: #fff; border-color: transparent; }
.soc--google:hover { background: #4285f4; }
.soc--insta:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc--fb:hover { background: #1877f2; }

.footer__bar {
  max-width: var(--maxw); margin: 3rem auto 0; padding: 1.5rem var(--pad) 0;
  border-top: 1px solid color-mix(in oklch, var(--cream) 16%, transparent);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: color-mix(in oklch, var(--cream) 60%, transparent);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; z-index: 90;
  box-shadow: 0 14px 30px -10px var(--whatsapp-deep);
  transform: translateY(120px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s, background 0.3s;
  animation: wapulse 2.6s ease-out infinite;
}
.wa-float.show { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: var(--whatsapp-deep); }
@keyframes wapulse {
  0% { box-shadow: 0 14px 30px -10px var(--whatsapp-deep), 0 0 0 0 color-mix(in oklch, var(--whatsapp) 55%, transparent); }
  70% { box-shadow: 0 14px 30px -10px var(--whatsapp-deep), 0 0 0 16px transparent; }
  100% { box-shadow: 0 14px 30px -10px var(--whatsapp-deep), 0 0 0 0 transparent; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__postcards { display: none; }
}
/* switch to the hamburger earlier so the full script wordmark has room */
@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .tcols { columns: 2; }
}
@media (max-width: 900px) {
  .why__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .philo__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .philo__item { padding: 0 0 2.4rem; }
  .philo__item:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .philo__item:last-child { padding-bottom: 0; }
  .promise__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .about__badge { right: 8px; }
  .contact__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .tcols { columns: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  .services__list { grid-template-columns: 1fr; }
  .svc:nth-child(odd) { border-right: 0; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
}
@media (max-width: 720px) {
  .planner { flex-wrap: wrap; gap: 0.2rem; }
  .planner__field { flex: 1 1 40%; }
  .planner__div { display: none; }
  .planner__go { flex: 1 1 100%; justify-content: center; margin-top: 0.3rem; }
  .why__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .whychoose__list { grid-template-columns: 1fr; }
  .whychoose__list li { font-size: 1.3rem; }
}
@media (max-width: 520px) {
  .brand__mark img { width: 30px; height: 30px; }
  .brand__word { height: 17px; }
}
@media (max-width: 460px) {
  .field-row, .field-row:has(.field--pax) { grid-template-columns: 1fr; }
  .planner__field { flex: 1 1 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__img { animation: none; transform: scale(1); }
}
