/* =========================================================
   Lincy's Makeover Artistry — pink & gold, light + dark
   ========================================================= */
:root {
  /* brand constants */
  --logo: url("assets/brand/mark-light.png");
  --gold: #c19a52;
  --gold-soft: #e8cf98;
  --gold-grad: linear-gradient(115deg, #a97a2f 0%, #e9cf94 38%, #c69a4d 62%, #f3e2b6 100%);
  /* gradient used for text — brightened in dark mode so it never goes muddy */
  --gold-text-grad: linear-gradient(112deg, #a97a2f 0%, #dcb264 30%, #f0dba6 55%, #c59a4e 78%, #e8cf98 100%);
  --rose: #c7778c;

  /* light theme */
  --bg: #fbf1f0;
  --bg-soft: #f5dfe0;
  --surface: rgba(255, 255, 255, .62);
  --surface-solid: #ffffff;
  --text: #3a2530;
  --head: #2a1420;
  --muted: #86707a;
  --accent: #9c4561;
  --line: rgba(156, 69, 97, .18);
  --dark-bg: #2a1420;
  --dark-bg-2: #3d1f2e;
  --dark-text: #f5dfe0;
  --shadow: 0 30px 60px -30px rgba(90, 30, 55, .35);
  --glow-1: #f1c3cc;
  --glow-2: #f3dcae;
  --grain: .05;

  --radius: 22px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --ui: "Jost", system-ui, -apple-system, sans-serif;
  --script: "Pinyon Script", cursive;
  --pad: clamp(16px, 5vw, 72px);
  color-scheme: light;
}

/* dark theme: follows the device unless the visitor picked light */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #140a10;
    --bg-soft: #1d1019;
    --surface: rgba(255, 255, 255, .05);
    --surface-solid: #20121b;
    --text: #ecd9de;
    --head: #fbeff2;
    --muted: #a98e9a;
    --accent: #e6a6b8;
    --line: rgba(232, 207, 152, .18);
    --dark-bg: #0c0509;
    --dark-bg-2: #1a0d15;
    --dark-text: #f0dee2;
    --shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
    --glow-1: #5a2138;
    --glow-2: #4a3418;
    --logo: url("assets/brand/mark-dark.png");
    --grain: .035;
    --gold-text-grad: linear-gradient(112deg, #d9b473 0%, #f7e7c2 30%, #fffaf0 50%, #ecd39c 72%, #d9b473 100%);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #140a10;
  --bg-soft: #1d1019;
  --surface: rgba(255, 255, 255, .05);
  --surface-solid: #20121b;
  --text: #ecd9de;
  --head: #fbeff2;
  --muted: #a98e9a;
  --accent: #e6a6b8;
  --line: rgba(232, 207, 152, .18);
  --dark-bg: #0c0509;
  --dark-bg-2: #1a0d15;
  --dark-text: #f0dee2;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
  --glow-1: #5a2138;
  --glow-2: #4a3418;
  --logo: url("assets/brand/mark-dark.png");
  --grain: .035;
  --gold-text-grad: linear-gradient(112deg, #d9b473 0%, #f7e7c2 30%, #fffaf0 50%, #ecd39c 72%, #d9b473 100%);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  font-size: clamp(17.5px, 0.45vw + 16.4px, 19.5px);
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: var(--grain);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; color: var(--head); letter-spacing: -.01em; }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); text-wrap: balance; }
h3 { font-size: 1.62rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.center { text-align: center; margin-top: 2.5rem; }

.gold-text, .footer-big em, .steps span, .pkg-price {
  background: var(--gold-text-grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* background-clip:text only paints inside the element's box, so italic
     ascenders/descenders get sliced off at tight line-heights. The padding
     grows the painted box and the negative margin keeps the layout identical. */
  padding: .2em .08em .26em;
  margin: -.2em -.08em -.26em;
}
.gold-text { animation: shimmer 9s ease-in-out infinite; }
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.section { padding: clamp(72px, 11vw, 140px) var(--pad); position: relative; }
.section-head { max-width: 780px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head p { width: auto; max-width: 100%; }
.section-head .muted { margin-top: 1rem; font-size: 1.14rem; line-height: 1.7; }
.kicker {
  font-family: var(--ui); font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  color: var(--accent); margin-bottom: 1rem;
}

/* ---------- buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  height: var(--h); padding: 0 1.7em; border-radius: 999px;
  font: 500 .95rem/1 var(--ui); letter-spacing: .06em; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-grad); background-size: 180% auto; color: #2a1420; box-shadow: 0 14px 30px -12px rgba(169, 122, 47, .6); }
.btn-gold:hover { background-position: right center; box-shadow: 0 20px 40px -14px rgba(169, 122, 47, .75); }
.btn-ghost { border-color: var(--line); color: var(--head); background: var(--surface); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: var(--head); color: var(--bg); border-color: var(--head); }
.btn-ghost.light { color: var(--dark-text); border-color: rgba(232, 207, 152, .4); background: transparent; }
.btn-ghost.light:hover { background: var(--gold-soft); color: #2a1420; }
.btn.wide { width: 100%; }
.text-link { color: var(--gold-soft); font-size: .9rem; letter-spacing: .04em; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.round-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--head); font-size: 1.1rem; cursor: pointer; transition: .3s;
}
.round-btn:hover { background: var(--head); color: var(--bg); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 var(--pad); transition: background .4s, box-shadow .4s, height .4s;
}
.nav.scrolled { background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 var(--line); height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 74px; height: 42px; display: block;
  background: var(--logo) center/contain no-repeat;
  filter: drop-shadow(0 4px 12px rgba(169,122,47,.3));
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.brand:hover .brand-logo { transform: scale(1.06) rotate(-2deg); }
.badge-logo { width: 62px; height: 36px; background: url("assets/brand/mark-dark.png") center/contain no-repeat; }
.brand-text { font: 500 1.3rem/1 var(--serif); color: var(--head); display: flex; flex-direction: column; }
.brand-text em { font: 400 .62rem/1.6 var(--ui); letter-spacing: .26em; text-transform: uppercase; font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav-links a { font-family: var(--ui); text-decoration: none; font-size: .92rem; font-weight: 400; letter-spacing: .04em; position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { --h: 46px; font-family: var(--serif); font-size: 1.12rem; font-weight: 500; font-style: italic; letter-spacing: .02em; }

/* theme switch */
.theme-switch {
  position: relative; display: flex; align-items: center; gap: 2px; padding: 4px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface); backdrop-filter: blur(8px);
}
.theme-switch button {
  position: relative; z-index: 1; width: 32px; height: 30px; border: 0; background: transparent;
  display: grid; place-items: center; cursor: pointer; border-radius: 999px; color: var(--muted); transition: color .35s;
}
.theme-switch button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.theme-switch button[aria-checked="true"] { color: #2a1420; }
.theme-pill {
  position: absolute; top: 4px; left: 4px; width: 32px; height: 30px; border-radius: 999px;
  background: var(--gold-grad); transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.theme-switch[data-active="system"] .theme-pill { transform: translateX(34px); }
.theme-switch[data-active="dark"] .theme-pill { transform: translateX(68px); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--head); transition: .35s; }
.menu-toggle span:first-child { top: 17px; } .menu-toggle span:last-child { top: 26px; }
.menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-menu a:not(.btn) { font: italic 500 2rem/1 var(--serif); color: var(--head); text-decoration: none; }
.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(24px, 4vw, 60px);
  padding: 120px var(--pad) 70px;
  background: radial-gradient(120% 90% at 100% 0%, var(--bg-soft) 0%, transparent 55%), var(--bg);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.g1 { width: 520px; height: 520px; background: var(--glow-1); opacity: .55; top: -120px; right: 10%; animation: float 14s ease-in-out infinite; }
.g2 { width: 380px; height: 380px; background: var(--glow-2); opacity: .5; bottom: -120px; left: 20%; animation: float 18s ease-in-out infinite reverse; }
@keyframes float { 50% { transform: translate(40px, 30px) scale(1.08); } }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: .76rem; font-weight: 500; letter-spacing: .08em; color: var(--accent);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 0 4px rgba(193,154,82,.18); }
.hero h1 { font-size: clamp(3.4rem, 8.4vw, 7.4rem); font-weight: 400; margin: 26px 0 22px; line-height: .95; }
.hero h1 em { font-weight: 500; }
.lede { font-size: clamp(1.08rem, 1.3vw, 1.22rem); max-width: 520px; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 44px; }
.hero-stats { list-style: none; padding: 26px 0 0; margin: 0; display: flex; gap: clamp(22px, 4vw, 52px); border-top: 1px solid var(--line); max-width: 520px; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font: 500 2.6rem/1 var(--serif); color: var(--head); font-variant-numeric: lining-nums; }
.hero-stats b { font-weight: 500; }
.hero-stats span { font-size: .76rem; color: var(--muted); letter-spacing: .06em; margin-top: 6px; }

.hero-stage { position: relative; z-index: 2; height: min(78vh, 700px); display: flex; flex-direction: column; }
.stage-track { position: relative; flex: 1; perspective: 1400px; }
.stage-card {
  position: absolute; left: 50%; top: 50%; margin: 0;
  width: min(68%, 400px); aspect-ratio: 3 / 4;
  border-radius: 999px 999px 26px 26px; overflow: hidden;
  box-shadow: 0 40px 70px -35px rgba(60, 20, 40, .55);
  transform: translate(-50%, -50%);
  transition: transform .9s cubic-bezier(.2,.75,.15,1), opacity .9s, filter .9s;
  outline: 1.5px solid rgba(232, 207, 152, .75); outline-offset: -10px;
  cursor: pointer; will-change: transform;
}
.stage-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 6s ease-out; }
.stage-card.is-active img { transform: scale(1); }
.stage-card figcaption {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  padding: 8px 18px; border-radius: 999px; white-space: nowrap;
  background: rgba(42, 20, 32, .55); backdrop-filter: blur(10px); color: var(--gold-soft);
  font: italic 500 1.05rem/1 var(--serif); opacity: 0; transition: opacity .6s .3s;
}
.stage-card.is-active figcaption { opacity: 1; }
.stage-ui { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 14px; }
.stage-dots { display: flex; gap: 8px; }
.stage-dots button { width: 8px; height: 8px; border-radius: 99px; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: width .5s, background .5s; }
.stage-dots button[aria-selected="true"] { width: 30px; background: var(--gold); }

/* ---------- marquee ---------- */
.marquee { background: var(--dark-bg); color: var(--gold-soft); overflow: hidden; padding: 22px 0; }
.marquee-inner { display: flex; gap: 34px; width: max-content; animation: marquee 38s linear infinite; align-items: center; }
.marquee span { font: italic 400 clamp(1.4rem, 2.6vw, 2.2rem)/1 var(--serif); white-space: nowrap; }
.marquee i { font-style: normal; color: var(--rose); font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about-media { position: relative; aspect-ratio: 1 / 1.1; }
.arch { position: absolute; overflow: hidden; border-radius: 999px 999px 24px 24px; box-shadow: var(--shadow); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-lg { inset: 0 22% 8% 0; }
.arch-sm { width: 46%; aspect-ratio: 3/4; right: 0; bottom: 0; border: 8px solid var(--bg); }
.badge-spin { position: absolute; top: 3%; right: 4%; width: 130px; height: 130px; display: grid; place-items: center; background: var(--dark-bg); border-radius: 50%; }
.badge-spin svg { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.badge-spin text { font: 500 9px var(--sans); letter-spacing: .16em; fill: var(--gold-soft); }
.badge-spin img { width: 58px; height: auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-copy h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); margin-bottom: 1.6rem; }
.pill-list { list-style: none; padding: 0; margin: 1.6rem 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--ui); font-size: .88rem; background: var(--surface); }
.signature { font: 400 clamp(2.6rem, 4vw, 3.4rem)/1 var(--script); color: var(--accent); margin: 1rem 0 0; }

/* ---------- credentials ---------- */
.credentials { background: var(--bg-soft); }
.cert-grid { list-style: none; padding: 0; margin: 0 auto clamp(40px, 6vw, 70px); max-width: 1200px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cert-grid li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; text-align: center; transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
}
.cert-grid li:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cert-grid h3 { font-size: 1.3rem; margin: 10px 0 4px; }
.cert-grid p { margin: 0; font-size: .95rem; color: var(--muted); }
.cert-mark { color: var(--gold); font-size: 1rem; }
.cert-grid li.highlight { background: var(--dark-bg); border-color: transparent; }
.cert-grid li.highlight h3 { color: var(--gold-soft); }
.cert-grid li.highlight p { color: rgba(245,223,224,.72); }
.why-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why { padding-top: 24px; border-top: 1px solid var(--line); }
.why h3 { font-size: 1.22rem; margin-bottom: 8px; }
.why p { font-size: 1rem; color: var(--muted); margin: 0; }

/* ---------- services ---------- */
.services { background: linear-gradient(180deg, var(--bg), var(--bg-soft) 60%, var(--bg)); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1240px; margin: 0 auto; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; backdrop-filter: blur(10px);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s, background .5s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card h3 { margin: 18px 0 10px; }
.service-card p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.service-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); }
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card.featured { grid-row: span 2; padding: 0; overflow: hidden; display: flex; flex-direction: column; background: var(--dark-bg); border: 0; }
.service-img { flex: 1; min-height: 260px; overflow: hidden; position: relative; }
.service-img img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease, transform 6s ease-out; }
.service-img img.on { opacity: 1; }
.service-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.service-card.featured:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 30px; }
.service-card.featured h3 { color: var(--gold-soft); font-size: 2rem; margin-top: 12px; }
.service-card.featured p { color: rgba(245,223,224,.78); }
.service-card.featured ul { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 6px; font-size: .9rem; color: var(--dark-text); }
.service-card.featured li::before { content: "✦"; color: var(--gold); margin-right: 10px; font-size: .75rem; }
.tag { display: inline-block; font-family: var(--ui); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; padding: 6px 12px; border-radius: 999px; background: var(--gold-grad); color: #2a1420; }

/* ---------- pricing ---------- */
.price-wrap { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; backdrop-filter: blur(10px);
}
.price-card header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.price-card h3 { font-size: 1.95rem; }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 17px 10px; margin: 0 -10px; border-top: 1px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: background .3s, transform .3s;
}
.price-list li:hover { background: var(--bg-soft); transform: translateX(3px); }
.price-list li:first-child { border-top: 0; }
.price-list span { font-size: 1.1rem; }
.price-list em { color: var(--muted); font-size: .92rem; }
.price-list b { font: 500 1.5rem var(--serif); color: var(--head); white-space: nowrap; font-variant-numeric: lining-nums; }
.incl-block { margin-bottom: 18px; }
.incl-block h4 { font: 500 .78rem var(--ui); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.incl-block p { margin: 0; font-size: .95rem; }
.gold-block { border: 1px solid var(--line); border-radius: 16px; padding: 18px; background: var(--bg-soft); }
.gold-block ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: .92rem; }
.gold-block li::before { content: "✦"; color: var(--gold); margin-right: 10px; font-size: .72rem; }
.price-card .btn { margin-top: 20px; }
.price-note { text-align: center; color: var(--muted); font-size: 1rem; margin: 28px auto 0; max-width: 620px; }

