/* ==========================================================================
   Perfections Body Sculpt — Design System
   Tokens follow the Website Redesign Brief §2. Hand-authored CSS, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Colour — derived from the brand logo (coral #F88888, silhouette #14171A).
     Every pairing below is contrast-checked; see README "Colour" for the table. */
  --coral:        #F88888;   /* brand primary, from the logo wordmark */
  --coral-soft:   #FAB0B0;
  --coral-light:  #FCD2D2;
  --coral-pale:   #FEF1F1;
  --coral-deep:   #CA7172;   /* decorative hover only, never behind white text */
  --coral-text:   #98595A;   /* accessible on light: 5.4:1 on white */
  --coral-dark:   #744648;

  --ink:          #14171A;   /* from the logo silhouette */
  --ink-mid:      #272A2C;
  --ink-soft:     #3A3C3F;

  --cream:        #FFF7F5;   /* warm off-white, tinted toward the coral */
  --white:        #FFFFFF;
  --blush:        #FBE4E0;
  --charcoal:     #2C2C2C;
  --muted:        #6E6469;
  --success:      #3F8F63;
  --error:        #C0392B;

  /* Legacy aliases — the utility class names (.section--navy, .btn--navy) kept
     their original names so the 27 page templates did not need rewriting. */
  --gold:        var(--coral);
  --gold-light:  var(--coral-light);
  --gold-dark:   var(--coral-text);
  --navy:        var(--ink);
  --navy-mid:    var(--ink-mid);
  --navy-light:  var(--ink-soft);

  /* Type */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-subhead: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-hero:    clamp(2.75rem, 6.5vw, 5.5rem);
  --text-h1:      clamp(2.25rem, 5vw, 3.75rem);
  --text-h2:      clamp(1.75rem, 3.5vw, 2.75rem);
  --text-h3:      clamp(1.35rem, 2.5vw, 1.9rem);
  --text-h4:      clamp(1.1rem, 2vw, 1.35rem);
  --text-body-lg: 1.15rem;
  --text-body:    1rem;
  --text-sm:      0.875rem;
  --text-xs:      0.75rem;

  --leading-tight:  1.15;
  --leading-normal: 1.65;
  --leading-loose:  1.9;
  --tracking-wide:  0.1em;
  --tracking-wider: 0.2em;

  /* Space */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 4px;  --radius-md: 8px;  --radius-lg: 16px;
  --radius-xl: 24px; --radius-full: 9999px;

  /* Shadow */
  --shadow-sm:   0 2px 8px rgba(20, 23, 26, 0.08);
  --shadow-md:   0 4px 20px rgba(20, 23, 26, 0.13);
  --shadow-lg:   0 8px 40px rgba(20, 23, 26, 0.18);
  --shadow-gold: 0 6px 26px rgba(248, 136, 136, 0.42);
  --shadow-glow: 0 0 60px rgba(248, 136, 136, 0.20);

  /* Gradient */
  --gradient-gold:      linear-gradient(135deg, #F88888 0%, #FCD2D2 50%, #F88888 100%);
  --gradient-gold-h:    linear-gradient(90deg, #98595A 0%, #F88888 50%, #FCD2D2 100%);
  --gradient-navy:      linear-gradient(180deg, #14171A 0%, #272A2C 100%);
  --gradient-dark-gold: linear-gradient(135deg, #14171A 0%, #272A2C 55%, #4A3234 100%);
  --gradient-hero:      linear-gradient(135deg, rgba(20,23,26,0.90) 0%, rgba(39,42,44,0.78) 50%, rgba(12,14,16,0.94) 100%);
  --gradient-card:      linear-gradient(180deg, rgba(20,23,26,0) 0%, rgba(20,23,26,0.88) 100%);

  /* Motion */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  300ms;
  --dur-slow:  600ms;
  --dur-xslow: 1000ms;

  /* Layout */
  --container: 1240px;
  --container-narrow: 860px;
  --nav-h: 80px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--leading-tight);
  letter-spacing: -0.015em;
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
p  { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--coral-text);   /* 5.4:1 on white */
  outline-offset: 3px;
  border-radius: 2px;
}
.section--navy :focus-visible,
.section--navy-mid :focus-visible,
.section--dark-gold :focus-visible,
.hero :focus-visible,
.nav :focus-visible,
.footer :focus-visible,
.mobile-nav :focus-visible { outline-color: var(--coral); }   /* 7.6:1 on ink */

.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 999;
  background: var(--gold); color: var(--navy);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md); font-weight: 700;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-16); position: relative; }
