/* Empire Platinum — Elegant luxury design system */
@import url("fonts/fonts.css");

:root {
  --black: #080808;
  --dark: #0d0d0d;
  --mid: #141414;
  --panel: #101010;

  --cream: #f0ebe3;
  --white: #ffffff;
  --silver: #a0a0a0;
  --muted: #666666;

  --gold: #c9a96e;
  --gold-lt: #e8d5a3;

  --border: rgba(201, 169, 110, 0.16);
  --border-soft: rgba(255, 255, 255, 0.07);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;

  --container: 1220px;
  --container-wide: 1360px;
  --pad-x: clamp(22px, 5vw, 72px);

  --section-y: clamp(72px, 10vw, 132px);
  --section-y-lg: clamp(96px, 13vw, 168px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.ep {
  position: relative;
  background:
    radial-gradient(circle at 18% -5%, rgba(201, 169, 110, 0.06), transparent 30%),
    var(--black);
  min-height: 100vh;
}

.ep-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.ep-container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.015em;
  color: var(--white);
  margin: 0;
}
h1 { font-size: clamp(52px, 8vw, 110px); }
h2 { font-size: clamp(34px, 4.6vw, 62px); }
h3 { font-size: clamp(26px, 3vw, 40px); }
h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
p { margin: 0; color: var(--silver); font-size: 15px; font-weight: 300; }
em { color: var(--gold-lt); font-style: italic; }

.section-label, .eyebrow, .hero-tagline {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}
.intro-text {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(240, 235, 227, 0.68);
  font-size: 17px;
  line-height: 1.85;
}
.gold-hairline, .divider {
  width: 64px; height: 1px;
  margin: 28px 0;
  background: var(--gold);
  opacity: 0.85;
  border: 0;
}
.gold-hairline.center, .divider-center { margin-inline: auto; }

.section-header { max-width: 760px; margin-bottom: clamp(44px, 7vw, 84px); }
.section-header.center { margin-inline: auto; text-align: center; }

/* ---------- Navigation ---------- */
#ep-nav {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: 84px;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 320ms var(--ease), background 320ms var(--ease), border-color 320ms var(--ease);
}
#ep-nav.is-scrolled {
  height: 68px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}
.nav-logo {
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin: 0; padding: 0; list-style: none;
}
.nav-links a {
  position: relative;
  color: rgba(240, 235, 227, 0.68);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; transition: color 220ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active:not(.nav-cta)::after {
  content: ""; position: absolute;
  left: 0; right: 0.22em; bottom: -10px;
  height: 1px; background: var(--gold); opacity: 0.8;
}
.nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(201, 169, 110, 0.72);
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

@media (max-width: 820px) {
  #ep-nav { height: 72px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.14em; }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.ep-hero, .ep-page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; align-items: flex-end;
}
.ep-hero {
  min-height: 720px; height: 100svh;
  padding-bottom: clamp(92px, 13vh, 150px);
}
.ep-page-hero {
  min-height: 520px; height: 66svh; max-height: 760px;
  padding-bottom: clamp(72px, 10vh, 120px);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  transform: scale(1.01);
}
.ep-hero::before, .ep-page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.84) 0%, rgba(8,8,8,0.5) 38%, rgba(8,8,8,0.14) 100%),
    linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.18) 42%, rgba(8,8,8,0.92) 100%);
}
.ep-hero::after, .ep-page-hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; z-index: -1;
  height: 30%; background: linear-gradient(to bottom, transparent, var(--black));
}
.hero-content, .page-hero-content {
  width: 100%; max-width: 980px; padding-inline: var(--pad-x);
}
.hero-content h1 { max-width: 940px; margin-bottom: 24px; }
.hero-content h1 em { color: var(--gold-lt); font-style: normal; }
.page-hero-content h1 { max-width: 920px; margin-bottom: 22px; font-size: clamp(46px, 6.5vw, 86px); }
.hero-content p, .page-hero-content p {
  max-width: 580px; color: rgba(240, 235, 227, 0.78);
  font-size: 17px; line-height: 1.85;
}
.hero-scroll {
  position: absolute; right: var(--pad-x); bottom: 42px;
  display: flex; align-items: center; gap: 14px;
  writing-mode: vertical-rl;
  color: rgba(240, 235, 227, 0.36);
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
}
.hero-scroll::before { content: ""; width: 1px; height: 58px; background: rgba(201,169,110,0.72); }
@media (max-width: 720px) {
  .ep-hero { min-height: 640px; }
  .ep-page-hero { min-height: 440px; }
  .hero-scroll { display: none; }
}

