/* ═══════════════════════════════════════════════
   Mary's Cocktails · evolved black & gold
   ═══════════════════════════════════════════════ */

:root {
  --ink: #0B0A08;
  --ink-2: #131109;
  --surface: #171410;
  --gold: #C9A24B;
  --gold-bright: #E8CE8C;
  --cream: #F4EFE4;
  --muted: #A89E8E;
  --hairline: rgba(201, 162, 75, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain for cinematic depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* ── Typography helpers ─────────────────────── */
.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.label--center { text-align: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.section__title em,
.hero__title em,
.contact__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
  /* gold underline that draws itself in when the heading reveals */
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 94%;
  background-size: 0% 1.5px;
  transition: background-size 0.9s var(--ease) 0.45s;
}
.reveal.is-visible .section__title em,
.section__title.is-visible em,
.reveal.is-visible em { background-size: 100% 1.5px; }

.section__body {
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.25rem;
}
.section__body--narrow { margin-inline: auto; text-align: center; }

/* ── Buttons ────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2.1rem;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn svg { width: 17px; height: 17px; flex: none; }
/* light sweep across the button on hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -140%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn:hover::after { animation: sweep 0.85s var(--ease); }
@keyframes sweep { from { left: -140%; } to { left: 160%; } }
.btn--gold {
  background: linear-gradient(120deg, #B8913C, #DDBE72 55%, #B8913C);
  color: #171204;
  box-shadow: 0 8px 28px -10px rgba(201, 162, 75, 0.55);
}
.btn--gold:hover { box-shadow: 0 12px 34px -8px rgba(222, 190, 114, 0.65); transform: translateY(-2px); }
.btn--outline { border-color: var(--hairline); color: var(--gold-bright); }
.btn--outline:hover { border-color: var(--gold); background: rgba(201, 162, 75, 0.08); }
.btn--ghost { border-color: rgba(244, 239, 228, 0.18); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.7rem; }
.btn--lg { padding: 1.15rem 2.4rem; }

/* ── Nav ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--nav-h);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 68px;
  background: rgba(11, 10, 8, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(201, 162, 75, 0.14);
}
.nav__logo img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.nav.is-scrolled .nav__logo img { height: 38px; }

.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  padding: 0.4rem 0;
}
.nav__links a:hover { color: var(--gold-bright); }

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

.lang-toggle {
  background: none;
  border: 1px solid rgba(244, 239, 228, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  transition: border-color 0.2s;
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-toggle i { font-style: normal; opacity: 0.35; }
.lang-toggle span.is-active { color: var(--gold-bright); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 10px 6px;
}
.nav__burger span {
  width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  overflow: clip;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 3.5rem) 4.5rem;
  background:
    radial-gradient(ellipse 60% 45% at 78% 55%, rgba(201, 162, 75, 0.09), transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 12%, rgba(201, 162, 75, 0.05), transparent 60%),
    var(--ink);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 1.9rem;
}
.hero__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 44ch;
  margin-bottom: 2.6rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 240px 240px 18px 18px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  padding: 12px;
  background: rgba(201, 162, 75, 0.04);
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% center;
  border-radius: 228px 228px 10px 10px;
  background: #0b0a08;
  animation: drinkFloat 7s var(--ease) infinite;
}
@keyframes drinkFloat {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50%      { transform: translateY(-14px) rotate(0.6deg); }
}

/* rising bubbles inside the hero frame */
.bubbles {
  position: absolute;
  inset: 12px;
  border-radius: 228px 228px 10px 10px;
  overflow: hidden;
  pointer-events: none;
}
.bubbles i {
  position: absolute;
  bottom: -8%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 244, 214, 0.9), rgba(201, 162, 75, 0.35) 60%, transparent 72%);
  opacity: 0;
  animation: rise var(--dur, 7s) linear var(--delay, 0s) infinite;
}
.bubbles i:nth-child(1) { left: 18%; --dur: 8s; --delay: 0s; width: 7px; height: 7px; }
.bubbles i:nth-child(2) { left: 30%; --dur: 6.5s; --delay: 1.2s; }
.bubbles i:nth-child(3) { left: 42%; --dur: 9s; --delay: 2.4s; width: 6px; height: 6px; }
.bubbles i:nth-child(4) { left: 52%; --dur: 7s; --delay: 0.6s; width: 11px; height: 11px; }
.bubbles i:nth-child(5) { left: 60%; --dur: 8.5s; --delay: 3s; }
.bubbles i:nth-child(6) { left: 68%; --dur: 6s; --delay: 1.8s; width: 7px; height: 7px; }
.bubbles i:nth-child(7) { left: 76%; --dur: 9.5s; --delay: 2s; }
.bubbles i:nth-child(8) { left: 38%; --dur: 7.5s; --delay: 4s; width: 5px; height: 5px; }
.bubbles i:nth-child(9) { left: 84%; --dur: 8s; --delay: 3.6s; width: 6px; height: 6px; }
@keyframes rise {
  0%   { transform: translateY(0) scale(0.7); opacity: 0; }
  12%  { opacity: 0.8; }
  70%  { opacity: 0.7; }
  100% { transform: translateY(-115%) scale(1.05); opacity: 0; }
}
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee ────────────────────────────────── */
.marquee {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 1.35rem 0;
  background: var(--ink-2);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-bright);
  white-space: nowrap;
}
.marquee__track b { color: var(--gold); font-size: 0.7rem; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ───────────────────────────────── */
.section { padding: clamp(6rem, 11vw, 10rem) clamp(1.25rem, 4vw, 3.5rem); }
.section--surface {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 162, 75, 0.06), transparent 60%),
    var(--ink-2);
  border-top: 1px solid rgba(201, 162, 75, 0.1);
  border-bottom: 1px solid rgba(201, 162, 75, 0.1);
}
.section__inner { max-width: 1280px; margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__text { order: 1; }

/* mobile bar collage: staggered columns, no overlap */
.media-stack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
  align-items: start;
}
.media-stack__main {
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.media-stack__accent {
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  margin-top: 4.5rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

.features { list-style: none; margin: 2.4rem 0 2.8rem; display: grid; gap: 1.8rem; }
.features li { display: flex; gap: 1.25rem; align-items: flex-start; }
.features svg {
  width: 26px; height: 26px;
  flex: none;
  color: var(--gold);
  margin-top: 0.2rem;
}
.features h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.features p { color: var(--muted); font-size: 0.95rem; }

/* ── Gallery strip ──────────────────────────── */
.gallery { padding: clamp(5rem, 9vw, 8rem) 0; }
.gallery .label { padding: 0 clamp(1.25rem, 4vw, 3.5rem); margin-bottom: 2.5rem; }
.gallery__strip {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.5rem clamp(1.25rem, 4vw, 3.5rem) 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery__strip::-webkit-scrollbar { display: none; }
.gallery__strip:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.gallery__strip figure {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
}
.gallery__strip img {
  height: clamp(300px, 42vw, 460px);
  width: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92);
}
.gallery__strip figure:hover img { transform: scale(1.04); filter: saturate(1.05); }

/* ── Course cards ───────────────────────────── */
.courses__head { text-align: center; max-width: 760px; margin: 0 auto 4rem; }
.courses__head .section__title { margin-inline: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  perspective: 1100px;
}
.card {
  position: relative;
  background: rgba(244, 239, 228, 0.025);
  border: 1px solid rgba(201, 162, 75, 0.14);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  border-color: rgba(201, 162, 75, 0.45);
  background: rgba(244, 239, 228, 0.045);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.card--featured { border-color: rgba(201, 162, 75, 0.5); }
.card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  background: linear-gradient(120deg, #B8913C, #DDBE72);
  color: #171204;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__img img { transform: scale(1.05); }
.card__body {
  padding: 1.6rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.65rem;
  margin-bottom: 0.3rem;
}
.card__cap { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.card__body ul { list-style: none; display: grid; gap: 0.45rem; margin-bottom: 1.4rem; }
.card__body li {
  color: var(--muted);
  font-size: 0.88rem;
  padding-left: 1.1rem;
  position: relative;
}
.card__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-top: auto;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}
.card__price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}
/* higher specificity than ".card__price span" above, so the animated number
   keeps the big price styling instead of the small suffix-note styling */
.card__price .card__price-num {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: normal;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.card__excl {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(168, 158, 142, 0.75);
  margin-bottom: 1.2rem;
}
.card__excl::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
  vertical-align: middle;
}
.card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  padding-top: 1.2rem;
  transition: color 0.2s, letter-spacing 0.3s var(--ease);
}
.card__link:hover { color: var(--cream); letter-spacing: 0.3em; }
.courses__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2.8rem;
}

/* ── Mary ───────────────────────────────────── */
.portrait-frame {
  border-radius: 240px 240px 16px 16px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  padding: 12px;
  background: rgba(201, 162, 75, 0.04);
  max-width: 480px;
  margin-left: auto;
}
.portrait-frame img {
  border-radius: 228px 228px 8px 8px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.mary-ps {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.2rem 0;
}
.mary-ps p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--cream);
}
.mary-ps cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.mary-social { display: flex; gap: 1.8rem; }
.mary-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.mary-social a:hover { color: var(--gold-bright); }
.mary-social svg { width: 19px; height: 19px; }

