
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:       #1B3D2F;
  --green-light: #2A5C45;
  --amber:       #F2A71B;
  --amber-pale:  #FDE68A;
  --clay:        #C94B2C;
  --white:       #FAFAF7;
  --cream:       #F3EFE7;
  --charcoal:    #1A1A1A;
  --muted:       #6B7B74;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }

/* ── TOP BAR ── */
#topbar {
  background: var(--green);
  padding: 8px 6%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 300;
}
.topbar-contact {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.topbar-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.82); font-size: 0.8rem;
  transition: color 0.2s;
}
.topbar-item:hover { color: var(--amber); }
.topbar-item svg { flex-shrink: 0; opacity: 0.7; }
.topbar-socials {
  display: flex; align-items: center; gap: 14px;
}
.social-link {
  color: rgba(255,255,255,0.65); transition: color 0.2s;
  display: flex; align-items: center;
}
.social-link:hover { color: var(--amber); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger button - hidden on desktop, shown on mobile via media query below */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px; height: 24px;
    background: none; border: none; cursor: pointer; padding: 0;
  }
  .hamburger-btn span {
    display: block; width: 100%; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger-btn.open span:nth-child(2) { opacity: 0; }
  .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  /* Mobile dropdown panel */
  .mobile-menu {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--green);
    display: flex; flex-direction: column;
    padding: 90px 6% 24px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a {
    color: rgba(255,255,255,0.85);
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu a:last-child { border-bottom: none; }
/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 6%; background: rgba(27, 61, 47, 0.97);
  transition: background 0.35s, border-bottom 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  background: rgba(27, 61, 47, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.btn-donate-nav {
  padding: 9px 22px; background: var(--amber); color: var(--green);
  border: none; border-radius: 6px; font-weight: 700; font-size: 0.88rem;
  cursor: pointer; font-family: inherit; transition: opacity 0.2s;
}
.btn-donate-nav:hover { opacity: 0.88; }

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 37px);
  background: linear-gradient(155deg, var(--green) 0%, #0D1F15 65%, #172B1E 100%);
  display: flex; align-items: center;
  padding: 120px 6% 100px;
  position: relative; overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-1 {
  top: 8%; right: 4%;
  width: clamp(220px, 36vw, 460px); height: clamp(220px, 36vw, 460px);
  background: radial-gradient(circle, rgba(242,167,27,0.14) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: 0; left: -6%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(253,230,138,0.07) 0%, transparent 70%);
}
.hero-inner { max-width: 780px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(242,167,27,0.13); border: 1px solid rgba(242,167,27,0.28);
  border-radius: 100px; padding: 7px 18px; margin-bottom: 30px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); animation: pulse 2.2s infinite;
}
.hero-badge span { color: var(--amber); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; }
h1.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff; line-height: 1.04; font-weight: 900; margin-bottom: 24px;
}
h1.hero-title em { color: var(--amber); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.68); font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75; max-width: 530px; margin-bottom: 42px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  padding: 16px 38px; background: var(--clay); color: #fff;
  border: none; border-radius: 8px; font-weight: 700; font-size: 1rem;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 8px 26px rgba(201,75,44,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,75,44,0.45); }
.btn-ghost {
  padding: 16px 38px; border: 1px solid rgba(255,255,255,0.28);
  color: #fff; border-radius: 8px; font-weight: 600; font-size: 1rem;
  background: transparent; cursor: pointer; font-family: inherit;
  backdrop-filter: blur(8px); transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.45; transform:scale(1.35); }
}

/* ── STATS ── */
#stats { background: var(--green); padding: 88px 6%; }
.stats-eyebrow {
  text-align: center; color: var(--amber);
  font-size: 0.8rem; letter-spacing: 0.13em; font-weight: 700; margin-bottom: 52px;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 44px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; color: var(--amber); line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.68); font-size: 0.9rem; margin-top: 9px; line-height: 1.45; }

/* ── SHARED ── */
.section-eyebrow { font-size: 0.8rem; letter-spacing: 0.13em; font-weight: 700; color: var(--clay); margin-bottom: 12px; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--green); line-height: 1.18; margin-bottom: 52px;
}

/* ── PROGRAMS ── */
#programs { padding: 100px 6%; background: var(--cream); }
.programs-inner { max-width: 1040px; margin: 0 auto; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; }
.program-card {
  background: var(--white); border-radius: 14px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.09); }
