/* =============================================
   MANOJ GOEL — REDESIGNED v2
   Palette: Saffron · Gold · Khadi Linen · Warm Cream
   Fonts: Playfair Display + DM Sans + Tiro Devanagari
   ============================================= */

:root {
  /* Core Palette — NO dark navy. Khadi-reference earthy warmth */
  --saffron:       #E8610A;
  --saffron-mid:   #F07B30;
  --saffron-pale:  #FEF3EB;
  --gold:          #B8860B;
  --gold-light:    #E6B84A;
  --gold-pale:     #FFF9EC;
  --khadi:         #8B5E3C;      /* warm brown — Khadi cloth reference */
  --khadi-light:   #C9956A;
  --khadi-pale:    #FAF3ED;
  --green:         #2A6840;
  --cream:         #FDFAF5;
  --linen:         #F5EFE6;
  --warm-white:    #FFFFFF;
  --ink:           #1E1208;      /* warm near-black replacing cold navy */
  --ink-mid:       #4A3728;
  --ink-light:     #7A6555;
  --border:        rgba(184,134,11,0.18);
  --border-warm:   rgba(139,94,60,0.15);

  /* Shadow */
  --sh:  0 2px 16px rgba(139,94,60,0.10);
  --sh-lg: 0 8px 40px rgba(139,94,60,0.14);

  /* Radii */
  --r: 10px;
  --r-lg: 18px;

  /* Typography */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --hindi:   'Tiro Devanagari Hindi', serif;

  /* Transitions */
  --ease: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sg { padding: 72px 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--ink); }
h3 { font-size: 1.15rem; color: var(--ink); }
h4 { font-size: 1rem; color: var(--ink); }
p  { font-size: 1rem; color: var(--ink-mid); line-height: 1.75; }

/* ── CHIP / LABEL ── */
.chip {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  background: var(--saffron-pale);
  border: 1px solid rgba(232,97,10,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.chip-sm { font-size: 0.62rem; padding: 4px 10px; }
.chip-light { color: var(--warm-white); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); }

/* ── SECTION HEADER ── */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 { margin-top: 0; }
.sec-head > p { font-size: 1rem; color: var(--ink-light); max-width: 560px; margin: 12px auto 0; }

/* ── BUTTONS ── */
.btn-fill {
  display: inline-flex; align-items: center;
  padding: 13px 26px;
  background: var(--saffron);
  color: var(--warm-white);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  border-radius: var(--r);
  transition: var(--ease);
}
.btn-fill:hover { background: var(--saffron-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,97,10,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 26px;
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  border-radius: var(--r);
  transition: var(--ease);
}
.btn-ghost:hover { background: var(--saffron); color: var(--warm-white); }
.more-lnk {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  color: var(--saffron); letter-spacing: 0.03em;
}
.more-lnk-light { color: var(--gold-light); }

/* ── LANGUAGE POPUP ── */
.lang-popup {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(30,18,8,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.lang-popup.hidden { display: none; }
.lang-popup-inner {
  background: var(--warm-white); border-radius: var(--r-lg);
  padding: 40px 48px; text-align: center;
  box-shadow: var(--sh-lg); animation: popIn 0.3s ease;
  min-width: 300px;
}
@keyframes popIn { from{transform:scale(0.88);opacity:0} to{transform:scale(1);opacity:1} }
.lang-popup-inner h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 24px; }
.lp-btns { display: flex; gap: 12px; justify-content: center; }
.lang-btn {
  padding: 11px 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--r); background: transparent;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  color: var(--ink-mid); cursor: pointer; transition: var(--ease);
}
.lang-btn:hover, .lang-btn.active { background: var(--saffron); color: #fff; border-color: var(--saffron); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,245,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(139,94,60,0.1); }
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-monogram {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: #fff; letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.logo-role { font-family: var(--sans); font-size: 0.62rem; color: var(--saffron); font-weight: 500; letter-spacing: 0.04em; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  color: var(--ink-mid); padding: 8px 12px;
  border-radius: 8px; transition: var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--saffron); background: var(--saffron-pale); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-pill {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 13px; border: 1.5px solid var(--border-warm);
  border-radius: 8px; background: transparent;
  font-family: var(--sans); font-size: 0.8rem; color: var(--ink-mid);
  cursor: pointer; transition: var(--ease);
}
.lang-pill:hover { border-color: var(--saffron); color: var(--saffron); }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 100px 24px 60px;
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 56px;
}
.hero-left { flex: 1; max-width: 520px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--khadi); margin-bottom: 20px;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--saffron);
  border-radius: 50%; flex-shrink: 0;
  animation: pd 2s ease-in-out infinite;
}
@keyframes pd { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-h1 em { display: block; font-style: italic; font-weight: 400; color: var(--saffron); }
.hero-h1 strong { display: block; font-weight: 900; color: var(--ink); }
.hero-role { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--khadi); margin-bottom: 4px; }
.hero-ministry { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink-mid); margin-bottom: 24px; }
.hero-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--ink-mid); line-height: 1.7;
  padding-left: 16px; border-left: 3px solid var(--saffron);
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-nums { display: flex; align-items: center; gap: 0; }
.num-item { display: flex; flex-direction: column; padding: 0 20px; }
.num-item:first-child { padding-left: 0; }
.num-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--saffron); line-height: 1; }
.num-val small { font-size: 0.75rem; font-weight: 400; }
.num-lbl { font-family: var(--sans); font-size: 0.7rem; color: var(--ink-light); margin-top: 3px; font-weight: 500; letter-spacing: 0.04em; }
.num-div { width: 1px; height: 32px; background: var(--border); }

