:root {
  --background: #FBF4E7;
  --surface: #FFFFFF;
  --surface-alt: #F8EEE2;
  --primary: #5A2311;
  --primary-dark: #34160C;
  --secondary: #C7861F;
  --secondary-soft: #F4E0A9;
  --text: #3E2618;
  --text-muted: #6F574A;
  --border: #E6D2BD;
  --shadow: 0 18px 50px rgba(90,35,17,0.16);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.3s ease;
  --max-width: 1180px;
  --nav-height: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 1rem; background: var(--primary); color: #fff;
  padding: 0.75rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }

.topbar { background: #fff; border-bottom: 1px solid #E8ECF1; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0;
}
.topbar-list { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.topbar-list a { color: var(--text); }
.topbar-actions { display: flex; gap: 1rem; }
.topbar-actions a { font-size: 0.9rem; color: var(--primary); font-weight: 600; }

.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid #E8ECF1;
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--nav-height);
}
.brand {
  font-family: 'Poppins', sans-serif; font-size: 1.05rem; letter-spacing: 0.12em;
  font-weight: 700; color: var(--primary); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 1rem;
}
.nav-link {
  font-size: 0.92rem; color: var(--text-muted); padding: 0.6rem 0.85rem;
  border-radius: 999px; transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--primary); }
.nav-link.active { background: rgba(24,50,85,0.08); }
.nav-cta {
  background: var(--secondary); color: #fff; padding: 0.7rem 1.15rem;
}
.nav-cta:hover { background: #a66f1c; }

.hamburger {
  display: none; border: none; background: transparent;
  flex-direction: column; justify-content: space-between; width: 30px; height: 24px; padding: 0;
}
.hamburger span {
  display: block; width: 100%; height: 3px; background: var(--text); border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.section { padding: 5rem 0; }
.hero {
  min-height: calc(100vh - var(--nav-height) - 44px);
  display: grid; place-items: center;
  background: none; /* background moved to ::before for fine control */
  color: #fff; position: relative; overflow: hidden;
}

/* Background image layer: use pseudo-element so we can adjust filters separately */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/WhatsApp%20Image%202026-06-12%20at%208.32.30%20AM.jpeg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: brightness(0.72) saturate(0.85) contrast(1.1);
  transform: translateZ(0);
}

.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,6,6,0.58), rgba(8,6,6,0.76));
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; align-items: center;
}
.hero-copy { max-width: 720px; position: relative; z-index: 2; padding: 3rem 0; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.eyebrow,
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.78rem;
  color: var(--secondary); margin-bottom: 1.25rem; font-weight: 700;
}
.hero h1 {
  font-family: 'Poppins', sans-serif; font-size: clamp(3.5rem, 6vw, 6.8rem);
  line-height: 1.02; letter-spacing: -0.04em; margin: 0 0 1rem;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.94); max-width: 640px;
  margin-bottom: 1.5rem;
}
.hero-quote {
  margin: 0 0 2rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(255,215,0,0.9);
  color: #FFD94D;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 660px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1rem;
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.75rem; border-radius: 999px; border: 1px solid transparent;
  transition: all var(--transition); font-weight: 600; text-transform: none;
}
.btn-primary { background: #FFD37C; color: #142033; }
.btn-primary:hover { background: #F2B950; }
.btn-outline { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-outline:hover { background: rgba(255,255,255,0.2); }
.btn-full { width: 100%; }

.hero-panel { display: grid; gap: 1.25rem; align-items: start; }
.hero-image {
  position: relative; overflow: hidden; border-radius: 32px;
  min-height: 520px; background: rgba(0,0,0,0.16);
  box-shadow: 0 30px 70px rgba(9, 25, 58, 0.22);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; opacity: 0.98;
}
.hero-image-tag {
  position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  background: rgba(255,244,211,0.95); color: var(--primary-dark);
  padding: 1.4rem 1.5rem; border-radius: 24px;
  backdrop-filter: blur(8px); border: 1px solid rgba(227,204,165,0.95);
}
.hero-image-tag p { margin: 0 0 0.5rem; font-weight: 700; }
.hero-image-tag span { font-size: 0.95rem; color: #4f6379; }

.hero-panel-copy {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px; padding: 1.75rem; backdrop-filter: blur(14px);
}
.hero-panel-copy p { margin: 0 0 0.75rem; color: rgba(255,255,255,0.82); letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.78rem; }
.hero-panel-copy h3 { margin: 0 0 1rem; color: #fff; font-size: 1.4rem; line-height: 1.3; }
.hero-panel-copy span { color: rgba(255,255,255,0.85); line-height: 1.7; }
.hero-panel-cards { display: grid; gap: 1rem; margin-top: 0.75rem; }
.hero-panel-card {
  min-height: 120px; padding: 1.75rem; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: center; gap: 0.35rem;
}
.hero-panel-card span {
  font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800;
  color: #FFD37C;
}
.hero-panel-card p { margin: 0; color: rgba(255,255,255,0.92); line-height: 1.45; }

.about-section { background: var(--background); }
.content-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
.section-text h2, .section-text h3 { font-family: 'Poppins', sans-serif; color: var(--primary-dark); margin: 0 0 1.25rem; }
.section-text h2::after { content: ''; display: block; width: 4.25rem; height: 4px; margin-top: 0.7rem; background: var(--secondary); border-radius: 999px; }
.section-text p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1rem; }
.section-text blockquote {
  margin: 0; padding: 1.5rem; background: #fff8ea; border-left: 4px solid #F0A819;
  border-radius: var(--radius-sm); color: var(--text); font-style: italic;
}
.about-panel { display: grid; gap: 1.5rem; }
.about-visual {
  position: relative; overflow: hidden; border-radius: 32px;
  min-height: 460px; box-shadow: 0 24px 60px rgba(24,50,85,0.16);
}

/* Story cards (image-backed panels) */
.story-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: stretch; }
.story-card {
  position: relative; overflow: hidden; border-radius: 14px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-start; padding: 2rem;
  color: #fff; background-size: cover; background-position: center; border: 1px solid rgba(255,230,150,0.06);
  transition: transform 0.36s ease, box-shadow 0.36s ease, filter 0.36s ease;
  box-shadow: 0 10px 30px rgba(6,6,6,0.28);
}
.story-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,6,0.54), rgba(8,6,6,0.72)); z-index: 0; }
.story-card .story-icon { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; color: #2f1208; margin-bottom: 1rem;
  width: 48px; height: 48px; border-radius: 999px; background: var(--secondary); box-shadow: 0 6px 18px rgba(15,10,8,0.28);
}
.story-card h3 { position: relative; z-index: 2; margin: 0 0 0.5rem; color: #FFEDC1; font-size: 1.15rem; font-weight: 700; }
.story-card p { position: relative; z-index: 2; margin: 0; color: rgba(255,255,255,0.9); line-height: 1.6; }
.story-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(6,6,6,0.36); filter: brightness(1.02); }

