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

:root {
  --epc-black: #0B0B0B;
  --epc-gold: #C9B27F;
  --epc-gold-light: #E1D3A8;
  --epc-gold-dim: rgba(201,178,127,.55);
  --epc-ink: #F2EDE6;
  --epc-ink-dim: #d8d2c7;
  --epc-line: rgba(201,178,127,.18);
  --epc-bg: #000;
  --epc-mute: rgba(242,237,230,.70);
  --epc-mute2: rgba(242,237,230,.55);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--epc-black);
  color: var(--epc-ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--epc-gold);
  color: var(--epc-black);
  padding: 10px 12px;
  z-index: 2000;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 10px; }

/* ===== NAV ===== */
.epc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.epc-nav.scrolled {
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--epc-line);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-logo { text-decoration: none; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--epc-gold);
  text-shadow: 0 0 20px rgba(201,178,127,0.3);
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--epc-ink-dim);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .2s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--epc-gold);
  transition: width .25s ease;
}

.nav-link:hover, .nav-link.active { color: var(--epc-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.hamburger {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--epc-gold);
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--epc-gold);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

@media (max-width: 900px) {
  .nav-toggle { 
    display: inline-flex; 
  }
  .nav-container { 
    padding: 0 20px; 
    gap: 12px;
    flex-wrap: nowrap;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 86vw);
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transition: right .35s ease;
    border-left: 1px solid var(--epc-line);
    padding: 24px;
    z-index: 999;
  }
  .nav-menu.active { right: 0; }
  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    -webkit-tap-highlight-color: rgba(201, 178, 127, 0.1);
  }
  .logo-text {
    font-size: 24px;
    letter-spacing: 0.25em;
  }
  .epc-nav {
    padding: 16px 0;
  }
  .nav-actions {
    margin-left: 8px;
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-phone {
    padding: 8px 10px;
    font-size: 11px;
    white-space: nowrap;
  }
  .nav-book {
    padding: 8px 12px;
    font-size: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
    gap: 8px;
  }
  .nav-actions {
    margin-left: 4px;
    gap: 6px;
  }
  .nav-phone {
    padding: 8px 8px;
    font-size: 10px;
  }
  .nav-book {
    padding: 8px 10px;
    font-size: 9px;
    letter-spacing: .1em;
  }
  .logo-text {
    font-size: 20px;
  }
}

/* ===== HERO ===== */
.epc-hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hybrid: keep cinematic contrast but let the "ELITE" lettering read clearly */
  object-position: center center;
  filter: grayscale(20%) brightness(.90);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* EPC: pure black overlay for cinematic, high-end contrast */
  background: rgba(0,0,0,.62);
}

/* ===== NAV: PHONE CTA ===== */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 18px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(201, 178, 127, 0.28);
  background: rgba(201, 178, 127, 0.08);
  color: var(--epc-ink);
  text-decoration: none;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone:hover {
  border-color: rgba(201, 178, 127, 0.5);
  background: rgba(201, 178, 127, 0.12);
}

.nav-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(201, 178, 127, 0.55);
  background: rgba(201, 178, 127, 0.16);
  color: var(--epc-ink);
  text-decoration: none;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-book:hover {
  background: rgba(201, 178, 127, 0.22);
  border-color: rgba(201, 178, 127, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* Anchor content lower so it doesn't cover the "ELITE" lettering baked into the hero video */
  align-self: end;
  padding: 120px 18px clamp(110px, 14vh, 190px);
}

.hero-kicker {
  margin: 0 0 14px 0;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(201,178,127,.88);
  font-weight: 800;
}

.hero-logos{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 10px 0;
}

.hero-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(201,178,127,.28);
  background: rgba(201,178,127,.08);
  color: rgba(242,237,230,.8);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 900;
}

.hero-titleText {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px, 12vw, 140px);
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--epc-ink);
  text-shadow: 0 0 40px rgba(201,178,127,0.22);
}

.hero-ctaRow {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  min-height: 44px;
  min-width: min(260px, 100%);
}

.hero-cta--primary {
  background: #C9B27F;
  border: 1px solid #C9B27F;
  color: #070707;
}

.hero-cta--secondary {
  background: rgba(201,178,127,.14);
  border: 1px solid rgba(201,178,127,.55);
  color: var(--epc-ink);
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.hero-micro {
  margin: 14px auto 0;
  max-width: 62ch;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: rgba(242,237,230,.65);
}

.hero-title {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 60px);
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 15vw, 220px);
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--epc-ink);
  text-shadow: 0 0 40px rgba(201,178,127,0.35);
}

.hero-letter {
  opacity: 0;
  transform: translateY(28px);
  animation: letterReveal .75s ease forwards;
}
.hero-letter:nth-child(1) { animation-delay: .15s; }
.hero-letter:nth-child(2) { animation-delay: .30s; }
.hero-letter:nth-child(3) { animation-delay: .45s; }
.hero-letter:nth-child(4) { animation-delay: .60s; }
.hero-letter:nth-child(5) { animation-delay: .75s; }

