/* =================================================================
   SERVING HANDS  ·  "The Lantern"
   Vanilla CSS — deep plum + antique gold + lavender-ivory
   Type: Cormorant Garamond (display) / Nunito (body)
   ================================================================= */

/* ---------- Custom properties ---------- */
:root {
  --plum:        #7A4872;                    /* primary background — warm plum-mauve */
  --plum-mid:    #502050;                    /* cards, borders, secondary surfaces */
  --plum-dark:   #18141E;                    /* footer, deepest shadows */
  --plum-glow:   rgba(122, 72, 114, 0.4);    /* hero radial glow */
  --lavender:    #EDE8F5;                     /* primary light background */
  --lavender-2:  #E0D8EE;                     /* alternate light surface */
  --gold:        #B8873A;                     /* primary accent */
  --gold-light:  #D4A855;                     /* gold on dark backgrounds */
  --on-plum:     #F0EAFA;                     /* body text on dark sections */
  --on-lavender: #2D1A42;                     /* body text on light sections */
  --mid-text:    #5A4060;                     /* secondary text on light */

  --maxw: 1180px;
  --pad-x: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 9vw, 132px);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Offset anchored sections so headings clear the sticky nav */
section[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  background: var(--plum);
  color: var(--on-plum);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h2, h3, p, ul { margin: 0; }

/* Subtle film-grain over the whole page — reads subconsciously as warmth/quality */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- SEO H1 (off-screen, crawlable) ---------- */
.seo-h1 {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Shared typography helpers ---------- */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 26px;
  border-radius: 2px;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: 0.005em;
}

p { font-size: 16px; }
.small { font-size: 13px; line-height: 1.65; }

/* The literal "-(dash)-" brand motif, marked as deliberate (not a typo) */
.dash-mark { color: var(--gold-light); font-style: italic; white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--plum-dark);
  box-shadow: 0 8px 24px -12px rgba(184, 135, 58, 0.8);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--on-plum);
  border-color: rgba(240, 234, 250, 0.35);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); }

/* ---------- Photo framing ---------- */
.photo-dark, .photo-light { position: relative; border-radius: 4px; overflow: hidden; }
.photo-dark { border: 1px solid rgba(184, 135, 58, 0.30); }
.photo-light { border: 1px solid rgba(122, 72, 114, 0.18); box-shadow: 0 30px 60px -40px rgba(24, 20, 30, 0.6); }

/* Gentle plum wash so photos sit inside the dark sections rather than on top of them */
.photo-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(122, 72, 114, 0.20);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* =================================================================
   HERO
   ================================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 12vh, 150px) var(--pad-x) clamp(72px, 9vh, 110px);
  /* Asymmetric glow: brighter upper-right, darker lower-left — the lantern, made visible */
  background:
    radial-gradient(115% 120% at 80% 16%, rgba(212, 168, 85, 0.12), transparent 46%),
    radial-gradient(130% 115% at 74% 14%, var(--plum-glow), transparent 56%),
    radial-gradient(150% 150% at 16% 96%, rgba(24, 20, 30, 0.92), transparent 60%),
    var(--plum);
}

.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 22px;
}

.hero-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  color: var(--on-plum);
  margin: 0 0 4px;
}

.hero-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.04;
  color: #FBF7FF;
  margin: 0 0 26px;
  letter-spacing: 0.005em;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(240, 234, 250, 0.86);
  max-width: 44ch;
  margin: 0 0 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { aspect-ratio: 4 / 5; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Bottom fade so the hero photo melts into the plum */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 52%, rgba(122, 72, 114, 0.55) 82%, var(--plum) 100%);
  pointer-events: none;
}

/* In-hero jump strip */
.hero-jump {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: clamp(44px, 6vh, 72px) auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  padding: 9px 10px;
  width: fit-content;
  border: 1px solid rgba(240, 234, 250, 0.16);
  border-radius: 999px;
  background: rgba(24, 20, 30, 0.25);
  backdrop-filter: blur(4px);
}
.hero-jump a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: rgba(240, 234, 250, 0.82);
  padding: 7px 16px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.hero-jump a:hover { color: var(--plum-dark); background: var(--gold-light); }
.hero-jump-call { color: var(--gold-light) !important; }
.hero-jump-call:hover { color: var(--plum-dark) !important; }

