/* ═══════════════════════════════════════════════════
   SAINT & SINCLAIR — OLD MONEY LUXURY DESIGN SYSTEM
   Brand Kit Aligned · Editorial · Haute Couture
═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Palette — Brand Kit */
  --ink:          #0c0b09;       /* near-black, warm */
  --deep:         #111008;       /* page background   */
  --surface:      #161410;       /* card surface      */
  --surface-2:    #1c1a16;       /* elevated surface  */
  --rule:         #2a2620;       /* hairline rule     */
  --ivory:        #f2ead8;       /* warm ivory        */
  --ivory-2:      #e8dfc9;       /* deep ivory        */
  --ivory-dim:    #a89f8c;       /* muted ivory       */
  --mute:         #6b6459;       /* body muted text   */

  /* Gold — Antique, not bright */
  --gold:         #b89a5a;       /* primary gold      */
  --gold-pale:    #d4b87a;       /* light accent      */
  --gold-deep:    #8a6f38;       /* shadow/dark gold  */
  --gold-rule:    rgba(184,154,90,0.25);

  /* Typography */
  --serif:   'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --sans:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Motion */
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --slow:    0.6s;
  --mid:     0.35s;

  /* Spacing */
  --section: 130px;
  --gap:     60px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--mid) var(--ease); }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); }

/* ─── CONTAINER ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ═══════════════════════════════════════════════════
   OLD MONEY ORNAMENTAL ELEMENTS
═══════════════════════════════════════════════════ */

/* Thin rule with diamond center */
.om-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 300px;
}
.om-rule::before,
.om-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-rule);
}
.om-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Corner frame ornament */
.om-frame {
  position: relative;
}
.om-frame::before,
.om-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.om-frame::before {
  top: -8px; left: -8px;
  border-width: 1px 0 0 1px;
}
.om-frame::after {
  bottom: -8px; right: -8px;
  border-width: 0 1px 1px 0;
}

/* Section eyebrow */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* Section headline */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 22px;
}

/* Section sub-copy */
.section-body {
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 2;
  max-width: 580px;
  margin: 0 auto;
}

/* Center block */
.text-center { text-align: center; }
.text-center .section-body { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: all var(--mid) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,154,90,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold-rule);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--slow) var(--ease), border-color var(--slow) var(--ease);
}
#navbar.scrolled {
  background: rgba(12,11,9,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
}

/* Logo — monogram style */
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ivory);
}
.nav-logo .amp { color: var(--gold); font-style: italic; }
.nav-logo:hover { color: var(--gold-pale); }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.nav-links a:hover { color: var(--gold-pale); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-btn {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 7px 14px;
  transition: all var(--mid) var(--ease);
}
.lang-btn:hover { background: var(--gold); color: var(--ink); }

.nav-cta {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  transition: all var(--mid) var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 20px; height: 1px; background: var(--ivory); transition: all var(--mid) var(--ease); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--gold-rule);
  padding: 24px 48px;
  gap: 18px;
}
.mobile-menu a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════════════
   HERO — Full screen, brand statement
═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,11,9,0.72) 0%,
    rgba(12,11,9,0.55) 40%,
    rgba(12,11,9,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  animation: heroIn 1.6s var(--ease) both;
}

/* Monogram S&S badge */
.hero-monogram {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.mono-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.mono-line.right {
  background: linear-gradient(to left, transparent, var(--gold));
}
.mono-text {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 20px;
}

.hero-wordmark {
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.hero-wordmark .amp { color: var(--gold); font-style: italic; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dim);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-rule-line {
  width: 80px;
  height: 1px;
  background: var(--gold-rule);
}
.hero-rule-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-label {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   BRAND STRIP — logo repetition pattern
═══════════════════════════════════════════════════ */
.brand-strip {
  background: var(--surface);
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  padding: 18px 0;
  overflow: hidden;
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.brand-strip-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.brand-strip-item span {
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--mute);
}
.strip-diamond {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   MANIFESTO — center-aligned brand statement
═══════════════════════════════════════════════════ */
#manifesto {
  padding: var(--section) 0;
  background: var(--deep);
}
.manifesto-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.45;
  margin-bottom: 36px;
}
.manifesto-quote em { color: var(--gold); font-style: italic; }
.manifesto-attribution {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
#services {
  padding: var(--section) 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-rule);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Two-column service layout */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service-item {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 52px 48px;
  position: relative;
  transition: background var(--mid) var(--ease);
}
.service-item:hover { background: var(--surface-2); }

/* Numeral */
.svc-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(184,154,90,0.12);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  font-style: italic;
}

.svc-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.svc-body {
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.95;
  margin-bottom: 28px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--mid) var(--ease), color var(--mid) var(--ease);
}
.svc-link:hover { color: var(--gold-pale); gap: 16px; }
.svc-link i { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
#how {
  padding: var(--section) 0;
  background: var(--deep);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-rule);
  margin-top: 70px;
}
.how-step {
  padding: 50px 36px 50px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.how-step:last-child { border-right: none; }
.how-step-num {
  font-family: var(--serif);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.how-step h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 14px;
}
.how-step p {
  font-size: 0.83rem;
  color: var(--mute);
  line-height: 1.9;
}
.how-payment-icons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  font-size: 1.35rem;
  color: var(--gold-deep);
}
.how-payment-icons i { transition: color var(--mid) var(--ease); }
.how-payment-icons i:hover { color: var(--gold-pale); }