@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0); }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-sub {
  margin-top: 18px;
  font-family: 'Montserrat', system-ui, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242,237,230,.66);
}
.hero-sub .dot { color: var(--epc-gold); padding: 0 8px; }

@media (max-width: 768px) {
  .epc-hero {
    height: 100vh;
    min-height: 600px;
  }
  .hero-content {
    padding: 110px 20px clamp(96px, 12vh, 150px);
  }
  .hero-title {
    gap: clamp(12px, 3vw, 40px);
    font-size: clamp(48px, 12vw, 180px);
  }
  .hero-sub {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: .2em;
  }
}

@media (max-width: 480px) {
  /* Mobile: shorter height to show more width (horizontal ELITE word) */
  .epc-hero {
    height: 70vh;
    min-height: 400px;
  }
  /* Mobile: no zoom, show full width for horizontal ELITE word */
  .hero-video{
    object-fit: cover;
    object-position: center center;
  }
  /* Move content up - reduce padding to eliminate black space */
  .hero-content {
    padding: 60px 20px 50px;
  }
  .hero-title {
    font-size: clamp(40px, 10vw, 140px);
    gap: clamp(8px, 2.5vw, 30px);
  }
  .hero-sub {
    margin-top: 14px;
    font-size: 10px;
  }
}

/* ===== MARQUEE ===== */
#epc-marquee {
  border-block: 1px solid var(--epc-line);
  padding: 0px 0;
}
#epc-marquee .mq-viewport {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-inline: 8px;
}
#epc-marquee .mq-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: epc-marquee 66s linear infinite;
}
#epc-marquee:hover .mq-track { animation-play-state: paused; }
#epc-marquee .mq-item {
  font-family: "Playfair Display", serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--epc-gold-dim);
  font-size: clamp(12px, 1.6vw, 15px);
}
#epc-marquee .mq-sep { color: var(--epc-gold); opacity: .9; }

@keyframes epc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== CTA BARS ===== */
.epc-cta-bars--moody {
  text-align: center;
  margin: 34px auto;
  padding: 0 18px;
}

.epc-cta-kicker {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(242,237,230,.42);
  margin-bottom: 14px;
}

.epc-cta-row {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.epc-cta-btn {
  position: relative;
  display: grid;
  place-items: center;
  height: 54px;
  text-decoration: none;
  border: 1px solid var(--epc-line);
  /* Hybrid: outline-only buttons for CALL / LOCATION / EMAIL */
  background: transparent;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 14px;
  color: rgba(201,178,127,.86);
  transition: transform .18s ease, border-color .18s ease, color .18s ease;
}

.epc-cta-btn:hover {
  border-color: rgba(201,178,127,.46);
  transform: translateY(-1px);
  color: rgba(201,178,127,.98);
}

.epc-cta-btn--book {
  width: min(1100px, 100%);
  margin: 12px auto 0;
  height: 64px;
  letter-spacing: .20em;
  /* Hybrid: primary CTA filled gold */
  background: var(--epc-gold);
  border-color: var(--epc-gold);
  color: #000;
}

.epc-cta-btn--book:hover {
  color: #000;
}

/* Hybrid: remove CRO-only homepage blocks */
.epc-assess-cta2,
.epc-how,
.epc-mission,
#services-accordion { display: none; }

/* Services: image cards on desktop and mobile (no accordion) */

/* Keep the old SVG quick-links hidden (user prefers clean / uncluttered) */
.epc-draw-break { display: none !important; }

/* ===== TESTIMONIALS (Refined grid) ===== */
.epc-testimonials-grid{
  background: #000;
  color: #F2EDE6;
  padding: clamp(84px, 10vw, 120px) 20px;
  border-top: 1px solid rgba(201,178,127,.18);
  border-bottom: 1px solid rgba(201,178,127,.18);
  overflow: hidden;
}
.epc-testimonials-grid .wrap{
  max-width: 1100px;
  margin: 0 auto;
}
.epc-testimonials-grid .tg-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 12px 0;
}
.epc-testimonials-grid .tg-eyebrow{
  margin: 0;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(201,178,127,.90);
  font-weight: 700;
}
.epc-testimonials-grid .tg-rating{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(201,178,127,.22);
  background: rgba(201,178,127,.06);
  border-radius: 999px;
  color: rgba(242,237,230,.88);
  line-height: 1;
  white-space: nowrap;
}
.epc-testimonials-grid .tg-stars{
  color: rgba(201,178,127,.92);
  letter-spacing: .12em;
  font-size: 12px;
}
.epc-testimonials-grid .tg-ratingText{
  font-size: 12px;
  color: rgba(242,237,230,.72);
}
.epc-testimonials-grid .tg-ratingText strong{
  color: rgba(242,237,230,.92);
  font-weight: 700;
}
.epc-testimonials-grid .tg-title{
  margin: 0 0 26px 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: .06em;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.12;
}
.epc-testimonials-grid .tg-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.epc-testimonials-grid .tg-item{
  margin: 0;
  border: 1px solid rgba(201,178,127,.20);
  background: rgba(255,255,255,.02);
  border-radius: 4px;
  padding: 30px;
}
.epc-testimonials-grid .tg-quote{
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(242,237,230,.90);
}
.epc-testimonials-grid .tg-meta{
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,237,230,.58);
}
@media (max-width: 980px){
  .epc-testimonials-grid .tg-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .epc-testimonials-grid .tg-rating{
    padding: 9px 12px;
  }
  .epc-testimonials-grid .tg-grid{ grid-template-columns: 1fr; }
  .epc-testimonials-grid .tg-quote{ font-size: 18px; }
}