@media (max-width: 1024px) {
  .story-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .story-cards { grid-template-columns: 1fr; }
  .story-card { min-height: 240px; padding: 1.25rem; }
  .story-card .story-icon { width: 40px; height: 40px; }
  .story-card h3 { font-size: 1.05rem; }
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-visual p {
  position: absolute; left: 1.5rem; bottom: 1.5rem; right: 1.5rem;
  margin: 0; color: #3E2618; font-weight: 600;
  text-shadow: 0 10px 20px rgba(255,244,211,0.55);
}
.about-cards { display: grid; gap: 1rem; }
.info-card { padding: 1.75rem; border-radius: var(--radius); background: #fff;
  border: 1px solid #E7EDF4; box-shadow: 0 18px 50px rgba(24,50,85,0.05);
}
.info-card h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.info-card p { margin: 0; color: var(--text-muted); }

.work-section { background: var(--surface-alt); }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.work-card { position: relative; overflow: hidden; padding: 0; border-radius: 18px; background: transparent; border: none; box-shadow: 0 20px 45px rgba(90,35,17,0.08); min-height: 360px; }
.work-card img {
  width: 100%; height: 100%; object-fit: cover; display: block; transform-origin: center; transition: transform 0.5s ease, filter 0.4s ease;
}
.work-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,6,0.48), rgba(6,6,6,0.66)); z-index: 1; }
.work-card .card-content { position: absolute; inset: 1.25rem; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; }

/* Stats / achievements section inserted between hero and about */
.stats-section { background: #1d1310; padding: 2rem 0; }
.stats-section .container { max-width: 1240px; }
.stats-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; text-align: center; align-items: center; }
.stat-item { padding: 1rem 1.25rem; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.25rem; }
.stat-text { color: rgba(255,255,255,0.95); font-size: 1rem; line-height: 1.5; }

