/* =========================================================
   LIBEA Medical Aesthetics — by SG
   Design system: Graphite + Gold + Cream · serif/sans pairing
   ========================================================= */

:root {
  /* Colours */
  --black:      #0c0c0d;
  --graphite:   #141416;
  --graphite-2: #1b1b1e;
  --cream:      #f4ece1;
  --cream-2:    #efe5d7;
  --gold:       #cdb78b;
  --gold-soft:  #d8c29a;
  --gold-light: #ead9b8;
  --text-light: #e9e3d8;
  --text-dark:  #2a2723;
  --muted:      #a59c8c;
  --muted-dark: #6f685c;
  --line-gold:  rgba(205, 183, 139, 0.35);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 64px);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--text-light);
}
.section-title.dark { color: var(--text-dark); }
.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted); font-weight: 300; }

/* Diamond divider */
.diamond {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); margin: 22px 0;
}
.diamond::before, .diamond::after {
  content: ""; width: 46px; height: 1px;
  background: var(--line-gold);
}
.diamond span { font-size: 0.7rem; line-height: 1; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head .lead { margin-top: 14px; }

.bg-dark   { background: var(--black); }
.bg-graph  { background: var(--graphite); }
.bg-cream  { background: var(--cream); color: var(--text-dark); }
.bg-cream .lead { color: var(--muted-dark); }
.bg-cream .eyebrow { color: #b08b3a; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 18px 40px; border: 1px solid var(--gold);
  color: var(--gold); background: transparent;
  transition: all .45s var(--ease); position: relative;
}
.btn:hover { background: var(--gold); color: var(--black); }
.btn--solid { background: var(--gold); color: var(--black); }
.btn--solid:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--dark { border-color: var(--text-dark); color: var(--text-dark); }
.btn--dark:hover { background: var(--text-dark); color: var(--cream); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 20px;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.header.scrolled {
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(12px);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line-gold);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: auto; height: 26px; }
.brand .name { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.34em; color: var(--text-light); padding-left: 6px; }
.brand .name small { display: block; font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.34em; color: var(--muted); text-transform: uppercase; padding-left: 4px; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); font-weight: 400; position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }
.nav .btn { padding: 11px 24px; }

