/* ═══════════════════════════════════════════════════════════
   ehyong.com — Production CSS 2026
   Design: premium dark, gold accent, editorial rhythm
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colours */
  --bg:           #050505;
  --bg-lift:      #0b0b0b;
  --panel:        #111111;
  --text:         #f8f4ee;
  --text-muted:   #c6beb2;
  --text-dim:     rgba(248,244,238,.68);
  --gold:         #d6ae67;
  --gold-soft:    #f0d7a1;
  --gold-faint:   rgba(214,174,103,.18);
  --line:         rgba(214,174,103,.22);
  --line-soft:    rgba(255,255,255,.10);
  --cream:        #f7f2ea;
  --cream-text:   #1a1610;
  --cream-muted:  #57504a;
  --shadow-sm:    0 6px 24px rgba(0,0,0,.28);
  --shadow-md:    0 18px 56px rgba(0,0,0,.38);
  --shadow-lg:    0 32px 96px rgba(0,0,0,.48);

  /* Geometry */
  --container:    1180px;
  --r-sm:         10px;
  --r-md:         16px;
  --r-lg:         22px;
  --r-xl:         30px;

  /* Spacing scale */
  --s-1: .5rem;
  --s-2: .75rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 3.5rem;
  --s-8: 4.5rem;

  /* Header */
  --header-h: 80px;
}

/* ── Hard Overflow Lock ────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0; /* prevents flex/grid blowout */
}
p { overflow-wrap: break-word; }
main, section, header, footer, div {
  max-width: 100%;
}

/* ── Base Elements ─────────────────────────────────────────── */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
figure { margin: 0; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.narrow  { max-width: 820px; }
.center  { text-align: center; margin-inline: auto; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; }

h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 700;
  text-wrap: pretty;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--gold);
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  line-height: 1.3;
  font-weight: 900;
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding-block: var(--s-8);
  scroll-margin-top: var(--header-h);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: .9rem;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  text-decoration: none;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }
.btn:disabled { opacity: .58; cursor: not-allowed; transform: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #120e06;
  box-shadow: 0 14px 38px rgba(214,174,103,.26);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 20px 52px rgba(214,174,103,.36);
}
.btn-secondary {
  background: rgba(255,255,255,.025);
  border-color: rgba(214,174,103,.55);
  color: var(--gold-soft);
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  padding-inline: clamp(20px, 4vw, 52px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: border-color .3s ease, height .25s ease, background .25s ease;
}
.site-header.scrolled {
  height: 74px;
  border-bottom-color: var(--line);
  background: rgba(5,5,5,.96);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  width: 140px;
  height: auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 36px);
  font-size: .88rem;
  font-weight: 700;
}
.site-nav a {
  color: rgba(248,244,238,.8);
  transition: color .2s ease;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--gold-soft); }