@media (max-width: 1024px) {
  .stats-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .stats-list { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }
}
.work-type { margin: 0; font-size: 0.92rem; color: var(--secondary); font-weight: 700; text-transform: none; }
.work-card h3 { margin: 0; color: #fff; font-size: 1.5rem; line-height:1.1; }
.work-card p { color: rgba(255,255,255,0.95); line-height: 1.7; margin: 0; font-size: 0.98rem; }
.work-card .card-content span { color: var(--secondary); font-weight: 700; }
.work-card:hover img { transform: scale(1.03); filter: brightness(0.72); }
.link-out { color: #FFEDC1; font-weight: 600; z-index: 2; position: relative; }

/* Work & Initiatives heading */
.work-section > .container > .section-eyebrow { margin-bottom: 0.35rem; }
.work-section h2 { font-family: 'Poppins', sans-serif; color: var(--primary-dark); font-size: 2.25rem; margin: 0 0 1rem; }
.work-section h2::after { content: ''; display: block; width: 4.25rem; height: 4px; background: var(--secondary); margin-top: 0.6rem; border-radius: 4px; }

/* Project cards use the same overlay treatment as work cards */
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.project-card { position: relative; overflow: hidden; border-radius: 18px; min-height: 340px; box-shadow: 0 20px 40px rgba(90,35,17,0.06); }
.project-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease, filter 0.35s ease; }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,6,0.42), rgba(6,6,6,0.62)); z-index: 1; }
.project-card .card-content { position: absolute; inset: 1.25rem; z-index: 2; display:flex; flex-direction:column; justify-content:space-between; }
.project-card h3 { margin: 0; color: #FFEDC1; font-size: 1.25rem; }
.project-card p { margin: 0; color: rgba(255,255,255,0.95); }
.project-card:hover img { transform: scale(1.03); filter: brightness(0.72); }

.work-icon { position: absolute; top: 1rem; left: 1rem; z-index: 2; color: var(--secondary); display: inline-flex; align-items: center; justify-content: center; }
.work-icon svg { display: block; }

/* Gallery Section */
.gallery-section { background: var(--surface-alt); }
.gallery-section > .container > .section-eyebrow { margin-bottom: 0.35rem; }
.gallery-section h2 { font-family: 'Poppins', sans-serif; color: var(--primary-dark); font-size: 2.25rem; margin: 0 0 0.5rem; }
.gallery-section h2::after { content: ''; display: block; width: 4.25rem; height: 4px; background: var(--secondary); margin-top: 0.6rem; border-radius: 4px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 14px; aspect-ratio: 1; display: block; background: #fff; box-shadow: 0 10px 30px rgba(90, 35, 17, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.3s ease; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(90, 35, 17, 0.2); opacity: 0; transition: opacity 0.3s ease; z-index: 1; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(90, 35, 17, 0.16); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.85); }
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.75rem; }
  .gallery-section h2 { font-size: 1.75rem; }
}

/* Testimonial */
.testimonial-section { background: #fff; }
.testimonial { max-width: 880px; margin: 0 auto; background: var(--surface); padding: 2rem 2.5rem; border-radius: 14px; box-shadow: 0 18px 45px rgba(90,35,17,0.06); border: 1px solid var(--border); font-style: italic; color: var(--text-muted); }
.testimonial p { margin: 0 0 1rem 0; color: var(--text); font-size: 1.05rem; }
.testimonial footer { font-weight: 700; color: var(--primary-dark); }

/* Mobile tweaks for cards */
@media (max-width: 1024px) {
  .work-card, .project-card { min-height: 280px; }
  .work-card h3, .project-card h3 { font-size: 1.1rem; }
  .work-card p, .project-card p { font-size: 0.95rem; }
}

@media (max-width: 540px) {
  .work-card, .project-card { min-height: 220px; }
  .work-type { font-size: 0.9rem; }
}

.mission-section { background: var(--background); }
.section-intro { max-width: 760px; color: var(--text-muted); margin: 0 0 2rem; }
.mission-grid-two { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.mission-copy p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.2rem; }
.mission-copy h2 { font-family: 'Poppins', sans-serif; font-size: 2.65rem; margin-top: 0; color: var(--primary-dark); }
.mission-visual { border-radius: 28px; overflow: hidden; box-shadow: 0 28px 70px rgba(24, 50, 85, 0.14); }
.mission-visual img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }

@media (max-width: 1024px) {
  .mission-grid-two { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .mission-copy h2 { font-size: 2rem; }
}

.connect-section { background: var(--surface-alt); }
.connect-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
.connect-copy p, .connect-copy span, .connect-copy a { color: var(--text-muted); }
.connect-copy h2 { margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.contact-list { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-list div { background: #fff; padding: 1.25rem 1.5rem; border-radius: var(--radius-sm);
  border: 1px solid #E8EDF1;
}
.contact-list strong { display: block; margin-bottom: 0.5rem; color: var(--text); }
.contact-list a { color: var(--primary); }

.subscribe-card { background: #fff; border-radius: var(--radius); padding: 2rem;
  border: 1px solid #E7EDF4; box-shadow: 0 18px 45px rgba(24,50,85,0.05);
}
.sub-head { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--secondary); margin-bottom: 1rem;
}
.subscribe-card h3 { margin: 0 0 1.75rem; }
.subscribe-form { display: grid; gap: 1rem; }
.subscribe-form label { font-size: 0.9rem; color: var(--text); }
.subscribe-form input { width: 100%; padding: 0.9rem 1rem; border-radius: 14px;
  border: 1px solid #DDE4EA; font-size: 0.95rem; color: var(--text);
}
.subscribe-form input:focus { outline: 2px solid rgba(181,122,38,0.25); border-color: var(--secondary); }
.sub-note { margin-top: 1.5rem; color: var(--text-muted); font-size: 0.95rem; }

.footer { background: #3B1F14; color: rgba(255,255,255,0.95); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 2rem; }
.footer-column { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-logo { font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.85rem; }
.footer-column p { color: rgba(255,255,255,0.9); line-height: 1.8; margin: 0; }
.footer-contact-line { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.footer-contact-item { display: inline-flex; white-space: nowrap; }
.footer-contact-item:not(:last-child)::after { content: "•"; margin: 0 0.75rem; color: rgba(255,255,255,0.45); }
.footer-links { display: grid; gap: 0.8rem; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-links a:hover { color: #FFD14D; }
.footer-heading { margin-bottom: 1rem; font-size: 1rem; text-transform: none;
  letter-spacing: 0; color: #FFD14D; font-weight: 700;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: #fff; color: #3B1F14; font-weight: 700; text-decoration: none;
}
.footer-subscribe-form { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.footer-subscribe-form input { flex: 1; min-width: 0; padding: 0.95rem 1rem; border-radius: 999px 0 0 999px; border: none; }
.footer-subscribe-form input:focus { outline: 2px solid rgba(255,209,77,0.5); }
.footer-submit { width: 56px; height: 56px; border-radius: 0 999px 999px 0; border: none; background: #FFD14D; color: #3B1F14; font-size: 1.1rem; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 2rem;
}
.back-to-top { position: fixed; right: 1.75rem; bottom: 1.75rem; width: 44px;
  height: 44px; border-radius: 50%; border: none; background: var(--secondary);
  color: #142033; font-size: 1.1rem; box-shadow: 0 16px 40px rgba(24,50,85,0.18);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 1024px) {
  .hero-grid, .content-grid, .connect-grid { grid-template-columns: 1fr; }
  .work-grid, .mission-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-subscribe-form { flex-direction: column; align-items: stretch; }
  .footer-subscribe-form input { border-radius: 18px; }
  .footer-submit { border-radius: 18px; width: 100%; height: 48px; }
}
@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .topbar-actions { justify-content: flex-start; }
  .nav-links {
    position: fixed; left: 0; right: 0; top: var(--nav-height);
    background: rgba(255,255,255,0.98); flex-direction: column; gap: 0;
    padding: 1rem; transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: all var(--transition);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { width: 100%; padding: 1rem 1.2rem; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .hero { padding: 4rem 0; }
  .hero h1 { font-size: 2.5rem; }
  .hero-panel-card { min-height: 110px; }
}
@media (max-width: 540px) {
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero-panel-card { padding: 1.4rem; }
  .topbar-list { gap: 1rem; flex-direction: column; }
  .topbar-actions { gap: 0.75rem; }
}