@media (min-width: 768px) { .section { padding-block: var(--space-24); } }

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.section--dark-gold { background: var(--gradient-dark-gold); color: var(--white); }
.section--blush { background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%); }

.section--navy h1, .section--navy h2, .section--navy h3,
.section--navy-mid h1, .section--navy-mid h2, .section--navy-mid h3,
.section--dark-gold h1, .section--dark-gold h2, .section--dark-gold h3 { color: var(--white); }

.section-head { max-width: 720px; margin-bottom: var(--space-12); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-4);
}
.section--navy .eyebrow, .section--navy-mid .eyebrow,
.section--dark-gold .eyebrow, .hero .eyebrow { color: var(--gold); }

.lede {
  font-size: var(--text-body-lg);
  color: var(--muted);
  margin-top: var(--space-5);
}
.section--navy .lede, .section--navy-mid .lede, .section--dark-gold .lede {
  color: rgba(255,255,255,0.72);
}

.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  text-align: center; position: relative; overflow: hidden;
  white-space: nowrap;
  transition: transform var(--dur-base) var(--ease-smooth),
              background-color var(--dur-base) var(--ease-smooth),
              color var(--dur-base) var(--ease-smooth),
              box-shadow var(--dur-base) var(--ease-smooth),
              border-color var(--dur-base) var(--ease-smooth);
}
.btn:active { transform: translateY(1px); }

/* Shimmer sweep on hover */
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  background-size: 250% 100%; background-position: 150% 0;
  transition: background-position var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { background-position: -50% 0; }

.btn--primary { background: var(--coral); color: var(--ink); }
.btn--primary:hover { background: var(--coral-text); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn--secondary { border: 2px solid var(--gold); color: var(--gold-dark); background: transparent; }
.btn--secondary:hover { background: var(--coral); color: var(--ink); transform: translateY(-2px); }

.btn--ghost { border: 1.5px solid rgba(248,136,136,0.5); color: var(--gold-light); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); background: rgba(248,136,136,0.12); color: var(--gold); transform: translateY(-2px); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--lg { padding: var(--space-5) var(--space-10); font-size: var(--text-body); }
.btn--sm { padding: var(--space-3) var(--space-5); font-size: var(--text-xs); }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--gold-dark); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.link-arrow span { transition: transform var(--dur-base) var(--ease-smooth); }
.link-arrow:hover span { transform: translateX(5px); }
.section--navy .link-arrow, .section--dark-gold .link-arrow { color: var(--gold); }

/* --------------------------------------------------------------------------
   5. Badges & pills
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.badge--gold  { background: rgba(248,136,136,0.16); color: var(--gold-dark); }
.badge--navy  { background: var(--navy); color: var(--gold-light); }
.badge--solid { background: var(--coral); color: var(--ink); }
.badge--new   { background: var(--success); color: var(--white); }
.badge--outline { border: 1px solid rgba(248,136,136,0.45); color: var(--gold); }

/* --------------------------------------------------------------------------
   6. Announcement bar
   -------------------------------------------------------------------------- */

.announce {
  position: relative; z-index: 60;
  background: var(--gradient-gold); background-size: 200% 100%;
  animation: announceShimmer 6s linear infinite;
  color: var(--ink); font-size: var(--text-sm); font-weight: 700;
}
@keyframes announceShimmer { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }

.announce__inner {
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  min-height: 40px; padding: var(--space-2) var(--space-12) var(--space-2) var(--space-6);
  text-align: center;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce__close {
  position: absolute; right: var(--space-3); top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: var(--radius-full);
  display: grid; place-items: center; color: var(--navy);
  transition: background-color var(--dur-fast);
}
.announce__close:hover { background: rgba(20,23,26,0.12); }
.announce[hidden] { display: none; }

/* --------------------------------------------------------------------------
   7. Navbar
   -------------------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background-color var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base),
              box-shadow var(--dur-base);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  min-height: var(--nav-h);
  transition: min-height var(--dur-base) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(20,23,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(248,136,136,0.18), var(--shadow-md);
}
.nav.is-scrolled .nav__inner { min-height: 70px; }

/* On light pages the nav needs a solid backdrop from the start. */
.nav--solid { background: rgba(20,23,26,0.97); }

.logo { display: flex; flex-direction: column; line-height: 1.1; transition: transform var(--dur-base) var(--ease-smooth); }
.logo:hover { transform: scale(1.03); }
.logo img { display: block; width: auto; height: 42px; transition: height var(--dur-base) var(--ease-out); }
.nav.is-scrolled .logo img { height: 36px; }
@media (max-width: 480px) { .logo img { height: 34px; } }
.footer .logo img { height: 52px; }
.logo__tag {
  font-size: 0.62rem; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 2px;
  white-space: nowrap;
}

.nav__links { display: none; align-items: center; gap: var(--space-5); }
@media (min-width: 1200px) { .nav__links { display: flex; } }
@media (min-width: 1400px) { .nav__links { gap: var(--space-6); } }

.nav__link {
  position: relative; padding: var(--space-2) 0;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
  display: inline-flex; align-items: center; gap: var(--space-1);
}
@media (min-width: 1400px) { .nav__link { font-size: 0.8rem; letter-spacing: var(--tracking-wide); } }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width var(--dur-base) var(--ease-smooth);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link svg { width: 12px; height: 12px; transition: transform var(--dur-base); }

.nav__actions { display: flex; align-items: center; gap: var(--space-4); }

.nav__status {
  display: none; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
@media (min-width: 1500px) { .nav__status { display: flex; } }
.nav__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.nav__dot--open { background: var(--success); box-shadow: 0 0 0 3px rgba(74,155,111,0.25); }

/* Mega dropdown */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; translate: -50% 0;
  width: min(940px, 92vw);
  background: var(--navy-mid);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
  display: grid; grid-template-columns: repeat(3, 1fr) 250px; gap: var(--space-8);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 200ms;
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .mega.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-mega:hover .nav__link svg { transform: rotate(180deg); }

.mega__title {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 900;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-4);
  padding-bottom: var(--space-3); border-bottom: 1px solid rgba(248,136,136,0.22);
}
.mega__item { display: block; padding: var(--space-3) 0; transition: transform var(--dur-base) var(--ease-smooth); }
.mega__item:hover { transform: translateX(5px); }
.mega__item-name { display: block; color: var(--white); font-weight: 700; font-size: 0.92rem; }
.mega__item:hover .mega__item-name { color: var(--gold); }
.mega__item-desc { display: block; color: rgba(255,255,255,0.5); font-size: var(--text-xs); margin-top: 2px; line-height: 1.45; }

.mega__cta {
  background: var(--gradient-dark-gold);
  border: 1px solid rgba(248,136,136,0.28);
  border-radius: var(--radius-md); padding: var(--space-6);
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-4);
}
.mega__cta p { font-size: var(--text-sm); color: rgba(255,255,255,0.78); }

/* Mobile nav */
.nav__toggle {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius-md); color: var(--white);
}
@media (min-width: 1100px) { .nav__toggle { display: none; } }
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-smooth), opacity var(--dur-fast);
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 45;
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--space-8)) var(--space-6) var(--space-10);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
@media (min-width: 1100px) { .mobile-nav { display: none; } }

.mobile-nav__item {
  display: block; padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  font-family: var(--font-heading); font-size: 1.3rem; color: var(--white);
  opacity: 0; transform: translateY(12px);
}
.mobile-nav.is-open .mobile-nav__item {
  animation: mobileIn 400ms var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 60ms);
}
@keyframes mobileIn { to { opacity: 1; transform: translateY(0); } }
.mobile-nav__sub { padding-left: var(--space-4); }
.mobile-nav__sub .mobile-nav__item { font-family: var(--font-body); font-size: 0.98rem; color: rgba(255,255,255,0.74); }
.mobile-nav__foot { margin-top: var(--space-8); display: grid; gap: var(--space-4); }
.mobile-nav__phone { text-align: center; color: var(--gold); font-size: 1.15rem; font-weight: 700; }

body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding-block: var(--space-24) var(--space-16);
  margin-top: calc(var(--nav-h) * -1);
  padding-top: calc(var(--nav-h) + var(--space-16));
}
.hero--compact { min-height: 62vh; padding-block: calc(var(--nav-h) + var(--space-16)) var(--space-16); }
.hero--mid { min-height: 78vh; }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.hero__overlay { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 1; }
.hero__content { position: relative; z-index: 3; text-align: center; max-width: 900px; margin-inline: auto; }
.hero__content--left { text-align: left; margin-inline: 0; }