.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid rgba(214,174,103,.6);
  border-radius: 5px;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: .84rem;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--gold-faint); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding-top: var(--header-h);
  background: #050505;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 36%, rgba(255,255,255,.04) 0%, transparent 22%),
    radial-gradient(circle at 85% 26%, rgba(214,174,103,.09) 0%, transparent 18%),
    linear-gradient(145deg, #050505 0%, #070707 50%, #020202 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.90) 0%,
      rgba(0,0,0,.52) 44%,
      rgba(0,0,0,.08) 100%),
    radial-gradient(circle at 60% 74%,
      transparent 0% 38%,
      rgba(0,0,0,.4) 72%);
}
.hero-grid {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(380px, .88fr);
  gap: clamp(28px, 4.8vw, 68px);
  align-items: center;
  padding-block: clamp(16px, 2.5vw, 32px) 0;
}
.hero-copy {
  max-width: 600px;
  padding-bottom: 16px;
  text-wrap: pretty;
}
.hero h1 {
  font-size: clamp(2.9rem, 5.15vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.056em;
  font-weight: 600;
}
.hero h1 em {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold-soft);
  font-style: italic;
  letter-spacing: -.032em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1.5px solid var(--gold);
  font-size: .86rem;
  font-weight: 700;
  color: rgba(248,244,238,.88);
}
.trust-row span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 7px;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  display: grid;
  align-items: end;
  justify-items: center;
}
.hero-portrait {
  width: min(920px, 148%);
  transform: translateX(-76px) translateY(18px);
}
.hero-portrait img {
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* ── Intro ──────────────────────────────────────────────────── */
.intro {
  background: var(--cream);
  color: var(--cream-text);
  padding-block: 44px;
}
.intro .eyebrow { color: #8b6a28; margin-bottom: 10px; }
.intro h2 { color: var(--cream-text); }
.intro p:not(.eyebrow) {
  color: var(--cream-muted);
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 740px;
  margin: 16px auto 0;
}

/* ── Proof Wall ─────────────────────────────────────────────── */
.proof-wall {
  background: var(--bg-lift);
  border-block: 1px solid var(--line-soft);
}
.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.proof-copy h2 { margin-top: 6px; }
.proof-copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.72;
  max-width: 560px;
}

/* Mosaic: left col wide, right col has 2 stacked */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, clamp(170px, 19vw, 260px));
  gap: 12px;
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}
.photo-span { grid-row: 1 / 3; }

/* ── Programs ───────────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 440px);
  gap: var(--s-5);
  align-items: end;
  margin-bottom: 32px;
}
.section-head.single {
  grid-template-columns: 1fr;
  max-width: 840px;
  margin-bottom: 32px;
}
.section-head > p:last-child {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.68;
}
.cards { display: grid; gap: 20px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four  { grid-template-columns: repeat(4, 1fr); }

.card, .mini-card {
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(165deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 100%);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.card:hover, .mini-card:hover {
  border-color: rgba(214,174,103,.3);
  box-shadow: var(--shadow-md);
}
.card p, .mini-card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.68;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-weight: 900;
  font-size: .9rem;
  margin-bottom: 22px;
  flex-shrink: 0;
}

/* ── Image Band ─────────────────────────────────────────────── */
.image-band {
  padding-block: 0 var(--s-8);
  background: var(--bg);
}
.image-band-grid {
  display: grid;
  grid-template-columns: 1.05fr .82fr 1.08fr;
  gap: 12px;
  align-items: stretch;
}
.image-band-grid img {
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

/* ── Method ─────────────────────────────────────────────────── */
.dark-panel {
  background: linear-gradient(140deg, #0e0e0e 0%, #040404 100%);
  border-block: 1px solid var(--line);
}
.method-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.method-copy h2 { margin-top: 6px; }
.method-copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.72;
  max-width: 480px;
}
.method-list { display: grid; gap: 12px; }
.method-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.038);
  border-radius: var(--r-md);
  transition: border-color .2s ease, background .2s ease;
}
.method-step:hover {
  border-color: rgba(214,174,103,.28);
  background: rgba(214,174,103,.04);
}
.method-step strong {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  padding-top: 2px;
}
.method-step span {
  font-weight: 700;
  line-height: 1.45;
  font-size: .96rem;
}

/* ── Field Proof ────────────────────────────────────────────── */
.field-proof {
  background: linear-gradient(148deg, #080808 0%, #101010 55%, #060606 100%);
  border-top: 1px solid var(--line);
}
.field-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5.5vw, 72px);
  align-items: center;
}
/* Vertical stack: landscape on top, portrait below */
.field-stack {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
}
.field-img-top {
  width: 100%;
  height: clamp(200px, 24vw, 320px);
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}
.field-img-bottom {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}
.field-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.field-copy h2 { margin-top: 8px; }
.field-copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.75;
}
.field-cta { margin-top: 32px; align-self: flex-start; }

/* ── Quote Strip ────────────────────────────────────────────── */
.quote-strip {
  background: var(--cream);
  color: var(--cream-text);
}
.quote-strip .container {
  position: relative;
  padding-block: 8px;
}
.quote-strip h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.9rem);
  color: var(--cream-text);
  line-height: 1.14;
  letter-spacing: -.048em;
}
.quote-attr {
  margin-top: 20px !important;
  color: #8b6a28;
  font-weight: 800;
  font-size: 1rem;
}

