/* ============================================================
   GMD People — Static site stylesheet
   Fonts: Playfair Display (headings), Lato (body)
   Palette: British Racing Green and brass — see :root below
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;600;700&family=Roboto:wght@400;500&display=swap');

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --bg:        #F4F1EA;  /* warm stone, default page background */
  --bg-dark:   #0E2A1F;  /* British Racing Green, hero and dark "moment" sections */
  --text:      #1F2421;  /* near-black ink with a green undertone, body and headings */
  --muted:     #6B6258;  /* warm stone-grey, secondary text */
  --accent:    #C0A062;  /* brass, the single accent, used sparingly */
  --highlight: #C0A062;  /* brass, links, chevrons, small accents */
  --peach:     #B0894A;  /* deeper bronze-brass, hover and secondary accent */
  --white:     #FFFFFF;  /* pure white only if needed; prefer --bg for warmth */

  /* Text on dark green sections */
  --text-on-dark:  #F4F1EA; /* warm stone text on green, NOT pure white */
  --muted-on-dark: #BCC8BF; /* soft sage, secondary text on green */

  /* Primary button on LIGHT sections (green fill, highest contrast) */
  --btn-bg:        #0E2A1F;
  --btn-text:      #F4F1EA;
  --btn-bg-hover:  #143C2C; /* slightly lighter green on hover */

  /* Primary button on DARK GREEN sections (brass fill) */
  --btn-bg-on-dark:       #C0A062;
  --btn-text-on-dark:     #0E2A1F;
  --btn-bg-on-dark-hover: #CDB072;

  /* Hairlines and borders */
  --line:         #DDD6C8; /* soft stone rule on light */
  --line-on-dark:  #2A4538; /* subtle rule on green */

  --max-w:     1100px;
  --radius:    4px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.3px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--highlight); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--peach); }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* ── Dark "moment" section wrapper ─────────────────────────── */
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--text-on-dark); }
.section--dark p.muted,
.section--dark .muted { color: var(--muted-on-dark); }
.section--dark a:hover { color: var(--btn-bg-on-dark-hover); }
.section--dark .section-label { color: var(--accent); }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 80px 0; }
section.tight { padding: 60px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
}
.btn-primary:hover { background: var(--btn-bg-hover); color: var(--btn-text); }

/* on dark green sections, flip to the brass-on-green pairing */
.hero .btn-primary,
.cta-strip .btn-primary,
.page-hero .btn-primary,
.site-footer .btn-primary,
.section--dark .btn-primary {
  background: var(--btn-bg-on-dark);
  color: var(--btn-text-on-dark);
}
.hero .btn-primary:hover,
.cta-strip .btn-primary:hover,
.page-hero .btn-primary:hover,
.site-footer .btn-primary:hover,
.section--dark .btn-primary:hover {
  background: var(--btn-bg-on-dark-hover);
  color: var(--btn-text-on-dark);
}

.btn-outline {
  background: transparent;
  color: var(--btn-bg-on-dark);
  border: 2px solid var(--btn-bg-on-dark);
}
.btn-outline:hover { background: var(--btn-bg-on-dark); color: var(--btn-text-on-dark); }

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover { background: #081C14; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo img { height: 40px; width: auto; max-width: 180px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--highlight); }
.nav-links a.active { color: var(--highlight); }

.nav-links a.btn-primary {
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  color: var(--btn-text);
}
.nav-links a.btn-primary:hover { color: var(--btn-text); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; background: none; border: none; font: inherit; color: var(--text); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.4px; padding: 0; }
.nav-dropdown-toggle:hover { color: var(--highlight); }
.nav-dropdown-toggle::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); vertical-align: middle; margin-left: 0.4rem; position: relative; top: -1px; }
.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(31,36,33,0.15);
  padding: 0.6rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu li a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: calc(var(--radius) - 6px);
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--text);
}
.nav-dropdown-menu li a:hover { background: var(--bg); color: var(--highlight); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 100px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/dylan-gillis-KdeqA3aTnBY-unsplash-scaled.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero .container { width: 100%; }
.hero-content {
  position: relative;
  max-width: 980px;
}

.hero h1 {
  color: var(--text-on-dark);
  margin-bottom: 2.5rem;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}
.hero h1 .hero-line { display: block; }
.hero h1 .hero-line + .hero-line { margin-top: 0.4rem; }
.hero h1 .hl { color: var(--accent); }

.hero p {
  color: var(--muted-on-dark);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero p .hero-line { display: block; }
.hero p .hero-line + .hero-line { margin-top: 0.5rem; }

/* ── Section labels ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

/* ── Intro / two-col sections ─────────────────────────────── */
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-intro h2 { margin-bottom: 1rem; }

/* ── Values ───────────────────────────────────────────────── */
.values { background: var(--white); }
.values .grid-2 { align-items: stretch; }

.value-card {
  padding: 2rem;
  border-top: 3px solid var(--accent);
}
.value-card h3 { margin-bottom: 0.6rem; color: var(--text); }

/* ── Framework strip ──────────────────────────────────────── */
.framework {
  background: var(--bg);
  padding: 60px 0;
}
.framework h2 { margin-bottom: 1rem; }
.framework p { color: var(--muted); }

.framework-steps {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
.framework-step {
  flex: 1;
  border-top: 2px solid var(--accent);
  padding-top: 1.25rem;
}
.framework-step h3 { color: var(--peach); margin-bottom: 0.4rem; }
.framework-step p { color: var(--muted); font-size: 0.95rem; }

/* dark "moment" variant, used sparingly (e.g. Facilitation's senior-team panel) */
.section--dark .framework,
.framework.section--dark { background: transparent; }
.section--dark .framework p,
.framework.section--dark p { color: var(--muted-on-dark); }
.section--dark .framework-step h3,
.framework.section--dark .framework-step h3 { color: var(--accent); }
.section--dark .framework-step p,
.framework.section--dark .framework-step p { color: var(--muted-on-dark); }

/* ── Team ─────────────────────────────────────────────────── */
.team { background: var(--bg-dark); color: var(--text-on-dark); }
.team .section-label { color: var(--accent); }
.team .section-intro p { color: var(--muted-on-dark); }

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.team-card-body { padding: 1.5rem; }
.team-card h3 { margin-bottom: 0.35rem; }
.team-card .team-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1rem;
}
.team-card p { font-size: 0.95rem; color: var(--muted); }

/* ── Partners ─────────────────────────────────────────────── */
.partners { background: var(--white); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  margin-top: 2.5rem;
}

.partners-grid img {
  height: 76px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--transition), opacity var(--transition);
}
.partners-grid img:hover { filter: none; opacity: 1; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--bg); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: Georgia, serif;
}