/* ---------- portfolio ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 22px; font: 400 .95rem var(--ui); letter-spacing: .04em; color: var(--text); cursor: pointer; transition: .3s; }
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--head); color: var(--bg); border-color: var(--head); }
.masonry { columns: 4 240px; column-gap: 16px; max-width: 1320px; margin: 0 auto; }
.tile {
  break-inside: avoid; margin: 0 0 16px; border-radius: 18px; overflow: hidden; position: relative; cursor: zoom-in;
  background: var(--bg-soft); animation: tileIn .7s cubic-bezier(.2,.8,.2,1) both;
}
.tile img { width: 100%; height: auto; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.tile::after { content: attr(data-label); position: absolute; inset: auto 0 0; padding: 40px 18px 16px; color: #fff; font: italic 500 1.2rem var(--serif); background: linear-gradient(transparent, rgba(42,20,32,.72)); opacity: 0; transition: opacity .5s; }
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: 1; }
@keyframes tileIn { from { opacity: 0; transform: translateY(24px); } }

/* ---------- reels ---------- */
.reels { background: radial-gradient(80% 80% at 80% 20%, var(--dark-bg-2) 0%, transparent 60%), var(--dark-bg); color: var(--dark-text); }
.reels h2, .reels h3 { color: #fff; }
.reels .kicker { color: var(--gold-soft); }
.reels-copy { max-width: 560px; margin: 0 auto clamp(40px, 6vw, 60px); text-align: center; }
.reels-copy p { color: rgba(245,223,224,.75); }
.reel-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.reel-rail { overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--gold) transparent; margin: 0 calc(var(--pad) * -1); padding: 40px var(--pad) 20px; scroll-snap-type: x mandatory; }
.reel-row { display: flex; gap: clamp(14px, 2.5vw, 30px); justify-content: center; align-items: center; width: max-content; margin: 0 auto; }
.reel-row .phone { flex: 0 0 clamp(220px, 24vw, 290px); scroll-snap-align: center; }
.phone { margin: 0; position: relative; border-radius: 30px; padding: 7px; background: linear-gradient(145deg, #e8cf98, #8d6a33 40%, #e8cf98 70%, #a9803d); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.phone:nth-child(2) { transform: translateY(-30px); }
.phone video { width: 100%; aspect-ratio: 9/16; object-fit: cover; border-radius: 24px; background: #000; cursor: pointer; }
.phone figcaption { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); white-space: nowrap; font-family: var(--ui); font-size: .76rem; letter-spacing: .08em; padding: 7px 14px; border-radius: 99px; background: rgba(42,20,32,.65); backdrop-filter: blur(8px); color: var(--gold-soft); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(232,207,152,.6);
  background: rgba(42,20,32,.45); backdrop-filter: blur(6px); color: var(--gold-soft);
  font-size: 1.1rem; cursor: pointer; transition: opacity .4s, transform .4s;
}
.phone.playing .play-btn { opacity: 0; pointer-events: none; }
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }

/* before / after */
.ba-block { max-width: 1120px; margin: clamp(60px, 9vw, 110px) auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.ba-nav { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.ba-nav[hidden] { display: none; }
.round-btn.light { border-color: rgba(232,207,152,.4); background: transparent; color: var(--gold-soft); }
.round-btn.light:hover { background: var(--gold-soft); color: #2a1420; }
.ba-dots { display: flex; gap: 8px; }
.ba-dots button { width: 8px; height: 8px; border: 0; padding: 0; border-radius: 99px; background: rgba(232,207,152,.35); cursor: pointer; transition: width .5s, background .5s; }
.ba-dots button[aria-selected="true"] { width: 28px; background: var(--gold-soft); }
.ba-caption { text-align: center; margin: 16px 0 0; font-family: var(--ui); font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,223,224,.72); }
.ba-img { transition: opacity .45s ease; }
.ba.swapping .ba-img { opacity: 0; }
.ba-copy p { color: rgba(245,223,224,.75); }
.ba-copy h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.ba { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 62/93; box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); user-select: none; }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-clip { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold-soft);
  transform: translateX(-1px); pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); color: #2a1420;
  display: grid; place-items: center; font-size: .72rem; letter-spacing: -1px; box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; padding: 0; border: 0; background: transparent; }