/* ── Community Proof ────────────────────────────────────────── */
.community-proof {
  background: var(--bg-lift);
  border-block: 1px solid var(--line-soft);
}
.community-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .85fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.community-grid img {
  width: 100%;
  height: clamp(200px, 24vw, 340px);
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
/* Panoramic spans full width — clean flush strip */
.community-wide {
  grid-column: 1 / -1;
  height: clamp(140px, 15vw, 220px) !important;
  object-position: center 35%;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  background:
    radial-gradient(ellipse at 78% 14%, rgba(214,174,103,.13) 0%, transparent 38%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 5.5vw, 80px);
  align-items: start;
}
.contact-copy h2 { margin-top: 8px; }
.contact-copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.72;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.6vw, 40px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.048);
  box-shadow: var(--shadow-md);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(248,244,238,.88);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  background: rgba(0,0,0,.26);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 142px;
  line-height: 1.6;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,174,103,.14);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248,244,238,.3);
}
.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold-soft) !important;
  font-weight: 700;
  font-size: .88rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding-block: 34px;
  border-top: 1px solid var(--line);
  background: #020202;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand-block { display: flex; flex-direction: column; gap: 0; }
.footer-brand img { width: 122px; height: auto; object-fit: contain; }
.site-footer p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: .86rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-weight: 800;
  font-size: .86rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--gold-soft); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints: 1140 → 980 → 700 → 440
   ═══════════════════════════════════════════════════════════ */

/* ── 1140px: hero stacks, photo sizes adjust ─────────────── */
@media (max-width: 1140px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 16px;
    gap: 16px;
  }
  .hero-copy { max-width: 700px; }
  .hero-visual {
    min-height: auto;
    max-width: 680px;
    margin-inline: auto;
    align-self: auto;
  }
  .hero-portrait {
    width: min(440px, 80%);
    transform: none;
    margin-inline: auto;
  }
  .four { grid-template-columns: repeat(2, 1fr); }
  .field-img-top { height: clamp(180px, 22vw, 280px); }
  .field-img-bottom { height: clamp(240px, 30vw, 380px); }
}

/* ── 980px: nav collapses, grids go single col ────────────── */
@media (max-width: 980px) {
  :root { --header-h: 70px; }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: clamp(16px, 3vw, 28px);
  }
  .header-cta { display: none; }
  .nav-toggle { display: grid; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 14px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: rgba(7,7,7,.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    z-index: 49;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 13px 14px;
    border-radius: var(--r-sm);
    text-align: left;
  }
  .site-nav a:hover { background: rgba(255,255,255,.06); }

  /* Section grids → single col */
  .proof-grid,
  .method-grid,
  .contact-grid,
  .field-grid { grid-template-columns: 1fr; }

  .section-head { grid-template-columns: 1fr; }
  .three { grid-template-columns: repeat(2, 1fr); }

  /* image band → 2 cols, all same height, no offsets */
  .image-band-grid { grid-template-columns: 1fr 1fr; }
  .image-band-grid img { height: clamp(200px, 28vw, 320px); }
  .image-band-grid img:nth-child(3) { grid-column: 1 / -1; }

  /* community → 2 cols */
  .community-grid { grid-template-columns: 1fr 1fr; }
  .community-grid img { height: clamp(190px, 26vw, 300px); }
  .community-wide { grid-column: 1 / -1; height: clamp(130px, 18vw, 220px) !important; }

  /* field stack — stays vertical, full width on single col */
  .field-img-top { height: clamp(200px, 30vw, 300px); }
  .field-img-bottom { height: clamp(260px, 38vw, 400px); }
  .field-cta { margin-top: 24px; }

  /* proof mosaic */
  .photo-mosaic {
    grid-template-rows: repeat(2, clamp(150px, 20vw, 240px));
  }
}