/* ---------- Hero entry sequence (fires on load) ---------- */
.hero-label, .hero-name, .hero-tagline, .hero-lede, .hero-ctas, .hero-media {
  opacity: 0;
  animation: heroIn 0.75s var(--ease) forwards;
}
.hero-label   { animation-duration: 0.6s; animation-delay: 0ms; }
.hero-name    { animation-delay: 120ms; }
.hero-tagline { animation-delay: 320ms; }
.hero-lede    { animation-delay: 460ms; }
.hero-ctas    { animation-duration: 0.6s; animation-delay: 600ms; }
.hero-media   { animation-duration: 0.8s; animation-delay: 480ms; transform: translateY(0); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   STICKY NAV (appears after hero)
   ================================================================= */
.sticky-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 28px);
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: rgba(35, 24, 42, 0.82);
  border: 1px solid rgba(212, 168, 85, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateX(-50%) translateY(-140%);
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.sticky-nav.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.sticky-brand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
  padding-right: 6px;
}
.sticky-links { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.sticky-links a {
  position: relative;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(240, 234, 250, 0.8);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s var(--ease);
}
.sticky-links a::after {
  content: "";
  position: absolute;
  bottom: 3px; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s var(--ease);
}
.sticky-links a:hover { color: #fff; }
.sticky-links a.active { color: var(--gold-light); }
.sticky-links a.active::after { transform: translateX(-50%) scale(1); }

.sticky-call {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--plum-dark);
  background: var(--gold);
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s var(--ease);
}
.sticky-call:hover { background: var(--gold-light); }

/* =================================================================
   DECORATIVE DIVIDERS  (bracket the light sections)
   ================================================================= */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 360px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) 0;
}
.divider-line { height: 1px; width: 90px; background: linear-gradient(to right, transparent, var(--gold)); }
.divider-line:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.divider-mark { color: var(--gold); font-size: 15px; line-height: 1; }

/* =================================================================
   ABOUT  (lavender)
   ================================================================= */
#about {
  background: var(--lavender);
  color: var(--on-lavender);
  padding: 0 var(--pad-x) var(--section-y);
}
#about .section-title { color: var(--on-lavender); }
#about p { color: var(--mid-text); margin-bottom: 18px; }
#about p:first-of-type { color: var(--on-lavender); font-size: 18px; }

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-media { align-self: stretch; }
.about-media .photo-light { height: 100%; }
.about-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* Credential badges */
.badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
}
.badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: var(--plum-mid);
  padding: 9px 16px;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.badge:hover { background: var(--gold); color: var(--plum-dark); transform: translateY(-2px); }

/* =================================================================
   STAT BAND  (plum, count-up)
   ================================================================= */
.stat-band {
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(212, 168, 85, 0.08), transparent 60%),
    var(--plum);
  padding: clamp(56px, 8vw, 96px) var(--pad-x);
}
.stat-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 90px);
  flex-wrap: wrap;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 0.95;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}
.stat-unit {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 234, 250, 0.7);
  margin-top: 12px;
}
.stat-divider { width: 1px; align-self: stretch; min-height: 90px; background: linear-gradient(to bottom, transparent, rgba(212,168,85,0.4), transparent); }

/* =================================================================
   SERVICES  (plum)
   ================================================================= */
#services {
  padding: clamp(60px, 8vw, 110px) var(--pad-x) var(--section-y);
}
.section-head { max-width: var(--maxw); margin: 0 auto clamp(40px, 5vw, 64px); }

.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(80, 32, 80, 0.55), rgba(80, 32, 80, 0.28));
  border: 1px solid rgba(212, 168, 85, 0.14);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover {
  border-color: rgba(212, 168, 85, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -34px rgba(0, 0, 0, 0.75);
}

.card-head {
  position: relative;
  background: var(--plum-mid);
  padding: 26px 26px 22px;
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
/* Oversized ghost number behind the title */
.card-num {
  position: absolute;
  top: -18px;
  right: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 100px;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.15;
  pointer-events: none;
}
.card-title {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.15;
  color: var(--on-plum);
}

.card-media { border-radius: 0; border-left: 0; border-right: 0; }
.card-media img { width: 100%; height: 172px; object-fit: cover; }

.card-body { padding: 24px 26px 30px; }
.card-body p { font-size: 15px; line-height: 1.75; color: rgba(240, 234, 250, 0.84); }

/* Advanced-care list, two columns with gold dots */
.dot-list {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 22px;
}
.dot-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(240, 234, 250, 0.78);
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}
.dot-list strong { color: var(--on-plum); font-weight: 700; }
.card-closer { margin-top: 4px; font-style: italic; color: rgba(240, 234, 250, 0.9) !important; }

/* =================================================================
   PULL QUOTE  (plum)
   ================================================================= */
.pullquote {
  padding: clamp(64px, 10vw, 128px) var(--pad-x);
  text-align: center;
  background:
    radial-gradient(100% 140% at 50% 50%, rgba(212, 168, 85, 0.06), transparent 62%),
    var(--plum);
}
.pullquote-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.2;
  color: #FBF7FF;
  max-width: 18ch;
  margin: 0 auto;
}

/* =================================================================
   PRICING  (lavender-2)
   ================================================================= */
#pricing {
  background: var(--lavender-2);
  color: var(--on-lavender);
  padding: 0 var(--pad-x) var(--section-y);
}
#pricing .section-title { color: var(--on-lavender); }
#pricing .section-head { text-align: left; }