/* ═══════════════════════════════════════════════════
   MODELS
═══════════════════════════════════════════════════ */
#models {
  padding: var(--section) 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
}
.models-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* Stacked photo grid */
.models-gallery {
  position: relative;
  height: 560px;
}
.mg-photo {
  position: absolute;
  overflow: hidden;
}
.mg-photo img {
  filter: brightness(0.75) grayscale(0.15);
  transition: filter var(--slow) var(--ease);
}
.mg-photo:hover img { filter: brightness(0.55) grayscale(0.35); }
.mg-photo--a { width: 56%; height: 370px; top: 0; left: 0; }
.mg-photo--b { width: 52%; height: 320px; top: 140px; right: 0; }

/* Lock overlay */
.mg-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(12,11,9,0.55);
  opacity: 0;
  transition: opacity var(--mid) var(--ease);
}
.mg-photo:hover .mg-lock { opacity: 1; }
.mg-lock i { color: var(--gold); font-size: 1.2rem; }
.mg-lock span {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Floating badge */
.mg-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--gold-rule);
  padding: 18px 28px;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}
.mg-badge i { color: var(--gold); font-size: 1rem; display: block; margin-bottom: 8px; }
.mg-badge p {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1.6;
}

/* Text side */
.models-text .eyebrow { margin-bottom: 16px; }
.models-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 24px;
}
.models-text p {
  font-size: 0.87rem;
  color: var(--mute);
  line-height: 2;
  margin-bottom: 32px;
}
.models-perks {
  margin-bottom: 40px;
  border-top: 1px solid var(--rule);
}
.models-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.83rem;
  color: var(--ivory-dim);
}
.models-perks li i { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }
.models-access-note {
  font-size: 0.75rem;
  color: var(--mute);
  font-style: italic;
  margin-top: 16px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   MEMBERSHIP
═══════════════════════════════════════════════════ */
#membership {
  padding: var(--section) 0;
  background: var(--deep);
}
.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}

/* Pricing card — old money style */
.price-card {
  border: 1px solid var(--gold-rule);
  position: relative;
  background: var(--surface);
}
.price-card-top-rule {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.price-card-inner { padding: 52px 44px; }

.price-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.price-card-eyebrow span {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.pce-line {
  flex: 1;
  height: 1px;
  background: var(--gold-rule);
}

.price-display {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.price-currency {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  vertical-align: top;
  margin-top: 10px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.price-period {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
}

.perks-list {
  margin-bottom: 36px;
}
.perks-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.84rem;
  color: var(--ivory-dim);
}
.perks-list li i { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

.pay-note {
  text-align: center;
  font-size: 0.68rem;
  color: var(--mute);
  margin-top: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.pay-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  margin-top: 26px;
}
.pay-methods-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.pay-methods-icons {
  display: flex;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--mute);
}
.pay-methods-icons i:hover { color: var(--gold); }

/* Info side */
.membership-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 36px;
}

.info-flow { margin-bottom: 44px; }
.info-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.info-n {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row p {
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.8;
  padding-top: 6px;
}

.channel-box, .crypto-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  border: 1px solid var(--gold-rule);
  margin-bottom: 16px;
  background: var(--surface);
}
.channel-box i, .crypto-box i {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.channel-box strong, .crypto-box strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 8px;
}
.channel-box p, .crypto-box p {
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.75;
  margin-bottom: 10px;
}
.box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--mid) var(--ease);
}
.box-link:hover { color: var(--gold-pale); }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section) 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-rule);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 70px;
}
.testimonial-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px 40px;
  transition: background var(--mid) var(--ease);
}
.testimonial-card:hover { background: var(--surface-2); }
.tc-stars {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}
.tc-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ivory-dim);
  line-height: 1.85;
  margin-bottom: 28px;
}
.tc-open {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
}
.tc-client {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
#contact {
  padding: var(--section) 0;
  background: var(--deep);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 70px;
  margin-bottom: 40px;
}
.contact-card-item {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 52px 40px;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: background var(--mid) var(--ease);
  color: inherit;
}
.contact-card-item:hover { background: var(--surface); }

