/* Ro-Berg PoC v2 — visual balance pass */

:root {
  --navy: #27235d;
  --navy-dark: #1a1840;
  --teal: #6fa9b8;
  --teal-bright: #72a5b8;
  --light: #f0f4f8;
  --white: #ffffff;
  --text: #111111;
  --text-muted: rgba(0, 0, 0, 0.6);
  --text-light: rgba(255, 255, 255, 0.85);
  --border: #dde3ea;
  --font: "Barlow", sans-serif;
  --font-condensed: "Barlow Condensed", sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --max: 1140px;
  --max-narrow: 640px;
  --nav-h: 76px;
  --hero-overlay: linear-gradient(135deg, rgba(39, 35, 93, 0.55) 0%, rgba(39, 35, 93, 0.4) 50%, rgba(17, 17, 17, 0.45) 100%);
  --space-section: clamp(3.5rem, 6vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-condensed);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); }
h3 { font-size: 1.125rem; font-weight: 700; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--max-narrow));
  margin-inline: auto;
}

/* PoC notice */
.poc-banner {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 0.35rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1.5rem;
}

.logo img {
  height: 58px;
  width: auto;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); text-decoration: none; }

.nav-journey-tag {
  display: inline-block;
  font-size: 0.5625rem;
  background: var(--teal);
  color: var(--navy);
  padding: 0.125rem 0.35rem;
  border-radius: 2px;
  margin-left: 0.25rem;
  vertical-align: middle;
  font-weight: 700;
}

.btn-call-now {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.125rem !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  letter-spacing: 0.08em;
}

.btn-call-now:hover {
  background: var(--navy-dark) !important;
  color: var(--white) !important;
  text-decoration: none !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.5rem;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover { text-decoration: none; }

.btn-teal { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: #7eb5c4; color: var(--navy); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.08); }

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

/* ——— Hero ——— */
.hero {
  position: relative;
  background: var(--navy) center/cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 4rem 0;
}

.hero-video {
  min-height: clamp(520px, 72vh, 680px);
  padding: 5rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 52rem);
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--teal); }
.hero .eyebrow { color: var(--teal); margin-bottom: 0.75rem; }

.hero-badge {
  display: inline-block;
  background: rgba(39, 35, 93, 0.85);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

.hero-compact { min-height: 340px; padding: 3.5rem 0; }

/* ——— Trust strip ——— */
.trust-strip {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem 1.5rem;
}

.trust-strip strong { color: var(--navy); font-weight: 700; }
.trust-strip .sep { opacity: 0.35; }

/* ——— Sections ——— */
.section { padding: var(--space-section) 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-teal { background: var(--teal); color: var(--navy); }
.section-teal h2 { color: var(--navy); }

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header p {
  font-family: var(--font-serif);
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.625rem;
}

.section-navy .eyebrow { color: var(--teal); }
.section-light .eyebrow { color: var(--teal-bright); }

.section-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Logo band between hero and content */
.band-logos {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.band-logos .section-header { margin-bottom: 1.75rem; }

/* Stats band */
.band-stats {
  padding: 2.5rem 0;
  background: var(--navy);
}

.band-stats .section-header { margin-bottom: 2rem; }
.band-stats .section-header h2 { color: var(--white); }
.band-stats .eyebrow { color: var(--teal); }
.band-stats .stat-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.band-stats .stat-value { color: var(--teal); }
.band-stats .stat-label { color: rgba(255, 255, 255, 0.65); }

/* ——— Journey cards ——— */
.journey-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.journey-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-height: 100%;
}

.journey-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(39, 35, 93, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.journey-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--light);
  display: grid;
  place-items: center;
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
}

.journey-card h2 {
  font-size: 1.625rem;
  margin-bottom: 0.875rem;
}

.journey-card p {
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
}

.journey-card__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}

.journey-card .btn { width: 100%; }

.journey-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  font-family: var(--font);
  text-align: center;
}

/* ——— Stats ——— */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-condensed);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.35;
}

/* ——— Logo bar ——— */
.logo-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.875rem;
  max-width: 900px;
  margin-inline: auto;
}

.logo-item {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 1rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item.anonymous {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
}

/* ——— Credentials ——— */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 1rem;
  text-align: center;
}

.section-light .cred-card { background: var(--white); }

.cred-badge {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.875rem;
  background: var(--navy);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cred-card h3 {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  color: var(--navy);
}

.cred-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
  line-height: 1.45;
}

/* ——— Testimonials ——— */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.section-light .testimonial-card { background: var(--white); }

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 0.975rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-meta strong {
  color: var(--navy);
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.testimonial-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  background: var(--light);
  color: var(--navy);
  margin-top: 0.5rem;
}

/* ——— Before/after ——— */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }

.ba-shot {
  aspect-ratio: 4/3;
  background: var(--navy) center/cover;
  display: grid;
  place-items: end start;
  padding: 0.625rem;
  position: relative;
}

.ba-shot.after { filter: brightness(1.15); }

.ba-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(39, 35, 93, 0.85);
  color: var(--white);
  padding: 0.25rem 0.5rem;
}

.ba-card-body { padding: 1.25rem; }
.ba-card-body h3 {
  font-size: 1rem;
  text-transform: none;
  font-family: var(--font);
  font-weight: 700;
}
.ba-card-body p { font-size: 0.875rem; color: var(--text-muted); }

/* ——— Case studies ——— */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.case-study-header { padding: 2rem 2rem 0; }

.case-study-header h3 {
  text-transform: none;
  font-family: var(--font-condensed);
  font-size: 1.5rem;
  font-weight: 800;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
}

.case-study-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
}

.case-field h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin-bottom: 0.5rem;
}

.case-field p { font-size: 0.9375rem; line-height: 1.6; }

.case-result {
  grid-column: 1 / -1;
  background: var(--light);
  padding: 1.5rem;
}

.case-result h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin-bottom: 0.5rem;
}

/* ——— Services ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(39, 35, 93, 0.06);
  text-decoration: none;
  color: inherit;
}

.service-card h3 {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-serif);
  line-height: 1.55;
}

/* ——— Client cards ——— */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.client-industry {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-bright);
}

.client-card h3 {
  font-size: 1rem;
  text-transform: none;
  font-family: var(--font);
  font-weight: 700;
  margin-top: 0.5rem;
  flex: 1;
}

.client-blurb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif);
  line-height: 1.55;
}

/* ——— Info cards (credentials page) ——— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.info-card h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin-bottom: 0.625rem;
}

.info-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--text-muted); }

/* ——— Content blocks (about, etc.) ——— */
.stack-lg { margin-bottom: 2.5rem; }
.stack-md { margin-top: 2.5rem; }

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

.content-block p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  line-height: 1.65;
}

.content-stack { margin-top: 3rem; }
.content-stack > h2 { margin-bottom: 0; }

/* ——— Contact ——— */
.journey-toggle {
  display: flex;
  background: var(--light);
  padding: 4px;
  margin-bottom: 2rem;
  max-width: 100%;
}

.journey-toggle button {
  flex: 1;
  padding: 0.875rem;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
}

.journey-toggle button.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 1rem;
}

.form-commercial { display: none; }
.form-commercial.visible { display: contents; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.contact-aside {
  background: var(--navy);
  color: var(--white);
  padding: 2.25rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-aside h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
}

.contact-aside p {
  color: var(--text-light);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.contact-aside .logo-bar {
  grid-template-columns: 1fr 1fr;
  max-width: none;
}

.contact-aside .logo-item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
}

/* ——— CTA ——— */
.cta-band {
  background: var(--teal);
  padding: var(--space-section) 0;
  text-align: center;
}

.cta-band .container--narrow { max-width: 36rem; }

.cta-band h2 { color: var(--navy); margin-bottom: 0.875rem; }
.cta-band p {
  color: var(--navy);
  opacity: 0.9;
  font-family: var(--font-serif);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.cta-navy {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: var(--space-section) 0;
}

.cta-navy .container--narrow { max-width: 36rem; }

.cta-navy h2 { color: var(--white); margin-bottom: 0.875rem; }
.cta-navy p {
  color: var(--text-light);
  font-family: var(--font-serif);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.cta-navy .hero-actions,
.cta-band .hero-actions { justify-content: center; }

/* ——— Footer ——— */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 1.75rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-brand img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.footer-brand p { line-height: 1.65; }

.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.8125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.125rem;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.625rem; }
.footer-grid a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-grid a:hover { color: var(--teal); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .journey-cards,
  .testimonial-grid,
  .services-grid,
  .client-grid,
  .cred-grid,
  .stats-bar { grid-template-columns: 1fr 1fr; }

  .info-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }

  .journey-cards,
  .testimonial-grid,
  .services-grid,
  .client-grid { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .band-stats { padding: 1.5rem 0; }

  .band-stats .stat-item {
    padding: 1rem 0.5rem;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .band-stats .stat-value {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .band-stats .stat-label {
    font-size: 0.5625rem;
    margin-top: 0.375rem;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(39, 35, 93, 0.45) 0%,
      rgba(39, 35, 93, 0.3) 55%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }

  .hero-video { min-height: clamp(480px, 85vh, 620px); }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    margin-inline: auto;
  }

  .hero-actions .btn { width: 100%; }

  .cred-grid { grid-template-columns: repeat(2, 1fr); }

  .case-study-body { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