.hero h1 { font-size: var(--text-hero); color: var(--white); margin-bottom: var(--space-6); }
.hero__sub {
  font-size: var(--text-body-lg); color: rgba(255,255,255,0.8);
  max-width: 640px; margin: 0 auto var(--space-8);
}
.hero__content--left .hero__sub { margin-inline: 0; }

/* Word-by-word hero reveal */
.js .hero h1 .word { display: inline-block; opacity: 0; transform: translateY(24px); }
.hero.is-ready h1 .word { animation: wordUp 620ms var(--ease-out) forwards; animation-delay: calc(400ms + var(--w) * 110ms); }
@keyframes wordUp { to { opacity: 1; transform: translateY(0); } }

.js .hero .eyebrow, .js .hero__sub, .js .hero .btn-row, .js .hero__proof {
  opacity: 0; transform: translateY(20px);
}
.hero.is-ready .eyebrow  { animation: heroUp 600ms var(--ease-out) 200ms forwards; }
.hero.is-ready .hero__sub { animation: heroUp 600ms var(--ease-out) 900ms forwards; }
.hero.is-ready .btn-row  { animation: heroPop 500ms var(--ease-spring) 1150ms forwards; }
.hero.is-ready .hero__proof { animation: heroUp 600ms var(--ease-out) 1400ms forwards; }
@keyframes heroUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes heroPop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }

.hero__proof {
  margin-top: var(--space-8); font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  display: flex; align-items: center; justify-content: center; gap: var(--space-3); flex-wrap: wrap;
}
.hero__content--left .hero__proof { justify-content: flex-start; }
.hero__stars { color: var(--gold); letter-spacing: 2px; }

.scroll-cue {
  position: absolute; bottom: var(--space-8); left: 50%; translate: -50% 0; z-index: 3;
  display: grid; place-items: center; gap: var(--space-2);
  color: var(--gold); font-size: 0.65rem;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
}
.js .scroll-cue { opacity: 0; }
.hero.is-ready .scroll-cue { animation: heroUp 600ms var(--ease-out) 1600ms forwards; }
.scroll-cue__line { width: 1px; height: 42px; background: linear-gradient(180deg, var(--gold), transparent); animation: cueDrop 2s var(--ease-in-out) infinite; }
@keyframes cueDrop { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

/* Gold particles */
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(252,210,210,0.85) 0%, rgba(248,136,136,0) 70%);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  12%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { transform: translateY(-140px) scale(1.15); opacity: 0; }
}

/* --------------------------------------------------------------------------
   9. Marquee
   -------------------------------------------------------------------------- */

.marquee {
  background: var(--navy-mid); color: var(--gold-light);
  border-block: 1px solid rgba(248,136,136,0.2);
  padding-block: var(--space-4); overflow: hidden;
  display: flex; user-select: none;
}
.marquee__track { display: flex; flex-shrink: 0; gap: var(--space-8); padding-right: var(--space-8); animation: marquee 44s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee__item {
  display: inline-flex; align-items: center; gap: var(--space-3); white-space: nowrap;
  font-size: var(--text-sm); font-weight: 700;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.marquee__item::after { content: '·'; color: var(--gold); margin-left: var(--space-8); }

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
  transition: transform var(--dur-base) var(--ease-smooth), box-shadow var(--dur-base) var(--ease-smooth);
}
.card::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--gradient-gold-h);
  transition: width var(--dur-base) var(--ease-smooth);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::after { width: 100%; }

.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-mid); }

/* Services with no client photography yet — branded, never stock. */
.card__media--placeholder {
  background:
    radial-gradient(circle at 50% 38%, rgba(248,136,136,0.30) 0%, transparent 62%),
    var(--gradient-dark-gold);
}
.card__media--placeholder::after { background: none; }
.card__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--coral); opacity: .85; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-smooth); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after { content: ''; position: absolute; inset: 0; background: var(--gradient-card); }
.card__media-title {
  position: absolute; left: var(--space-5); right: var(--space-5); bottom: var(--space-4); z-index: 2;
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--white);
}
.card__flag { position: absolute; top: var(--space-4); left: var(--space-4); z-index: 2; }

.card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); flex: 1; }
.card__desc { color: var(--muted); font-size: 0.95rem; flex: 1; margin: 0; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }

/* Testimonial */
.quote-card {
  background: var(--white); border: 1px solid rgba(20,23,26,0.07);
  border-radius: var(--radius-lg); padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-5); height: 100%;
  transition: transform 250ms var(--ease-smooth), border-color 250ms, box-shadow 250ms;
}
.quote-card:hover { transform: translateY(-4px); border-color: rgba(248,136,136,0.4); box-shadow: var(--shadow-md); }
.quote-card__stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; }
.quote-card__text {
  font-family: var(--font-subhead); font-style: italic; font-size: 1.2rem;
  line-height: 1.6; color: var(--charcoal); flex: 1; margin: 0;
}
.quote-card__meta { display: flex; align-items: center; gap: var(--space-3); }
.quote-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gradient-gold); color: var(--ink);
  font-weight: 900; font-size: var(--text-xs); letter-spacing: 0.05em; flex-shrink: 0;
}
.quote-card__name { font-weight: 700; font-size: var(--text-sm); color: var(--navy); }
.quote-card__src  { font-size: var(--text-xs); color: var(--muted); }

/* Pricing */
.price-card {
  background: var(--white); border: 2px solid rgba(20,23,26,0.08);
  border-radius: var(--radius-xl); padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-5); position: relative;
  transition: transform var(--dur-base) var(--ease-smooth), box-shadow var(--dur-base), border-color var(--dur-base);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card--featured { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-8px); }
.price-card--featured:hover { transform: translateY(-12px); }
.price-card__flag { position: absolute; top: -13px; left: 50%; translate: -50% 0; }
.price-card__name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); }
.price-card__price { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-card__price small { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 400; color: var(--muted); display: block; margin-top: var(--space-2); letter-spacing: 0; }
.price-card__was { font-size: var(--text-sm); color: var(--muted); text-decoration: line-through; }
.price-card ul { display: grid; gap: var(--space-3); flex: 1; }
.price-card li { display: flex; gap: var(--space-3); font-size: 0.95rem; align-items: flex-start; }
.price-card li::before { content: '✓'; color: var(--gold-dark); font-weight: 900; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   11. Reveal on scroll
   -------------------------------------------------------------------------- */

/* Reveals are progressive enhancement: the .js class is set by an inline script
   in <head>. Without JavaScript the content is simply visible, never stuck at
   opacity 0. */

.js [data-reveal] {
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal="up"]    { transform: translateY(40px); }
.js [data-reveal="in"]    { transform: none; }
.js [data-reveal="left"]  { transform: translateX(-60px); }
.js [data-reveal="right"] { transform: translateX(60px); }
.js [data-reveal="scale"] { transform: scale(0.92); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

.js [data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-smooth); }
.js [data-stagger].is-visible > * { opacity: 1; transform: none; }
.js [data-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
.js [data-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
.js [data-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
.js [data-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }
.js [data-stagger].is-visible > *:nth-child(5) { transition-delay: 360ms; }
.js [data-stagger].is-visible > *:nth-child(6) { transition-delay: 450ms; }
.js [data-stagger].is-visible > *:nth-child(7) { transition-delay: 540ms; }
.js [data-stagger].is-visible > *:nth-child(8) { transition-delay: 630ms; }
.js [data-stagger].is-visible > *:nth-child(9) { transition-delay: 720ms; }

/* --------------------------------------------------------------------------
   12. Steps / process
   -------------------------------------------------------------------------- */

.steps { display: grid; gap: var(--space-8); position: relative; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-10); } }

.step { text-align: center; position: relative; }
.step__num {
  width: 66px; height: 66px; margin: 0 auto var(--space-5);
  border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--gold); color: var(--gold);
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
  background: rgba(248,136,136,0.08); position: relative; z-index: 2;
}
.step h3 { margin-bottom: var(--space-3); }
.step p { color: rgba(255,255,255,0.68); font-size: 0.97rem; }
.section--cream .step p, .section--white .step p { color: var(--muted); }

.steps__line { display: none; }
@media (min-width: 900px) {
  .steps__line {
    display: block; position: absolute; top: 33px; left: 16%; right: 16%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248,136,136,0.5) 20%, rgba(248,136,136,0.5) 80%, transparent);
    z-index: 1; transform: scaleX(0); transform-origin: left;
    transition: transform 1200ms var(--ease-out) 200ms;
  }
  .steps.is-visible .steps__line { transform: scaleX(1); }
}