.program-icon { font-size: 2.4rem; margin-bottom: 20px; }
.program-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; color: var(--green); margin-bottom: 12px; }
.program-desc { color: var(--muted); line-height: 1.72; font-size: 0.94rem; }

/* ── STORIES ── */
#stories { padding: 100px 6%; background: var(--white); }
.stories-inner { max-width: 1040px; margin: 0 auto; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 26px; }
.story-card { border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,0.07); }
.story-thumb { padding: 44px 28px; font-size: 4rem; text-align: center; }
.story-body { padding: 28px; }
.story-name { font-weight: 700; color: var(--green); font-size: 1.03rem; }
.story-location { color: var(--muted); font-size: 0.8rem; margin-top: 2px; margin-bottom: 14px; }
.story-quote { color: var(--charcoal); line-height: 1.72; font-style: italic; font-size: 0.94rem; }
.quote-mark { color: var(--amber); font-size: 1.6rem; line-height: 1; float: right; margin-bottom: 6px; }

/* ── DONATE BAND ── */
#donate-band {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--green), #0D1F15);
  text-align: center;
}
.donate-band-inner { max-width: 620px; margin: 0 auto; }
.donate-band-icon { font-size: 3rem; margin-bottom: 24px; }
.donate-band-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem); color: #fff; margin-bottom: 18px;
}
.donate-band-title em { color: var(--amber); font-style: italic; }
.donate-band-sub { color: rgba(255,255,255,0.65); font-size: 1.03rem; line-height: 1.72; margin-bottom: 38px; }
.donate-band-note { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 18px; }

/* ── TEAM ── */
#team { padding: 100px 6%; background: var(--cream); }
.team-inner { max-width: 1040px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.team-card {
  background: var(--white); border-radius: 14px; padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.06); text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--amber-pale); display: flex; align-items: center;
  justify-content: center; font-size: 2.2rem; margin: 0 auto 18px;
}
.team-name { font-weight: 700; color: var(--green); font-size: 1.03rem; margin-bottom: 4px; }
.team-role { color: var(--amber); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 12px; }
.team-bio { color: var(--muted); font-size: 0.86rem; line-height: 1.62; }

/* ── ABOUT ── */
#about { padding: 100px 6%; background: var(--white); }
.about-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 64px; align-items: center;
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 18px; font-size: 0.96rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-card { background: var(--cream); border-radius: 12px; padding: 22px 18px; }
.about-card-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.85rem; color: var(--green); font-weight: 700; }
.about-card-label { color: var(--muted); font-size: 0.8rem; margin-top: 5px; line-height: 1.4; }

