/* =====================================================
   Addison Aesthetic — styles.css
   Palette: cream / champagne / near-black
   Type: Cormorant Garamond (display) + Jost (sans)
   ===================================================== */

:root {
  --cream:        #f5f0e8;
  --cream-2:      #ede5d6;
  --cream-3:      #e8dcc6;
  --ink:          #1a1714;
  --ink-2:        #2a2520;
  --ink-soft:     #3a342e;
  --gold:         #b8965a;
  --gold-deep:    #9a7c46;
  --gold-soft:    #c9b08a;
  --line:         rgba(26,23,20,0.12);
  --line-dark:    rgba(245,240,232,0.12);
  --muted:        rgba(26,23,20,0.55);
  --muted-dark:   rgba(245,240,232,0.55);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPE ============ */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.02;
  font-size: clamp(48px, 7.5vw, 112px);
  margin: 0;
  text-wrap: pretty;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.display--md { font-size: clamp(38px, 5.4vw, 80px); }
.display--sm { font-size: clamp(28px, 3.4vw, 48px); }
.display--light { color: var(--cream); }
.display--light em { color: var(--gold-soft); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold-on-dark { color: var(--gold-soft); }
.eyebrow__line {
  width: 40px; height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 22px var(--pad);
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding .35s ease, background .35s ease;
}
.nav.is-scrolled { padding: 14px var(--pad); }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  margin-top: 4px;
  color: var(--muted);
}
.nav__links {
  justify-self: end;
  display: flex;
  gap: clamp(18px, 3vw, 56px);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__toggle { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--cream); }
.btn--solid:hover { background: var(--ink-2); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--gold {
  background: var(--gold);
  color: var(--cream);
  padding: 22px 40px;
  letter-spacing: 0.24em;
}
.btn--gold:hover { background: var(--gold-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 18px;
}
.btn--ghost:hover { color: var(--gold); }
.btn--sm { padding: 12px 22px; }

/* ============ LAYOUT ============ */
section { padding: clamp(56px, 7vw, 110px) var(--pad); }
.section__intro { max-width: var(--max); margin: 0 auto clamp(32px, 4.5vw, 64px); }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  min-height: 11vh;
  padding-top: clamp(80px, 7vw, 96px);
  padding-bottom: clamp(8px, 1.2vw, 16px);
  align-items: center;
}
.hero__left { max-width: 760px; }
.hero__lede {
  max-width: 460px;
  margin: 10px 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__right { height: 100%; min-height: 140px; }
.hero__location {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 140px;
  width: 100%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__location img {
  width: auto;
  max-width: 70%;
  max-height: 90%;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero__carousel {
  position: relative;
  height: 100%;
  min-height: 560px;
  width: 100%;
}
.hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4,.0,.2,1);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  /* feather the image into the cream background */
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 40%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.4) 80%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 40%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.4) 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  filter: saturate(0.92) contrast(0.98);
}
/* warm tonal wash so the image sits in the palette */
.hero__carousel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 45%, rgba(184,150,90,0.10), transparent 70%),
    linear-gradient(180deg, rgba(245,240,232,0.0) 60%, rgba(245,240,232,0.45));
  pointer-events: none;
  z-index: 2;
}
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero__dots button {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(26,23,20,0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.hero__dots button.is-active { background: var(--gold); transform: scale(1.25); }
.hero__est {
  position: absolute;
  right: 24px; top: 24px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(26,23,20,0.55);
  z-index: 3;
}
.hero__location .hero__est,
.hero__location .hero__monogram { z-index: 3; }
.strip {
  position: relative;
  width: 100%;
  background: var(--cream-2);
  overflow: hidden;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee__slide {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(280px, 26vw, 440px);
  padding: 0 6px;
}
.marquee__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
.strip__track {
  position: relative;
  width: 100%;
  aspect-ratio: 1376 / 540;
}
.strip__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.strip__slide.is-active { opacity: 1; pointer-events: auto; }
.strip__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.strip__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.strip__dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.strip__dots button.is-active { background: var(--gold); transform: scale(1.25); }
.hero__monogram {
  position: absolute;
  right: 24px; bottom: 56px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--ink);
  opacity: 0.45;
  z-index: 3;
}

/* ============ PHILOSOPHY ============ */
.philosophy { background: var(--ink); color: var(--cream); }
.philosophy .display { color: var(--cream); }
.philosophy .display em { color: var(--gold-soft); }
.philosophy__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
}
.philosophy__copy p {
  color: rgba(245,240,232,0.78);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 460px;
}
.principles { list-style: none; padding: 0; margin: 0; }
.principles__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.principles__item:last-child { border-bottom: 1px solid var(--line-dark); }
.principles__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted-dark);
  padding-top: 4px;
}
.principles__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 8px;
  color: var(--cream);
}
.principles__item p {
  margin: 0;
  color: rgba(245,240,232,0.62);
  font-size: 14px;
}