.pricing-wrap { max-width: 820px; margin: 0 auto; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -44px rgba(45, 26, 66, 0.55);
}
.pricing-table thead th {
  background: var(--plum-mid);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 24px;
}
.pricing-table th.price-col, .pricing-table td.price-col { text-align: right; }
.pricing-table tbody td {
  padding: 15px 24px;
  border-bottom: 1px solid rgba(122, 72, 114, 0.12);
  color: var(--on-lavender);
}
.pricing-table tbody tr:nth-child(even) td { background: var(--lavender-2); }
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table td.price-col { font-weight: 800; color: #1f1430; white-space: nowrap; }

/* Row hover: subtle gold left border + plum tint */
.pricing-table tbody tr { position: relative; transition: background-color 0.2s var(--ease); }
.pricing-table tbody tr td:first-child { box-shadow: inset 0 0 0 0 var(--gold); transition: box-shadow 0.2s var(--ease); }
.pricing-table tbody tr:hover td { background: rgba(122, 72, 114, 0.07); }
.pricing-table tbody tr:hover td:first-child { box-shadow: inset 3px 0 0 0 var(--gold); }

.pricing-notes { margin-top: 22px; }
.pricing-notes p {
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  color: var(--mid-text);
  margin: 4px 0;
}

/* =================================================================
   CONTACT  (plum)
   ================================================================= */
#contact {
  padding: clamp(72px, 9vw, 130px) var(--pad-x);
  background:
    radial-gradient(110% 120% at 14% 12%, rgba(212, 168, 85, 0.07), transparent 50%),
    var(--plum);
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
}
#contact .section-title { color: var(--on-plum); }
.contact-intro { color: rgba(240, 234, 250, 0.84); max-width: 42ch; margin-bottom: 34px; }

.contact-phone {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1;
  text-decoration: none;
  color: var(--gold-light);
  transition: color 0.2s var(--ease);
  margin-bottom: 18px;
}
.contact-phone:hover { color: #fff; }
.contact-phone-label {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-email {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(240, 234, 250, 0.82);
  border-bottom: 1px solid rgba(212, 168, 85, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact-email:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ---------- Form ---------- */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 234, 250, 0.7);
  margin-bottom: 9px;
}
.field input, .field textarea {
  width: 100%;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: var(--on-plum);
  background: rgba(240, 234, 250, 0.08);
  border: 1px solid rgba(240, 234, 250, 0.20);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(240, 234, 250, 0.4); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(240, 234, 250, 0.12);
}
.field input.invalid, .field textarea.invalid { border-color: #E2A0A0; }

/* Honeypot — visually removed, still in the DOM */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.btn-submit { width: 100%; justify-content: center; margin-top: 8px; }
.btn-submit:disabled { opacity: 0.65; cursor: progress; transform: none; }

.form-status {
  font-size: 14px;
  line-height: 1.55;
  margin-top: 14px;
  min-height: 1px;
  color: #F3C0C0;
}
.form-status.ok { color: var(--gold-light); }

/* Success panel */
.form-success {
  border: 1px solid rgba(212, 168, 85, 0.4);
  border-radius: 8px;
  background: rgba(80, 32, 80, 0.4);
  padding: 40px 32px;
  text-align: center;
}
.form-success-mark { display: block; font-size: 26px; color: var(--gold-light); margin-bottom: 14px; }
.form-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 600;
  color: #FBF7FF;
  margin-bottom: 10px;
}
.form-success-body { font-size: 15px; color: rgba(240, 234, 250, 0.82); }
.form-success-body a { color: var(--gold-light); }

/* =================================================================
   FOOTER  (plum-dark)
   ================================================================= */
footer {
  background: var(--plum-dark);
  padding: clamp(48px, 6vw, 76px) var(--pad-x);
  text-align: center;
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  border-top: 2px solid rgba(212, 168, 85, 0.35);
  padding-top: clamp(36px, 5vw, 52px);
}
.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-name .dash-mark { color: var(--gold); }
.footer-line { font-size: 14px; color: rgba(240, 234, 250, 0.55); margin-bottom: 18px; }
.footer-contact { font-size: 14px; color: rgba(240, 234, 250, 0.5); display: flex; flex-wrap: wrap; gap: 8px 12px; justify-content: center; margin-bottom: 22px; }
.footer-contact a { text-decoration: none; color: rgba(240, 234, 250, 0.72); transition: color 0.2s var(--ease); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-copy { font-size: 12px; color: rgba(240, 234, 250, 0.34); }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
  .cards { grid-template-columns: 1fr; max-width: 560px; }
  .card-media img { height: 220px; }
  .dot-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; aspect-ratio: 16 / 11; max-height: 46vh; }
  .hero-media::before { background: linear-gradient(to bottom, transparent 40%, rgba(122,72,114,0.6) 78%, var(--plum) 100%); }
  .hero-lede { max-width: none; }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-media { order: -1; }
  .about-media img { min-height: 280px; max-height: 60vh; }

  .contact-inner { grid-template-columns: 1fr; gap: 44px; }

  .stat-divider { display: none; }
  .stat-inner { gap: 40px; }

  /* Hide the desktop sticky nav links on small screens; keep brand + call */
  .sticky-nav { padding-left: 16px; gap: 4px; }
  .sticky-links { display: none; }

  .dot-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero-jump { width: 100%; justify-content: center; border-radius: 14px; }
  .btn { width: 100%; justify-content: center; }
  .sticky-brand { display: none; }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-label, .hero-name, .hero-tagline, .hero-lede, .hero-ctas, .hero-media { opacity: 1; }
}