/* ── Reviews ────────────────────────────────── */
.reviews__head { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.reviews__head .section__title { margin-inline: auto; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.03);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.google-badge:hover { border-color: rgba(201, 162, 75, 0.5); background: rgba(244, 239, 228, 0.06); }
.google-badge__rate { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--cream); }
.google-badge__count { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.03em; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.review {
  background: rgba(244, 239, 228, 0.025);
  border: 1px solid rgba(201, 162, 75, 0.14);
  border-radius: 16px;
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review:hover {
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.8);
}
.review__top { display: flex; align-items: center; gap: 0.85rem; }
.review__avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c, var(--gold));
  color: #171204;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.review__who { display: flex; flex-direction: column; gap: 0.15rem; }
.review__name { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.review__src { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; color: var(--muted); }
.review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--cream);
}
.review blockquote::before { content: "“"; color: var(--gold); margin-right: 0.1em; }
.reviews .btn { display: flex; width: max-content; margin: 0 auto; }

/* ── Contact ────────────────────────────────── */
.contact {
  position: relative;
  padding: clamp(7rem, 13vw, 11rem) clamp(1.25rem, 4vw, 3.5rem);
  text-align: center;
  overflow: hidden;
  background-color: var(--ink);
  border-top: 1px solid rgba(201, 162, 75, 0.1);
}
/* subtle warm glow on pure black: a calm backdrop, no image box */
.contact__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 62% 55% at 50% 42%, rgba(201, 162, 75, 0.10), transparent 68%),
    radial-gradient(ellipse 90% 60% at 50% 120%, rgba(201, 162, 75, 0.06), transparent 70%);
  pointer-events: none;
}
.contact__inner { position: relative; z-index: 2; }
.contact__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  line-height: 1.04;
  margin-bottom: 1.6rem;
}
.contact__body {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 3rem;
}
.contact__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.contact__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.contact__loc svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* ── Footer ─────────────────────────────────── */
.footer {
  padding: 4rem clamp(1.25rem, 4vw, 3.5rem) 3rem;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 75, 0.1);
}
.footer__logo { height: 54px; width: auto; margin: 0 auto 2rem; opacity: 0.9; }
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer__nav a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold-bright); }
.footer__social { display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 2.2rem; }
.footer__social a { color: var(--muted); transition: color 0.2s; }
.footer__social a:hover { color: var(--gold-bright); }
.footer__social svg { width: 20px; height: 20px; }
.footer__legal { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; }

/* ── Reveal animation ───────────────────────── */
/* Hidden only when JS is confirmed running (html.js), so no-JS visitors still see all copy. */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Skip link, visible only on keyboard focus */
.skip {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease);
}
.skip:focus-visible { transform: none; outline: 2px solid var(--cream); outline-offset: 2px; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; margin-bottom: 3rem; }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(78vw, 340px);
    background: rgba(11, 10, 8, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--hairline);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2.6rem;
    gap: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
    z-index: 49;
  }
  .nav__links.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .nav__links a { font-size: 1rem; }
  .nav__burger { display: flex; z-index: 51; }
  .nav__cta { display: none; }

  .hero { padding-bottom: 6rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__media { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero__scroll { display: none; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 1; }
  .split--reverse .split__text { order: 2; }
  .portrait-frame { margin: 0 auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; justify-content: center; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .media-stack { padding-right: 1.5rem; }
}

/* ── Reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .hero__scroll i { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