/* ── 700px: mobile single col ─────────────────────────────── */
@media (max-width: 700px) {
  :root {
    --s-8: 3.2rem;
    --s-7: 2.4rem;
  }
  .container { width: calc(100% - 32px); }

  .hero h1 { font-size: clamp(2.4rem, 12.8vw, 3.8rem); }
  .hero-portrait { width: min(100%, 420px); transform: none; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn { width: 100%; }

  /* All multi-col grids → single */
  .three,
  .four,
  .image-band-grid,
  .field-stack,
  .community-grid { grid-template-columns: 1fr; }

  .image-band-grid img {
    height: clamp(220px, 54vw, 340px);
    grid-column: auto;
  }

  .community-grid img {
    height: clamp(210px, 52vw, 320px);
    grid-column: auto;
  }
  .community-wide {
    height: clamp(150px, 40vw, 240px) !important;
    grid-column: auto !important;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(200px, 54vw, 320px);
  }
  .photo-span { grid-row: auto; }

  .field-img-top { height: clamp(180px, 48vw, 280px); }
  .field-img-bottom { height: clamp(220px, 56vw, 320px); }
  .field-cta { width: 100%; justify-content: center; }

  .card, .mini-card, .contact-form { padding: 20px; }
  .method-step { grid-template-columns: 44px 1fr; gap: 12px; padding: 16px 18px; }

  .footer-grid { flex-direction: column; align-items: flex-start; gap: 18px; }
  .intro { padding-block: 40px; }
  h2 { line-height: 1.12; }
}

/* ── 440px: fine-tune smallest screens ───────────────────── */
@media (max-width: 440px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
  .site-header { padding-inline: 12px; }
  .brand img { width: 120px; }
  .contact-form { padding: 18px; }
}

/* ── Bilingual header-right group ─────────────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
@media (max-width: 980px) {
  .header-right .header-cta { display: none; }
}

/* ── HeyGen Ambassador Badge ──────────────────────────────── */
.badge-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.heygen-badge {
  width: 140px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: transform .22s ease, box-shadow .22s ease;
  flex-shrink: 0;
  cursor: pointer;
}
.heygen-badge:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

/* ── WhatsApp Header Button ───────────────────────────────── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 6px;
  background: #25D366;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 8px 22px rgba(37,211,102,.4);
}
/* Hide text label on smaller desktop, keep icon */
@media (max-width: 1100px) {
  .wa-btn span { display: none; }
  .wa-btn { padding: 8px 10px; }
}
@media (max-width: 980px) {
  .wa-btn { display: none; }
}

/* ── WhatsApp Contact Section CTA ────────────────────────── */
.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 28px rgba(37,211,102,.3);
  width: 100%;
  justify-content: center;
}
.wa-cta:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 14px 40px rgba(37,211,102,.42);
}
/* floating WhatsApp FAB on mobile */
@media (max-width: 980px) {
  .wa-fab {
    display: flex;
  }
}

/* ── Floating WhatsApp FAB ────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: none; /* desktop: hidden — shown on mobile below */
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .22s ease, box-shadow .22s ease;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
@media (max-width: 980px) {
  .wa-fab { display: flex; }
}

/* ── HeyGen badge — mobile smaller ───────────────────────── */
@media (max-width: 700px) {
  .heygen-badge { width: 80px; border-radius: 12px; }
}
@media (max-width: 440px) {
  .heygen-badge { width: 68px; border-radius: 10px; }
}

/* ── HeyGen badge link + CTA label ───────────────────────── */
.heygen-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
}
.heygen-cta {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: .02em;
  line-height: 1.3;
  border-bottom: 1px solid rgba(240,215,161,.35);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.heygen-cta strong {
  font-weight: 900;
  color: var(--gold-soft);
}
.heygen-link:hover .heygen-cta {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* Mobile: slightly smaller CTA text */
@media (max-width: 700px) {
  .heygen-cta { font-size: .72rem; }
}
