/* ==========================================================================
   Simply Models KZN — Editorial Luxe
   ========================================================================== */

/* Tokens
   ------------------------------------------------------------------------- */
:root {
  --ink: #0E0E0E;
  --ink-soft: #1B1816;
  --cream: #F5F1EA;
  --cream-deep: #EBE3D5;
  --paper: #FBF8F2;
  --gold: #C9A961;
  --gold-deep: #A98842;
  --gold-soft: #E8D9B7;
  --rose: #D4A5A5;
  --rose-deep: #B07F7F;
  --taupe: #A39383;
  --line: rgba(14, 14, 14, 0.12);
  --line-light: rgba(14, 14, 14, 0.06);
  --line-dark: rgba(245, 241, 234, 0.18);

  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1280px;
  --gutter-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 11vw, 144px);

  --radius: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 4px 14px rgba(14, 14, 14, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 14, 14, 0.10);
  --shadow-lg: 0 30px 80px rgba(14, 14, 14, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, address { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font: inherit; color: inherit; }

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

[hidden] { display: none !important; }

/* Base
   ------------------------------------------------------------------------- */
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 10000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--gold-deep); }

p { color: rgba(14, 14, 14, 0.78); }
p a { color: var(--gold-deep); border-bottom: 1px solid currentColor; transition: color .25s var(--ease); }
p a:hover { color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.eyebrow--gold { color: var(--gold-deep); }

.section-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 28px;
}

/* Layout
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter-x);
  margin-inline: auto;
}

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }

/* Buttons
   ------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn::after {
  content: "→";
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  transition: transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  --btn-bd: var(--gold);
}
.btn--gold:hover { --btn-bg: var(--gold-deep); --btn-bd: var(--gold-deep); --btn-fg: var(--cream); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
}
.btn--outline:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: transparent;
  padding: 10px 20px;
}
.btn--ghost:hover { --btn-bd: var(--ink); }

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  --btn-bd: var(--ink);
}

.btn--lg { padding: 18px 36px; font-size: 14px; }
.btn--sm { padding: 10px 18px; font-size: 11px; }
.btn--sm::after { font-size: 14px; }

/* Header
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245, 241, 234, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(245, 241, 234, 0.92);
  border-bottom-color: var(--line-light);
  padding: 12px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter-x);
  margin-inline: auto;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__link {
  position: relative;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--gold-deep); }
.nav__link.is-active::after { transform: scaleX(1); background: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.social-icon:hover { background: var(--ink); color: var(--cream); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 var(--gutter-x);
  background: var(--cream);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-top: 1px solid transparent;
}
.mobile-nav.is-open {
  max-height: 80vh;
  padding: 24px var(--gutter-x) 36px;
  border-top-color: var(--line-light);
}
.mobile-nav__link {
  font-family: var(--serif);
  font-size: 32px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
}
.mobile-nav__socials {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-nav__socials a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

/* Social rail (desktop floating)
   ------------------------------------------------------------------------- */
.social-rail {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.social-rail::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 18px;
  width: 1px;
  height: 32px;
  background: rgba(14, 14, 14, 0.4);
}
.social-rail__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(245, 241, 234, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), transform .35s var(--ease);
}
.social-rail__link span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width .4s var(--ease), opacity .25s var(--ease);
}
.social-rail__link:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateX(4px);
}
.social-rail__link:hover span {
  max-width: 100px;
  opacity: 1;
}
@media (max-width: 1100px) { .social-rail { display: none; } }

/* HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--gutter-x) clamp(60px, 9vw, 120px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.05) contrast(1.08);
  transform: scale(1.06);
  transition: transform 1.6s var(--ease);
  will-change: transform;
}
.hero.is-loaded .hero__img { transform: scale(1); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 30% 100%, rgba(14, 14, 14, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.05) 0%, rgba(14, 14, 14, 0.5) 65%, rgba(14, 14, 14, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
.hero__title {
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 540px;
  color: rgba(245, 241, 234, 0.82);
  margin-bottom: 36px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn--outline {
  --btn-fg: var(--cream);
  --btn-bd: rgba(245, 241, 234, 0.55);
}
.hero .btn--outline:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }

.hero__scroll {
  position: absolute;
  right: var(--gutter-x);
  bottom: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  color: rgba(245, 241, 234, 0.62);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 100% 200%;
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* Eyebrow on hero (white) */
.hero .eyebrow { color: var(--gold-soft); }

/* MARQUEE
   ------------------------------------------------------------------------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-block: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 28px 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.marquee__track span em { font-style: italic; color: var(--gold); }
.marquee__track i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.6em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* AWARD
   ------------------------------------------------------------------------- */
