/* ==========================================================
   Alteryse — Consultancy Homepage  v2.0
   Design: monday.com energy × Alteryse navy/gold identity
   Full-width sections · scroll-reveal · bold typography
   ========================================================== */

/* ── Custom properties ─────────────────────────────────────── */
:root {
  --navy:        #0f1f3d;
  --navy-mid:    #1a3060;
  --navy-light:  #243a6b;
  --gold:        #c9a84c;
  --gold-bright: #e8c46a;
  --gold-pale:   #faf3e0;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --grey-light:  #eef0f6;
  --grey-mid:    #6b7a99;
  --text:        #1e2a3b;
}

/* ── Reset & overflow ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }

/* Remove default site-main padding — page templates manage their own spacing */
.site-main { overflow-x: hidden; padding: 0 !important; }

/* ── Full-bleed (breaks out of WP content width) ───────────── */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

/* ── Section base ───────────────────────────────────────────── */
.alt-section { padding: 64px 0; position: relative; overflow: hidden; }
.alt-section.compact { padding: 40px 0; }

/* ── Section label + title (inner page templates) ───────────── */
.alt-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.alt-section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.alt-container      { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.alt-container-wide { max-width: 1440px; margin: 0 auto; padding: 0 60px; }

/* ── Scroll-reveal ──────────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(44px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in     { opacity: 1; transform: none; }
.reveal-left   { opacity: 0; transform: translateX(-52px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity: 0; transform: translateX(52px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in,.reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── LCP fix: hero above-fold content — always starts visible, no backwards fill.
   animation-fill-mode: forwards (not 'both') means the element renders at its CSS
   state (opacity:1) before the animation triggers. The 'from' keyframe begins at
   opacity:.5 so the entrance is a subtle fade-up rather than from fully invisible. ── */
.alt-hero .reveal,
.alt-hero .reveal-left,
.alt-hero .reveal-right {
  opacity: 1; transform: none;
  animation: hero-reveal .7s ease forwards;
}
.alt-hero .reveal.d1 { animation-delay: .1s; }
.alt-hero .reveal.d2 { animation-delay: .2s; }
.alt-hero .reveal.d3 { animation-delay: .3s; }
@keyframes hero-reveal {
  from { opacity: .5; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ── Simplified Chinese (ZH) language support ───────────────────────────── */
.lang-zh, .lang-zh-block, .lang-zh-flex { display: none; }
body.alt-lang-zh .lang-zh       { display: inline; }
body.alt-lang-zh .lang-zh-block { display: block;  }
body.alt-lang-zh .lang-zh-flex  { display: flex;   }
body.alt-lang-zh .lang-en,
body.alt-lang-zh .lang-en-block,
body.alt-lang-zh .lang-en-flex  { display: none;   }
body.alt-lang-zh .lang-th,
body.alt-lang-zh .lang-th-block,
body.alt-lang-zh .lang-th-flex  { display: none;   }

.lang-zh, .lang-zh-block {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.75;
}

/* Chinese heading tighter line-height */
body.alt-lang-zh h1 .lang-zh,
body.alt-lang-zh h2 .lang-zh,
body.alt-lang-zh h3 .lang-zh,
body.alt-lang-zh .alt-hero-title .lang-zh,
body.alt-lang-zh .alt-section-title .lang-zh {
  line-height: 1.3;
  display: inline-block;
}

/* ── Mobile: disable scroll-reveal opacity:0 entirely.
   On slow connections JS fires late; hidden content = bad LCP + CLS.
   Content appears immediately; transitions still run once .in is added. ── */
@media (max-width: 1024px) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Respect prefers-reduced-motion (Googlebot & accessibility)        ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right,
  .alt-hero .reveal, .alt-hero .reveal-left, .alt-hero .reveal-right {
    opacity: 1 !important; transform: none !important;
    transition: none !important; animation: none !important;
  }
  .alt-hero-badge-dot { animation: none !important; }
  .alt-hero-mockup    { animation: none !important; }
  .alt-float-card     { animation: none !important; }
}
.d5 { transition-delay: .5s; }

/* ── Typography helpers ─────────────────────────────────────── */
.alt-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-bottom: 16px;
}
.alt-eyebrow::before {
  content: ''; display: inline-block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.alt-h1 {
  font-size: clamp(40px, 6vw, 78px); font-weight: 800;
  line-height: 1.06; letter-spacing: -.025em; color: var(--white);
  margin: 0 0 24px;
}
.alt-h2 {
  font-size: clamp(30px, 4vw, 54px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.02em;
}
.alt-h3 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; line-height: 1.22; }
.alt-accent { color: var(--gold); }
.alt-lead      { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.72); }
.alt-lead-dark { font-size: 16px; line-height: 1.7; color: var(--grey-mid); }

/* ── Buttons ────────────────────────────────────────────────── */
.alt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-size: 14.5px; font-weight: 700; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.alt-btn-gold  { background: var(--gold); color: var(--navy); }
.alt-btn-gold:hover  { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,.38); color: var(--navy); }
.alt-btn-white { background: var(--white); color: var(--navy); }
.alt-btn-white:hover { background: #f0f2f8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,31,61,.15); color: var(--navy); }
.alt-btn-outline{ background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.alt-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.alt-btn-navy  { background: var(--navy); color: var(--white); }
.alt-btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,31,61,.25); color: var(--white); }
.alt-btn-lg    { padding: 17px 42px; font-size: 16px; }