/* ---------- Buttons ---------- */
.btn, .btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 14px 28px;
  border: 1px solid transparent;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em; line-height: 1; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.btn-large { padding: 18px 44px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-primary { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); }
.btn-outline, .btn-ghost { background: transparent; border-color: rgba(201,169,110,0.6); color: var(--gold); }
.btn-outline:hover, .btn-ghost:hover { border-color: var(--gold); color: var(--white); }

/* ---------- Section rhythm ---------- */
section { position: relative; }
.ep-services-intro, .ep-membership-intro, .ep-about-section,
.ep-contact-section, .ep-philosophy, .ep-how-it-works,
.ep-tiers, .ep-inquiry-section, .ep-booking-section, .ep-cta-strip {
  padding-block: var(--section-y);
}

/* ---------- Home: intro stat strip ---------- */
.intro-strip {
  border-block: 1px solid rgba(201,169,110,0.14);
  background: rgba(255,255,255,0.015);
}
.intro-strip-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 34px var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.intro-stat { text-align: center; }
.intro-stat-num { color: var(--white); font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); line-height: 1; }
.intro-stat-label { margin-top: 10px; color: var(--muted); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
@media (max-width: 760px) { .intro-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }

/* ---------- Home: about intro ---------- */
.about-section { padding-block: var(--section-y); }
.grid-2 { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(46px, 7vw, 92px); align-items: center; }
.about-image, .about-intro-image, .founder-image {
  position: relative; overflow: hidden; background: var(--mid);
}
.about-image { aspect-ratio: 4 / 5; }
.about-image img, .about-intro-image img, .founder-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(14%) saturate(0.82) contrast(1.04);
  transition: transform 800ms var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-accent {
  position: absolute; bottom: -18px; right: -18px;
  width: 160px; height: 160px; border: 1px solid var(--gold); opacity: 0.3; z-index: 0;
}
.about-text h2, .about-intro-text h2 { margin-bottom: 8px; }
.about-text p, .about-intro-text p { margin-bottom: 18px; line-height: 1.85; color: rgba(240,235,227,0.68); }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Home: services snapshot ---------- */
.services-snap { background: var(--dark); padding-block: var(--section-y); }
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card {
  position: relative; background: var(--black);
  padding: clamp(34px, 3.4vw, 48px);
  transition: background 300ms ease;
}
.service-card:hover { background: #0b0b0b; }
.service-card-mark { width: 40px; height: 1px; background: var(--gold); margin-bottom: 26px; }
.service-card h3 { font-size: clamp(22px, 2vw, 28px); color: var(--white); margin-bottom: 14px; }
.service-card p { font-size: 14px; line-height: 1.75; color: rgba(240,235,227,0.6); margin-bottom: 22px; }
.service-card-arrow { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.service-card-arrow::after { content: "  \2192"; }
@media (max-width: 900px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-cards { grid-template-columns: 1fr; } }

/* ---------- Cinematic quote band ---------- */
.quote-section {
  position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 100px var(--pad-x); text-align: center; isolation: isolate;
}
.quote-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.quote-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(8,8,8,0.66); }
.quote-content { max-width: 860px; }
.quote-content blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.25; color: var(--white);
}
.quote-source { display: block; margin-top: 28px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

/* ---------- CTA strip ---------- */
.ep-cta-strip, .cta-section { background: var(--dark); border-top: 1px solid var(--border); text-align: center; }
.ep-cta-strip .ep-container, .cta-section .container { max-width: 760px; }
.ep-cta-strip p, .cta-section p { max-width: 560px; margin: 18px auto 0; color: rgba(240,235,227,0.66); }
.ep-cta-strip .btn-group, .cta-section .btn-group { justify-content: center; }

/* ---------- Services: editorial blocks ---------- */
.ep-services-grid { padding-top: 0; padding-bottom: var(--section-y); }
.service-card-full {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(42px, 7vw, 92px); align-items: center;
  padding-block: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--border);
}
.service-card-full.reverse { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr); }
.service-card-full.reverse .service-card-img { order: 2; }
.service-card-img { position: relative; overflow: hidden; aspect-ratio: 5 / 4; background: var(--mid); }
.service-card-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,0.26)),
              linear-gradient(90deg, rgba(201,169,110,0.08), transparent 38%);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(16%) saturate(0.8) contrast(1.05);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.service-card-full:hover .service-card-img img { transform: scale(1.035); filter: grayscale(2%) saturate(0.92); }