.award {
  padding: var(--section-y) 0;
  background: var(--cream);
  position: relative;
}
.award__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.award__text p {
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 480px;
  margin-bottom: 32px;
}
.award__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.badge::before {
  content: "★";
  color: var(--ink);
  font-size: 12px;
}
.badge--ghost {
  background: transparent;
  border: 1px solid var(--ink);
}
.badge--ghost::before { color: var(--gold-deep); }

.award__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.award__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.award__figure img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px) {
  .award__inner { grid-template-columns: 1fr; }
}

/* MELISSA
   ------------------------------------------------------------------------- */
.melissa {
  padding: var(--section-y) 0;
  background: var(--paper);
  border-block: 1px solid var(--line-light);
  position: relative;
}
.melissa__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.melissa__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.melissa__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.2s var(--ease);
}
.melissa__figure:hover img { transform: scale(1.04); }
.melissa__figure figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 18px;
  background: rgba(14, 14, 14, 0.85);
  color: var(--cream);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.melissa__text p {
  font-size: clamp(15px, 1.15vw, 18px);
  margin-bottom: 20px;
  max-width: 520px;
}

.pullquote {
  margin: 36px 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
}
.pullquote em { font-weight: 500; color: var(--gold-deep); }

@media (max-width: 880px) {
  .melissa__inner { grid-template-columns: 1fr; }
  .melissa__figure { max-width: 480px; margin: 0 auto; }
}

/* SERVICES GRID (home)
   ------------------------------------------------------------------------- */
.services-grid {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.services-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  isolation: isolate;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .5s var(--ease);
  filter: saturate(1.05);
}
.service-card:hover .service-card__media img {
  transform: scale(1.06);
}
.service-card__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card__num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.service-card__body h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
}
.service-card__body p {
  color: rgba(14, 14, 14, 0.7);
  font-size: 15px;
}
.service-card__price {
  margin-top: 8px;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 12px;
  border-top: 1px solid var(--line-light);
}
.services-grid__foot { text-align: center; }

@media (max-width: 720px) {
  .services-grid__list { grid-template-columns: 1fr; }
}

/* STUDIO
   ------------------------------------------------------------------------- */
.studio {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.studio .eyebrow { color: var(--gold); }
.studio .eyebrow::before { background: var(--gold); }
.studio h2, .studio h3 { color: var(--cream); }
.studio h2 em { color: var(--gold); }
.studio p { color: rgba(245, 241, 234, 0.78); }

.studio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.studio__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.studio__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.2s var(--ease);
}
.studio__media:hover img { transform: scale(1.05); }
.studio__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.studio__address {
  font-style: normal;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--cream);
}
.studio__address strong { font-weight: 500; color: var(--gold-soft); }
.studio__h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--gold) !important;
  margin-bottom: 16px;
}
.schedule {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}
.schedule li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.schedule__day {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
}
.schedule__day em { font-style: italic; color: var(--gold); font-weight: 300; font-size: 0.85em; }
.schedule__time {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}
.schedule__note {
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
  color: rgba(245, 241, 234, 0.6);
}
.studio__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 32px;
}
.studio .btn--outline {
  --btn-fg: var(--cream);
  --btn-bd: rgba(245, 241, 234, 0.4);
}
.studio .btn--outline:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }

@media (max-width: 880px) {
  .studio__inner { grid-template-columns: 1fr; }
  .studio__media { max-width: 480px; margin: 0 auto; }
}

/* LATEST (Instagram)
   ------------------------------------------------------------------------- */
.latest {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.behold-widget { margin-bottom: 32px; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.ig-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}
.ig-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.ig-grid__item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.ig-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.6), rgba(212, 165, 165, 0.4));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.ig-grid__item:hover::after { opacity: 1; }
.ig-grid__item::before {
  content: "→";
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 24px;
  z-index: 2;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.ig-grid__item:hover::before { opacity: 1; transform: translate(0, 0); }

.latest__cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 720px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* PROOF
   ------------------------------------------------------------------------- */
.proof {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
  border-block: 1px solid var(--line-light);
}
.proof__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.proof__quote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.proof__quote .quote-mark {
  position: absolute;
  top: -36px;
  left: -16px;
  font-size: 140px;
  font-family: var(--serif);
  color: var(--gold);
  line-height: 1;
}
.proof__quote em { color: var(--gold-deep); font-weight: 500; }
.proof__quote p { font: inherit; color: inherit; max-width: 640px; }
.proof__quote footer {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-style: normal;
}
.proof__stats {
  display: flex; flex-direction: column; gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 48px);
}
.proof__stats li {
  display: flex; flex-direction: column; gap: 4px;
}
.proof__stats strong {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-deep);
}
.proof__stats span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.proof--compact { padding: clamp(48px, 8vw, 96px) 0; }
.proof__compact { text-align: center; max-width: 720px; margin: 0 auto; }
.proof__compact .eyebrow { justify-content: center; }
.proof__compact .eyebrow::before { display: none; }

