/* ═══════════════════════════════════════════════
   THE EVP CONSULTANCY — Quiet Harbour
   ═══════════════════════════════════════════════ */

:root {
  --deep-navy: #1e3048;
  --logo-blue: #3a7bad;
  --horizon: #c3d8e8;
  --linen: #f2ece2;
  --gold: #c9956b;
  --stone: #7a7268;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-body: #4a4a4a;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Calibri', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --section-padding: 6rem 2rem;
  --section-padding-mobile: 3.5rem 1.25rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--linen);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--logo-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--deep-navy); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--logo-blue);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin-bottom: 2rem;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

.text-stone { color: var(--stone); }
.text-gold { color: var(--gold); }
.text-blue { color: var(--logo-blue); }
.text-navy { color: var(--deep-navy); }
.text-linen { color: var(--linen); }

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

.section {
  padding: var(--section-padding);
}

.section--linen { background-color: var(--linen); }
.section--horizon { background-color: var(--horizon); }
.section--navy { background-color: var(--deep-navy); color: var(--linen); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--linen); }
.section--navy .subtitle { color: var(--gold); }
.section--blue { background-color: var(--logo-blue); color: var(--linen); }
.section--blue h2, .section--blue h3 { color: var(--linen); }
.section--white { background-color: var(--white); }

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

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

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--horizon);
  transition: box-shadow 0.3s;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(30, 48, 72, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__wordmark img {
  height: 44px;
  width: auto;
}

.nav__wordmark:hover { opacity: 0.85; transition: opacity 0.2s; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__linkedin {
  display: flex;
  align-items: center;
  color: var(--stone);
  transition: color 0.2s;
}

.nav__linkedin:hover {
  color: var(--deep-navy);
}

.nav__linkedin svg {
  width: 20px;
  height: 20px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--deep-navy);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  padding: 10rem 2rem 6rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero--navy {
  background-color: var(--deep-navy);
  color: var(--linen);
}

.hero--navy h1 { color: var(--linen); }
.hero--navy .subtitle { color: var(--gold); }

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.hero__content h1 {
  font-size: 3.25rem;
  max-width: 720px;
}

.hero__content .subtitle {
  max-width: 600px;
  font-size: 1.35rem;
}

.hero__content p {
  max-width: 600px;
  font-size: 1.1rem;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 48, 72, 0.08);
}

.card--horizon {
  background: var(--horizon);
}

.card--navy {
  background: var(--deep-navy);
  color: var(--linen);
}

.card--navy h3, .card--navy h4 { color: var(--linen); }
.card--navy .card__number { color: var(--gold); }

.card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.card__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--navy {
  background: var(--deep-navy);
  color: var(--linen);
  border-color: var(--deep-navy);
}

.btn--navy:hover {
  background: var(--logo-blue);
  border-color: var(--logo-blue);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--deep-navy);
  border-color: var(--deep-navy);
}

.btn--outline:hover {
  background: var(--deep-navy);
  color: var(--linen);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  color: var(--linen);
}

.btn--linen {
  background: var(--linen);
  color: var(--deep-navy);
  border-color: var(--linen);
}

.btn--linen:hover {
  background: var(--white);
  border-color: var(--white);
}

/* ─── QUOTE ─── */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--deep-navy);
  line-height: 1.5;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--stone);
}

/* ─── DIVIDER ─── */
.divider {
  text-align: center;
  padding: 3rem 0;
}

.divider hr {
  width: 80px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 auto;
}

/* ─── TWO-COL IS/ISN'T ─── */
.is-isnt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.is-isnt__col {
  padding: 3rem;
}

.is-isnt__col--is {
  background: var(--deep-navy);
  color: var(--linen);
  border-radius: 8px 0 0 8px;
}

.is-isnt__col--is h3 { color: var(--linen); }

.is-isnt__col--isnt {
  background: var(--horizon);
  border-radius: 0 8px 8px 0;
}

.is-isnt__col ul {
  list-style: none;
  padding: 0;
}

.is-isnt__col li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.is-isnt__col--isnt li {
  border-bottom-color: rgba(30,48,72,0.1);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--deep-navy);
  color: var(--linen);
  padding: 4rem 2rem 2rem;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer__wordmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--linen);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--horizon);
  transition: color 0.2s;
}

.footer a:hover { color: var(--gold); }

.footer h4 {
  color: var(--linen);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(195, 216, 232, 0.15);
  font-size: 0.8rem;
  color: var(--stone);
}

/* ─── CONTACT FORM ─── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--deep-navy);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--horizon);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--logo-blue);
  box-shadow: 0 0 0 3px rgba(58, 123, 173, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-strip h2 {
  margin-bottom: 1rem;
}

.cta-strip p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

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

.insight-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30, 48, 72, 0.08);
}

.insight-card__header {
  background: var(--deep-navy);
  padding: 1.5rem;
}

.insight-card__type {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.insight-card__title {
  font-family: var(--font-heading);
  color: var(--linen);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.insight-card__body {
  padding: 1.5rem;
}

.insight-card__date {
  font-size: 0.8rem;
  color: var(--stone);
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--linen);
  margin-left: -4px;
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--logo-blue);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline__text {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* ─── HEADSHOT ─── */
.headshot {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 45%;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(30, 48, 72, 0.12);
}

