@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@200;300;400;500;600&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --white: #FAF8F4;
  --off-white: #E8E4DC;
  --text-muted: #888880;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --radius: 2px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: default;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ─── NAV ─── */
.ep-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 5vw;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.ep-nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: rgba(201,168,76,0.2);
}
.ep-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.ep-logo span { color: var(--white); font-weight: 300; font-style: italic; }
.ep-nav-links { display: flex; gap: 2.5rem; list-style: none; }
.ep-nav-links a {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--off-white); text-decoration: none;
  transition: var(--transition); position: relative;
}
.ep-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.ep-nav-links a:hover { color: var(--gold-light); }
.ep-nav-links a:hover::after { transform: scaleX(1); }
.ep-nav-cta {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: none; padding: 0.7rem 1.6rem; cursor: pointer;
  transition: var(--transition); text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.ep-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.ep-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.ep-hamburger span { width: 24px; height: 1.5px; background: var(--gold); transition: var(--transition); display: block; }

/* ─── HERO ─── */
.ep-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 8rem 5vw 5rem;
}
.ep-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(139,105,20,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0A0A0A 0%, #111111 50%, #0D0D0D 100%);
}
.ep-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.ep-hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1300px; width: 100%;
}
.ep-hero-eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.ep-hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.ep-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.ep-hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.ep-hero-subtitle {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-muted); max-width: 420px;
  line-height: 1.9; margin-bottom: 2.5rem;
}
.ep-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.ep-btn-primary {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; padding: 1rem 2.2rem; cursor: pointer;
  transition: var(--transition); text-decoration: none; display: inline-block;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: 0 4px 30px rgba(201,168,76,0.2);
}
.ep-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.35);
}
.ep-btn-outline {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid rgba(201,168,76,0.4); padding: 1rem 2.2rem; cursor: pointer;
  transition: var(--transition); text-decoration: none; display: inline-block;
}
.ep-btn-outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Hero Stats */
.ep-hero-stats {
  display: flex; flex-direction: column; gap: 2rem;
  position: relative; padding-left: 3rem;
}
.ep-hero-stats::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
}
.ep-stat-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 1.5rem 2rem;
  position: relative;
  transition: var(--transition);
}
.ep-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}
.ep-stat-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateX(6px);
}
.ep-stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 0.3rem;
}
.ep-stat-label {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}

/* Scroll indicator */
.ep-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; animation: bounce 2s infinite;
}
.ep-scroll-hint::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─── SECTION HEADER ─── */
.ep-section { padding: 7rem 5vw; position: relative; }
.ep-section-header { text-align: center; margin-bottom: 5rem; }
.ep-section-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
.ep-section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; color: var(--white);
}
.ep-section-title em { color: var(--gold); font-style: italic; }
.ep-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
}

/* ─── SERVICES ─── */
.ep-services { background: var(--dark); }
.ep-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px; max-width: 1300px; margin: 0 auto;
  background: rgba(201,168,76,0.08);
}
.ep-service-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.ep-service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0; transition: var(--transition);
}
.ep-service-card:hover { background: var(--dark-2); }
.ep-service-card:hover::after { opacity: 1; }
.ep-service-icon {
  width: 56px; height: 56px; margin-bottom: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  font-size: 1.6rem;
}
.ep-service-title {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 400; color: var(--white); margin-bottom: 0.8rem;
}
.ep-service-text {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.8;
}

/* ─── PROCESS ─── */
.ep-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 1200px; margin: 0 auto;
  position: relative;
}
.ep-process-steps::before {
  content: ''; position: absolute;
  top: 2.5rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 1px; background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
  z-index: 0;
}
.ep-process-step { text-align: center; padding: 0 2rem; position: relative; z-index: 1; }
.ep-step-num {
  width: 52px; height: 52px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; color: var(--gold);
  background: var(--black);
}
.ep-step-title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 400; color: var(--white); margin-bottom: 0.7rem;
}
.ep-step-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }

/* ─── GALLERY TICKER ─── */
.ep-ticker { overflow: hidden; padding: 3rem 0; background: var(--dark-2); border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); }
.ep-ticker-inner { display: flex; gap: 3rem; animation: ticker 30s linear infinite; white-space: nowrap; }
.ep-ticker:hover .ep-ticker-inner { animation-play-state: paused; }
.ep-ticker-item {
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic;
  color: var(--text-muted); letter-spacing: 0.05em;
  flex-shrink: 0;
  display: flex; align-items: center; gap: 1.5rem;
}
.ep-ticker-item::before { content: '◆'; font-size: 0.5rem; color: var(--gold); font-style: normal; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── FORM SECTION ─── */
.ep-form-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.ep-form-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 0% 100%, rgba(201,168,76,0.05), transparent),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(201,168,76,0.03), transparent);
}
.ep-form-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
  position: relative; z-index: 1;
}
.ep-form-left {}
.ep-form-left .ep-section-header { text-align: left; margin-bottom: 3rem; }
.ep-form-left .ep-divider { margin-left: 0; }
.ep-form-feature {
  display: flex; align-items: flex-start; gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.ep-form-feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.05);
  font-size: 1.1rem;
}
.ep-form-feature-text h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.25rem;
}
.ep-form-feature-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* The Form */
.ep-form-right {}
.ep-form-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
  position: relative;
}
.ep-form-card::before {
  content: ''; position: absolute; top: 0; left: 2rem; right: 2rem;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ep-form-card-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.4rem;
}
.ep-form-card-sub {
  font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}