.testimonial blockquote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-top: 1.75rem;
}

.testimonial cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.testimonial cite strong { display: block; color: var(--text); font-size: 0.9rem; }

/* ── CTA strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-dark);
  padding: 70px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--text-on-dark); margin-bottom: 1.5rem; }
.cta-strip p { color: var(--muted-on-dark); margin-bottom: 2rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: var(--muted-on-dark);
  padding: 60px 0 30px;
  border-top: 2px solid var(--accent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 44px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--btn-bg-on-dark-hover); }

.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer-col address a { transition: color var(--transition); }
.footer-col address a:hover { color: var(--btn-bg-on-dark-hover); }

.footer-newsletter { margin-top: 1rem; text-align: center; }
.footer-brand .footer-newsletter-logo { display: block; height: 110px; margin: 0 auto 1rem; filter: brightness(0) invert(1); }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-newsletter form { display: flex; gap: 0.5rem; max-width: 300px; margin: 0 auto; }
.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border: 1px solid var(--line-on-dark);
  background: rgba(244,241,234,0.06);
  color: var(--text-on-dark);
  border-radius: var(--radius);
  outline: none;
}
.footer-newsletter input::placeholder { color: var(--muted-on-dark); }
.footer-newsletter button {
  padding: 0.6rem 1.2rem;
  background: var(--btn-bg-on-dark);
  color: var(--btn-text-on-dark);
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.footer-newsletter button:hover { background: var(--btn-bg-on-dark-hover); }
.footer-newsletter-msg { margin-top: 0.6rem; margin-bottom: 0; font-size: 0.85rem; }
.footer-newsletter-msg--success { color: var(--accent); }
.footer-newsletter-msg--error { color: #E0968C; }

.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--btn-bg-on-dark-hover); }

/* ── Unique / road section ────────────────────────────────── */
.unique-section {
  padding: 80px 0;
}

.unique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.unique-img-wrap {
  position: relative;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
}

.unique-road-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .unique-grid { grid-template-columns: 1fr; }
  .unique-img-wrap { height: 300px; order: -1; }
  .unique-road { background-attachment: scroll; }
}

/* ── Chevron list ─────────────────────────────────────────── */
.chevron-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}

.chevron-list li {
  font-size: 1.125rem;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}

.chevron-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ── Horizontal team card ─────────────────────────────────── */
.team-card-horizontal {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}

.team-card-horizontal img {
  width: 33.333%;
  height: auto;
  min-height: 280px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: top;
}

.team-card-horizontal .team-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem;
}

@media (max-width: 640px) {
  .team-card-horizontal {
    flex-direction: column;
  }
  .team-card-horizontal img {
    width: 100%;
    height: 260px;
  }
  .unique-bg {
    background-attachment: scroll;
  }
}

/* ── What We Do page ──────────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: var(--accent); margin-bottom: 0.75rem; }
.page-hero p { color: var(--muted-on-dark); max-width: 600px; margin: 0 auto; }

.service-item {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.service-item:last-child { border-bottom: none; }
.service-item:nth-child(even) .grid-2 { direction: rtl; }
.service-item:nth-child(even) .grid-2 > * { direction: ltr; }
.service-item img {
  border-radius: var(--radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.service-item h2 { margin-bottom: 1rem; }
.service-item .section-label { margin-bottom: 0.5rem; }

.assessment-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: nowrap;
}
.assessment-logos img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Insights page ────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.insight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.insight-card p { font-size: 0.9rem; color: var(--muted); flex: 1; }

.insight-card .insight-author {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 20px;
  color: var(--highlight);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail p { margin: 0; font-size: 0.95rem; }
.contact-detail a { transition: color var(--transition); }
.contact-detail a:hover { color: var(--highlight); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 2.5rem; }
.contact-form h3 { margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.form-check input { width: auto; margin-top: 3px; }
.form-check label { font-size: 0.85rem; font-weight: 300; }
.form-check a { color: var(--highlight); text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .framework-steps { flex-direction: column; }
  .service-item:nth-child(even) .grid-2 { direction: ltr; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .container { padding: 0 1.25rem; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { display: flex; align-items: center; width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0.25rem 0 0 1rem;
    margin-top: 0.5rem;
    min-width: 0;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .grid-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-newsletter form { flex-direction: column; }
}