.headshot-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

/* ─── VIDEO ─── */
.video-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30, 48, 72, 0.1);
  margin: 2rem 0;
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.video-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

/* ─── FADE IN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── STAT ROW ─── */
.stat-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
}

.section--navy .stat__label { color: var(--horizon); }

/* ─── CLIENT LOGOS ─── */
.client-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0.55;
}

.client-strip img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.client-strip img:hover {
  opacity: 0.8;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(30, 48, 72, 0.06);
  transition: box-shadow 0.3s;
}

.testimonial:hover {
  box-shadow: 0 8px 30px rgba(30, 48, 72, 0.1);
}

.testimonial__quote {
  position: relative;
}

.testimonial__mark {
  width: 28px;
  height: 28px;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial__quote p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin: 0;
}

.testimonial__attribution {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--horizon);
}

.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep-navy);
  margin: 0 0 0.15rem;
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--stone);
  margin: 0;
  line-height: 1.4;
}

.testimonial__expanded p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin: 0.75rem 0 0;
}
.testimonial__read-more {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  padding: 0;
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.testimonial__read-more:hover { color: var(--deep-navy); }

/* ─── ARTICLE LINKS ─── */
.article-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--deep-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--deep-navy);
  transition: color 0.2s, border-color 0.2s;
}
.article-link:hover { color: var(--gold); border-color: var(--gold); }

/* ─── ACCORDION ─── */
.accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion__item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--horizon);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.accordion__item--open {
  box-shadow: 0 8px 30px rgba(30, 48, 72, 0.08);
  border-color: var(--logo-blue);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.2s;
}

.accordion__header:hover {
  background-color: rgba(195, 216, 232, 0.15);
}

.accordion__header:focus-visible {
  outline: 2px solid var(--logo-blue);
  outline-offset: -2px;
}

.accordion__header--disabled {
  cursor: default;
  opacity: 0.7;
}

.accordion__header--disabled:hover {
  background-color: transparent;
}

.accordion__header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.accordion__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}

.accordion__title-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.accordion__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 0;
  line-height: 1.3;
}

.accordion__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--logo-blue);
  margin: 0;
  font-weight: 400;
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--stone);
  transition: transform 0.3s ease;
}

.accordion__icon::before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  transform: translateX(-50%);
}

.accordion__item--open .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.accordion__badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--linen);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion__body {
  padding: 0 2rem 2rem;
  padding-left: 5.5rem;
}

.accordion__body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.accordion__body p:last-child {
  margin-bottom: 0;
}

.accordion__body p strong {
  color: var(--deep-navy);
}

.accordion__oneliner {
  font-size: 1.05rem !important;
  color: var(--deep-navy) !important;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--horizon);
  margin-bottom: 1.5rem !important;
}

.accordion__section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.accordion__group-label {
  font-weight: 600 !important;
  color: var(--deep-navy) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  margin-top: 1.25rem !important;
}

.accordion__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.accordion__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
}

.accordion__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.accordion__list--short {
  margin-bottom: 1.5rem;
}

.accordion__footnote {
  font-size: 0.8rem !important;
  color: var(--stone) !important;
  font-style: italic;
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--horizon);
}

/* ─── SPACER ─── */
.spacer-top { padding-top: 72px; }
.hero.spacer-top { padding-top: 12rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.6rem; }

  .section { padding: var(--section-padding-mobile); }

  .hero {
    padding: 7rem 1.25rem 3.5rem;
    min-height: auto;
  }

  .hero__content h1 { font-size: 2.5rem; }

  .grid-2, .grid-3, .grid-4, .is-isnt {
    grid-template-columns: 1fr;
  }

  .is-isnt__col--is { border-radius: 8px 8px 0 0; }
  .is-isnt__col--isnt { border-radius: 0 0 8px 8px; }

  .insights-grid { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav__right { gap: 1rem; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--horizon);
    box-shadow: 0 8px 30px rgba(30, 48, 72, 0.08);
  }

  .nav__mobile-toggle { display: block; }

  .nav__wordmark img { height: 36px; }

  .accordion__header { padding: 1.25rem 1.25rem; }
  .accordion__body { padding: 0 1.25rem 1.5rem; padding-left: 1.25rem; }
  .accordion__header-content { gap: 1rem; }
  .accordion__title { font-size: 1.15rem; }

  .testimonials { grid-template-columns: 1fr; max-width: 600px; }
  .testimonial { padding: 2rem 1.5rem 1.75rem; }
}

@media (max-width: 600px) {
  .hero__content h1 { font-size: 2rem; }
  .hero__content .subtitle { font-size: 1.1rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 2rem 1.5rem; }
}