/* ============ QUOTE ============ */
.quote {
  background: var(--cream-2);
  text-align: center;
  padding: clamp(70px, 8vw, 130px) var(--pad);
}
.quote blockquote {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
}
.quote blockquote .g { color: var(--gold); font-style: italic; }
.quote blockquote p { margin: 0 0 32px; text-wrap: balance; }
.quote blockquote footer {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.quote__rule { width: 24px; height: 1px; background: currentColor; opacity: 0.5; }

/* ============ TREATMENTS ============ */
.section__intro--treatments { max-width: var(--max); margin: 0 auto clamp(40px, 5vw, 64px); }
.treatments__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.treatments__lede {
  max-width: 460px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.tabs {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tab {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
  position: relative;
}
.tab:last-child { border-right: 0; }
.tab:hover { color: var(--ink); }
.tab.is-active {
  color: var(--ink);
  background: var(--cream-2);
}
.tab.is-active::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: -1px;
  height: 2px;
  background: var(--gold);
}
.tab-panels { max-width: var(--max); margin: 0 auto; position: relative; }
.tab-panel {
  display: none;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 120px);
  animation: fadein .5s ease;
}
.tab-panel.is-active { display: grid; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cat-side { padding-top: 8px; }
.cat-side__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 24px;
}
.cat-side__title em { font-style: italic; color: var(--gold); }
.cat-side p { color: var(--ink-soft); font-size: 15px; max-width: 360px; line-height: 1.75; }
.menu { list-style: none; padding: 0; margin: 0; }
.menu li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.menu li:last-child { border-bottom: 1px solid var(--line); }
.menu__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  padding-top: 4px;
}
.menu h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin: 0 0 8px;
}
.menu p { margin: 0; color: var(--ink-soft); font-size: 14.5px; max-width: 560px; }