.cc-icon-ring {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--mid) var(--ease);
}
.contact-card-item:hover .cc-icon-ring {
  border-color: var(--gold);
  background: var(--gold);
}
.cc-icon-ring i {
  color: var(--gold);
  font-size: 1.1rem;
  transition: color var(--mid) var(--ease);
}
.contact-card-item:hover .cc-icon-ring i { color: var(--ink); }

.cc-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}
.cc-body {
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.85;
  margin-bottom: 20px;
}
.cc-value {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.contact-discretion {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  border: 1px solid var(--gold-rule);
  background: var(--surface);
}
.contact-discretion i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-discretion p { font-size: 0.82rem; color: var(--mute); line-height: 1.8; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--gold-rule);
  padding: 80px 0 0;
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}

.footer-logo-block .f-logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.footer-logo-block .f-logo .amp { color: var(--gold); font-style: italic; }
.footer-logo-block .f-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-rule { margin: 24px 0; }
.footer-rule-line { width: 100%; max-width: 200px; height: 1px; background: var(--gold-rule); }
.footer-desc {
  font-size: 0.84rem;
  color: var(--mute);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 0.85rem;
  transition: all var(--mid) var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.f-col h5 {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.f-col ul { display: flex; flex-direction: column; gap: 12px; }
.f-col a {
  font-size: 0.8rem;
  color: var(--mute);
  transition: all var(--mid) var(--ease);
  display: inline-block;
}
.f-col a:hover { color: var(--gold-pale); transform: translateX(4px); }

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-bar p {
  font-size: 0.7rem;
  color: var(--mute);
}
.footer-monogram {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════
   MODAL — Stripe Payment
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,11,9,0.88);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--slow) var(--ease);
  backdrop-filter: blur(10px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--surface);
  border: 1px solid var(--gold-rule);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlide 0.5s var(--ease) both;
}
.modal-top-rule {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  color: var(--mute);
  font-size: 0.9rem;
  padding: 8px;
  transition: color var(--mid) var(--ease);
}
.modal-close:hover { color: var(--gold); }

.modal-header {
  padding: 40px 44px 32px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.modal-monogram {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.modal-monogram .amp { color: var(--gold); font-style: italic; }
.modal-header h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 8px;
}
.modal-price-tag {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-body { padding: 36px 44px; }
.modal-perks-list {
  margin-bottom: 28px;
  border-top: 1px solid var(--rule);
}
.modal-perks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.83rem;
  color: var(--ivory-dim);
}
.modal-perks-list li i { color: var(--gold); font-size: 0.7rem; }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  color: var(--ivory);
  padding: 14px 16px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--mid) var(--ease);
}
.form-field input:focus { border-color: var(--gold); }
.form-field input::placeholder { color: var(--mute); }

.card-mock {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  color: var(--mute);
  font-size: 0.85rem;
}
.card-mock i { color: var(--gold); font-size: 1rem; }

.stripe-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--mute);
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.stripe-secure-note i { color: #635bff; font-size: 0.9rem; }

.modal-crypto-alt {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.modal-crypto-alt p { font-size: 0.78rem; color: var(--mute); margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 36px;
  right: 36px;
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--ivory);
  padding: 16px 26px;
  font-size: 0.82rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.4s var(--ease);
  max-width: 300px;
  line-height: 1.6;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .services-list { grid-template-columns: 1fr; }
  .membership-layout { grid-template-columns: 1fr; }
  .models-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .footer-layout { grid-template-columns: 1fr; gap: 50px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step:nth-child(2) { border-right: none; }
  .how-step:nth-child(3) { border-top: 1px solid var(--rule); }
  .how-step:nth-child(4) { border-right: none; border-top: 1px solid var(--rule); }
}

@media (max-width: 768px) {
  :root { --section: 80px; }
  .container { padding: 0 22px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 18px 22px; }

  .hero-wordmark { font-size: 3.2rem; }
  .services-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-top: 1px solid var(--rule); }
  .how-step:first-child { border-top: none; }
  .models-gallery { height: 380px; }
  .modal-header, .modal-body { padding: 28px 22px; }
  .membership-layout { gap: 50px; }
}

@media (max-width: 480px) {
  .hero-wordmark { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .price-card-inner { padding: 36px 22px; }
  .service-item { padding: 40px 28px; }
}