/* --------------------------------------------------------------------------
   13. Stats & counters
   -------------------------------------------------------------------------- */

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); text-align: center; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--font-heading); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat__label { font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: var(--space-3); }
.section--cream .stat__label, .section--white .stat__label { color: var(--muted); }

.trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
@media (min-width: 900px) { .trust-bar { grid-template-columns: repeat(5, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); text-align: center; }
.trust-item__icon { width: 40px; height: 40px; color: var(--gold); }
.trust-item__text { font-size: var(--text-sm); font-weight: 700; color: var(--navy); line-height: 1.35; }
.section--navy .trust-item__text { color: var(--white); }

/* --------------------------------------------------------------------------
   14. Accordion
   -------------------------------------------------------------------------- */

.accordion { display: grid; gap: var(--space-3); }
.acc {
  background: var(--white); border: 1px solid rgba(20,23,26,0.09);
  border-radius: var(--radius-md); overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.acc.is-open { border-left-color: var(--gold); box-shadow: var(--shadow-sm); }
.acc__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  padding: var(--space-5) var(--space-6); text-align: left;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; color: var(--navy);
  transition: background-color var(--dur-base) var(--ease-out);
}
.acc__q:hover { background: var(--cream); }
.acc__icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-dark); transition: transform var(--dur-base) var(--ease-smooth); }
.acc.is-open .acc__icon { transform: rotate(180deg); }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-base) var(--ease-in-out); }
.acc.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding: 0 var(--space-6) var(--space-5); color: var(--muted); }

/* --------------------------------------------------------------------------
   15. Before / after slider
   -------------------------------------------------------------------------- */