@media (max-width: 880px) {
  .proof__inner { grid-template-columns: 1fr; }
  .proof__stats { border-left: 0; padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: 32px; }
}

/* CTA
   ------------------------------------------------------------------------- */
.cta {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
}
.cta::before { background: var(--gold); top: -200px; left: -120px; }
.cta::after { background: var(--rose); bottom: -200px; right: -120px; }

.cta__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
}
.cta__title em { color: var(--gold-soft); }
.cta p { color: rgba(245, 241, 234, 0.78); font-size: 18px; margin-bottom: 36px; }
.cta__buttons { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta .btn--outline { --btn-fg: var(--cream); --btn-bd: rgba(245, 241, 234, 0.4); }
.cta .btn--outline:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }

/* PAGE HERO (services / contact)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 160px var(--gutter-x) clamp(48px, 7vw, 96px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.page-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.55) 60%, rgba(14, 14, 14, 0.85) 100%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 880px; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero__title {
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 12px 0 24px;
}
.page-hero__title em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.page-hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(245, 241, 234, 0.8);
  max-width: 580px;
}

/* SERVICES TOC
   ------------------------------------------------------------------------- */
.services-toc {
  padding: 28px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: 64px;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(251, 248, 242, 0.92);
}
.services-toc__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: center;
}
.services-toc__grid a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
}
.services-toc__grid a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
  transform-origin: right;
}
.services-toc__grid a:hover::after { transform: scaleX(1); transform-origin: left; }

/* SERVICE BLOCK / ROW
   ------------------------------------------------------------------------- */
.service-block {
  padding: clamp(64px, 10vw, 128px) 0;
  background: var(--cream);
}
.service-block--alt { background: var(--paper); border-block: 1px solid var(--line-light); }
.service-block__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }

.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-row {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 32px;
  align-items: center;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: border-color .3s var(--ease), transform .35s var(--ease), box-shadow .3s var(--ease);
}
.service-block--alt .service-row { background: var(--cream); }
.service-row:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.service-row__media {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}
.service-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-row:hover .service-row__media img { transform: scale(1.06); }
.service-row__body h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 8px;
}
.service-row__body h3 small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-left: 6px;
}
.service-row__body p { font-size: 15px; margin-bottom: 12px; max-width: 520px; }
.service-row__bullets {
  display: flex; flex-wrap: wrap;
  gap: 6px 8px;
}
.service-row__bullets li {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  background: var(--cream);
  border-radius: 999px;
  color: rgba(14, 14, 14, 0.7);
}
.service-block--alt .service-row__bullets li { background: var(--paper); }

.service-row__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.price {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.price--quiet {
  font-size: 18px;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.price__unit {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.6);
  margin-bottom: 12px;
}
.service-row__price .btn { margin-top: 4px; }

@media (max-width: 880px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-row__media { max-width: 240px; }
  .service-row__price { align-items: flex-start; text-align: left; }
}

/* CONTACT PAGE
   ------------------------------------------------------------------------- */
.contact-hero {
  padding: 160px 0 clamp(60px, 8vw, 96px);
  background: var(--cream);
}
.contact-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.contact-hero__text .page-hero__title { color: var(--ink); }
.contact-hero__text .page-hero__title em { color: var(--gold-deep); }
.contact-hero__text .page-hero__lede { color: rgba(14, 14, 14, 0.78); }
.contact-hero__text .eyebrow { color: var(--gold-deep); }

.contact-hero__direct {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 36px;
}
.contact-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .35s var(--ease);
}
.contact-tile:hover {
  border-color: var(--gold);
  background: var(--cream-deep);
  transform: translateX(4px);
}
.contact-tile__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.55);
}
.contact-tile__value {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink);
}

.contact-hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.contact-hero__figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }

@media (max-width: 880px) {
  .contact-hero__inner { grid-template-columns: 1fr; }
  .contact-hero__figure { max-width: 480px; margin: 0 auto; }
}