.service-card-body { max-width: 560px; }
.service-number { margin-bottom: 22px; color: var(--gold); font-family: var(--sans); font-size: 10px; letter-spacing: 0.34em; }
.service-card-body h3 { margin-bottom: 22px; }
.service-card-body > p { margin-bottom: 28px; color: rgba(240,235,227,0.68); line-height: 1.85; }
.service-features { display: grid; gap: 12px; margin: 0 0 34px; padding: 0; list-style: none; }
.service-features li { position: relative; padding-left: 26px; color: rgba(240,235,227,0.72); font-size: 14px; }
.service-features li::before { content: ""; position: absolute; left: 0; top: 0.85em; width: 12px; height: 1px; background: var(--gold); }
@media (max-width: 860px) {
  .service-card-full, .service-card-full.reverse { grid-template-columns: 1fr; gap: 36px; }
  .service-card-full.reverse .service-card-img { order: 0; }
}

/* ---------- Membership tiers ---------- */
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier-card {
  position: relative; padding: clamp(34px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent), var(--panel);
  border: 1px solid var(--border);
  min-height: 560px; display: flex; flex-direction: column;
}
.tier-card.featured {
  border-color: rgba(201,169,110,0.6); transform: translateY(-18px);
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.12), transparent 36%), var(--panel);
}
.tier-card.featured::before {
  content: "Most Requested"; position: absolute; top: 20px; right: 22px;
  color: var(--gold); font-family: var(--sans); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
}
.tier-name { margin-bottom: 12px; color: var(--white); font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); line-height: 1; }
.tier-price { margin-bottom: 34px; color: var(--gold); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; }
.tier-features { display: grid; gap: 14px; margin: 0 0 38px; padding: 0; list-style: none; }
.tier-features li { position: relative; padding-left: 22px; color: rgba(240,235,227,0.7); font-size: 14px; }
.tier-features li::before { content: ""; position: absolute; left: 0; top: 0.85em; width: 8px; height: 1px; background: var(--gold); }
.tier-card .btn-primary { margin-top: auto; }
@media (max-width: 960px) { .tiers-grid { grid-template-columns: 1fr; } .tier-card { min-height: 0; } .tier-card.featured { transform: none; } }