.ba {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--navy-mid); cursor: ew-resize;
  touch-action: pan-y; user-select: none;
}
.ba__pane { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__pane--after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__ph { width: 100%; height: 100%; display: grid; place-items: center; gap: var(--space-2); text-align: center; padding: var(--space-6); }
.ba__ph--before { background: repeating-linear-gradient(45deg, #272A2C, #272A2C 12px, #33373A 12px, #33373A 24px); }
.ba__ph--after  { background: repeating-linear-gradient(45deg, #4A3234, #4A3234 12px, #58393C 12px, #58393C 24px); }
.ba__ph-label { font-family: var(--font-heading); font-size: 1.15rem; color: rgba(255,255,255,0.9); }
.ba__ph-note  { font-size: var(--text-xs); color: rgba(255,255,255,0.5); max-width: 220px; line-height: 1.5; }
.ba__tag {
  position: absolute; top: var(--space-4); z-index: 4;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.ba__tag--before { left: var(--space-4); background: var(--gold-light); color: var(--navy); }
.ba__tag--after  { right: var(--space-4); background: var(--gold); color: var(--navy); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: var(--gold); z-index: 5; translate: -50% 0;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  font-size: 0.8rem; font-weight: 900; letter-spacing: -1px;
}
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; z-index: 6; margin: 0;
}
.ba input[type="range"]:focus-visible + .ba__handle { box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--gold); }

/* --------------------------------------------------------------------------
   16. Promo card
   -------------------------------------------------------------------------- */

.promo {
  background: var(--gradient-gold); background-size: 200% 100%;
  animation: announceShimmer 8s linear infinite;
  border-radius: var(--radius-xl); padding: var(--space-12);
  display: grid; gap: var(--space-8); align-items: center;
  color: var(--navy);
}
@media (min-width: 900px) { .promo { grid-template-columns: 1.1fr 1fr; padding: var(--space-16); } }
.promo h2 { color: var(--navy); }
.promo__price { font-family: var(--font-heading); font-size: clamp(3.5rem, 9vw, 5.5rem); font-weight: 700; line-height: 1; color: var(--navy); }
.promo__was { font-size: var(--text-body-lg); color: rgba(20,23,26,0.55); text-decoration: line-through; margin-left: var(--space-3); }
.promo ul { display: grid; gap: var(--space-3); }
.promo li { display: flex; gap: var(--space-3); font-weight: 700; align-items: flex-start; }
.promo li::before { content: '✓'; font-weight: 900; flex-shrink: 0; }
.promo__fine { font-size: var(--text-xs); color: rgba(20,23,26,0.62); margin-top: var(--space-4); }

/* --------------------------------------------------------------------------
   17. Feature list / benefits
   -------------------------------------------------------------------------- */

.benefits { display: grid; gap: var(--space-5); }
@media (min-width: 700px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5); background: var(--white);
  border-radius: var(--radius-md); border: 1px solid rgba(20,23,26,0.07);
}
.benefit__check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(248,136,136,0.16); color: var(--gold-dark);
  display: grid; place-items: center; font-weight: 900; font-size: 0.8rem;
}
.benefit p { font-size: 0.95rem; margin: 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.pill {
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-full);
  background: rgba(248,136,136,0.12); color: var(--gold-dark);
  font-size: 0.9rem; font-weight: 700;
}
.section--navy .pill, .section--dark-gold .pill { background: rgba(248,136,136,0.16); color: var(--gold-light); }

/* Info / safety block */
.note {
  border-left: 3px solid var(--gold);
  background: rgba(248,136,136,0.07);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-6);
}
.note h4 { color: var(--navy); margin-bottom: var(--space-2); }
.note p { font-size: 0.95rem; color: var(--muted); }
.section--navy .note, .section--dark-gold .note { background: rgba(248,136,136,0.1); }
.section--navy .note h4, .section--dark-gold .note h4 { color: var(--gold-light); }
.section--navy .note p, .section--dark-gold .note p { color: rgba(255,255,255,0.72); }

.disclaimer { font-size: var(--text-xs); color: var(--muted); line-height: 1.6; }
.section--navy .disclaimer, .section--dark-gold .disclaimer { color: rgba(255,255,255,0.45); }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.compare th, .compare td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid rgba(20,23,26,0.08); }
.compare thead th { font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); }
.compare tbody th { font-weight: 700; color: var(--navy); }
.compare .yes { color: var(--success); font-weight: 700; }
.compare .no  { color: var(--error); font-weight: 700; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */

.field { display: grid; gap: var(--space-2); margin-bottom: var(--space-5); }
.field label { font-size: var(--text-sm); font-weight: 700; color: var(--navy); }
.field .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--space-4) var(--space-5);
  border: 1.5px solid rgba(20,23,26,0.15); border-radius: var(--radius-md);
  background: var(--white); font-size: 1rem;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(248,136,136,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field__error { font-size: var(--text-xs); color: var(--error); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.form-row { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-4); }

.alert { padding: var(--space-5); border-radius: var(--radius-md); margin-bottom: var(--space-6); font-size: 0.95rem; }
.alert--ok  { background: rgba(74,155,111,0.12); border-left: 3px solid var(--success); color: #256B47; }
.alert--err { background: rgba(192,57,43,0.10); border-left: 3px solid var(--error); color: #8C2A20; }

/* --------------------------------------------------------------------------
   19. Contact / info blocks
   -------------------------------------------------------------------------- */

.info-list { display: grid; gap: var(--space-6); }
.info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-item__icon {
  width: 42px; height: 42px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(248,136,136,0.14); color: var(--gold-dark);
  display: grid; place-items: center;
}
.info-item__label { font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--muted); margin-bottom: var(--space-1); }
.info-item__value { font-weight: 700; color: var(--navy); }
.info-item a:hover { color: var(--gold-dark); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: var(--space-3) 0; border-bottom: 1px solid rgba(20,23,26,0.07); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr.is-closed td { color: var(--muted); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   20. Split layouts
   -------------------------------------------------------------------------- */

.split { display: grid; gap: var(--space-10); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-16); } }
.split--wide-left { }
@media (min-width: 900px) { .split--wide-left { grid-template-columns: 1.2fr 1fr; } }

.figure { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.figure__badge {
  position: absolute; left: var(--space-6); bottom: var(--space-6); z-index: 2;
  background: var(--gradient-gold); color: var(--navy);
  padding: var(--space-4) var(--space-6); border-radius: var(--radius-md);
  font-weight: 900; font-size: var(--text-sm); box-shadow: var(--shadow-md);
  max-width: 220px; line-height: 1.3;
}

/* Portrait placeholder — deliberately NOT a stock photo of a person. */
.portrait-ph {
  aspect-ratio: 4/5; border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 34%, rgba(248,136,136,0.28) 0%, transparent 58%),
    var(--gradient-dark-gold);
  border: 1px solid rgba(248,136,136,0.28);
  display: grid; place-items: center; align-content: center; gap: var(--space-4);
  text-align: center; padding: var(--space-10); position: relative; overflow: hidden;
}
.portrait-ph__ring {
  width: 116px; height: 116px; border-radius: 50%;
  border: 2px dashed rgba(248,136,136,0.5);
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold);
}
.portrait-ph__name { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); }
.portrait-ph__note { font-size: var(--text-xs); color: rgba(255,255,255,0.55); max-width: 240px; line-height: 1.55; }