.ba-range:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; opacity: .001; }
.ba-tag {
  position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px; font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; background: rgba(42,20,32,.6); backdrop-filter: blur(6px); color: var(--gold-soft); pointer-events: none;
}
.ba-tag-l { left: 16px; } .ba-tag-r { right: 16px; }

/* ---------- backstage ---------- */
.strip {
  overflow: hidden; margin: 0 calc(var(--pad) * -1); padding: 26px 0 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.strip-track {
  display: flex; gap: 18px; width: max-content;
  animation: strip-scroll 60s linear infinite;
}
.strip:hover .strip-track, .strip:focus-within .strip-track { animation-play-state: paused; }
@keyframes strip-scroll { to { transform: translateX(-50%); } }
.strip figure {
  content-visibility: auto; flex: 0 0 clamp(210px, 22vw, 280px); margin: 0;
  border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; position: relative;
  box-shadow: 0 24px 50px -28px rgba(60, 20, 40, .55);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
}
.strip figure:nth-child(odd) { transform: rotate(-1.6deg) translateY(-10px); }
.strip figure:nth-child(even) { transform: rotate(1.6deg) translateY(14px); }
.strip figure:hover { transform: rotate(0deg) translateY(0) scale(1.05); box-shadow: 0 34px 60px -26px rgba(60, 20, 40, .7); z-index: 2; }
.strip img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }

/* ---------- process ---------- */
.process { background: var(--bg-soft); }
.steps { list-style: none; padding: 0; margin: 0 auto; max-width: 1200px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps li { padding: 30px 26px 34px; border-top: 1px solid var(--line); }
.steps span { font: italic 500 3.6rem/1 var(--serif); display: block; margin-bottom: 16px; }
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 1.02rem; margin: 0; }

/* ---------- love ---------- */
.love-card {
  max-width: 1200px; margin: 0 auto; border-radius: 34px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; background: var(--surface-solid); box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.love-imgs { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 420px; }
.love-imgs img { width: 100%; height: 100%; object-fit: cover; }
.love-copy { padding: clamp(32px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.love-copy h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-bottom: 1.2rem; }
.love-copy p { color: var(--muted); margin-bottom: 1.8rem; }

/* ---------- faq ---------- */
.faq { padding-top: 0; }
.faq-list { max-width: 860px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer; padding: 26px 50px 26px 0; position: relative;
  font: 500 clamp(1.22rem, 2vw, 1.5rem)/1.25 var(--serif); color: var(--head);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); font: 300 1.3rem/1 var(--sans); color: var(--gold); transition: transform .4s, background .4s;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--head); color: var(--bg); }
details p { color: var(--muted); font-size: 1.05rem; padding: 0 50px 26px 0; margin: 0; }