.burger { display: none; width: 30px; height: 22px; position: relative; z-index: 110; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--text-light); transition: all .4s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(46% 38% at 50% 40%, rgba(205,183,139,0.07) 0%, transparent 62%),
    radial-gradient(120% 80% at 50% -10%, #1d1c1a 0%, var(--black) 55%),
    radial-gradient(120% 90% at 50% 118%, #151412 0%, transparent 55%);
  padding-block: 120px;
}
.hero__border {
  position: absolute; inset: 18px; border: 1px solid var(--line-gold);
  pointer-events: none; z-index: 3;
}
.hero__wave { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; z-index: 2; opacity: .9; }
.hero__inner { position: relative; z-index: 4; max-width: 820px; padding-inline: var(--pad); }
.hero .dragonfly { width: 162px; height: auto; margin: 0 auto 24px; opacity: 0; transform: translateY(16px); }
.hero h1 {
  font-size: clamp(3.4rem, 12vw, 7.5rem); letter-spacing: 0.22em;
  color: var(--gold-light); font-weight: 500; padding-left: 0.22em;
  background: linear-gradient(180deg, #efe2c4 0%, var(--gold) 70%, #9c8a5e 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero .sub {
  font-family: var(--sans); font-size: clamp(.78rem, 1.6vw, 1rem); letter-spacing: 0.46em;
  text-transform: uppercase; color: var(--text-light); margin-top: 6px; padding-left: 0.46em;
}
.hero .byline {
  display: inline-flex; align-items: center; gap: 16px; color: var(--muted);
  font-size: .82rem; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 18px;
}
.hero .byline::before, .hero .byline::after { content: ""; width: 38px; height: 1px; background: var(--line-gold); }
.hero .claim {
  font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 1.9rem); font-style: italic;
  color: var(--text-light); margin-top: 30px; letter-spacing: .03em;
}
.hero .tagline { font-size: .8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 14px; }
.hero .hero-cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 5; color: var(--muted); }
.scroll-cue span { display: block; width: 1px; height: 46px; margin: 0 auto; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; max-width: 340px; margin-inline: auto; }
.about__media .frame { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line-gold); background: var(--graphite-2); }
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.02) saturate(1.02); }
.about__media .frame::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(205,183,139,.14); pointer-events: none; }
.about__media .tag {
  position: absolute; bottom: -22px; right: -10px; background: var(--black);
  border: 1px solid var(--line-gold); padding: 16px 24px; text-align: center;
}
.about__media .tag .name { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-light); letter-spacing: .1em; }
.about__media .tag small { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.about__text .eyebrow { display: block; margin-bottom: 18px; }
.about__text p { color: var(--muted); margin-bottom: 18px; }
.about__values { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.about__values > div { flex: 1; min-width: 130px; padding-top: 16px; border-top: 1px solid var(--line-gold); }
.about__values .k { font-family: var(--serif); font-style: italic; font-size: 1.55rem; color: var(--gold); line-height: 1; letter-spacing: .01em; }
.about__values .v { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); }
.service {
  background: var(--graphite); padding: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 36px);
  transition: background .45s var(--ease); position: relative; min-height: 230px;
  display: flex; flex-direction: column;
}
.service:hover { background: var(--graphite-2); }
.service .icon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 22px; transition: transform .5s var(--ease); }
.service:hover .icon { transform: translateY(-4px); }
.service h3 { font-size: 1.45rem; color: var(--text-light); letter-spacing: .04em; margin-bottom: 8px; }
.service .meta { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.service p { font-size: .92rem; color: var(--muted); }
.service .more { margin-top: auto; padding-top: 18px; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateX(-6px); transition: all .4s var(--ease); }
.service:hover .more { opacity: 1; transform: translateX(0); }

/* Service detail accordion / expanded list */
.svc-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); margin-top: 1px; }
.svc-detail .cell { background: var(--graphite); padding: clamp(24px,2.6vw,38px); }
.svc-detail h4 { color: var(--gold); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; margin-bottom: 14px; }
.svc-detail ul li { position: relative; padding-left: 20px; color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.svc-detail ul li::before { content: "◇"; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: 3px; }

/* =========================================================
   PROGRAMMES (signature)
   ========================================================= */
.programmes-sec { background: linear-gradient(180deg, var(--black) 0%, var(--graphite) 50%, var(--black) 100%); }
.prog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.prog {
  background: linear-gradient(180deg, rgba(27,27,30,.85), rgba(18,18,20,.85)); border: 1px solid var(--line-gold);
  padding: 36px 26px; text-align: center; position: relative; overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.prog::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .6s var(--ease);
}
.prog:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -32px rgba(0,0,0,.9); border-color: var(--gold); }
.prog:hover::before { transform: scaleX(1); }
.prog .num { font-family: var(--serif); font-size: 1rem; color: var(--gold); letter-spacing: .2em; }
.prog .ico { width: 38px; height: 38px; color: var(--gold); margin: 16px auto 18px; transition: transform .6s var(--ease); }
.prog:hover .ico { transform: translateY(-4px) scale(1.06); }
.prog h3 { font-size: 1.3rem; color: var(--text-light); letter-spacing: .03em; }
.prog .tline { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 8px 0 14px; }
.prog p { font-size: .86rem; color: var(--muted); }

/* =========================================================
   COMBINATIONS
   ========================================================= */
.combos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); }
.combo { background: var(--graphite); padding: clamp(30px,3.4vw,48px); display: flex; align-items: center; gap: 22px; transition: background .4s var(--ease); }
.combo:hover { background: var(--graphite-2); }
.combo .ico { flex-shrink: 0; width: 52px; height: 52px; color: var(--gold); }
.combo .txt h3 { font-size: 1.15rem; color: var(--text-light); letter-spacing: .02em; font-family: var(--sans); font-weight: 400; }
.combo .txt h3 b { color: var(--gold); font-weight: 500; }
.combo .txt p { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* =========================================================
   WHY LIBEA
   ========================================================= */
.why { background: linear-gradient(160deg, var(--graphite) 0%, var(--black) 100%); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,3vw,48px); }
.why__item { text-align: left; padding-top: 26px; border-top: 1px solid var(--line-gold); }
.why__item .ico { width: 36px; height: 36px; color: var(--gold); margin-bottom: 18px; }
.why__item h3 { font-size: 1.3rem; color: var(--text-light); letter-spacing: .03em; margin-bottom: 8px; }
.why__item p { font-size: .9rem; color: var(--muted); }

/* =========================================================
   PROCESS
   ========================================================= */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.4vw,36px); position: relative; }