/* --------------------------------------------------------------------------
   21. Gallery / social grid
   -------------------------------------------------------------------------- */

.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (min-width: 768px) { .tile-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
.tile { position: relative; aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; background: var(--navy-mid); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-smooth); }
.tile:hover img { transform: scale(1.07); }
.tile__veil {
  position: absolute; inset: 0; background: rgba(20,23,26,0.55);
  display: grid; place-items: center; color: var(--gold-light);
  opacity: 0; transition: opacity var(--dur-base) var(--ease-out);
  font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; font-weight: 700;
}
.tile:hover .tile__veil { opacity: 1; }

/* Filter tabs */
.tabs { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-bottom: var(--space-10); }
.tab {
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 700; color: var(--muted);
  border: 1.5px solid transparent;
  transition: color var(--dur-base), background-color var(--dur-base), border-color var(--dur-base);
}
.tab:hover { color: var(--navy); background: rgba(20,23,26,0.04); }
.tab[aria-selected="true"] { color: var(--navy); border-color: var(--gold); background: rgba(248,136,136,0.1); }

.filter-hidden { display: none !important; }

/* --------------------------------------------------------------------------
   22. Blog
   -------------------------------------------------------------------------- */

.post-card { display: flex; flex-direction: column; }
.post-card__meta { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-xs); color: var(--muted); }
.post-card h3 { font-size: 1.25rem; margin-block: var(--space-2); }
.post-card:hover h3 { color: var(--gold-dark); }

.prose { max-width: 72ch; }
.prose h2 { font-size: var(--text-h3); margin-block: var(--space-10) var(--space-4); }
.prose h3 { font-size: var(--text-h4); font-family: var(--font-body); font-weight: 700; margin-block: var(--space-8) var(--space-3); }
.prose p, .prose li { font-size: 1.06rem; line-height: var(--leading-loose); color: #3A3A3A; }
.prose ul { display: grid; gap: var(--space-3); margin-block: var(--space-5); }
.prose ul li { display: flex; gap: var(--space-3); }
.prose ul li::before { content: '—'; color: var(--gold-dark); flex-shrink: 0; }
.prose blockquote {
  border-left: 3px solid var(--gold); padding-left: var(--space-6); margin-block: var(--space-8);
  font-family: var(--font-subhead); font-style: italic; font-size: 1.3rem; color: var(--navy);
}

/* --------------------------------------------------------------------------
   23. Footer
   -------------------------------------------------------------------------- */

.footer { background: var(--navy); color: rgba(255,255,255,0.68); padding-block: var(--space-16) var(--space-8); }
.footer__grid { display: grid; gap: var(--space-10); margin-bottom: var(--space-12); }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-12); } }

.footer h4 {
  color: var(--gold); font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer a { transition: color var(--dur-base) var(--ease-out); }
.footer a:hover { color: var(--gold); }
.footer__links { display: grid; gap: var(--space-3); font-size: 0.93rem; }
.footer__tagline { font-family: var(--font-subhead); font-style: italic; font-size: 1.15rem; color: var(--gold-light); margin-block: var(--space-4); }

.social-row { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(248,136,136,0.32); color: var(--gold);
  display: grid; place-items: center;
  transition: background-color var(--dur-base), transform var(--dur-base) var(--ease-smooth);
}
.social-row a:hover { background: rgba(248,136,136,0.16); transform: translateY(-3px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-8);
  display: flex; flex-wrap: wrap; gap: var(--space-5); align-items: center; justify-content: space-between;
  font-size: var(--text-xs);
}
.pay-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pay-chip {
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.16); font-size: 0.65rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.footer__legal { display: flex; gap: var(--space-5); flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   24. Floating call button (mobile)
   -------------------------------------------------------------------------- */

.call-fab {
  position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--dur-base) var(--ease-spring);
}
.call-fab:hover { transform: scale(1.08); }
@media (min-width: 768px) { .call-fab { display: none; } }

/* --------------------------------------------------------------------------
   25. Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal], .js [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero .eyebrow, .hero__sub, .hero .btn-row, .hero__proof,
  .hero h1 .word, .scroll-cue, .mobile-nav__item { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
  .particles { display: none; }
}