@media (max-width: 820px) {
  .epc-cta-row { 
    grid-template-columns: 1fr; 
    gap: 10px; 
  }
  .epc-cta-btn {
    min-height: 44px;
    font-size: 13px;
    -webkit-tap-highlight-color: rgba(201, 178, 127, 0.1);
  }
  .epc-cta-btn--book {
    min-height: 52px;
  }
}

/* ===== DRAW CARDS ===== */
.epc-draw-break { padding: clamp(14px, 2.5vw, 26px) 0; }
.epc-draw-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 18px);
}

.epc-draw-card {
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(201,178,127,.18);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  min-height: 140px;
}

.epc-draw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,178,127,.38);
  box-shadow: 0 16px 34px rgba(0,0,0,.10), 0 0 30px rgba(201,178,127,.15);
}

.epc-draw-media { padding: clamp(10px, 1.7vw, 16px); }
.epc-draw-svg { width: 100%; height: auto; color: var(--epc-gold); display: block; }

.epc-draw-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.epc-draw-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(0,0,0,.72);
  color: #E7D8B7;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 1.1vw, 14px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}
.epc-draw-kicker { display:block; font-weight: 600; letter-spacing: .26em; opacity: .78; margin-bottom: 6px; font-size: .78em; }
.epc-draw-card:hover .epc-draw-label { opacity: 1; transform: translateY(0); }

.epc-draw-break.is-animating .epc-draw-svg path { animation: epcDraw 1.35s ease forwards; }
@keyframes epcDraw { to { stroke-dashoffset: 0; } }

@media (max-width: 860px) {
  .epc-draw-wrap { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 0 10px; }
  .epc-draw-card { min-height: 108px; }
}

/* ===== MANIFESTO ===== */
.manifesto-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto-bg img {
  width: 100%;
  height: 100%;
  padding-top: 90px;
  object-fit: cover;
  filter: blur(2px) brightness(1.35) contrast(1.1);
  transform: scale(1.03);
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.3), rgba(0,0,0,0.85) 65%),
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.75));
  pointer-events: none;
}

.manifesto-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}

.manifesto-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 2rem;
  max-width: 2200px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-line {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.38em;
  color: #D4B896;
  font-size: clamp(15px, 2.2vw, 30px);
  line-height: 1.6;
  opacity: 0;
  text-shadow: 
    0 2px 8px rgba(0,0,0,0.8),
    0 4px 16px rgba(0,0,0,0.6),
    0 8px 32px rgba(0,0,0,0.4);
  animation: fadeInSlow 2.2s ease-out forwards;
  margin: 0.6rem 0;
}

.manifesto-line.line2 {
  animation-delay: 1.2s;
}

.manifesto-accent {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.4), transparent);
  margin: 32px auto 0;
  opacity: 0;
  animation: fadeInSlow 2s ease-out 2.4s forwards;
}

@keyframes fadeInSlow {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  font-weight: 300;
  font-style: italic;
  color: rgba(224,224,224,0.72);
  text-transform: uppercase;
  text-align: center;
  padding: 80px 20px 4px;
  background: #000;
  opacity: 0;
  transform: translateY(2px);
  animation: floatIn 1.6s ease-out 0.8s forwards;
}

@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .manifesto-section {
    min-height: 55vh;
  }
  .manifesto-line {
    font-size: clamp(11px, 3.2vw, 18px);
    letter-spacing: 0.22em;
  }
  .manifesto-content {
    padding: 60px 1.5rem;
  }
  .manifesto-bg img {
    filter: blur(1.5px) brightness(0.32) contrast(1.1);
  }
}

@media (max-width: 480px) {
  .manifesto-section {
    min-height: 50vh;
  }
  .manifesto-content {
    padding: 40px 1rem;
  }
  .manifesto-line {
    font-size: clamp(10px, 3vw, 16px);
  }
}

/* ===== ACCORDION ===== */
.epc-accordion {
  max-width: 980px;
  margin: 14px auto 0;
  padding: 0 10px;
  position: relative;
}

.epc-services-label {
  font-family:"Playfair Display", serif;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:.30em;
  font-size:clamp(11px,1.2vw,13px);
  color:rgba(242,237,230,.36);
  margin:0 0 6px;
}

.acc-item { border-top: 1px solid var(--epc-line); }
.acc-item:last-child { border-bottom: 1px solid var(--epc-line); }

.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family:"Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(18px, 5vw, 22px);
  color: var(--epc-ink);
  text-align: left;
  position: relative;
}

