/* ══════════════════════════════════════════════════════════════
   ÉCHELLE VENTURES — Editorial Design System
   Shared across all inner pages. Matches homepage exactly.
   ══════════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── TOKENS ─── */
:root {
  --bg:          #000000;
  --bg-2:        #0a0a0a;
  --bg-3:        #111111;
  --text:        #ffffff;
  --dim:         #a8a8a8;
  --mute:        #6a6a6a;
  --gold:        #b89c4a;
  --gold-l:      #d4b85c;
  --gold-d:      #96803a;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(184,156,74,0.28);
  --green:       #4ade80;
  --ff-serif:    'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-sans:     'Inter', system-ui, sans-serif;
  --px:          clamp(24px, 7vw, 130px);
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── NAV ─── */
.ev-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s;
}
.ev-nav.solid {
  background: rgba(0,0,0,0.88);
  border-color: var(--border);
  backdrop-filter: blur(14px);
}

.ev-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.ev-brand-mark { color: var(--gold); font-size: 20px; }

.ev-links {
  display: flex;
  align-items: center;
}
.ev-links a {
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.18s;
  white-space: nowrap;
}
.ev-links a:hover { color: var(--text); }
.ev-links a.active { color: var(--text); }

.ev-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── BUTTONS — sharp, rectangular ─── */
.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  background: transparent;
}
.ev-btn-ghost {
  border-color: rgba(255,255,255,0.18);
  color: var(--dim);
}
.ev-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--text); }

.ev-btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.ev-btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }

.ev-btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}
.ev-btn-outline:hover { border-color: var(--text); }

.ev-btn-lg { padding: 14px 34px; font-size: 12px; }

/* ─── HAMBURGER ─── */
.ev-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.ev-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.28s;
}
.ev-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ev-burger.open span:nth-child(2) { opacity: 0; }
.ev-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.ev-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--px) 28px;
  z-index: 199;
  backdrop-filter: blur(14px);
}
.ev-mobile.open { display: block; }
.ev-mobile a {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dim);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.ev-mobile a:hover { color: var(--text); }
.ev-mobile .ev-btn { margin-top: 20px; width: 100%; }

/* ─── PAGE HEADER (section-opener size, not full hero) ─── */
.ev-page-head {
  padding: clamp(150px, 20vw, 220px) var(--px) clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.ev-page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 20%, rgba(184,156,74,0.045) 0%, transparent 65%);
  pointer-events: none;
}
.ev-page-head-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 30px;
}
.ev-page-title {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 22px;
  position: relative;
}
.ev-page-title em { font-style: italic; color: var(--gold); }
.ev-page-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--dim);
  max-width: 560px;
  line-height: 1.75;
  position: relative;
}

/* Full-height hero variant (Training / Clients pages) */
.ev-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* top padding clears the fixed 68px nav so hero content can't overlap it
     when it's taller than the container on short laptop screens */
  padding: 108px var(--px) clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.ev-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 65% 38%, rgba(184,156,74,0.055) 0%, transparent 68%),
    radial-gradient(ellipse 50% 70% at 18% 75%, rgba(255,255,255,0.015) 0%, transparent 55%);
  pointer-events: none;
}
.ev-hero-rule { width: 36px; height: 1px; background: var(--gold); margin-bottom: 32px; }
.ev-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.ev-hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 860px;
  margin-bottom: 28px;
}
.ev-hero-title em { font-style: italic; color: var(--gold); }
.ev-hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.ev-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ─── SECTION CHROME ─── */
.ev-section { padding: clamp(72px, 9vw, 130px) var(--px); }

.ev-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ev-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
.ev-h2 em { font-style: italic; color: var(--gold); }

.ev-h3 {
  font-family: var(--ff-serif);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text);
}

.ev-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(44px, 6vw, 80px);
}
.ev-section-header-aside {
  font-size: 15px;
  color: var(--dim);
  max-width: 340px;
  line-height: 1.75;
  flex-shrink: 0;
}

