/* =============================================================
   ORIÓN MED AESTHETICS — "Celestial Quiet Luxury"
   Vanilla CSS · palette tokens · Fraunces + Manrope
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --ivory:    #F6F1EA;
  --ivory-2:  #EFE7DC;   /* subtle alt band */
  --ink:      #1A1613;
  --ink-soft: #2A231E;
  --gold:     #C9A66B;
  --gold-dim: #B8935A;
  --nude:     #E4CFC0;
  --sage:     #3E4B44;
  --muted:    #6B625A;
  --line:     rgba(201, 166, 107, 0.28);  /* gold hairline */
  --line-soft:rgba(26, 22, 19, 0.10);

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --shell: min(1240px, 92vw);
  --radius: 12px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 400; letter-spacing: -0.01em; }
p { margin: 0; }

/* Broken external images degrade to the designed gradient behind them */
img.is-broken { display: none; }

/* ---------- Focus / a11y ---------- */
:focus-visible {
  outline: 2px solid var(--gold-dim);
  outline-offset: 3px;
  border-radius: 3px;
}
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--ink); color: var(--ivory);
  padding: 10px 18px; border-radius: 8px; font-size: 0.85rem;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Placeholder dev overlay (toggle with ?ph) ---------- */
[data-ph] { position: relative; }
body.show-placeholders [data-ph] {
  outline: 2px dashed #ff3b3b;
  outline-offset: 3px;
}
body.show-placeholders [data-ph]::after {
  content: "PLACEHOLDER: " attr(data-ph);
  position: absolute; inset-block-end: 100%; inset-inline-start: 0;
  font: 600 10px/1.4 ui-monospace, monospace;
  background: #ff3b3b; color: #fff; padding: 2px 6px; white-space: nowrap;
  z-index: 99; border-radius: 3px;
}

/* ---------- Reusable ---------- */
.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold-dim);
  margin: 0 0 1.1rem;
}
.eyebrow--light { color: var(--gold); }
.muted { color: var(--muted); }

.section { position: relative; padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section > .grain,
.trust__inner ~ *,
.section__head { position: relative; }
.section > *:not(.grain) { position: relative; z-index: 1; }

.section__head { max-width: var(--shell); margin: 0 auto clamp(2.5rem, 5vw, 4rem); padding: 0 4vw; }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { }
.section__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section__title--light { color: var(--ivory); }
.section__title em, .intro__quote em, .hero__title em {
  font-style: italic;
  font-optical-sizing: auto;
}

/* Film-grain overlay */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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");
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--ff-body); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.95em 1.7em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn--sm { padding: 0.7em 1.3em; font-size: 0.82rem; }
.btn--lg { padding: 1.05em 2em; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* Primary "book" — ink fill, gold edge on hover */
.btn--book {
  background: var(--ink); color: var(--ivory);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(201,166,107,0.0);
}
.btn--book:hover {
  background: var(--ink-soft);
  border-color: var(--gold);
  box-shadow: 0 10px 30px -12px rgba(26,22,19,0.5), inset 0 0 0 1px var(--gold);
  transform: translateY(-2px);
}
.btn--book:active { transform: translateY(0); }

/* Ghost — hairline, transparent */
.btn--ghost {
  background: transparent; color: var(--ivory);
  border-color: rgba(246,241,234,0.55);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(246,241,234,0.06);
  transform: translateY(-2px);
}

/* Dark on light contexts */
.btn--dark {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  transform: translateY(-2px);
}

/* Inline text "book" link */
.link-book {
  background: none; border: 0; padding: 0.2em 0;
  display: inline-flex; align-items: center; gap: 0.5em;
  color: var(--ink); font-weight: 600; font-size: 0.86rem;
  font-family: var(--ff-body);
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--ease), gap .3s var(--ease), border-color .3s var(--ease);
}
.link-book svg { transition: transform .3s var(--ease); }
.link-book:hover { color: var(--gold-dim); gap: 0.8em; border-color: var(--gold-dim); }
.link-book:hover svg { transform: translateX(3px); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: var(--shell); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(0.85rem, 1.6vw, 1.3rem) 0;
}
.nav.is-solid {
  background: rgba(246,241,234,0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(26,22,19,0.4);
}

/* Brand wordmark */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ivory); transition: color .5s var(--ease); }
.nav.is-solid .brand { color: var(--ink); }
.brand__glyph {
  display: inline-block; flex-shrink: 0;
  width: 1.45rem; height: 1.95rem;
  background: var(--gold);
  -webkit-mask: url("assets/logo-o.png") center / contain no-repeat;
  mask: url("assets/logo-o.png") center / contain no-repeat;
  transition: background .5s var(--ease);
}
.nav.is-solid .brand__glyph { background: var(--ink); }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 1.15rem; letter-spacing: 0.24em; padding-left: 0.24em;
}
.brand__accent { color: var(--gold); }
.brand__sub {
  font-family: var(--ff-body); text-transform: uppercase;
  font-size: 0.56rem; letter-spacing: 0.34em; margin-top: 0.35em;
  opacity: 0.8; padding-left: 0.24em;
}