/* CONTACT FORM
   ------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field > span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.6);
}
.form__field > span em { font-style: italic; text-transform: none; letter-spacing: 0.04em; color: rgba(14, 14, 14, 0.45); }
.form__field input,
.form__field select,
.form__field textarea {
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.form__field input::placeholder, .form__field textarea::placeholder { color: rgba(14, 14, 14, 0.35); }
.form__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  margin-top: 12px;
}
.form__note { font-size: 13px; color: rgba(14, 14, 14, 0.6); }
.form__note a { color: var(--gold-deep); }

/* Radio cards */
.form__radios {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__radios legend {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.6);
  margin-bottom: 12px;
  padding: 0;
}
.form__radio { cursor: pointer; }
.form__radio input { position: absolute; opacity: 0; pointer-events: none; }
.form__radio-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .25s var(--ease);
}
.form__radio:hover .form__radio-card { border-color: var(--gold); transform: translateY(-2px); }
.form__radio input:checked + .form__radio-card {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.form__radio-card strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.form__radio-card small {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(14, 14, 14, 0.6);
}

@media (max-width: 880px) {
  .form__row { grid-template-columns: 1fr; }
  .form__radios { grid-template-columns: 1fr 1fr; }
}

/* WHATSAPP SECTION
   ------------------------------------------------------------------------- */
.whatsapp-section {
  padding: var(--section-y) 0;
  background: var(--paper);
  border-block: 1px solid var(--line-light);
}
.whatsapp-section__inner { max-width: 1080px; margin: 0 auto; }
.whatsapp-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.whatsapp-section__head .eyebrow { justify-content: center; }
.whatsapp-section__head .eyebrow::before { display: none; }
.whatsapp-section__head p { margin-top: 8px; }

.wa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.wa-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.wa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.08) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.wa-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.wa-card:hover::before { opacity: 1; }
.wa-card__num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.wa-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--ink);
}
.wa-card p {
  font-size: 14px;
  color: rgba(14, 14, 14, 0.7);
  margin-bottom: 12px;
}
.wa-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: auto;
}
.wa-card__icon {
  display: inline-block;
  width: 18px; height: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2325D366"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.wa-card__cta::after {
  content: "→";
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold-deep);
  transition: transform .25s var(--ease);
  margin-left: auto;
}
.wa-card:hover .wa-card__cta::after { transform: translateX(4px); }