.step { text-align: center; position: relative; }
.step .circle {
  width: 64px; height: 64px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold); position: relative; background: var(--black);
}
.step h3 { font-size: 1.15rem; color: var(--text-light); letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; margin-bottom: 10px; }
.step p { font-size: .86rem; color: var(--muted); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--black); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,80px); }
.contact__single { display: flex; justify-content: center; text-align: center; }
.contact__single .contact__info { max-width: 560px; width: 100%; }
.contact__single .diamond { margin-inline: auto; }
.contact__single .contact__list { max-width: 380px; margin-inline: auto; }
.contact__single .contact__list a, .contact__single .contact__list .row { justify-content: center; }
.contact__info .eyebrow { display: block; margin-bottom: 16px; }
.contact__info h2 { margin-bottom: 22px; }
.contact__list { margin: 28px 0; }
.contact__list a, .contact__list .row {
  display: flex; align-items: center; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid rgba(201,162,75,.16); color: var(--text-light);
  font-size: .95rem; letter-spacing: .02em; transition: color .3s;
}
.contact__list a:hover { color: var(--gold); }
.contact__list .ico { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact__socials { display: flex; gap: 14px; margin-top: 26px; }
.contact__socials a {
  width: 46px; height: 46px; border: 1px solid var(--line-gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all .4s var(--ease);
}
.contact__socials a:hover { background: var(--gold); color: var(--black); }
.contact__socials .ico { width: 20px; height: 20px; }

/* Form */
.form { background: var(--graphite); border: 1px solid var(--line-gold); padding: clamp(28px,3.4vw,44px); }
.form .field { margin-bottom: 20px; }
.form label { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%; background: transparent; border: 1px solid rgba(201,162,75,.25);
  color: var(--text-light); font-family: var(--sans); font-size: .95rem; font-weight: 300;
  padding: 13px 16px; transition: border-color .3s;
}
.form textarea { resize: vertical; min-height: 110px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form select option { background: var(--graphite); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: .76rem; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.form .consent input { width: auto; margin-top: 3px; accent-color: var(--gold); }
.form .consent a { color: var(--gold); text-decoration: underline; }
.form .btn { width: 100%; justify-content: center; }
.form__note { font-size: .76rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form__status { margin-top: 16px; padding: 14px; text-align: center; font-size: .85rem; display: none; }
.form__status.ok { display: block; background: rgba(201,162,75,.12); border: 1px solid var(--line-gold); color: var(--gold-light); }
.form__status.err { display: block; background: rgba(180,60,60,.12); border: 1px solid rgba(180,60,60,.4); color: #e0a0a0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--graphite); border-top: 1px solid var(--line-gold); padding-block: 56px 28px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand .name { font-size: 1.7rem; }
.footer__col h4 { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family: var(--sans); font-weight: 500; }
.footer__col a, .footer__col p { display: block; font-size: .88rem; color: var(--muted); margin-bottom: 10px; transition: color .3s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(201,162,75,.16); }
.footer__bottom p, .footer__bottom a { font-size: .74rem; color: var(--muted-dark); letter-spacing: .04em; }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 22px; }

/* Floating WhatsApp */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -8px rgba(37,211,102,.6); transition: transform .35s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; color: #fff; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Legal pages
   ========================================================= */
.legal { padding-top: 140px; }
.legal h1 { font-size: clamp(2rem,4vw,3rem); color: var(--gold-light); letter-spacing: .04em; margin-bottom: 30px; }
.legal h2 { font-size: 1.3rem; color: var(--text-light); margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; font-size: .94rem; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal .back { display: inline-block; margin-bottom: 30px; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200; transition: width .1s linear; box-shadow: 0 0 12px rgba(201,162,75,.6);
}

/* =========================================================
   GOLD SHIMMER on headings
   ========================================================= */
.shimmer {
  background: linear-gradient(100deg, var(--text-light) 30%, var(--gold-light) 50%, var(--text-light) 70%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; animation: shimmer 6s linear infinite;
}
.bg-cream .shimmer { background: linear-gradient(100deg, var(--text-dark) 35%, #b08b3a 50%, var(--text-dark) 65%); background-size:200% auto; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
@keyframes shimmer { to { background-position: -200% center; } }

/* Animated diamond divider: line draws in when revealed */
.diamond::before, .diamond::after { transition: width .9s var(--ease) .2s; }
.reveal .diamond::before, .reveal .diamond::after { width: 0; }
.reveal.in .diamond::before, .reveal.in .diamond::after { width: 46px; }

/* =========================================================
   SERVICES — visual cards
   ========================================================= */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.svc-card {
  display: block; position: relative; overflow: hidden; background: var(--graphite);
  border: 1px solid var(--line-gold); cursor: pointer; color: inherit; text-decoration: none;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.svc-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -34px rgba(0,0,0,.9); border-color: var(--gold); }
.svc-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,13,0) 40%, rgba(12,12,13,.75) 100%);
  transition: opacity .6s var(--ease);
}
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02); transition: transform 1.1s var(--ease), filter .6s var(--ease);
  filter: saturate(1.02) contrast(1.02);
}
.svc-card:hover .svc-card__media img { transform: scale(1.1); filter: saturate(1.08) contrast(1.05); }
.svc-card__body { padding: 22px clamp(20px,2vw,28px) 26px; position: relative; }
.svc-card__meta { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.svc-card__body h3 { font-size: 1.4rem; color: var(--text-light); letter-spacing: .03em; margin-bottom: 6px; transition: color .4s; }
.svc-card:hover .svc-card__body h3 { color: var(--gold-light); }
.svc-card__body p { font-size: .88rem; color: var(--muted); }
.svc-card__arrow {
  position: absolute; right: 22px; bottom: 26px; width: 34px; height: 34px;
  border: 1px solid var(--line-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); opacity: 0; transform: translateX(-8px); transition: all .5s var(--ease);
}
.svc-card__arrow svg { width: 16px; height: 16px; }
.svc-card:hover .svc-card__arrow { opacity: 1; transform: translateX(0); background: var(--gold); color: var(--black); border-color: var(--gold); }
.svc-cta { text-align: center; margin-top: clamp(36px,4vw,56px); }

/* =========================================================
   CINEMATIC CTA BAND
   ========================================================= */
.cta-band {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate; padding-block: clamp(80px,10vw,140px);
}
.cta-band__media { position: absolute; inset: -12% 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 124%; object-fit: cover; object-position: center 30%; will-change: transform; }
.cta-band__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,8,9,.92) 0%, rgba(8,8,9,.72) 42%, rgba(8,8,9,.30) 100%),
    radial-gradient(120% 100% at 0% 50%, rgba(8,8,9,.6), transparent);
}
.cta-band__inner { max-width: 620px; }
.cta-band__inner .eyebrow { display: block; margin-bottom: 18px; }
.cta-band__inner h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); color: var(--text-light); letter-spacing: .02em; line-height: 1.06; }
.cta-band__inner h2 em { font-style: italic; color: var(--gold-light); }
.cta-band__inner p { color: var(--muted); font-size: 1.05rem; margin: 22px 0 34px; max-width: 460px; }