/* ── CONTACT ── */
#contact { padding: 100px 6%; background: var(--cream); }
.contact-inner {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 64px; align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 26px; margin-top: 8px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-info-value { font-size: 0.96rem; color: var(--green); font-weight: 600; }
.contact-info-value a { color: var(--green); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--clay); }
.contact-socials { margin-top: 32px; }
.contact-socials-label { font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.07em; margin-bottom: 14px; }
.contact-socials-links { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-social-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  color: var(--green); font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.contact-social-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.contact-social-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* Contact form */
.contact-form-wrap { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid rgba(0,0,0,0.06); }
.contact-form-wrap h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; color: var(--green); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; border: 2px solid #E0DDD8;
  border-radius: 8px; font-family: inherit; font-size: 0.94rem;
  outline: none; transition: border-color 0.2s; background: var(--white);
  color: var(--charcoal);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--green); color: #fff;
  border: none; border-radius: 10px; font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.btn-submit:hover { background: var(--green-light); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); padding: 52px 6% 32px;
}
.footer-top {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px; margin-bottom: 44px;
}
.footer-brand .wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff; font-weight: 700; font-size: 1.3rem; margin-bottom: 12px; display: block;
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.65; max-width: 220px; }
.footer-col-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center;
  justify-content: center; transition: background 0.2s;
}
.footer-social:hover { background: var(--amber); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.footer-social:hover svg { fill: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.58);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 16px; padding: 2.6rem;
  max-width: 500px; width: 100%; position: relative;
  transform: translateY(16px); transition: transform 0.28s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted);
}
.modal-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; color: var(--green); margin-bottom: 6px; }
.modal-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.5; }
.amount-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 14px; }
.amount-btn {
  padding: 14px 12px; border-radius: 10px;
  border: 2px solid #DDD; background: #fff;
  cursor: pointer; font-family: inherit; font-size: 1.1rem;
  font-weight: 700; color: var(--green);
  transition: border-color 0.18s, background 0.18s;
}
.amount-btn.active { border-color: var(--amber); background: #FFFBEB; }
.amount-btn:hover:not(.active) { border-color: #bbb; }
.custom-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.custom-row label { color: var(--muted); font-size: 0.88rem; white-space: nowrap; }
.custom-wrap {
  display: flex; align-items: center; border: 2px solid #DDD;
  border-radius: 8px; overflow: hidden; flex: 1; transition: border-color 0.2s;
}
.custom-wrap:focus-within { border-color: var(--amber); }
.custom-prefix { padding: 10px 12px; background: #F3F3F3; font-weight: 700; color: var(--muted); font-size: 0.95rem; }
.custom-input { border: none; padding: 10px 12px; font-size: 1rem; outline: none; flex: 1; font-family: inherit; background: transparent; }
.donor-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.donor-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.donor-field input {
  width: 100%; padding: 11px 14px; border: 2px solid #E0DDD8; border-radius: 8px;
  font-family: inherit; font-size: 0.94rem; outline: none; transition: border-color 0.2s;
}
.donor-field input:focus { border-color: var(--amber); }
.btn-confirm {
  width: 100%; padding: 15px; background: var(--clay); color: #fff;
  border: none; border-radius: 10px; font-size: 1.03rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: opacity 0.2s;
}
.btn-confirm:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-confirm:not(:disabled):hover { opacity: 0.9; }
/* Donation method tabs */
.donate-tabs {
  display: flex; gap: 8px; margin-bottom: 24px;
  background: #F0EEE9; border-radius: 10px; padding: 4px;
}
.donate-tab {
  flex: 1; padding: 10px; border: none; background: transparent;
  border-radius: 8px; font-family: inherit; font-size: 0.88rem; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: background 0.2s, color 0.2s;
}
.donate-tab.active { background: var(--white); color: var(--green); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.soon-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 800;
  background: var(--amber); color: var(--green); padding: 1px 6px;
  border-radius: 100px; margin-left: 6px; letter-spacing: 0.03em;
  vertical-align: middle;
}
.coming-soon-notice {
  text-align: center; padding: 38px 20px;
  background: var(--cream); border-radius: 12px;
}
.coming-soon-notice .icon { font-size: 2.2rem; margin-bottom: 14px; }
.coming-soon-notice h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green); font-size: 1.15rem; margin-bottom: 8px;
}
.coming-soon-notice p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; max-width: 320px; margin: 0 auto; }

/* Bank transfer card */
.bank-card {
  background: var(--cream); border-radius: 12px; padding: 22px;
  margin-bottom: 18px;
}
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bank-row:last-child { border-bottom: none; }
.bank-row-label { font-size: 0.76rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 3px; }
.bank-row-value { font-size: 1.02rem; color: var(--green); font-weight: 700; }
.copy-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; background: var(--green); color: #fff;
  border: none; border-radius: 7px; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.2s; flex-shrink: 0;
}
.copy-btn:hover { background: var(--green-light); }
.copy-btn.copied { background: var(--amber); color: var(--green); }
.copy-btn svg { width: 13px; height: 13px; }
.bank-note {
  font-size: 0.84rem; color: var(--muted); line-height: 1.6;
  background: #FFFBEB; border: 1px solid rgba(242,167,27,0.3);
  border-radius: 8px; padding: 14px 16px;
}
.bank-note strong { color: var(--clay); }

.modal-success { text-align: center; padding: 1.2rem 0; }
.modal-success .success-icon { font-size: 4rem; margin-bottom: 18px; }
.modal-success h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; color: var(--green); margin-bottom: 12px; }
.modal-success p { color: var(--muted); line-height: 1.65; margin-bottom: 26px; }
.btn-close-success {
  padding: 12px 32px; background: var(--green); color: #fff;
  border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 1rem; font-family: inherit;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nav-links a { display: none; }
  .hamburger-btn { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn-ghost { display: none; }
  .topbar-contact { gap: 12px; }
}