.wa-card--alt {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.wa-card--alt h3, .wa-card--alt .wa-card__cta { color: var(--cream); }
.wa-card--alt p { color: rgba(245, 241, 234, 0.7); }
.wa-card--alt .wa-card__num { color: var(--gold); }
.wa-card--alt:hover { border-color: var(--gold); }

@media (max-width: 880px) { .wa-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .wa-grid { grid-template-columns: repeat(2, 1fr); } }

.whatsapp-section__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 32px;
  color: rgba(14, 14, 14, 0.5);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.whatsapp-section__divider::before,
.whatsapp-section__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.wa-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}
.wa-form { display: flex; flex-direction: column; gap: 20px; }
.wa-form__actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.wa-form__submit {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  border-color: #1DA851;
  color: #fff;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wa-form__submit::after { content: "→"; }
.wa-form__submit.is-ready {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  transform: scale(1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 12px 38px rgba(37, 211, 102, 0.5); }
}
.wa-form__submit:hover { transform: translateY(-2px) scale(1); }
.wa-form__icon {
  display: inline-block;
  width: 18px; height: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.wa-form__hint {
  font-style: italic;
  color: rgba(14, 14, 14, 0.55);
}
.wa-form__ready {
  color: #1DA851;
  font-weight: 500;
}

.whatsapp-section__foot {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.whatsapp-section__note { font-size: 14px; color: rgba(14, 14, 14, 0.65); }
.whatsapp-section__note a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

/* VISIT
   ------------------------------------------------------------------------- */
.visit {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.visit__address {
  font-style: normal;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 300;
  margin-bottom: 32px;
}
.visit__address strong { font-weight: 500; color: var(--gold-deep); }
.visit__h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.visit .schedule { border-top-color: var(--line); }
.visit .schedule li { border-bottom-color: var(--line); }
.visit .schedule__day { color: var(--ink); }
.visit .schedule__day em { color: var(--gold-deep); }
.visit .schedule__time { color: var(--gold-deep); }
.visit .schedule__note { color: rgba(14, 14, 14, 0.55); }

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  background: var(--ink);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 880px) {
  .visit__inner { grid-template-columns: 1fr; }
}

/* COURSES (featured section on home)
   ------------------------------------------------------------------------- */
.courses {
  padding: var(--section-y) 0;
  background: var(--paper);
  border-block: 1px solid var(--line-light);
}
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
}
.course-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.course-card__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.course-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.course-card__level {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.course-card p {
  font-size: 14px;
  color: rgba(14, 14, 14, 0.7);
  margin: 0;
}
.course-card__bullets {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.course-card__bullets li {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: rgba(14, 14, 14, 0.7);
  list-style: none;
}
.course-card--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.course-card--feature h3 { color: var(--cream); }
.course-card--feature p { color: rgba(245, 241, 234, 0.78); }
.course-card--feature .course-card__tag { color: var(--gold); }
.course-card--feature .course-card__bullets li {
  background: rgba(245, 241, 234, 0.08);
  color: rgba(245, 241, 234, 0.85);
}
.course-card--short {
  background: var(--cream-deep);
}

@media (max-width: 980px) { .courses__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .courses__grid { grid-template-columns: 1fr; } }

/* APP STRIP (home page)
   ------------------------------------------------------------------------- */
.app-strip {
  padding: var(--section-y) 0;
  background: var(--cream-deep);
  border-block: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}
.app-strip::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(160px);
  opacity: 0.18;
  pointer-events: none;
}
.app-strip__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.app-strip__text p { max-width: 480px; }
.app-strip__badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (min-width: 600px) and (max-width: 1100px) {
  .app-strip__badges { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 880px) {
  .app-strip__inner { grid-template-columns: 1fr; }
}

/* STORE BADGE — editorial styled "App Store / Google Play" buttons
   ------------------------------------------------------------------------- */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px 12px 18px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 200px;
}
.store-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.18) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.store-badge:hover::after { opacity: 1; }
.store-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--cream);
  flex-shrink: 0;
}
.store-badge__icon svg { width: 100%; height: 100%; }
.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.store-badge__text small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 2px;
}
.store-badge__text strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* Mini variant (footer) */
.store-badge--mini {
  padding: 10px 18px 10px 14px;
  border-radius: 10px;
  min-width: 0;
  background: rgba(245, 241, 234, 0.06);
  border-color: rgba(245, 241, 234, 0.15);
}
.store-badge--mini .store-badge__icon {
  width: 22px;
  height: 22px;
}
.store-badge--mini .store-badge__text small { font-size: 9px; }
.store-badge--mini .store-badge__text strong { font-size: 14px; }
.store-badge--mini:hover {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--gold);
}

/* COMING SOON HERO
   ------------------------------------------------------------------------- */
.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px var(--gutter-x) 96px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.cs-hero__media { position: absolute; inset: 0; z-index: 0; }
.cs-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9);
}
.cs-hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 30% 50%, rgba(201, 169, 97, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.4) 0%, rgba(14, 14, 14, 0.8) 100%);
}
.cs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.cs-hero .eyebrow { color: var(--gold-soft); }
.cs-hero .eyebrow::before { background: var(--gold-soft); }
.cs-hero__title {
  font-size: clamp(72px, 13vw, 200px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 12px 0 28px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.cs-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.cs-hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 640px;
  color: rgba(245, 241, 234, 0.82);
  margin-bottom: 32px;
}
.cs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}
.cs-hero .btn--outline { --btn-fg: var(--cream); --btn-bd: rgba(245, 241, 234, 0.55); }
.cs-hero .btn--outline:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }

.cs-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark);
}
.cs-features li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-features__num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.cs-features h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--cream);
}
.cs-features p {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.72);
}

@media (max-width: 880px) {
  .cs-features { grid-template-columns: 1fr; gap: 16px; }
}

/* FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(64px, 9vw, 96px);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px) clamp(32px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line-dark);
}
.site-footer__app {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__app h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}
.site-footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.site-footer__tag {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.site-footer__cols h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.site-footer__cols p { color: rgba(245, 241, 234, 0.78); font-size: 14px; line-height: 1.8; }
.site-footer__cols a {
  color: rgba(245, 241, 234, 0.78);
  transition: color .2s var(--ease);
}
.site-footer__cols a:hover { color: var(--gold); }

.site-footer__bar { padding: 20px 0; }
.site-footer__bar-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(245, 241, 234, 0.5);
  letter-spacing: 0.04em;
}
.site-footer__bar a { color: var(--gold-soft); }
.site-footer__bar a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* Reveal animations (initial state for JS)
   ------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-words] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
[data-reveal-words] .word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
}
[data-reveal-words].is-visible .word > span {
  transform: translateY(0);
}

/* Mobile nav visibility
   ------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-actions .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
}

/* Reduced motion
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-words] .word > span { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