/* =========================================================
   FULL-BLEED INTERSTITIAL BANDS
   ========================================================= */
.band {
  position: relative; min-height: 58vh; isolation: isolate; overflow: hidden;
  background-image: var(--img); background-size: cover; background-position: center;
  background-attachment: fixed; background-repeat: no-repeat;
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(12,11,10,.40) 0%, rgba(12,11,10,.26) 45%, rgba(12,11,10,.56) 100%);
}
.band--center { display: flex; align-items: center; justify-content: center; text-align: center; }
.band__quote {
  position: relative; z-index: 1; font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem); line-height: 1.3; color: var(--gold-light);
  max-width: 880px; padding: 0 var(--pad); letter-spacing: .015em;
}

/* =========================================================
   CONTACT — refined card
   ========================================================= */
.contact { background: radial-gradient(120% 80% at 50% 0%, #18171a 0%, var(--black) 60%); }
.contact-card {
  position: relative; max-width: 880px; margin: 0 auto; text-align: center;
  border: 1px solid var(--line-gold); background: linear-gradient(180deg, rgba(27,27,30,.6), rgba(12,12,13,.4));
  padding: clamp(40px,6vw,72px) clamp(24px,5vw,72px) clamp(40px,5vw,60px);
  backdrop-filter: blur(2px);
}
.contact-card::before {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(201,162,75,.18); pointer-events: none;
}
.contact-card__df { width: 98px; height: auto; margin: 0 auto 16px; display: block; animation: float 6s ease-in-out infinite; }
.contact-card .diamond { margin-inline: auto; }
.contact-card .lead { max-width: 520px; margin: 0 auto; }
.contact-card__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 38px 0 34px; }
.contact-tile {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 26px 18px;
  border: 1px solid rgba(201,162,75,.18); background: rgba(20,20,22,.5);
  transition: all .5s var(--ease);
}
.contact-tile:not(.is-static):hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(27,27,30,.8); }
.contact-tile .ico { width: 26px; height: 26px; color: var(--gold); margin-bottom: 8px; }
.contact-tile .k { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.contact-tile .v { font-size: .94rem; color: var(--text-light); }
.contact-card__cta { margin-top: 4px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Image reveal (clip) for media frames */
.about__media .frame img, .svc-card__media img { will-change: transform; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-card__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .prog__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; justify-content: center; align-items: flex-start; gap: 26px; background: var(--graphite); padding: 60px 40px; transform: translateX(100%); transition: transform .5s var(--ease); box-shadow: -20px 0 60px -20px rgba(0,0,0,.7); }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: .9rem; }
  .burger { display: block; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; margin: 0 auto 30px; }
  .services__grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; }
  .prog__grid { grid-template-columns: 1fr; }
  .combos__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact-card__grid { grid-template-columns: 1fr; }
  .cta-band { min-height: 70vh; text-align: center; }
  .cta-band__inner { margin-inline: auto; }
  .cta-band__veil { background: linear-gradient(180deg, rgba(8,8,9,.55) 0%, rgba(8,8,9,.85) 100%); }
  .band { background-attachment: scroll; min-height: 40vh; }
  .band__quote { font-size: clamp(1.3rem, 6vw, 2rem); }
  .form .row2 { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
}