/* ============================================================
   HERO — full viewport, animated navy background
   ============================================================ */
.alt-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
}
/* Background layers */
.alt-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 72% 48%, rgba(201,168,76,.13) 0%, transparent 58%),
    radial-gradient(ellipse 55% 80% at 8%  82%, rgba(26,48,96,.85)   0%, transparent 70%),
    linear-gradient(135deg, #0a1628 0%, #0f1f3d 55%, #0c1930 100%);
}
.alt-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.alt-hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1300px; margin: 0 auto;
  padding: 130px 60px 90px;
}

/* Badge */
.alt-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.28);
  color: var(--gold); font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
}
.alt-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes pulse-gold {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:.4; transform: scale(1.5); }
}

.alt-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.alt-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.alt-hero-stat-num {
  font-size: 38px; font-weight: 900; color: var(--white); line-height: 1;
}
.alt-hero-stat-num .alt-accent { color: var(--gold); }
.alt-hero-stat-label { font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ── Hero mockup visual ─────────────── */
.alt-hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 480px;
}
.alt-hero-mockup {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 20px;
  width: 100%; max-width: 460px;
  backdrop-filter: blur(12px);
  animation: float-hero 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes float-hero {
  0%,100% { transform: translateY(0) rotate3d(0,1,0,0deg); }
  50%      { transform: translateY(-14px) rotate3d(0,1,0,.8deg); }
}
.alt-mockup-topbar   { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.alt-mockup-dot      { width: 10px; height: 10px; border-radius: 50%; }
.alt-mockup-dot:nth-child(1){ background:#ff5f57; }
.alt-mockup-dot:nth-child(2){ background:#febc2e; }
.alt-mockup-dot:nth-child(3){ background:#28c840; }
.alt-mockup-tab      { font-size: 11.5px; color: rgba(255,255,255,.35); margin-left: 10px; font-family: monospace; }
.alt-mockup-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 9px; margin-bottom: 7px;
  background: rgba(255,255,255,.04);
}
.alt-mockup-row:nth-child(even){ background: rgba(255,255,255,.07); }
.alt-mkdot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.alt-mkbar  { height: 8px; border-radius: 4px; background: rgba(201,168,76,.35); flex: 1; }
.alt-mkbar.short { max-width: 42%; }
.alt-mkbar.med   { max-width: 66%; }
.alt-mkbar.gold  { background: var(--gold); }
.alt-mkpill {
  font-size: 10px; padding: 3px 10px; border-radius: 100px; font-weight: 700;
}
.alt-mkpill.green  { background: rgba(34,197,94,.18); color: #4ade80; }
.alt-mkpill.blue   { background: rgba(59,130,246,.18); color: #60a5fa; }
.alt-mkpill.gold   { background: rgba(201,168,76,.18); color: var(--gold); }
.alt-mkpill.purple { background: rgba(168,85,247,.18); color: #c084fc; }

/* floating info cards */
.alt-float-card {
  position: absolute; background: var(--white);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 16px 48px rgba(15,31,61,.22);
  font-size: 13px; white-space: nowrap;
  will-change: transform;
}
.alt-float-card.card-tl { top: 32px;  left: -24px; animation: fc1 4s ease-in-out infinite; }
.alt-float-card.card-br { bottom: 56px; right: -24px; animation: fc2 4s ease-in-out infinite; }
@keyframes fc1 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-9px)} }
@keyframes fc2 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-6px)} }
.alt-float-card-label { font-size: 10px; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .06em; }
.alt-float-card-value { font-size: 20px; font-weight: 800; color: var(--navy); margin-top: 2px; }
.alt-float-card-value .tag-green { color: #22c55e; font-size: 12px; margin-left: 4px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.alt-trust {
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 24px 0;
}
.alt-trust-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.alt-trust-label { font-size: 12.5px; font-weight: 600; color: #4e5e7d; white-space: nowrap; } /* contrast 6.6:1 on white ✓ */
.alt-trust-divider { width: 1px; height: 26px; background: var(--grey-light); }
.alt-trust-items   { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.alt-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #576277; opacity: 1; transition: color .2s; /* contrast 6.2:1 on white ✓ */
}
.alt-trust-item:hover { color: var(--navy); }
.alt-trust-icon { font-size: 18px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.alt-services { background: var(--off-white); }
.alt-section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.alt-section-head .alt-h2 { color: var(--navy); margin: 8px 0 14px; }

.alt-service-card {
  background: var(--white); border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(15,31,61,.06);
  border: 1.5px solid transparent;
  position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.alt-service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  opacity: 0; transition: opacity .3s;
}
.alt-service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 60px rgba(15,31,61,.16); border-color: var(--gold); }
.alt-service-card:hover::after { opacity: 1; }

.alt-service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  margin-bottom: 18px; position: relative; z-index: 1;
  transition: background .3s;
}
.alt-service-card:hover .alt-service-icon { background: rgba(201,168,76,.2); }
.alt-service-cat {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 8px; position: relative; z-index: 1;
}
.alt-service-title {
  font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 9px;
  position: relative; z-index: 1; transition: color .3s;
}
.alt-service-desc {
  font-size: 14px; line-height: 1.6; color: var(--grey-mid); margin: 0;
  position: relative; z-index: 1; transition: color .3s;
}
.alt-service-card:hover .alt-service-title { color: var(--white); }
.alt-service-card:hover .alt-service-desc  { color: rgba(255,255,255,.6); }

/* ============================================================
   STATS BAND — full-width navy
   ============================================================ */
.alt-stats-band { background: var(--navy); position: relative; overflow: hidden; }
.alt-stats-band::before {
  content: ''; position: absolute;
  top: -60px; left: -80px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 68%);
}
.alt-stats-band::after {
  content: ''; position: absolute;
  bottom: -50px; right: -60px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 68%);
}
.alt-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.07); position: relative; z-index: 1;
}
.alt-stat-item { padding: 52px 36px; text-align: center; background: var(--navy); }
.alt-stat-number {
  font-size: 58px; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -.03em;
}
.alt-stat-number .alt-accent { color: var(--gold); }
.alt-stat-label { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 8px; text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }

/* ============================================================
   FEATURE SPLITS (alternating)
   ============================================================ */
.alt-feature-split { background: var(--white); }
.alt-split-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 40px 0; border-bottom: 1px solid var(--grey-light);
}
.alt-split-row:last-child { border-bottom: none; }
.alt-split-row.reverse .alt-split-visual { order: -1; }
.alt-split-text .alt-h3 { color: var(--navy); margin: 12px 0 18px; }

.alt-split-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.alt-split-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--grey-mid); line-height: 1.55;
}
.alt-list-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.alt-list-check svg { width: 11px; height: 11px; stroke: var(--navy); }

.alt-split-visual {
  background: var(--off-white); border-radius: 24px; padding: 36px;
  min-height: 340px; display: flex; flex-direction: column; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
}
.alt-split-visual.dark { background: var(--navy); }
.alt-split-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(201,168,76,.07);
}
.alt-vis-row {
  display: flex; align-items: center; gap: 13px;
  background: var(--white); border-radius: 12px; padding: 13px 16px;
  box-shadow: 0 2px 10px rgba(15,31,61,.07);
}
.alt-split-visual.dark .alt-vis-row { background: rgba(255,255,255,.07); }
.alt-vis-icon { font-size: 20px; width: 36px; text-align: center; flex-shrink: 0; }
.alt-vis-label { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.alt-split-visual.dark .alt-vis-label { color: var(--white); }
.alt-vis-val { font-size: 13px; font-weight: 700; }
.alt-vis-val.green  { color: #22c55e; }
.alt-vis-val.gold   { color: var(--gold); }
.alt-vis-val.blue   { color: #60a5fa; }

/* Progress bars */
.alt-vis-prog-track { height: 6px; background: var(--grey-light); border-radius: 3px; overflow: hidden; margin-top: 4px; }
.alt-split-visual.dark .alt-vis-prog-track { background: rgba(255,255,255,.1); }
.alt-vis-prog-fill { height: 100%; border-radius: 3px; background: var(--gold); transition: width 1.4s ease; width: 0; }

/* ============================================================
   PROCESS — dark full-width
   ============================================================ */
.alt-process { background: #070e1b; }
.alt-process .alt-section-head .alt-h2 { color: var(--white); }
.alt-process .alt-section-head .alt-lead-dark { color: rgba(255,255,255,.45); }

.alt-process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative;
}
.alt-process-steps::before {
  content: ''; position: absolute;
  top: 35px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.15) 100%);
}
.alt-process-step { text-align: center; padding: 0 20px; }
.alt-step-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--navy); border: 2px solid rgba(201,168,76,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--gold);
  margin: 0 auto 22px; position: relative; z-index: 1;
  transition: all .3s;
}
.alt-process-step:hover .alt-step-num { background: var(--gold); color: var(--navy); transform: scale(1.1); border-color: var(--gold); }
.alt-step-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.alt-step-desc  { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.6; }