.nav__links { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav__links a {
  color: var(--ivory); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em;
  position: relative; transition: color .4s var(--ease);
}
.nav.is-solid .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav.is-solid .nav__links a:hover { color: var(--gold-dim); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.9rem; }

/* Burger */
.nav__burger {
  display: none; background: none; border: 0; width: 28px; height: 22px;
  position: relative; padding: 0;
}
.nav__burger span {
  position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--ivory);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background .5s var(--ease);
}
.nav.is-solid .nav__burger span { background: var(--ink); }
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 18px; }
body.menu-open .nav__burger span { background: var(--ink); }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  text-align: center; padding: 2rem;
}
.mobile-menu__inner > a {
  font-family: var(--ff-display); font-size: 2rem; color: var(--ink);
  transition: color .3s var(--ease);
}
.mobile-menu__inner > a:hover { color: var(--gold-dim); }
.mobile-menu__meta { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; color: var(--muted); font-size: 0.9rem; }
.mobile-menu__meta a:hover { color: var(--gold-dim); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
  background: linear-gradient(120deg, #241d18 0%, #3a2c22 55%, #2c231c 100%);
}
.hero__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__img {
  width: 100%; height: 118%; object-fit: cover; object-position: center 35%;
  filter: saturate(0.92) contrast(1.02);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,16,13,0.86) 0%, rgba(20,16,13,0.55) 42%, rgba(20,16,13,0.15) 78%, rgba(20,16,13,0.35) 100%),
    linear-gradient(0deg, rgba(20,16,13,0.7) 0%, rgba(20,16,13,0) 45%);
}

.constellation__lines path { opacity: 0.5; }
.star--major { filter: drop-shadow(0 0 4px rgba(201,166,107,0.7)); }
.star--twinkle { transform-box: fill-box; transform-origin: center; animation: twinkle 3.6s var(--ease) infinite; }
@keyframes twinkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; filter: drop-shadow(0 0 6px rgba(201,166,107,0.9)); }
}

.hero__content {
  position: relative; z-index: 2;
  width: var(--shell); margin: 0 auto;
  padding-bottom: clamp(4rem, 10vh, 7rem); padding-top: 8rem;
  max-width: 100%;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.98; letter-spacing: -0.025em;
  max-width: 14ch; margin: 0 0 1.5rem;
  font-weight: 300;
}
.hero__title em { color: var(--gold); font-weight: 400; }
.hero__sub {
  max-width: 46ch; font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(246,241,234,0.86); margin-bottom: 2.4rem; line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; z-index: 2; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(246,241,234,0.7); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.25em;
}
.hero__scroll-dot { animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(8px); opacity: 0; } 100% { opacity: 0; } }

/* =============================================================
   INTRO
   ============================================================= */