.acc-icon { width: 22px; height: 22px; position: relative; }
.acc-icon::before {
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:12px;
  height:12px;
  border-right:1.5px solid var(--epc-gold);
  border-top:1.5px solid var(--epc-gold);
  transform:rotate(135deg);
  transition: transform .25s ease;
}
.acc-item.is-open .acc-icon::before { transform: rotate(315deg); }

.acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.22,.61,.36,1);
}

.acc-list {
  margin: 10px 0 16px;
  padding: 0 0 0 22px;
  list-style: disc;
}

.acc-list li { margin: 8px 0; font-size: clamp(15px, 4.2vw, 18px); }
.acc-list li::marker { color: var(--epc-gold); }

.acc-link { 
  color: var(--epc-ink-dim); 
  text-decoration: none; 
  transition: color .2s ease; 
  display: inline-block;
  padding: 4px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.acc-item.is-open .acc-link { color: var(--epc-ink); }
.acc-link:hover { color: #fff; }

@media (max-width: 768px) {
  .acc-trigger {
    min-height: 48px;
    padding: 14px 0;
    font-size: clamp(16px, 4.5vw, 20px);
    -webkit-tap-highlight-color: rgba(201, 178, 127, 0.1);
  }
  .acc-list {
    padding-left: 18px;
  }
  .acc-list li {
    font-size: clamp(14px, 4vw, 16px);
    margin: 10px 0;
    line-height: 1.6;
  }
  .epc-accordion {
    padding: 0 16px;
  }
}

/* ===== SECTIONS ===== */
.epc-section {
  max-width: 1100px;
  margin: 72px auto 0;
  padding: 0 18px;
}
.epc-section--tight { margin-top: 44px; }

@media (max-width: 768px) {
  .epc-section {
    margin-top: 48px;
    padding: 0 20px;
  }
  .epc-section--tight {
    margin-top: 32px;
  }
}

.epc-section-inner {
  border-top: 1px solid var(--epc-line);
  padding-top: 28px;
}

.epc-section-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(18px, 3vw, 26px);
  color: rgba(242,237,230,.92);
}

.epc-section-copy {
  margin-top: 12px;
  color: rgba(242,237,230,.68);
  font-size: 16px;
  max-width: 70ch;
}

.inline-link { color: var(--epc-gold-light); text-decoration: none; }
.inline-link:hover { color: #fff; }

/* ===== QUIZ/INTAKE SECTION ===== */
.epc-intake-section {
  min-height: 100vh;
  background: #000;
  padding: 100px 20px;
  position: relative;
}

.intake-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.intake-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.intake-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #C9B27F;
  margin-bottom: 16px;
  text-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.intake-subtitle {
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 200;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.6);
}

.step {
  display: none;
  opacity: 0;
}

.step.active {
  display: block;
  animation: slideIn 0.7s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.step-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 178, 127, 0.62);
  margin-bottom: 24px;
  text-align: center;
}

.step-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #F2EDE6;
  margin-bottom: 48px;
  text-align: center;
  line-height: 1.4;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}

.option-btn {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 178, 127, 0.28);
  color: #F2EDE6;
  padding: 28px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.option-btn:focus-visible{
  outline: 2px solid rgba(201,178,127,.65);
  outline-offset: 3px;
}

.option-btn:hover {
  background: rgba(201, 178, 127, 0.08);
  border-color: rgba(201, 178, 127, 0.5);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(201, 178, 127, 0.15);
}

/* ===== BODY MAP ===== */
.body-map-container {
  margin-top: 32px;
}

.body-map-hint {
  font-size: 13px;
  color: rgba(242, 237, 230, 0.6);
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.body-map {
  position: relative;
  width: min(360px, 90vw);
  aspect-ratio: 3 / 5;
  margin: 0 auto;
}

.body-region {
  position: absolute;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), 
              border-color 0.3s ease,
              filter 0.3s ease;
  transform-origin: center center;
}

.body-region:hover {
  transform: scale(1.08);
  border-color: rgba(201, 178, 127, 0.4);
  filter: drop-shadow(0 0 12px rgba(201, 178, 127, 0.6));
}

.body-region.is-selected {
  transform: scale(1.12);
  border-color: #C9B27F !important;
  filter: drop-shadow(0 0 16px rgba(201, 178, 127, 1)) !important;
  animation: pulse-selection 1.5s ease-in-out infinite;
}

.body-region.is-selected:hover {
  transform: scale(1.15);
}

@keyframes pulse-selection {
  0%, 100% {
    filter: drop-shadow(0 0 16px rgba(201, 178, 127, 1));
  }
  50% {
    filter: drop-shadow(0 0 24px rgba(225, 211, 168, 1));
  }
}