/* ============================================================
   TEAM
   ============================================================ */
.alt-team { background: var(--off-white); }

.alt-founder-card {
  background: var(--navy); border-radius: 24px; padding: 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  margin-bottom: 0; position: relative; overflow: hidden;
}
.alt-founder-card::after {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 68%);
}
.alt-founder-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--navy-mid); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; flex-shrink: 0;
}
.alt-founder-name  { font-size: 26px; font-weight: 800; color: var(--white); margin: 0 0 5px; }
.alt-founder-title { font-size: 13.5px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
/* .alt-founder-tag — used by inner page templates */
.alt-founder-tag  { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 8px; }
.alt-founder-creds { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.alt-degree-tags  { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.alt-cred-tag,
.alt-cred {
  font-size: 11.5px; padding: 5px 14px; border-radius: 100px;
  background: rgba(201,168,76,.18); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); font-weight: 600;
}
.alt-founder-bio { font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,.88); margin-top: 10px; }

.alt-team-section-label {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--grey-mid); margin-bottom: 18px; padding-bottom: 11px;
  border-bottom: 2px solid var(--grey-light);
}
.alt-team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px; margin-bottom: 36px;
}
.alt-team-card {
  background: var(--white); border-radius: 16px; padding: 26px 18px; text-align: center;
  box-shadow: 0 2px 14px rgba(15,31,61,.06); border: 1.5px solid transparent;
  transition: all .25s;
}
.alt-team-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,31,61,.12); }
.alt-team-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 12px;
  border: 2px solid var(--gold-pale);
}
.alt-team-name { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.alt-team-role { font-size: 12px; color: var(--grey-mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.alt-testimonials { background: var(--gold-pale); }
.alt-testimonials .alt-section-head .alt-h2 { color: var(--navy); }

.alt-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.alt-testimonial-card {
  background: var(--white); border-radius: 16px; padding: 34px;
  box-shadow: 0 2px 14px rgba(15,31,61,.07);
  position: relative; transition: all .25s;
}
.alt-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,31,61,.13); }
.alt-testimonial-card::before {
  content: '"'; position: absolute; top: 18px; right: 24px;
  font-size: 72px; color: var(--gold-pale); font-family: Georgia, serif; line-height: 1;
}
.alt-stars { color: var(--gold); font-size: 13.5px; letter-spacing: 1.5px; margin-bottom: 14px; }
.alt-testimonial-text {
  font-size: 14.5px; line-height: 1.7; color: var(--text); margin-bottom: 22px; position: relative; z-index: 1;
}
.alt-testimonial-author { display: flex; align-items: center; gap: 12px; }
.alt-testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold); font-size: 15px; flex-shrink: 0;
}
.alt-testimonial-name    { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.alt-testimonial-company { font-size: 12px; color: var(--grey-mid); }

/* ============================================================
   CTA BANNER — full-width
   ============================================================ */
.alt-cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, var(--navy) 45%, #0f2850 100%);
  text-align: center; position: relative; overflow: hidden;
}
.alt-cta-banner::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 780px; height: 380px;
  background: radial-gradient(ellipse, rgba(201,168,76,.14) 0%, transparent 70%);
}
.alt-cta-banner-inner { position: relative; z-index: 1; }
.alt-cta-banner .alt-h2 { color: var(--white); margin-bottom: 18px; }
.alt-cta-banner .alt-lead { margin: 0 auto 38px; max-width: 580px; }
.alt-cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.alt-contact { background: var(--white); }
.alt-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.alt-contact-info .alt-h3 { color: var(--navy); margin: 12px 0 16px; }
.alt-contact-info .alt-lead-dark { margin-bottom: 28px; }