.ev-divider { height: 1px; background: var(--border); margin: 0 var(--px); }

.ev-body {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.82;
}

/* ─── REVEAL ANIMATIONS ─── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
.rv-d4 { transition-delay: 0.32s; }

/* ─── NUMBERED PROCESS GRID (01/02/03 pattern) ─── */
.ev-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.ev-process.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ev-step {
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.ev-step:last-child { border-right: none; }
.ev-step:hover { background: rgba(255,255,255,0.015); }
.ev-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.ev-step:hover::after { transform: scaleX(1); }
.ev-step-num {
  font-family: var(--ff-serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(255,255,255,0.055);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}
.ev-step-title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ev-step-body { font-size: 13px; color: var(--dim); line-height: 1.75; }

/* ─── STAT BLOCK ─── */
.ev-stat {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--border);
  position: relative;
}
.ev-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}
.ev-stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.ev-stat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ev-stat-desc { font-size: 14px; color: var(--dim); line-height: 1.75; }

/* ─── PRICE / MODEL CARDS ─── */
.ev-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.ev-price-card {
  padding: clamp(32px, 4.5vw, 60px);
  border-right: 1px solid var(--border);
  position: relative;
}
.ev-price-card:last-child { border-right: none; }
.ev-price-card.featured {
  background: rgba(184,156,74,0.025);
  border-color: var(--border-gold);
}
.ev-price-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}
.ev-price-name {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.ev-price-amt {
  font-family: var(--ff-serif);
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}
.ev-price-desc { font-size: 14px; color: var(--dim); line-height: 1.75; margin-bottom: 24px; }
.ev-price-list { margin-bottom: 28px; }
.ev-price-list li {
  font-size: 13px;
  color: var(--dim);
  padding: 7px 0;
  border-top: 1px solid var(--border);
}
.ev-price-list li::before { content: '— '; color: var(--gold); }

/* ─── CHIPS / TAGS — sharp rectangles ─── */
.ev-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.ev-chip:hover { border-color: var(--border-gold); color: var(--gold-l); }
.ev-chip.active {
  background: rgba(184,156,74,0.14);
  border-color: var(--gold-d);
  color: var(--gold-l);
}

.ev-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--border);
  border-radius: 2px;
  white-space: nowrap;
}

/* ─── TABS (Testimonials / FAQ) ─── */
.ev-tabs {
  display: flex;
  border: 1px solid var(--border);
  width: fit-content;
}
.ev-tab {
  padding: 12px 28px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
}
.ev-tab:last-child { border-right: none; }
.ev-tab:hover { color: var(--dim); }
.ev-tab.active {
  color: var(--gold-l);
  background: rgba(184,156,74,0.08);
}
.ev-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

/* ─── FORMS — sharp inputs, quiet states ─── */
.ev-form { width: 100%; }
.ev-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ev-field { display: flex; flex-direction: column; }
.ev-field.full { grid-column: 1 / -1; }
.ev-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 9px;
}
.ev-field label .req { color: var(--gold); }
.ev-field input,
.ev-field select,
.ev-field textarea {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 13px 15px;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
}
.ev-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236a6a6a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}
.ev-field input:focus,
.ev-field select:focus,
.ev-field textarea:focus {
  outline: none;
  border-color: var(--gold-d);
}
.ev-field input::placeholder,
.ev-field textarea::placeholder { color: var(--mute); }
.ev-field textarea { resize: vertical; min-height: 120px; }