.body-region svg {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.body-region svg path {
  stroke: #C9B27F !important;
  fill: rgba(201, 178, 127, 0.15) !important;
  stroke-width: 1.8 !important;
  vector-effect: non-scaling-stroke;
  transition: all 0.3s ease;
}

.body-region:hover svg path {
  stroke: #E1D3A8 !important;
  fill: rgba(225, 211, 168, 0.25) !important;
  stroke-width: 2.5 !important;
}

.body-region.is-selected svg path {
  stroke: #E1D3A8 !important;
  fill: rgba(201, 178, 127, 0.45) !important;
  stroke-width: 3 !important;
}

.region-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.body-region[data-area="head"] { 
  left: 50%; 
  top: 0%; 
  width: 40%; 
  height: 18%; 
  transform: translateX(-50%);
}

.body-region[data-area="head"]:hover {
  transform: translateX(-50%) scale(1.08);
}

.body-region[data-area="head"].is-selected {
  transform: translateX(-50%) scale(1.12);
}

.body-region[data-area="head"].is-selected:hover {
  transform: translateX(-50%) scale(1.15);
}

.body-region[data-area="torso"] { 
  left: 50%; 
  top: 11%; 
  width: 35%; 
  height: 26%; 
  transform: translateX(-50%);
}

.body-region[data-area="torso"]:hover {
  transform: translateX(-50%) scale(1.08);
}

.body-region[data-area="torso"].is-selected {
  transform: translateX(-50%) scale(1.12);
}

.body-region[data-area="torso"].is-selected:hover {
  transform: translateX(-50%) scale(1.15);
}

.body-region[data-area="left-arm"] { 
  left: 19%; 
  top: 15%; 
  width: 14%; 
  height: 28%; 
}

.body-region[data-area="right-arm"] { 
  right: 14%; 
  top: 13%; 
  width: 23%; 
  height: 32%; 
}

.body-region[data-area="hips"] { 
  left: 50%; 
  top: 29%; 
  width: 33%; 
  height: 12%; 
  transform: translateX(-50%);
}

.body-region[data-area="hips"]:hover {
  transform: translateX(-50%) scale(1.08);
}

.body-region[data-area="hips"].is-selected {
  transform: translateX(-50%) scale(1.12);
}

.body-region[data-area="hips"].is-selected:hover {
  transform: translateX(-50%) scale(1.15);
}

.body-region[data-area="left-leg"] { 
  left: 33%; 
  top: 29%; 
  width: 19%; 
  height: 52%; 
}

.body-region[data-area="right-leg"] { 
  right: 28%; 
  top: 22%; 
  width: 23%; 
  height: 66%; 
}

.body-map-selected {
  margin-top: 28px;
  padding: 20px;
  min-height: 70px;
  background: linear-gradient(135deg, rgba(201, 178, 127, 0.12), rgba(201, 178, 127, 0.06));
  border: 1px solid rgba(201, 178, 127, 0.3);
  border-radius: 12px;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(242, 237, 230, 0.9);
  text-align: center;
  line-height: 1.8;
  transition: all 0.4s ease;
}

.body-map-selected:empty {
  display: none;
}

.body-map-selected strong {
  color: #C9B27F;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
}

.continue-btn {
  margin-top: 32px !important;
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 56px;
  font-size: 15px;
  letter-spacing: 0.14em;
}

/* ===== QUIZ RESULTS ===== */
.result-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.6));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 178, 127, 0.25);
  padding: 48px 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.result-summary {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(242, 237, 230, 0.78);
  margin: 0 0 22px 0;
  text-align: center;
  line-height: 1.7;
}

.result-fields {
  margin-top: 10px;
}

.result-proceed {
  border: 1px solid rgba(201, 178, 127, 0.18);
  background: rgba(201, 178, 127, 0.06);
  padding: 14px 14px 10px;
  margin: 12px 0 14px;
}

.result-legend {
  padding: 0 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(242, 237, 230, 0.78);
}

.result-radio {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(242, 237, 230, 0.82);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin: 10px 0;
  cursor: pointer;
}

.result-radio input {
  accent-color: #C9B27F;
  width: 18px;
  height: 18px;
}

.result-callout {
  margin-top: 10px;
  padding: 12px 12px;
  border: 1px solid rgba(201, 178, 127, 0.22);
  background: rgba(201, 178, 127, 0.08);
  color: rgba(242, 237, 230, 0.86);
  font-size: 13px;
  line-height: 1.6;
}

.result-callout a {
  color: #C9B27F;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 178, 127, 0.45);
}

.result-micro {
  margin: 8px 0 14px 0;
  font-size: 12px;
  color: rgba(242, 237, 230, 0.6);
  text-align: center;
}

.result-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #C9B27F;
  margin-bottom: 12px;
  text-align: center;
}

.result-intro {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(242, 237, 230, 0.8);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.7;
}

.protocol-list {
  list-style: none;
  margin-bottom: 40px;
}

.protocol-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 178, 127, 0.15);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #F2EDE6;
}

.protocol-item:last-child {
  border-bottom: none;
}

.email-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(201,178,127,.08);
  border: 1px solid rgba(201,178,127,.25);
  color: #f5f5f5;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  transition: all .25s ease;
}

.email-input::placeholder {
  color: rgba(245, 245, 245, 0.4);
}

.email-input:focus {
  outline: none;
  border-color: rgba(201, 178, 127, 0.6);
  background: rgba(201, 178, 127, 0.12);
}

.cta-final {
  display: inline-block;
  background: transparent;
  border: 1px solid #C9B27F;
  color: #C9B27F;
  padding: 16px 48px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  display: block;
}