.alt-contact-detail { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.alt-contact-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.alt-contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--grey-mid); font-weight: 700; }
.alt-contact-detail-value { font-size: 14.5px; font-weight: 600; color: var(--navy); }

/* Form */
.alt-form { display: flex; flex-direction: column; gap: 15px; }
.alt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.alt-form-group { display: flex; flex-direction: column; gap: 5px; }
.alt-form-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }
.alt-input, .alt-select, .alt-textarea {
  padding: 13px 17px; border: 2px solid var(--grey-light); border-radius: 12px;
  font-size: 14px; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; width: 100%; outline: none;
  -webkit-appearance: none; appearance: none;
}
.alt-input:focus, .alt-select:focus, .alt-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,.1);
}
.alt-textarea { min-height: 125px; resize: vertical; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .alt-hero-inner    { grid-template-columns: 1fr; padding: 140px 40px 80px; }
  .alt-hero-visual   { display: none; }
  .alt-stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .alt-process-steps { grid-template-columns: repeat(2, 1fr); }
  .alt-process-steps::before { display: none; }
  .alt-contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  /* Mobile header: solid background replaces blur (backdrop-filter is GPU-expensive on mobile) */
  .alt-header.header-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15,31,61,0.98);
  }
  .alt-section         { padding: 48px 0; }
  .alt-container,
  .alt-container-wide  { padding: 0 22px; }
  .alt-split-row       { grid-template-columns: 1fr; gap: 36px; }
  .alt-split-row.reverse .alt-split-visual { order: 0; }
  .alt-stats-grid      { grid-template-columns: 1fr 1fr; }
  .alt-stat-item       { padding: 36px 22px; }
  .alt-stat-number     { font-size: 42px; }
  .alt-process-steps   { grid-template-columns: 1fr 1fr; }
  .alt-founder-card    { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; }
  .alt-founder-avatar  { margin: 0 auto; }
  .alt-founder-creds   { justify-content: center; }
  .alt-degree-tags     { justify-content: center; }
  .alt-form-row        { grid-template-columns: 1fr; }
  .alt-hero-stats      { flex-wrap: wrap; gap: 24px; }
  .alt-hero-ctas       { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .alt-stats-grid    { grid-template-columns: 1fr; }
  .alt-process-steps { grid-template-columns: 1fr; }
  .alt-hero-inner    { padding: 110px 22px 60px; }
}

/* ==========================================================
   Navigation Header  (v2.0)
   ========================================================== */