.intro { background: var(--ivory); }
.intro__grid {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.intro__quote {
  font-size: clamp(1.7rem, 3.2vw, 2.9rem); line-height: 1.16; letter-spacing: -0.015em;
  font-weight: 300;
}
.intro__quote em { color: var(--gold-dim); }
.intro__body { padding-top: 0.4rem; }
.intro__body p { color: var(--muted); margin-bottom: 1.2rem; }
.intro__body strong { color: var(--ink); font-weight: 600; }
.intro__assurances {
  list-style: none; padding: 1.4rem 0 0; margin: 1rem 0 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.01em;
}
.intro__assurances li { display: inline-flex; align-items: center; gap: 0.55rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* =============================================================
   TREATMENTS
   ============================================================= */
.treatments { background: var(--ivory-2); }
.pillars {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem);
}
.pillar {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(26,22,19,0.4);
  border-color: var(--gold);
}
.pillar__num {
  font-family: var(--ff-display); font-size: 0.95rem; color: var(--gold-dim);
  letter-spacing: 0.1em; margin-bottom: 1rem;
}
.pillar__title { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: 0.6rem; }
.pillar__desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.4rem; }
.pillar__list {
  list-style: none; padding: 1.3rem 0 0; margin: auto 0 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 0.55rem;
  font-size: 0.94rem;
}
.pillar__list li { position: relative; padding-left: 1.1rem; }
.pillar__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); opacity: 0.75;
}
.pillar__list li .muted { font-size: 0.85rem; }

/* Signature strip */
.signature { width: var(--shell); margin: clamp(3.5rem, 7vw, 6rem) auto 0; }
.signature__head { margin-bottom: 2rem; }
.signature__title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.sig-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.sig-card {
  border-radius: var(--radius); overflow: hidden; background: var(--ivory);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.sig-card__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  /* Gradient shows through if the external photo fails to load */
  background: linear-gradient(160deg, var(--nude) 0%, #d8bfa9 50%, var(--sage) 130%);
}
.sig-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,19,0) 45%, rgba(26,22,19,0.32) 100%);
  opacity: 0; transition: opacity .6s var(--ease); z-index: 1;
}
.sig-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.sig-card:hover .sig-card__media img { transform: scale(1.06); }
.sig-card:hover .sig-card__media::after { opacity: 1; }
.sig-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sig-card__body h4 { font-family: var(--ff-display); font-size: 1.3rem; }
.sig-card__body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.6rem; }
.sig-card__body .link-book { margin-top: auto; align-self: flex-start; }

/* =============================================================
   SPECIALIST
   ============================================================= */