/* ============ STUDIO ============ */
.studio { background: var(--cream); }
.studio__head { max-width: var(--max); margin: 0 auto clamp(28px, 4vw, 56px); }
.studio__row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.ig-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  font-style: italic;
  font-family: var(--serif);
}
.ig-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 0 var(--pad);
  margin: 0 calc(-1 * var(--pad));
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery::-webkit-scrollbar { height: 4px; }
.gallery::-webkit-scrollbar-thumb { background: var(--line); }
.gtile {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}
.gtile figcaption {
  position: absolute;
  left: 18px; bottom: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(245,240,232,0.92);
  display: flex; align-items: center; gap: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.gtile figcaption::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  background: var(--gold);
  opacity: 0.85;
}
.gtile--a { background: linear-gradient(155deg, var(--cream-3), var(--gold-soft) 70%, var(--gold)); }
.gtile--b { background: linear-gradient(180deg, #f6efe2, var(--gold-soft) 80%, #b8975f); }
.gtile--c { background: linear-gradient(200deg, #2a2520 10%, #5a4a36 60%, #8a6e44); }
.gtile--d { background: linear-gradient(135deg, var(--gold-soft), #6b5238 70%, #1a1714); }
.gtile--e { background: linear-gradient(170deg, #efe6d4, #cdb78e 80%); }
.gtile--f { background: linear-gradient(210deg, #1a1714 30%, #3a2f24 70%, var(--gold-deep)); }
.studio__note {
  max-width: var(--max);
  margin: 28px auto 0;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ============ FOUNDER ============ */
.founder {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(36px, 4vw, 64px);
  padding-bottom: clamp(36px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.founder__plate {
  aspect-ratio: 4 / 2.5;
  background: linear-gradient(165deg, #2a241d, #5a4636 50%, #8a6e44);
  position: relative;
  overflow: hidden;
}
.founder__plate img {
  width: auto;
  height: 100%;
  max-width: 70%;
  max-height: 95%;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(0.1) contrast(1.02);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 8%, #000 22%, #000 78%, rgba(0,0,0,0.4) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 6%, #000 18%, #000 82%, rgba(0,0,0,0.5) 94%, transparent 100%);
          mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 8%, #000 22%, #000 78%, rgba(0,0,0,0.4) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 6%, #000 18%, #000 82%, rgba(0,0,0,0.5) 94%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.founder__plate {
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__plate {
  background: transparent !important;
}
.founder__plate::after { display: none; }
.founder__copy { max-width: 560px; }
.founder__copy p {
  color: rgba(245,240,232,0.78);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 18px;
}
.founder__close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-soft) !important;
  margin-top: 24px !important;
}

/* ============ BOOK ============ */
.book { background: var(--cream); text-align: center; }
.book__intro { max-width: 760px; margin: 0 auto clamp(32px, 4vw, 56px); }
.book__lede { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 540px; margin: 24px auto 0; }
.book__panel {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(36px, 5vw, 72px) clamp(32px, 5vw, 80px);
  text-align: left;
  overflow: hidden;
}
.book__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 clamp(28px, 4vw, 52px);
}
.book__meta dt {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.book__meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
}
.book__rule { width: 80px; height: 1px; background: var(--gold); margin-bottom: 32px; opacity: 0.7; }
.book__cta { max-width: 720px; }
.book__cta h3 { margin: 0 0 18px; }
.book__cta > p {
  color: rgba(245,240,232,0.7);
  font-size: 15px;
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
}
.book__alt {
  margin: 28px 0 0;
  font-size: 13px;
  color: rgba(245,240,232,0.55);
}
.book__alt a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201,176,138,0.5);
  padding-bottom: 2px;
}
.book__alt a:hover { color: var(--gold); border-color: var(--gold); }
.book__monogram {
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(220px, 28vw, 380px);
  color: rgba(245,240,232,0.04);
  pointer-events: none;
  line-height: 1;
}

/* ============ CONTACT / FOOTER ============ */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 110px) var(--pad) 28px;
}
.contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}
.contact__location {
  margin: 0;
  background: var(--cream-2);
  padding: 18px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__location img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: sepia(0.08);
}
.contact__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft);
  margin: 0 0 16px;
}
.contact__col p {
  color: rgba(245,240,232,0.78);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 300;
}
.contact__col p.muted, .contact__lede { color: rgba(245,240,232,0.55); font-style: italic; font-size: 13.5px; }
.contact__col a { transition: color .2s ease; }
.contact__col a:hover { color: var(--gold); }
.addr-link {
  display: inline-block;
  color: rgba(245,240,232,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,240,232,0.18);
  padding-bottom: 4px;
  line-height: 1.7;
}
.addr-link span { color: var(--gold); margin-left: 4px; font-size: 11px; }
.addr-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.contact__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold-soft);
}
.contact__legal { display: inline-flex; gap: 10px; align-items: center; }
.contact__legal a:hover { color: var(--gold); }

/* ============ COOKIE ============ */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 18px 24px;
  max-width: 720px;
  margin: 0 auto;
  display: block;
}
.cookie[hidden] { display: none; }
.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie__inner p { margin: 0; font-size: 13px; color: rgba(245,240,232,0.8); max-width: 480px; }
.cookie__inner a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,176,138,0.4); }
.cookie__actions { display: flex; gap: 8px; }
.cookie .btn--ghost { color: var(--cream); }
.cookie .btn--solid { background: var(--gold); }
.cookie .btn--solid:hover { background: var(--gold-deep); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero__right { min-height: 420px; }
  .hero__location { min-height: 380px; }
  .hero__carousel { min-height: 420px; }
  .philosophy__grid, .treatments__head, .founder, .contact__grid, .tab-panel {
    grid-template-columns: 1fr;
  }
  .contact__location { max-width: 360px; margin: 0 auto; }
  .tabs { grid-template-columns: repeat(3, 1fr); }
  .tab { border-bottom: 1px solid var(--line); }
  .tab:nth-child(3n) { border-right: 0; }
  .book__meta { grid-template-columns: 1fr; gap: 28px; }
  .nav__links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 24px var(--pad); border-bottom: 1px solid var(--line); }
  .nav__links.is-open { display: flex; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: transparent; border: 0; cursor: pointer; padding: 8px;
    justify-self: end;
  }
  .nav__toggle span { width: 22px; height: 1.5px; background: var(--ink); }
  .contact__base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .display { font-size: clamp(40px, 11vw, 64px); }
  .display--md { font-size: clamp(32px, 9vw, 48px); }
  .quote blockquote { font-size: clamp(22px, 6vw, 32px); }
  .principles__item, .menu li { grid-template-columns: 50px 1fr; gap: 12px; }
  .tabs { grid-template-columns: repeat(2, 1fr); }
  .tab:nth-child(3n) { border-right: 1px solid var(--line); }
  .tab:nth-child(2n) { border-right: 0; }
}