/* Hero mosaic */
.hero-right { flex: 0 0 480px; position: relative; }
.hero-mosaic { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }
.hm-main {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; background: var(--linen);
}
.hm-main img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hm-col2 { display: flex; flex-direction: column; gap: 10px; }
.hm-sm { border-radius: var(--r); overflow: hidden; flex: 1; background: var(--linen); }
.hm-sm img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-tag {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--saffron); color: #fff;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  padding: 10px 18px; border-radius: var(--r);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(232,97,10,0.3);
  white-space: nowrap;
}

/* ── TICKER ── */
.ticker-bar {
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  padding: 11px 0; overflow: hidden; margin-top: 32px;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: tick 38s linear infinite;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; color: #fff;
}
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--linen); }
.as-grid { display: grid; grid-template-columns: 480px 1fr; gap: 60px; align-items: center; }
.as-imgs { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }
.asi-main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; background: var(--khadi-pale); }
.asi-main img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.asi-sm { border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; background: var(--khadi-pale); }
.asi-sm img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.as-text h2 { margin-bottom: 16px; }
.as-text p { margin-bottom: 14px; }
.as-text .btn-fill { margin-top: 8px; }

/* ── INITIATIVES ── */
.init-sec { background: var(--cream); }
.init-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.ic { background: var(--warm-white); border: 1px solid var(--border-warm); border-radius: var(--r-lg); overflow: hidden; transition: var(--ease); }
.ic:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.ic-img { aspect-ratio: 16/9; overflow: hidden; background: var(--linen); }
.ic-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.ic:hover .ic-img img { transform: scale(1.04); }
.ic.ic-accent { background: var(--ink); border-color: var(--saffron); }
.ic.ic-accent .ic-body h3 { color: var(--gold-light); }
.ic.ic-accent .ic-body p { color: rgba(255,255,255,0.72); }
.ic-body { padding: 22px 24px; }
.ic-body h3 { margin: 10px 0 8px; }
.ic-body p { font-size: 0.92rem; margin-bottom: 14px; }

/* ── FEATURE BANNER ── */
.feat-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px; overflow: hidden;
}
.fb-img-wrap { overflow: hidden; }
.fb-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fb-text-wrap {
  background: var(--ink);
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.fb-text-wrap h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.fb-text-wrap p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.75; }

/* ── FIELD VISITS ── */
.field-sec { background: var(--linen); }
.field-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fc { background: var(--warm-white); border: 1px solid var(--border-warm); border-radius: var(--r-lg); overflow: hidden; transition: var(--ease); }
.fc:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.fc-img { aspect-ratio: 4/3; overflow: hidden; background: var(--linen); }
.fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fc:hover .fc-img img { transform: scale(1.04); }
.fc h4 { padding: 16px 18px 6px; font-size: 0.95rem; }
.fc p { padding: 0 18px 18px; font-size: 0.85rem; color: var(--ink-light); }

/* ── BSF SECTION ── */
.bsf-sec { background: var(--cream); }
.bsf-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.bsf-big { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--linen); }
.bsf-big img { width: 100%; height: 100%; object-fit: cover; }
.bsf-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.85), transparent);
  color: #fff; padding: 24px 16px 14px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
}
.bsf-3col { display: flex; flex-direction: column; gap: 16px; }
.bsf-sm { border-radius: var(--r); overflow: hidden; position: relative; flex: 1; min-height: 0; background: var(--linen); }
.bsf-sm img { width: 100%; height: 100%; object-fit: cover; }
.bsf-sm span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.8), transparent);
  color: #fff; padding: 18px 10px 8px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
}