.cta-final:hover {
  background: #C9B27F;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 178, 127, 0.3);
}

.back-btn {
  background: transparent;
  border: none;
  color: rgba(242, 237, 230, 0.5);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: rgba(242, 237, 230, 0.8);
}

@media (max-width: 768px) {
  .body-map-container {
    margin-top: 24px;
    padding: 0 16px;
  }
  .body-map {
    width: min(320px, 85vw);
  }
  .body-map-hint {
    font-size: 11px;
    margin-bottom: 20px;
    padding: 0 16px;
  }
  .body-map-selected {
    font-size: 13px;
    padding: 16px;
    margin-top: 24px;
    line-height: 1.6;
  }
  .body-map-selected strong {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .continue-btn {
    height: 52px;
    font-size: 14px;
    min-height: 44px;
    padding: 0 24px;
  }
  .body-region {
    min-width: 44px;
    min-height: 44px;
  }
  .body-region:hover {
    transform: scale(1.05);
  }
  .body-region.is-selected {
    transform: scale(1.08);
  }
  .body-region[data-area="head"]:hover,
  .body-region[data-area="torso"]:hover,
  .body-region[data-area="hips"]:hover {
    transform: translateX(-50%) scale(1.05);
  }
  .body-region[data-area="head"].is-selected,
  .body-region[data-area="torso"].is-selected,
  .body-region[data-area="hips"].is-selected {
    transform: translateX(-50%) scale(1.08);
  }
}

@media (max-width: 600px) {
  .intake-title {
    letter-spacing: 0.16em;
    font-size: clamp(28px, 7vw, 40px);
  }
  .step-question {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 32px;
  }
  .option-btn {
    padding: 20px 24px;
    font-size: 15px;
    min-height: 56px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(201, 178, 127, 0.1);
  }
  .result-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  .email-input {
    font-size: 16px;
    min-height: 52px;
    padding: 16px 20px;
  }
  .cta-final {
    min-height: 52px;
    padding: 16px 32px;
    font-size: 14px;
    -webkit-tap-highlight-color: rgba(201, 178, 127, 0.1);
  }
  .back-btn {
    min-height: 44px;
    padding: 8px 16px;
    -webkit-tap-highlight-color: rgba(242, 237, 230, 0.1);
  }
}

/* ===== TESTIMONIALS ===== */
.epc-testimonials{
  position:relative;
  padding: clamp(84px, 10vw, 124px) 20px;
  background: #000;
  color: var(--epc-ink);
  border-top: 1px solid var(--epc-line);
  overflow:hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.epc-testimonials::before{
  content:"";
  position:absolute;
  inset:-40%;
  /* Hybrid: subtler glow, more black space */
  background:radial-gradient(circle at 50% 35%, rgba(201,178,127,.07), transparent 62%);
  pointer-events:none;
}

.epc-testimonials .wrap{
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.t-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.t-eyebrow{
  font-size:10px;
  letter-spacing:.26em;
  font-weight:500;
  text-transform:uppercase;
  color:var(--epc-gold);
  opacity:.9;
}

.t-google{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--epc-line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  white-space:nowrap;
}

.t-google .stars{
  display:flex;
  gap:4px;
}
.t-google .stars svg{
  width:14px;
  height:14px;
  fill:var(--epc-gold);
  opacity:.9;
}

.t-google .meta{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  gap:2px;
}
.t-google .meta strong{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--epc-ink);
  opacity:.92;
}
.t-google .meta span{
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--epc-mute2);
}

.t-viewport{
  position:relative;
  min-height: clamp(240px, 26vw, 300px);
  margin-top: 18px;
}

.t-item{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:0 clamp(18px, 5vw, 64px);
  opacity:0;
  visibility:hidden;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity 1.05s cubic-bezier(.22,.61,.36,1),
    transform 1.05s cubic-bezier(.22,.61,.36,1),
    filter 1.05s cubic-bezier(.22,.61,.36,1),
    visibility 0s 1.05s;
}

.t-item.is-active{
  opacity:1;
  visibility:visible;
  transform:none;
  filter: blur(0);
  transition-delay:0s;
}

.t-quote{
  max-width: 820px;
  margin:0 auto;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.75;
  letter-spacing:.004em;
  font-weight: 300;
  color: var(--epc-ink);
  text-align:center;
}

.t-meta{
  margin-top: clamp(18px, 2.4vw, 26px);
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--epc-mute2);
  font-weight:400;
}

.t-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top: clamp(34px, 5vw, 54px);
}

.t-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(242,237,230,.18);
  border:none;
  cursor:pointer;
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
  opacity:.55;
}
.t-dot:hover{ opacity:.85; }
.t-dot[aria-current="true"]{
  background:var(--epc-gold);
  transform:scale(1.45);
  opacity:1;
}

@media (max-width:768px){
  .epc-testimonials{
    padding: clamp(64px, 10vw, 88px) 18px;
  }
  .t-top{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin-bottom: 10px;
  }
  .t-viewport{
    min-height: 320px;
  }
  .t-item{
    padding: 0 12px;
  }
}