/* ---------- book ---------- */
.book {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 90px); align-items: start;
  background: radial-gradient(70% 70% at 0% 100%, color-mix(in srgb, var(--glow-2) 45%, transparent), transparent 60%), radial-gradient(60% 60% at 100% 0%, color-mix(in srgb, var(--glow-1) 55%, transparent), transparent 60%), var(--bg);
}
.book-copy > p { color: var(--muted); max-width: 460px; }
.contact-list { list-style: none; padding: 0; margin: 2.2rem 0 0; }
.contact-list li { border-top: 1px solid var(--line); }
.contact-list a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding: 16px 8px; margin: 0 -8px; border-radius: 12px; text-decoration: none; transition: background .3s, padding .3s;
}
.contact-list a:hover { background: var(--bg-soft); padding-left: 16px; }
.contact-list span { font-family: var(--ui); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.contact-list b { font: 500 1.24rem var(--serif); color: var(--head); word-break: break-word; }
.contact-list a:hover b { color: var(--accent); }
.book-form { background: var(--surface); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 30px; padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow); display: grid; gap: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label, .field .label { font-family: var(--ui); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
input, select, textarea {
  font: 400 1rem var(--sans); color: var(--text); width: 100%;
  padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: var(--bg);
  transition: border-color .3s, box-shadow .3s; appearance: none;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23a07a88' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(193,154,82,.18); }
.invalid { border-color: var(--accent); }
.checks { display: flex; flex-wrap: wrap; gap: 10px; }
.checks label { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: .88rem; cursor: pointer; background: var(--bg); letter-spacing: 0; text-transform: none; color: var(--text); transition: .3s; }
.checks input { width: 16px; height: 16px; padding: 0; margin: 0; border-radius: 4px; accent-color: var(--accent); appearance: auto; }
.checks label:has(input:checked) { background: var(--bg-soft); border-color: var(--rose); }
.form-note { margin: 0; font-size: .88rem; color: var(--accent); min-height: 1.2em; text-align: center; }

/* ---------- footer ---------- */
.footer { background: var(--dark-bg); color: rgba(245,223,224,.7); padding: clamp(60px, 9vw, 110px) var(--pad) 34px; overflow: hidden; }
.footer-big { font: 400 clamp(3rem, 10vw, 9.5rem)/.9 var(--serif); color: var(--dark-text); letter-spacing: -.02em; margin-bottom: 50px; }

.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; font-size: .95rem; border-top: 1px solid rgba(232,207,152,.2); padding-top: 26px; }
.footer-row p { margin: 0; }
.footer-row nav { display: flex; gap: 24px; }
.footer-row a { text-decoration: none; color: var(--gold-soft); }

/* ---------- floating wa ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: var(--dark-bg); box-shadow: 0 16px 34px -10px rgba(42,20,32,.6);
  transition: transform .4s;
}
.wa-float::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--gold); opacity: .6; animation: pulse 2.6s ease-out infinite; }
.wa-float svg { width: 28px; height: 28px; fill: var(--gold-soft); }
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
@keyframes pulse { from { transform: scale(.9); opacity: .8; } to { transform: scale(1.35); opacity: 0; } }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20, 8, 14, .95); display: grid; place-items: center; padding: 60px 70px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 86vh; max-width: 100%; border-radius: 14px; object-fit: contain; animation: tileIn .45s both; }
.lb-close, .lb-nav { position: absolute; border: 0; background: rgba(255,255,255,.08); color: var(--gold-soft); width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: .3s; }
.lb-close:hover, .lb-nav:hover { background: var(--gold-soft); color: #2a1420; }
.lb-close { top: 18px; right: 18px; }
.lb-nav.prev { left: 16px; } .lb-nav.next { right: 16px; }
.lb-count { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; color: rgba(245,223,224,.6); font-size: .78rem; letter-spacing: .2em; margin: 0; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- bridal packages ---------- */
.pkg-grid {
  max-width: 1480px; margin: 0 auto clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; align-items: stretch;
}
@media (max-width: 1500px) { .pkg-grid { gap: 14px; } .pkg { padding: 30px 20px 24px; } .pkg-inc { font-size: .96rem; } .pkg-price { font-size: clamp(2.1rem, 2.4vw, 2.7rem); } }
@media (max-width: 1240px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
.pkg {
  display: flex; flex-direction: column; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
  padding: 34px 28px 28px; backdrop-filter: blur(10px);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s, border-color .5s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.pkg-top { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.pkg-emoji { font-size: 1.5rem; margin: 0 0 6px; }
.pkg h3 { font-family: var(--ui); font-size: .88rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--head); }
.pkg-price { font: 500 clamp(2.6rem, 4vw, 3.3rem)/1 var(--serif); margin: 12px 0 0; font-variant-numeric: lining-nums; }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--gold-grad); color: #2a1420; font-family: var(--ui); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(169,122,47,.8);
}
.pkg-body { flex: 1; padding-top: 20px; }
.pkg-label { font-family: var(--ui); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.pkg-inc { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; font-size: 1.02rem; }
.pkg-inc li { position: relative; padding-left: 22px; line-height: 1.5; }
.pkg-inc li::before { content: "✦"; position: absolute; left: 0; top: .15em; color: var(--gold); font-size: .72rem; }
.pkg-inc em { color: var(--muted); font-size: .88em; }
.pkg-extra summary {
  font: 400 .84rem/1 var(--ui); letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  padding: 12px 24px 12px 0; border-top: 1px solid var(--line);
}
.pkg-extra summary::after { width: 26px; height: 26px; font-size: 1rem; }
.pkg-extra ul { list-style: none; padding: 0 0 14px; margin: 0; display: grid; gap: 8px; font-size: .9rem; color: var(--muted); }
.pkg-extra li::before { content: "•"; color: var(--rose); margin-right: 8px; }
.pkg-cta { margin-top: 20px; width: 100%; --h: 48px; font-size: .82rem; padding: 0 1em; }
.pkg.featured-pkg { background: var(--dark-bg); border-color: transparent; }
.pkg.featured-pkg h3, .pkg.featured-pkg .pkg-label { color: var(--gold-soft); }
.pkg.featured-pkg .pkg-inc, .pkg.featured-pkg .pkg-body { color: var(--dark-text); }
.pkg.featured-pkg .pkg-inc em, .pkg.featured-pkg .pkg-extra ul, .pkg.featured-pkg .pkg-extra summary { color: rgba(245,223,224,.7); }
.pkg.featured-pkg .pkg-top, .pkg.featured-pkg .pkg-extra summary { border-color: rgba(232,207,152,.22); }
.pkg.royal { border-color: var(--gold); }

.price-extras { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.terms-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; font-size: 1.12rem; line-height: 1.6; }
.terms-list li { position: relative; padding-left: 22px; color: var(--muted); }
.terms-list li::before { content: "✦"; position: absolute; left: 0; top: .2em; color: var(--gold); font-size: .7rem; }
.terms-contact { display: grid; gap: 2px; margin-top: 22px; }
.terms-contact a { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 15px 10px; margin: 0 -10px; border-top: 1px solid var(--line); border-radius: 10px; text-decoration: none; transition: background .3s; }
.terms-contact a:hover { background: var(--bg-soft); }
.terms-contact span { font-family: var(--ui); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.terms-contact b { font: 500 1.35rem var(--serif); color: var(--head); }

/* ---------- brands ---------- */
.brands { max-width: 1100px; margin: clamp(40px, 6vw, 70px) auto 0; text-align: center; }
.brands p.kicker { margin-bottom: 20px; }
.brand-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.brand-row span {
  font-family: var(--ui); font-size: .95rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; color: var(--head);
  background: var(--surface); transition: border-color .4s, transform .4s;
}
.brand-row span:hover { border-color: var(--gold); transform: translateY(-3px); }

/* ---------- testimonials ---------- */
.testimonials { background: var(--bg-soft); }
.quote-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
@media (min-width: 1100px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--surface-solid); border: 1px solid var(--line); border-radius: 24px;
  padding: 34px 30px 28px; position: relative; box-shadow: var(--shadow);
}
.quote::before {
  content: "”"; position: absolute; top: 6px; right: 24px;
  font: 500 5rem/1 var(--serif); color: var(--gold); opacity: .32;
}
.quote-text { font: 400 1.22rem/1.62 var(--serif); font-style: italic; color: var(--head); margin-bottom: 20px; }
.quote-by { display: flex; align-items: center; gap: 12px; }
.quote-ava { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad); color: #2a1420; font: 500 1.05rem var(--serif); }
.quote-name { font-family: var(--ui); font-size: .95rem; color: var(--head); letter-spacing: .04em; }
.quote-meta { font-family: var(--ui); font-size: .78rem; color: var(--muted); letter-spacing: .06em; }
.quote-src { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; white-space: nowrap; align-self: flex-start; font-family: var(--ui); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.quote-src:hover { color: var(--accent); }

/* ---------- motion & polish ---------- */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60;
  background: var(--gold-grad); box-shadow: 0 0 14px rgba(193,154,82,.6);
  transition: width .12s linear;
}

/* gold buttons get a slow light sweep on hover */
.btn-gold { position: relative; overflow: hidden; isolation: isolate; }
.btn-gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translateX(-120%);
}
.btn-gold:hover::after { animation: sweep .9s cubic-bezier(.4,0,.2,1); }
@keyframes sweep { to { transform: translateX(120%); } }

/* staggered reveals inside grids */
.js .cert-grid li:nth-child(2), .js .service-grid > *:nth-child(2), .js .pkg-grid > *:nth-child(2),
.js .why-grid > *:nth-child(2), .js .steps li:nth-child(2), .js .quote-grid > *:nth-child(2) { transition-delay: .08s; }
.js .cert-grid li:nth-child(3), .js .service-grid > *:nth-child(3), .js .pkg-grid > *:nth-child(3),
.js .why-grid > *:nth-child(3), .js .steps li:nth-child(3) { transition-delay: .16s; }
.js .cert-grid li:nth-child(4), .js .service-grid > *:nth-child(4), .js .pkg-grid > *:nth-child(4),
.js .why-grid > *:nth-child(4), .js .steps li:nth-child(4) { transition-delay: .24s; }
.js .cert-grid li:nth-child(n+5), .js .service-grid > *:nth-child(n+5), .js .pkg-grid > *:nth-child(n+5) { transition-delay: .32s; }

/* images breathe a little on hover */
.arch img { transition: transform 1.4s cubic-bezier(.2,.8,.2,1); }
.arch:hover img { transform: scale(1.05); }
.strip figure img { transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.strip figure:hover img { transform: scale(1.06); }
.love-imgs img { transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter .8s; }
.love-card:hover .love-imgs img { transform: scale(1.04); }

/* a small gold flourish under section headings */
.section-head h2::after {
  content: ""; display: block; width: 0; height: 2px; margin: 22px auto 0;
  background: var(--gold-grad); border-radius: 2px; transition: width 1.2s .3s cubic-bezier(.2,.8,.2,1);
}
.section-head h2.in::after { width: 120px; }

/* package price lifts with the card */
.pkg-price { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.pkg:hover .pkg-price { transform: scale(1.06); }
.pkg:hover { box-shadow: var(--shadow), 0 0 0 1px var(--gold); }

/* quote cards tilt gently */
.quote { transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
.quote:hover { transform: translateY(-6px) rotate(-.4deg); }

/* chips + filters */
.chip { position: relative; overflow: hidden; }
.chip::before {
  content: ""; position: absolute; inset: 0; background: var(--head);
  transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.2,.8,.2,1); z-index: -1;
}
.chip.active::before { transform: scaleX(1); }

/* hero photos drift very slightly */
@keyframes drift { 50% { transform: translateY(-10px); } }
.hero-stage .stage-ui { animation: drift 7s ease-in-out infinite; }

/* ---------- extra motion ---------- */
/* hero headline rises word by word */
.js .hero h1 .w { display: inline-block; opacity: 0; transform: translateY(24px); animation: wordUp .9s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes wordUp { to { opacity: 1; transform: none; } }

/* nav tucks away when scrolling down, returns on the way up */
.nav { transform: translateY(0); transition: background .4s, box-shadow .4s, height .4s, transform .5s cubic-bezier(.2,.8,.2,1); }
.nav.tucked { transform: translateY(-110%); }

/* package cards get a travelling gold edge on hover */
.pkg { overflow: hidden; }
.pkg::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(232,207,152,.22) 50%, transparent 60%);
  transform: translateX(-130%); transition: transform .9s cubic-bezier(.3,0,.2,1);
}
.pkg:hover::after { transform: translateX(130%); }

/* quote marks drift in */
.quote::before { transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s; }
.quote:hover::before { transform: translateY(-4px) rotate(-6deg); opacity: .5; }

/* back to top */
.to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 40; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface); backdrop-filter: blur(10px); color: var(--head);
  cursor: pointer; display: grid; place-items: center; font-size: 1rem;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s, transform .4s, background .3s, color .3s;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--head); color: var(--bg); }