/* ── SLIDER ── */
.slider-sec { background: var(--linen); }
.slider2-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.slider2-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.sl2 { min-width: 100%; position: relative; }
.sl2 img { width: 100%; aspect-ratio: 16/6; object-fit: cover; display: block; }
.sl2-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.88), transparent);
  color: #fff; padding: 40px 28px 18px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
}
.slider2-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.s2btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--saffron); background: transparent;
  color: var(--saffron); font-size: 1.1rem; cursor: pointer; transition: var(--ease);
}
.s2btn:hover { background: var(--saffron); color: #fff; }
.s2dots { display: flex; gap: 7px; }
.s2dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--ease); }
.s2dot.active { background: var(--saffron); transform: scale(1.3); }

/* ── FABRIC GALLERY ── */
.fabric-sec { background: var(--cream); }
.fab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.fab-item { border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; background: var(--linen); }
.fab-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fab-item:hover img { transform: scale(1.06); }
.fab-tall { grid-row: span 2; }
.fab-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.8) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 14px;
  opacity: 0; transition: var(--ease);
}
.fab-item:hover .fab-ov { opacity: 1; }
.fab-ov span { color: #fff; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }

/* ── CONNECT: SOCIAL + PRESS ── */
.connect-sec { background: var(--linen); }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.cg-social h2, .cg-press h2 { font-size: 1.7rem; margin-bottom: 24px; }
.soc-list { display: flex; flex-direction: column; gap: 10px; }
.soc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--warm-white);
  border: 1px solid var(--border-warm); border-radius: var(--r);
  transition: var(--ease);
}
.soc-item:hover { border-color: var(--saffron); transform: translateX(4px); }
.soc-ico { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.soc-fb .soc-ico { background: rgba(24,119,242,0.1); color: #1877f2; }
.soc-ig .soc-ico { background: rgba(225,48,108,0.1); color: #e1306c; }
.soc-tw .soc-ico { background: rgba(0,0,0,0.07); color: #000; }
.soc-item div { flex: 1; }
.soc-item strong { display: block; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.soc-item small { font-size: 0.78rem; color: var(--ink-light); }
.soc-arr { color: var(--ink-light); font-size: 1rem; }
.prl-list { display: flex; flex-direction: column; gap: 0; }
.prl-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-family: var(--sans); font-size: 0.88rem; color: var(--ink-mid);
  transition: var(--ease);
}
.prl-item:hover { color: var(--saffron); padding-left: 6px; }
.prl-item:last-child { border-bottom: none; }
.prl-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  color: #fff; background: var(--saffron);
  padding: 2px 7px; border-radius: 4px; flex-shrink: 0;
}
.prl-item span:nth-child(2) { flex: 1; }
.prl-more { color: var(--saffron) !important; font-weight: 600; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); }
.ft-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px 24px 48px;
}
.ft-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ft-logo-row .logo-monogram { flex-shrink: 0; }
.ft-logo-row strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: #fff; }
.ft-logo-row small { font-size: 0.65rem; color: var(--gold-light); letter-spacing: 0.04em; }
.ft-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.ft-soc { display: flex; gap: 10px; margin-top: 18px; }
.ft-soc a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  transition: var(--ease);
}
.ft-soc a:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.ft-nav h5 {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
}
.ft-nav a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 3px 0; transition: var(--ease); }
.ft-nav a:hover { color: var(--saffron); padding-left: 6px; }
.ft-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px; display: flex; justify-content: space-between;
  font-family: var(--sans); font-size: 0.75rem; color: rgba(255,255,255,0.35);
  max-width: 1180px; margin: 0 auto; flex-wrap: wrap; gap: 8px;
}

/* ── HINDI LANG ── */
body.lang-hi { font-family: var(--hindi); }
body.lang-hi h1, body.lang-hi h2, body.lang-hi h3 { font-family: var(--hindi); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; padding-top: 96px; }
  .hero-right { width: 100%; max-width: 440px; margin: 0 auto; }
  .hero-float-tag { left: 0; bottom: -12px; }
  .as-grid { grid-template-columns: 1fr; }
  .as-imgs { max-width: 420px; }
  .feat-banner { grid-template-columns: 1fr; }
  .fb-img-wrap { aspect-ratio: 16/7; }
  .init-grid { grid-template-columns: 1fr 1fr; }
  .bsf-grid { grid-template-columns: 1fr; }
  .bsf-3col { flex-direction: row; }
  .connect-grid { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; }
  .fab-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fab-tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--sh); z-index: 999; }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-mosaic { grid-template-columns: 1fr; }
  .hm-col2 { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  .bsf-3col { flex-direction: column; }
  .init-grid { grid-template-columns: 1fr; }
  .fab-grid { grid-template-columns: 1fr 1fr; }
  .ft-inner { grid-template-columns: 1fr; gap: 28px; }
  .ft-bar { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .sg { padding: 48px 0; }
  .hero-ctas { flex-direction: column; }
  .fab-grid { grid-template-columns: 1fr; }
}