/* ===== ABOUT ===== */
.epc-about{
  background: var(--epc-bg);
  color: var(--epc-ink);
  border-top: 1px solid var(--epc-line);
  padding: clamp(84px, 10vw, 120px) 20px;
  overflow:hidden;
  position:relative;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.epc-about::before{
  content:"";
  position:absolute;
  inset:-35%;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,178,127,.11), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,178,127,.08), transparent 60%);
  pointer-events:none;
}

.epc-about .wrap{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.4vw, 40px);
  /* Stretch so the image and copy blocks match height on desktop */
  align-items: stretch;
  position:relative;
}

.epc-about .media{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(201,178,127,.18);
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  background:#050505;
  height: 100%;
}

.epc-about .media img{
  display:block;
  width:100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit:cover;
  filter: contrast(1.02) saturate(.92);
  transform: scale(1.02);
}

.epc-about .media::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(0,0,0,.10), rgba(0,0,0,.55));
  pointer-events:none;
}

.epc-about .card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(201,178,127,.22);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  height: 100%;
}

.epc-about .eyebrow{
  font-size:10px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--epc-gold);
  opacity:.9;
  margin:0 0 10px;
}

.epc-about h2{
  margin:0 0 12px;
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.12;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  color: var(--epc-ink);
}

.epc-about .lede{
  margin:0 0 14px;
  color: var(--epc-mute);
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.75;
  font-weight: 350;
  letter-spacing:.005em;
}

.epc-about .about-prose{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.epc-about .about-prose p{
  margin: 0;
  color: var(--epc-mute);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 350;
  letter-spacing: .005em;
}

.epc-about .proof{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}

.epc-about .proof-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--epc-mute);
  font-size: 14px;
  line-height: 1.6;
}

.epc-about .dot{
  width:6px;
  height:6px;
  border-radius: 999px;
  background: var(--epc-gold);
  margin-top: 8px;
  flex:0 0 auto;
  opacity:.9;
}

.epc-about .tools{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,178,127,.18);
}

.epc-about .tools-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.epc-about .tools-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform:uppercase;
  color: rgba(242,237,230,.76);
  line-height: 1.5;
}

.epc-about .tools-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius: 999px;
  background: var(--epc-gold);
  margin-top: 7px;
  flex: 0 0 auto;
  opacity: .9;
}

.epc-about .cta{
  margin-top: 18px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.epc-about .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--epc-gold);
  color: var(--epc-gold);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  background: transparent;
}

.epc-about .btn:hover{
  background: var(--epc-gold);
  color:#111;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(201,178,127,.20);
}

.epc-about .link{
  color: rgba(242,237,230,.70);
  text-decoration:none;
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-bottom: 1px solid rgba(201,178,127,.25);
  padding-bottom: 3px;
  transition: opacity .25s ease, border-color .25s ease;
}

.epc-about .link:hover{
  opacity: 1;
  border-color: rgba(201,178,127,.5);
}

.epc-about .reveal{
  opacity:0;
  transform: translateY(26px);
  filter: blur(7px);
  will-change: transform, opacity, filter;
  transition:
    opacity 1.25s cubic-bezier(.22,.61,.36,1),
    transform 1.25s cubic-bezier(.22,.61,.36,1),
    filter 1.25s cubic-bezier(.22,.61,.36,1);
}
.epc-about.is-inview .reveal{
  opacity:1;
  transform:none;
  filter: blur(0);
}
.epc-about.is-inview .delay-1{ transition-delay: .10s; }
.epc-about.is-inview .delay-2{ transition-delay: .20s; }

@media (max-width: 900px){
  .epc-about .wrap{ grid-template-columns: 1fr; }
  .epc-about .media{ height: auto; }
  .epc-about .card{ height: auto; }
  .epc-about .media img{ height: auto; aspect-ratio: 16 / 10; }
  .epc-about .tools-list{ grid-template-columns: 1fr; }
}

/* ===== INSTAGRAM ===== */
.epc-ig{
  background: var(--epc-bg);
  padding: 80px 20px;
}

.epc-ig-wrap{
  width: min(1100px, 100%);
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.epc-ig-wrap img{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.epc-ig-overlay{
  position:absolute;
  inset:0;
  z-index: 5;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none !important;
  background:
    radial-gradient(120% 100% at 50% 45%, rgba(0,0,0,.10), rgba(0,0,0,.68) 70%, rgba(0,0,0,.84)),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.62));
  transition: background .2s ease, backdrop-filter .2s ease;
}

@supports (backdrop-filter: blur(2px)){
  .epc-ig-overlay{ backdrop-filter: blur(1.5px); }
}

.epc-ig-overlay-inner{
  text-align:center;
  padding: 18px 16px;
}

.epc-ig-handle{
  font-family:"Playfair Display", ui-serif, Georgia, serif;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size: 13px;
  color: var(--epc-gold);
}

.epc-ig-sub{
  margin-top: 6px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(242,237,230,.55);
}

.epc-ig-overlay:hover,
.epc-ig-overlay:focus-visible{
  background:
    radial-gradient(120% 100% at 50% 45%, rgba(0,0,0,.06), rgba(0,0,0,.62) 70%, rgba(0,0,0,.82)),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.56));
}

