@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600&display=swap");

:root {
  --ink: #1d271f;
  --soft-ink: #536057;
  --paper: #f4f1e9;
  --white: #fffdf8;
  --moss: #62725c;
  --forest: #1a2b20;
  --gold: #b19757;
  --line: rgba(29, 39, 31, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.7; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.ep-shell { width: min(1220px, calc(100% - 48px)); margin: 0 auto; }
.ep-nav { position: absolute; inset: 0 0 auto; z-index: 5; color: white; }
.ep-nav .ep-shell { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.ep-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ep-brand img { width: 42px; height: 42px; object-fit: contain; }
.ep-brand span { display: grid; font-size: 12px; line-height: 1.25; }
.ep-brand strong { font-family: Poppins, sans-serif; font-size: 16px; font-weight: 600; }
.ep-menu { display: flex; align-items: center; gap: 22px; }
.ep-menu a { font-size: 12px; text-decoration: none; }
.ep-status { padding: 7px 11px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.ep-hero { position: relative; min-height: min(780px, 92vh); display: grid; align-items: end; color: white; overflow: hidden; background: var(--forest); }
.ep-hero > img, .ep-hero > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ep-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,18,12,.12), rgba(9,18,12,.72)); }
.ep-hero-content { position: relative; z-index: 1; width: min(1000px, 100%); padding: 170px 0 100px; }
.ep-eyebrow { margin: 0 0 18px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Poppins, sans-serif; font-weight: 500; line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 900px; font-size: clamp(46px, 7vw, 92px); }
.ep-lead { max-width: 720px; margin: 26px 0 0; font-size: clamp(18px, 2vw, 24px); line-height: 1.55; }
.ep-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.ep-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid currentColor; border-radius: 4px; text-decoration: none; font-size: 12px; font-weight: 600; }
.ep-button.primary { color: var(--forest); background: var(--white); border-color: var(--white); }
.ep-button:hover, .ep-button:focus-visible { transform: translateY(-2px); }
.ep-section { padding: 140px 0; }
.ep-section.white { background: var(--white); }
.ep-section.dark { color: var(--paper); background: var(--forest); }
.ep-section-head { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); gap: 80px; align-items: start; margin-bottom: 70px; }
.ep-section h2 { font-size: clamp(36px, 5vw, 66px); }
.ep-section-copy { max-width: 680px; color: var(--soft-ink); font-size: 17px; }
.dark .ep-section-copy { color: rgba(244,241,233,.72); }
.ep-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ep-card { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.42); border-radius: 6px; text-decoration: none; }
.ep-card:hover, .ep-card:focus-visible { background: var(--white); transform: translateY(-4px); }
.ep-card small { color: var(--moss); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.ep-card h3 { margin-top: 20px; font-size: clamp(24px, 3vw, 36px); }
.ep-card p { color: var(--soft-ink); }
.ep-card .ep-link { font-size: 12px; font-weight: 600; }
.ep-status-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.ep-status-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.ep-status-row:nth-child(odd) { padding-right: 30px; }
.ep-status-row:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--line); }
.ep-status-row span:last-child { color: var(--moss); font-size: 11px; text-transform: uppercase; }
.ep-note { max-width: 760px; padding-left: 24px; border-left: 2px solid var(--gold); }
.ep-note p { margin: 0; }
.ep-contact { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.ep-contact p { max-width: 660px; color: rgba(244,241,233,.72); }
.ep-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.ep-form label { display: grid; gap: 8px; color: rgba(244,241,233,.72); font-size: 12px; }
.ep-form label.full { grid-column: 1 / -1; }
.ep-form input, .ep-form textarea, .ep-form select { width: 100%; border: 0; border-bottom: 1px solid rgba(244,241,233,.35); border-radius: 0; padding: 13px 0; color: white; background: transparent; outline: none; }
.ep-form textarea { min-height: 130px; resize: vertical; }
.ep-form input:focus, .ep-form textarea:focus, .ep-form select:focus { border-color: #d9c88a; }
.ep-form button { justify-self: start; cursor: pointer; color: var(--forest); background: var(--paper); }
.ep-form .bot-field { position: absolute; left: -9999px; }
.ep-footer { padding: 34px 0; background: #101a14; color: rgba(255,255,255,.66); font-size: 11px; }
.ep-footer .ep-shell { display: flex; justify-content: space-between; gap: 20px; }
.ep-footer a { color: white; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .ep-shell { width: min(100% - 30px, 1220px); }
  .ep-menu a:not(.ep-status) { display: none; }
  .ep-hero { min-height: 760px; }
  .ep-section { padding: 100px 0; }
  .ep-section-head, .ep-contact { grid-template-columns: 1fr; gap: 34px; }
  .ep-grid { grid-template-columns: 1fr; }
  .ep-card { min-height: 260px; }
  .ep-status-list { grid-template-columns: 1fr; }
  .ep-form { grid-template-columns: 1fr; }
  .ep-status-row:nth-child(n) { padding: 20px 0; border-left: 0; }
}

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