.ev-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.ev-form-success {
  display: none;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--border-gold);
  background: rgba(184,156,74,0.03);
  text-align: center;
}
.ev-form-success.show { display: block; }
.ev-form-success h3 {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.ev-form-success p { font-size: 14px; color: var(--dim); }

/* ─── MEMBER / PROFILE CARDS ─── */
.ev-member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ev-profile {
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: clamp(26px, 3vw, 40px);
  transition: border-color 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.ev-profile:hover {
  border-color: var(--border-gold);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}
.ev-profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  margin-bottom: 22px;
}
.ev-profile-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--mute);
  background: var(--bg-3);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.ev-profile-name {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.ev-profile-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ev-profile-bio {
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 18px;
}
.ev-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

/* ─── ACCORDION (FAQ) ─── */
.ev-acc { border-top: 1px solid var(--border); }
.ev-acc-item { border-bottom: 1px solid var(--border); }
.ev-acc-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.18s;
}
.ev-acc-q:hover { color: var(--gold-l); }
.ev-acc-icon {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--gold-d);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  transition: transform 0.25s var(--ease);
}
.ev-acc-item.open .ev-acc-icon { transform: rotate(45deg); }
.ev-acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.ev-acc-a-inner {
  padding: 0 4px 26px;
  font-size: 14.5px;
  color: var(--dim);
  line-height: 1.8;
  max-width: 720px;
}

/* ─── PULL QUOTE ─── */
.ev-pullquote {
  margin: clamp(40px, 5vw, 64px) 0;
  padding-top: 28px;
  border-top: 1px solid var(--gold-d);
  max-width: 720px;
}
.ev-pullquote p {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
}

/* ─── CLOSING CTA ─── */
.ev-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(80px, 11vw, 150px) var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ev-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(184,156,74,0.04) 0%, transparent 68%);
  pointer-events: none;
}
.ev-cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
  position: relative;
}
.ev-cta-title em { font-style: italic; color: var(--gold); }
.ev-cta-sub { font-size: 16px; color: var(--dim); margin-bottom: 44px; position: relative; }
.ev-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─── */
.ev-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: clamp(52px, 8vw, 100px) var(--px) clamp(28px, 4vw, 44px);
}
.ev-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.ev-footer-brand-name {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ev-footer-brand-name span { color: var(--gold); }
.ev-footer-tagline {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.7;
  max-width: 220px;
}
.ev-footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
}
.ev-footer-col a {
  display: block;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 9px;
  transition: color 0.18s;
}
.ev-footer-col a:hover { color: var(--text); }
.ev-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 10px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .ev-process { grid-template-columns: 1fr 1fr; }
  .ev-process .ev-step:nth-child(n+3) { border-top: 1px solid var(--border); }
  .ev-process .ev-step:nth-child(2n) { border-right: none; }
  .ev-process.cols-3 { grid-template-columns: 1fr 1fr; }

  .ev-member-grid { grid-template-columns: 1fr 1fr; }

  .ev-price-grid { grid-template-columns: 1fr; }
  .ev-price-card { border-right: none; border-bottom: 1px solid var(--border); }
  .ev-price-card:last-child { border-bottom: none; }

  .ev-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --px: clamp(20px, 5vw, 36px); }

  .ev-links, .ev-nav-cta { display: none; }
  .ev-burger { display: flex; }

  .ev-section-header { flex-direction: column; align-items: flex-start; }
  .ev-section-header-aside { max-width: 100%; }

  .ev-member-grid { grid-template-columns: 1fr; }
  .ev-form-grid { grid-template-columns: 1fr; }

  .ev-footer-top { grid-template-columns: 1fr; }
  .ev-tabs { width: 100%; }
  .ev-tab { flex: 1; padding: 12px 10px; }
}

@media (max-width: 480px) {
  .ev-hero-actions { flex-direction: column; align-items: flex-start; }
  .ev-hero-actions .ev-btn { width: 100%; }
  .ev-process, .ev-process.cols-3 { grid-template-columns: 1fr; }
  .ev-process .ev-step { border-right: none; }
  .ev-process .ev-step:nth-child(n+2) { border-top: 1px solid var(--border); }
  .ev-form-actions { flex-direction: column; }
  .ev-form-actions .ev-btn { width: 100%; }
}