.epc-follow-bar{
  display:flex;
  align-items:center;
  justify-content:center;
  width: min(1100px, 100%);
  height: 56px;
  margin: 40px auto 0;
  border-radius: 0;
  border: 1px solid rgba(201,178,127,.22);
  background: transparent;
  text-decoration:none !important;
  font-family:"Playfair Display", ui-serif, Georgia, serif;
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: var(--epc-gold) !important;
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}

.epc-follow-bar:hover,
.epc-follow-bar:focus-visible{
  background: rgba(201,178,127,.14);
  border-color: rgba(201,178,127,.42);
  transform: translateY(-1px);
}

.epc-follow-bar:active{ transform: translateY(0); }

@media (max-width: 820px){
  .epc-ig-handle{ font-size: 12px; }
  .epc-follow-bar{ height: 58px; }
  .epc-ig-wrap{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FOOTER ===== */
.epc-footer {
  border-top: 1px solid var(--epc-line);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 40px; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: var(--epc-gold);
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--epc-ink-dim);
  margin-top: 10px;
  text-transform: uppercase;
}

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--epc-gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--epc-ink-dim); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--epc-gold); }

.footer-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,178,127,.22);
  background: rgba(201,178,127,.08);
  color: rgba(242,237,230,.7);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--epc-line);
}
.footer-social a { color: var(--epc-gold-dim); transition: color .2s ease; }
.footer-social a:hover { color: var(--epc-gold); }
.footer-copy { font-size: 12px; color: var(--epc-ink-dim); letter-spacing: .05em; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 20px; }
  .footer-container { padding: 0 20px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .manifesto-line,
  .manifesto-accent,
  .tagline,
  .t-item,
  .epc-about .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }
  .manifesto-bg img {
    transform: none;
  }
}

/* ===== SERVICES PAGE ===== */
.epc-services-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  background: #0B0B0B;
}

.epc-services-hero {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--epc-line);
}

.services-page-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.30em;
  font-size: clamp(24px, 4vw, 42px);
  color: #C9B27F;
  margin-bottom: 20px;
}

.services-page-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(242, 237, 230, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.epc-services-content {
  margin-top: 60px;
}

.service-category {
  margin-bottom: 80px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.08em;
  color: var(--epc-ink);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--epc-line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-item {
  padding: 32px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(201, 178, 127, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: rgba(201, 178, 127, 0.3);
  background: rgba(17, 17, 17, 0.8);
  transform: translateY(-2px);
}

.service-name {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: 0.06em;
  color: #C9B27F;
  margin-bottom: 16px;
}

.service-description {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: rgba(242, 237, 230, 0.7);
  font-weight: 300;
}

.epc-cta-section {
  margin-top: 100px;
  padding: 60px 40px;
  background: rgba(201, 178, 127, 0.05);
  border: 1px solid rgba(201, 178, 127, 0.2);
  text-align: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.08em;
  color: var(--epc-ink);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(242, 237, 230, 0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: #C9B27F;
  color: #000;
  border: 1px solid #C9B27F;
}

.cta-btn-primary:hover {
  background: transparent;
  color: #C9B27F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 178, 127, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: #C9B27F;
  border: 1px solid #C9B27F;
}

.cta-btn-secondary:hover {
  background: #C9B27F;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 178, 127, 0.3);
}

/* ===== UNIFIED PAGE HEADER (Understated, Consistent) ===== */
.epc-page-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 40px;
  position: relative;
  z-index: 1;
}

.epc-breadcrumbs {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 178, 127, 0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.epc-breadcrumbs a {
  color: rgba(201, 178, 127, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.epc-breadcrumbs a:hover {
  color: var(--epc-gold);
}

.epc-breadcrumbs-separator {
  color: rgba(201, 178, 127, 0.3);
}

.epc-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--epc-gold);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.epc-page-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(242, 237, 230, 0.65);
  text-transform: uppercase;
  margin: 0;
}

/* Reading Progress Bar for Blog Posts */
.epc-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--epc-gold), var(--epc-gold-light));
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(201, 178, 127, 0.5);
}

/* Blog Post Navigation (Next/Previous) */
.epc-blog-navigation {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 60px 40px;
  border-top: 1px solid rgba(201, 178, 127, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.epc-blog-nav-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.epc-blog-nav-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 178, 127, 0.5);
}

.epc-blog-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--epc-gold);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.epc-blog-nav-link:hover {
  color: var(--epc-gold-light);
}

.epc-blog-nav-item--next {
  text-align: right;
  align-items: flex-end;
}

.epc-blog-nav-item--prev {
  text-align: left;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .epc-page-header {
    padding: 100px 20px 32px;
  }
  
  .epc-page-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .epc-blog-navigation {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }
  
  .epc-blog-nav-item--next {
    text-align: left;
    align-items: flex-start;
  }
  
  .epc-blog-nav-link {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .epc-services-page {
    padding: 100px 16px 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-item {
    padding: 24px;
  }

  .epc-cta-section {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    text-align: center;
  }
}