.alt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}
.alt-header.header-scrolled {
  background: rgba(15,31,61,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.alt-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.alt-logo { text-decoration: none; flex-shrink: 0; }
.alt-logo img { height: 38px; width: auto; display: block; }
.alt-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}
.alt-logo-text::after {
  content: '.';
  color: var(--gold);
}

/* Desktop nav list */
.alt-nav { margin-left: auto; }
.alt-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.alt-nav-item { position: relative; }
.alt-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.alt-nav-link:hover,
.alt-nav-item.active > .alt-nav-link {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.alt-nav-item.active > .alt-nav-link { color: var(--gold-bright); }

.alt-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.alt-has-dropdown.open .alt-chevron { transform: rotate(180deg); }

/* Dropdown */
.alt-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  min-width: 280px;
  box-shadow: 0 16px 48px rgba(15,31,61,0.18), 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  list-style: none;
  margin: 0;
  border: 1px solid rgba(201,168,76,0.15);
  z-index: 1100;
}
.alt-has-dropdown.open .alt-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.alt-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}
.alt-dropdown-item:hover,
.alt-dropdown-item.active { background: var(--gold-pale); }
.alt-dropdown-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.alt-dropdown-item small {
  display: block;
  font-size: 11.5px;
  color: var(--grey-mid);
  margin-top: 1px;
}
.alt-dd-icon { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }

/* Nav right actions */
.alt-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language toggle */
.alt-lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.alt-lang-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 3px 4px;
  border-radius: 4px;
  transition: color 0.2s;
  cursor: pointer;
}
.alt-lang-btn.active,
.alt-lang-btn:hover { color: var(--gold-bright); }
.alt-lang-sep { color: rgba(255,255,255,0.25); font-size: 11px; }

/* CTA button */
.alt-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.alt-nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

/* Hamburger */
.alt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}
.alt-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.alt-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.alt-hamburger.open span:nth-child(2) { opacity: 0; }
.alt-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.alt-mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 80px 0 32px;
  display: flex;
  flex-direction: column;
}
.alt-mobile-nav.open { transform: translateX(0); }
.alt-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.alt-mobile-overlay.open { opacity: 1; pointer-events: all; }

.alt-mobile-nav-inner { flex: 1; padding: 0 20px; }
.alt-mobile-list { list-style: none; margin: 0; padding: 0; }
.alt-mobile-list > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.alt-mobile-list > li > a,
.alt-mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 4px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.alt-mobile-toggle svg { transition: transform 0.25s; }
.alt-mobile-parent.open .alt-mobile-toggle svg { transform: rotate(180deg); }
.alt-mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 12px;
  display: none;
}
.alt-mobile-parent.open .alt-mobile-sub { display: block; }
.alt-mobile-sub li a {
  display: block;
  padding: 10px 8px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.alt-mobile-sub li a:hover { color: var(--gold-bright); background: rgba(255,255,255,0.05); }

.alt-mobile-footer {
  padding: 24px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
}

/* Body offset for fixed header */
body { padding-top: 72px; }
body.home { padding-top: 0; }

/* ── Header responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .alt-nav, .alt-nav-actions { display: none; }
  .alt-hamburger { display: flex; }
  .alt-nav-inner { gap: 0; }
}
@media (max-width: 480px) {
  .alt-nav-inner { padding: 0 20px; }
}

/* ==========================================================
   Footer  (v2.0)
   ========================================================== */
.alt-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  font-size: 14px;
}
.alt-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.alt-footer-brand .alt-logo-text { font-size: 24px; }
.alt-footer-tagline {
  margin: 12px 0 20px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}
.alt-footer-contact { display: flex; flex-direction: column; gap: 8px; }
.alt-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.alt-footer-contact-item .ico { flex-shrink: 0; margin-top: 2px; }
.alt-footer-contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.alt-footer-contact-item a:hover { color: var(--gold-bright); }

.alt-footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.alt-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.alt-footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
  display: block;
}
.alt-footer-links a:hover { color: var(--gold-bright); }

.alt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7); /* raised from 0.35 → contrast ~7:1 on navy ✓ */
}
.alt-footer-legal { display: flex; gap: 20px; }
.alt-footer-legal a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; } /* raised from 0.4 → contrast ~7:1 ✓ */
.alt-footer-legal a:hover { color: var(--gold-bright); }

@media (max-width: 900px) {
  .alt-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .alt-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 22px 40px; }
  .alt-footer-bottom { padding: 16px 22px; flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   Interior page templates
   ========================================================== */
/* Page hero banner (used by inner pages) */
.alt-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0 52px;
  text-align: center;
}
@media (max-width: 768px) {
  .alt-page-hero { padding: 48px 0 36px; }
  .alt-page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .alt-page-hero p  { font-size: 15px; }
}
.alt-page-hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 16px;
}
.alt-page-hero h1 {
  font-size: clamp(32px,5vw,56px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.1;
}
.alt-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service cards grid (Business & Legal consultancy pages) */
.alt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .alt-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .alt-services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .alt-services-grid > div { padding: 20px 16px !important; }
  .alt-services-grid > div h3 { font-size: 14px !important; }
  .alt-services-grid > div p { font-size: 13px !important; }
}