/* ---------- How it works ---------- */
.ep-how-it-works { background: var(--dark); }
.ep-how-it-works h2 { margin-bottom: clamp(44px, 6vw, 72px); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.step-item { padding: clamp(32px, 3vw, 44px) clamp(26px, 2.4vw, 34px); background: var(--black); }
.step-num { margin-bottom: 24px; color: var(--gold); font-family: var(--serif); font-size: 38px; font-weight: 300; line-height: 1; }
.step-item h4 { margin-bottom: 16px; color: var(--white); }
.step-item p { font-size: 14px; color: rgba(240,235,227,0.6); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-intro-grid, .about-founder {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(46px, 7vw, 92px); align-items: center;
}
.about-intro-image { aspect-ratio: 4 / 5; }
.founder-image { aspect-ratio: 4 / 5; max-width: 460px; }
.about-intro-text p + p, .founder-text p + p { margin-top: 18px; }
.founder-text p { color: rgba(240,235,227,0.68); line-height: 1.85; }
@media (max-width: 860px) { .about-intro-grid, .about-founder { grid-template-columns: 1fr; } }

.ep-philosophy h2 { margin-bottom: clamp(44px, 6vw, 72px); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.philosophy-item { padding: clamp(30px, 4vw, 46px); background: var(--black); }
.philosophy-item h4 { margin-bottom: 18px; color: var(--white); font-size: 13px; }
.philosophy-item p { color: rgba(240,235,227,0.6); font-size: 14px; line-height: 1.8; }
@media (max-width: 900px) { .philosophy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .philosophy-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(42px, 7vw, 90px); align-items: start; }
.contact-info { position: sticky; top: 108px; padding: 38px; border: 1px solid var(--border); background: rgba(255,255,255,0.018); }
.contact-info h3 { margin-bottom: 18px; }
.contact-info > p { color: rgba(240,235,227,0.62); font-size: 14px; line-height: 1.85; margin-bottom: 10px; }
.contact-detail { padding-block: 22px; border-top: 1px solid var(--border); }
.contact-detail:first-of-type { margin-top: 18px; }
.contact-detail label { display: block; margin-bottom: 8px; color: var(--gold); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; }
.contact-detail a { color: var(--white); font-family: var(--serif); font-size: 24px; text-decoration: none; transition: color 200ms ease; }
.contact-detail a:hover { color: var(--gold-lt); }

.booking-intro { margin-bottom: clamp(32px, 4vw, 48px); }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.booking-services {
  list-style: none; margin: 0 0 clamp(28px, 3.5vw, 40px); padding: 0;
  border: 1px solid var(--border);
}
.booking-services li {
  padding: 16px clamp(20px, 2.6vw, 32px); background: var(--panel);
  border-bottom: 1px solid var(--border); font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px); color: rgba(240,235,227,0.78);
}
.booking-services li:last-child { border-bottom: 0; }
.booking-list { border: 1px solid var(--border); }
.booking-card {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 26px clamp(22px, 3vw, 38px); background: var(--panel);
  border-bottom: 1px solid var(--border); transition: background 250ms ease;
}
.booking-card:last-child { border-bottom: 0; }
.booking-card:hover { background: #151515; }
.booking-card h3 { margin-bottom: 6px; font-size: clamp(21px, 2vw, 28px); }
.booking-card p { color: rgba(240,235,227,0.5); font-size: 14px; font-style: italic; font-family: var(--serif); }
.booking-card .btn-outline { flex-shrink: 0; }
.booking-note { margin-top: 34px; text-align: center; color: rgba(240,235,227,0.32); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .booking-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- Inquiry form ---------- */
.ep-inquiry-section { background: var(--dark); border-top: 1px solid var(--border); }
.inquiry-container { max-width: 920px; margin: 0 auto; padding-inline: var(--pad-x); }
.inquiry-header { margin-bottom: 56px; text-align: center; }
.inquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.inquiry-field { display: flex; flex-direction: column; }
.inquiry-full { margin-bottom: 28px; }
.inquiry-field label { margin-bottom: 10px; color: var(--gold); font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; }
.inquiry-field input, .inquiry-field select, .inquiry-field textarea {
  width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(240,235,227,0.22);
  border-radius: 0; background: transparent; color: var(--white);
  font-family: var(--serif); font-size: 18px; outline: 0; transition: border-color 220ms ease;
  -webkit-appearance: none; appearance: none;
}
.inquiry-field input::placeholder, .inquiry-field textarea::placeholder { color: rgba(240,235,227,0.28); }
.inquiry-field input:focus, .inquiry-field select:focus, .inquiry-field textarea:focus { border-bottom-color: var(--gold); }
.inquiry-field select option { background: #111; color: #fff; }
.inquiry-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.inquiry-submit { margin-top: 44px; text-align: center; }
.inquiry-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 16px 56px; background: var(--gold); border: 1px solid var(--gold);
  color: var(--black); font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; cursor: pointer; transition: all 220ms ease;
}
.inquiry-btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.inquiry-note { margin-top: 18px; color: rgba(240,235,227,0.42); font-size: 12px; letter-spacing: 0.04em; }
.inquiry-success { margin-top: 30px; padding: 28px; border: 1px solid rgba(201,169,110,0.5); color: var(--gold); text-align: center; font-size: 14px; letter-spacing: 0.05em; }
@media (max-width: 720px) { .inquiry-row { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Footer ---------- */
.ep-footer { padding-block: 70px 34px; border-top: 1px solid var(--border); background: #060606; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand .nav-logo { font-size: 26px; }
.footer-brand p { max-width: 360px; margin-top: 18px; color: rgba(240,235,227,0.52); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; }
.footer-col h4 { margin-bottom: 18px; color: var(--gold); font-size: 10px; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-col a { color: rgba(240,235,227,0.56); font-size: 13px; text-decoration: none; transition: color 200ms ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; border-top: 1px solid var(--border-soft); flex-wrap: wrap; }
.footer-bottom p { color: rgba(240,235,227,0.38); font-size: 11px; letter-spacing: 0.06em; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a { color: rgba(240,235,227,0.38); font-size: 11px; letter-spacing: 0.06em; text-decoration: none; transition: color 200ms ease; }
.footer-legal a:hover { color: var(--white); }
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Legal / policy pages ---------- */
.ep-pol-hero {
  padding: clamp(140px, 18vh, 220px) var(--pad-x) clamp(60px, 9vw, 96px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0%, rgba(201,169,110,0.08), transparent 45%),
    var(--black);
}
.ep-pol-hero .over { color: var(--gold); font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; margin-bottom: 18px; }
.ep-pol-hero h1 { font-size: clamp(40px, 6vw, 84px); margin-bottom: 18px; }
.ep-pol-hero .sub { max-width: 620px; margin: 0 auto 14px; color: rgba(240,235,227,0.66); font-style: italic; font-family: var(--serif); font-size: 20px; }
.ep-pol-hero .eff { color: var(--muted); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.ep-pol-body { max-width: 820px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) var(--pad-x) clamp(80px, 12vw, 140px); }
.ep-pol-body h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--gold); margin: 52px 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.ep-pol-body h2:first-child { margin-top: 0; }
.ep-pol-body p { font-size: 15px; line-height: 1.95; color: rgba(240,235,227,0.74); margin-bottom: 18px; }
.ep-pol-body ul { padding-left: 22px; margin-bottom: 18px; }
.ep-pol-body li { font-size: 15px; line-height: 1.85; color: rgba(240,235,227,0.74); margin-bottom: 8px; }
.ep-pol-body li::marker { color: var(--gold); }
.ep-pol-pledge { margin: 36px 0; padding: 32px 38px; border-left: 2px solid var(--gold); background: rgba(201,169,110,0.05); }
.ep-pol-pledge p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--cream); }
.ep-pol-box { margin-top: 60px; padding: 28px 36px; background: rgba(201,169,110,0.05); border: 1px solid var(--border); }
.ep-pol-box p { margin: 0; font-size: 14px; color: rgba(240,235,227,0.66); }
.ep-pol-box a { color: var(--gold); text-decoration: underline; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* CAPTURE-TEMP */
.ep-hero,.ep-page-hero{height:760px!important;min-height:760px!important;max-height:760px!important}
.reveal{opacity:1!important;transform:none!important}