.specialist { background: var(--ivory); }
.specialist__grid {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.portrait { margin: 0; }
.portrait__frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(201,166,107,0.25), transparent 55%),
    linear-gradient(150deg, var(--nude) 0%, #d9c1ad 45%, var(--sage) 130%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.portrait__monogram {
  font-family: var(--ff-display); font-weight: 300; font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.1em; color: rgba(26,22,19,0.55); position: relative; z-index: 2;
}
.portrait__constellation {
  position: absolute; inset: 0; margin: auto; width: 60%; height: 70%;
  color: rgba(246,241,234,0.55); z-index: 1;
}
.portrait__cap {
  margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.specialist__name { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.05; margin-bottom: 0.3rem; }
.specialist__role {
  color: var(--gold-dim); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.4rem;
}
.specialist__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.chips { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.5em 1em; border-radius: 100px;
  border: 1px solid var(--line); color: var(--ink);
  background: linear-gradient(var(--ivory), var(--ivory)) padding-box;
}

/* =============================================================
   TRUST BAND (dark)
   ============================================================= */
.trust {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--ivory);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.trust__constellation {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  height: 130%; width: auto; color: var(--gold); opacity: 0.16; pointer-events: none;
}
.trust__inner { position: relative; z-index: 1; width: var(--shell); margin: 0 auto; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem);
}
.trust__item { text-align: center; padding: 0 0.5rem; }
.trust__icon {
  display: inline-flex; width: 54px; height: 54px; margin-bottom: 1.1rem;
  align-items: center; justify-content: center;
  color: var(--gold); border: 1px solid var(--line); border-radius: 50%;
}
.trust__icon svg { width: 30px; height: 30px; }
.trust__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--ivory); }
.trust__item p { color: rgba(246,241,234,0.62); font-size: 0.88rem; line-height: 1.55; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { background: var(--ivory-2); }
.testi-grid {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem);
}
.testi {
  position: relative; margin: 0; background: var(--ivory);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 1.8rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.3rem;
}
.testi__mark {
  font-family: var(--ff-display); font-size: 3.4rem; line-height: 0.5; color: var(--gold);
  opacity: 0.75; height: 0.4em;
}
.testi blockquote {
  margin: 0; font-family: var(--ff-display); font-weight: 300;
  font-size: 1.12rem; line-height: 1.45; color: var(--ink); font-style: italic;
}
.testi figcaption { display: flex; flex-direction: column; gap: 0.15rem; margin-top: auto; }
.testi__name { font-weight: 600; font-size: 0.9rem; }
.testi__meta { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-dim); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { background: var(--ivory); }
.contact__grid {
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}
.contact__lede { color: var(--muted); margin: 0.4rem 0 2rem; max-width: 40ch; }
.contact__cta {
  margin-bottom: 2.4rem;
  width: 100%; max-width: 22rem;
  box-shadow: 0 14px 32px -18px rgba(26,22,19,0.55);
}
.contact__list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; }
.contact__list li {
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; align-items: baseline;
  padding: 0.95rem 0; border-top: 1px solid var(--line-soft);
}
.contact__list li:last-child { border-bottom: 1px solid var(--line-soft); }
.contact__label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: var(--gold-dim);
}
.contact__value { color: var(--ink); font-weight: 500; transition: color .3s var(--ease); }
a.contact__value:hover { color: var(--gold-dim); }

.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.socials a:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); transform: translateY(-2px); }

.contact__side {
  display: flex; flex-direction: column; gap: 1rem;
  height: 100%;
}
.contact__map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  flex: 1; min-height: 420px; background: var(--ivory-2);
  box-shadow: 0 18px 40px -28px rgba(26,22,19,0.45);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
.contact__directions {
  display: inline-flex; align-items: center; gap: 0.55em; align-self: flex-start;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); border-bottom: 1px solid var(--line);
  padding-bottom: 0.15em; transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.contact__directions svg { transition: transform .3s var(--ease); }
.contact__directions:hover { color: var(--gold-dim); border-color: var(--gold-dim); gap: 0.8em; }
.contact__directions:hover svg { transform: translateX(3px); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--ivory);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem;
}
.footer__constellation {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(600px, 80%); height: auto; color: var(--gold); opacity: 0.14;
  pointer-events: none;
}
.footer__inner {
  position: relative; z-index: 1; width: var(--shell); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246,241,234,0.12);
}
.brand--footer { color: var(--ivory); }
.brand--footer .brand__name { color: var(--ivory); }
.brand--footer .brand__sub { color: rgba(246,241,234,0.7); }
.footer__tag { color: var(--gold); font-family: var(--ff-display); font-style: italic; font-size: 1.05rem; margin-top: 0.8rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.9rem; }
.footer__links a { color: rgba(246,241,234,0.8); transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: 0.7rem; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(246,241,234,0.2);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ivory);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.footer__socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer__bar {
  position: relative; z-index: 1; width: var(--shell); margin: 1.6rem auto 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: space-between;
  font-size: 0.76rem; color: rgba(246,241,234,0.55);
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: 1fr; }
  .sig-cards { grid-template-columns: 1fr 1fr; }
  .specialist__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait { max-width: 440px; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; aspect-ratio: 16 / 10; flex: none; }
}

@media (max-width: 760px) {
  .nav__links, .nav__actions .btn--book { display: none; }
  .nav__burger { display: block; }
  .sig-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact__list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .contact__cta { max-width: none; }
}

@media (max-width: 420px) {
  .trust__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}

/* Larger screens: cap the shell nicely */
@media (min-width: 1600px) {
  :root { --shell: 1360px; }
}

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