/* ── Responsive grid helpers ─────────────────────────────────────────── */
/* 4-col (How We Work phases): 4 → 2 → 2 */
.alt-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .alt-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .alt-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* 3-col dark (How We Work "What Sets Us Apart"): 3 → 2 → 1 */
.alt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .alt-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .alt-grid-3 { grid-template-columns: 1fr; }
}

/* 2-col (Pricing row 2): 2 → 1 */
.alt-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) {
  .alt-grid-2 { grid-template-columns: 1fr; }
}

/* 3-col pricing cards (complex content): 3 → 1 */
.alt-grid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .alt-grid-pricing { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* Blog listing */
.alt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.alt-blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15,31,61,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.alt-blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,31,61,0.13); }
.alt-blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--grey-light);
  display: block;
}
.alt-blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.alt-blog-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.alt-blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.alt-blog-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 10px;
}
.alt-blog-excerpt {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.6;
  flex: 1;
}
.alt-blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--grey-mid);
}
.alt-blog-meta .sep { opacity: 0.4; }
.alt-blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 14px;
  text-decoration: none;
}
.alt-blog-readmore:hover { color: var(--navy); }

/* Single post */
.alt-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.alt-post-content h1 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--navy); margin: 0 0 16px; line-height: 1.2; }
.alt-post-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--grey-mid); margin-bottom: 32px; flex-wrap: wrap; }
.alt-post-feat-img { width: 100%; border-radius: 14px; margin-bottom: 36px; max-height: 440px; object-fit: cover; }
.alt-post-content .entry-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.alt-post-content .entry-content h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 36px 0 16px; }
.alt-post-content .entry-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.alt-post-content .entry-content p { margin: 0 0 20px; }
.alt-post-content .entry-content a { color: var(--gold); }
.alt-post-content .entry-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--gold-pale);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--navy-mid);
}

@media (max-width: 768px) {
  .alt-blog-grid { grid-template-columns: 1fr 1fr; }
  .alt-post-content { padding: 40px 22px 60px; }
}
@media (max-width: 540px) {
  .alt-blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BILINGUAL TOGGLE  — EN / TH
   body.alt-lang-th hides English content and shows Thai
   ============================================================ */
.lang-th { display: none; }
body.alt-lang-th .lang-th { display: inline; }
body.alt-lang-th .lang-en { display: none; }

/* Block-level bilingual sections */
.lang-th-block { display: none; }
body.alt-lang-th .lang-th-block { display: block; }
body.alt-lang-th .lang-en-block { display: none; }

/* Flex-level bilingual sections */
.lang-th-flex { display: none; }
body.alt-lang-th .lang-th-flex { display: flex; }
body.alt-lang-th .lang-en-flex { display: none; }

/* Make sure Thai text lines don't inherit awkward line-heights */
.lang-th, .lang-th-block {
  font-family: 'IBM Plex Sans Thai', 'Noto Sans Thai', 'Anuphan', sans-serif;
  line-height: 1.75;
}

/* Tighter line-height for Thai headings — only when Thai is active */
body.alt-lang-th h1 .lang-th,
body.alt-lang-th h2 .lang-th,
body.alt-lang-th h3 .lang-th,
body.alt-lang-th .alt-hero-title .lang-th,
body.alt-lang-th .alt-section-title .lang-th,
body.alt-lang-th .alt-h2 .lang-th,
body.alt-lang-th .alt-h3 .lang-th {
  line-height: 1.2;
  display: inline-block;
}
html.alt-lang-th-early h1 .lang-th,
html.alt-lang-th-early h2 .lang-th,
html.alt-lang-th-early h3 .lang-th,
html.alt-lang-th-early .alt-hero-title .lang-th,
html.alt-lang-th-early .alt-section-title .lang-th,
html.alt-lang-th-early .alt-h2 .lang-th,
html.alt-lang-th-early .alt-h3 .lang-th {
  line-height: 1.2 !important;
  display: inline-block !important;
}