/* gentle parallax targets */
.hero-glow, .arch-sm { will-change: transform; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .service-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .price-extras { grid-template-columns: 1fr; }
  .price-wrap { grid-template-columns: 1fr 1fr; }
  .price-card.inclusions { grid-column: span 2; }
  .steps, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-block { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; z-index: 60; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-stage { height: 560px; }
  .about, .book, .love-card { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; width: 100%; margin: 0 auto; }
  .love-imgs { min-height: 260px; }
}
@media (max-width: 600px) {
  h2 { font-size: 2.3rem; }
  .hero h1 { font-size: 3.4rem; }
  .hero-stats strong { font-size: 2rem; }
  .hero-stage { height: 470px; }
  .stage-card { width: 74%; }
  .service-grid, .steps, .cert-grid, .price-wrap, .why-grid, .pkg-grid { grid-template-columns: 1fr; }
  .pkg { padding: 30px 24px 24px; }
  .price-card.inclusions { grid-column: auto; }
  .service-card.featured { grid-row: auto; }
  .masonry { columns: 2; column-gap: 10px; }
  .tile { margin-bottom: 10px; border-radius: 12px; }
  .reel-row { justify-content: flex-start; }
  .reel-row .phone { flex: 0 0 74vw; }
  .phone { scroll-snap-align: center; }
  .phone:nth-child(2) { transform: none; }
  .row { grid-template-columns: 1fr; }
  .badge-spin { width: 100px; height: 100px; }
  .badge-spin img { width: 44px; }
  .badge-spin text { font-size: 11px; }
  .lightbox { padding: 60px 10px; }
  .lb-nav { top: auto; bottom: 14px; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .to-top { right: 16px; bottom: 78px; width: 42px; height: 42px; }
  details p, summary { padding-right: 46px; }
  /* full-bleed intro on phones */
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .strip { overflow-x: auto; }
  .strip-track { animation: none; }
  .scroll-bar, .section-head h2::after { display: none; }
  .js .hero h1 .w { opacity: 1; transform: none; animation: none; }
  .nav.tucked { transform: none; }
}