.ep-form-group { margin-bottom: 1.5rem; }
.ep-form-label {
  display: block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.ep-form-input, .ep-form-select, .ep-form-textarea {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  padding: 0.9rem 1.1rem;
  transition: var(--transition); outline: none;
  -webkit-appearance: none; appearance: none;
}
.ep-form-input::placeholder, .ep-form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.ep-form-input:focus, .ep-form-select:focus, .ep-form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}
.ep-form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.ep-form-select option { background: var(--dark-2); color: var(--white); }
.ep-form-textarea { resize: vertical; min-height: 100px; }
.ep-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ep-form-submit {
  width: 100%; padding: 1.1rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--black); cursor: pointer; border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: var(--transition); margin-top: 0.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 4px 30px rgba(201,168,76,0.2);
}
.ep-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.35);
}
.ep-form-submit svg { width: 18px; height: 18px; }
.ep-form-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }
.ep-form-note a { color: var(--gold); text-decoration: none; }

/* ─── WHY US ─── */
.ep-why { background: var(--black); }
.ep-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.ep-why-card {
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.ep-why-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0; transition: var(--transition);
}
.ep-why-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }
.ep-why-card:hover::before { opacity: 1; }
.ep-why-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.ep-why-title {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; color: var(--white); margin-bottom: 0.7rem;
}
.ep-why-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; }

/* ─── TESTIMONIALS ─── */
.ep-testimonials { background: var(--dark-2); }
.ep-test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.ep-test-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem;
  transition: var(--transition);
}
.ep-test-card:hover { border-color: rgba(201,168,76,0.2); }
.ep-test-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
.ep-test-text {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--off-white); line-height: 1.8; margin-bottom: 1.5rem;
}
.ep-test-author { display: flex; align-items: center; gap: 1rem; }
.ep-test-avatar {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
}
.ep-test-name { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.ep-test-role { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ─── FOOTER ─── */
.ep-footer {
  background: var(--dark); border-top: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 5vw 2rem;
}
.ep-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; max-width: 1300px; margin: 0 auto 3rem;
}
.ep-footer-brand .ep-logo { display: block; margin-bottom: 1rem; font-size: 1.5rem; }
.ep-footer-brand p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.ep-footer-col h4 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.ep-footer-col ul { list-style: none; }
.ep-footer-col ul li { margin-bottom: 0.6rem; }
.ep-footer-col ul a { font-size: 0.83rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.ep-footer-col ul a:hover { color: var(--gold-light); }
.ep-footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.08);
  font-size: 0.75rem; color: var(--text-muted);
}
.ep-footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─── MODAL SUCCESS ─── */
.ep-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.ep-modal.active { opacity: 1; pointer-events: all; }
.ep-modal-box {
  background: var(--dark-2); border: 1px solid rgba(201,168,76,0.25);
  padding: 3.5rem; max-width: 480px; width: 90%; text-align: center;
  transform: translateY(20px) scale(0.97); transition: var(--transition);
  position: relative;
}
.ep-modal.active .ep-modal-box { transform: translateY(0) scale(1); }
.ep-modal-box::before {
  content: ''; position: absolute; top: 0; left: 2rem; right: 2rem;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ep-modal-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.ep-modal-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.8rem;
}
.ep-modal-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.ep-modal-close {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: none; padding: 0.8rem 2rem; cursor: pointer;
  transition: var(--transition);
}
.ep-modal-close:hover { background: var(--gold-light); }

/* ─── FADE ANIMATIONS ─── */
.ep-fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ep-fade-in.visible { opacity: 1; transform: translateY(0); }
.ep-fade-in:nth-child(2) { transition-delay: 0.1s; }
.ep-fade-in:nth-child(3) { transition-delay: 0.2s; }
.ep-fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ep-hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .ep-hero-stats { flex-direction: row; flex-wrap: wrap; padding-left: 0; padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.15); }
  .ep-hero-stats::before { display: none; }
  .ep-stat-card { flex: 1; min-width: 140px; }
  .ep-process-steps { grid-template-columns: repeat(2, 1fr); }
  .ep-process-steps::before { display: none; }
  .ep-form-container { grid-template-columns: 1fr; gap: 3rem; }
  .ep-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ep-test-grid { grid-template-columns: repeat(2, 1fr); }
  .ep-footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .ep-nav-links { display: none; }
  .ep-nav-cta { display: none; }
  .ep-hamburger { display: flex; }
  .ep-nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); align-items: center; justify-content: center; gap: 2rem; z-index: 99; }
  .ep-nav-links.open a { font-size: 1rem; }
  .ep-services-grid { grid-template-columns: 1fr; }
  .ep-process-steps { grid-template-columns: 1fr; }
  .ep-why-grid { grid-template-columns: 1fr; }
  .ep-test-grid { grid-template-columns: 1fr; }
  .ep-form-row { grid-template-columns: 1fr; }
  .ep-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .ep-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
