/* ==========================================================================
   Summit Business Coaching - summitbusinesscoaching.net
   Franklin, TN + Nashville metro business coaching and consulting
   --------------------------------------------------------------------------
   Palette: Summit-alpine calm. Granite + Alpine + Copper on Snow.
   Fonts: Prata (display serif), Manrope (sans body).
   ========================================================================== */

:root {
  --granite:       #2C3540;
  --granite-deep:  #141A22;
  --granite-soft:  #4A5566;
  --alpine:        #3B7DBF;
  --alpine-deep:   #1F5486;
  --alpine-soft:   #8FB6DE;
  --copper:        #B26D3A;
  --snow:          #F5F1E8;
  --snow-warm:     #E9E1CE;
  --rule:          #CBBFA5;
  --white:         #FFFFFF;
  --ink-soft:      #5A6470;

  --radius: 2px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(20,26,34,0.05), 0 2px 8px rgba(20,26,34,0.04);
  --shadow-md: 0 6px 18px rgba(20,26,34,0.08), 0 16px 32px rgba(20,26,34,0.06);

  --font-display: 'Prata', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--granite);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--alpine); text-decoration: none; transition: color .2s ease, border-color .2s ease; }
a:hover { color: var(--alpine-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--granite-deep);
  font-weight: 400;
  line-height: 1.16;
  margin: 0 0 .6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.3rem, 4.7vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 3.1vw, 2.45rem); }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.02rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; color: var(--granite); }
p  { margin: 0 0 1.05em; color: var(--granite-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 26px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: var(--alpine-soft); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: .55rem; }
.section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.03rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .22s ease;
  border: 1.5px solid transparent;
  text-align: center;
  position: relative;
}
.btn-primary {
  background: var(--granite-deep);
  color: var(--snow);
  border-color: var(--granite-deep);
}
.btn-primary:hover {
  background: var(--granite);
  color: var(--snow);
  border-color: var(--alpine);
  box-shadow: inset 0 -2px 0 var(--alpine);
}
.btn-outline {
  background: transparent;
  color: var(--granite);
  border-color: var(--granite);
}
.btn-outline:hover {
  background: var(--granite);
  color: var(--snow);
}
.btn-outline.on-dark {
  color: var(--snow);
  border-color: var(--alpine-soft);
}
.btn-outline.on-dark:hover {
  background: var(--alpine);
  color: var(--snow);
  border-color: var(--alpine);
}
.btn-large { padding: 16px 32px; font-size: 1rem; }

/* Topbar */
.topbar {
  background: var(--granite-deep);
  color: var(--snow-warm);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(178,109,58,0.25);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 26px;
  gap: 20px;
}
.topbar-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--alpine-soft);
  letter-spacing: 0.02em;
}
.topbar-tagline svg { width: 15px; height: 15px; color: var(--copper); }
.topbar-meta {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar-meta svg { width: 14px; height: 14px; color: var(--alpine-soft); }

/* Nav */
.nav {
  background: var(--snow);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(4px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--granite-deep);
}
.brand:hover { color: var(--granite-deep); }
.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--granite-deep);
  color: var(--snow);
  border-radius: var(--radius);
  position: relative;
}
.brand-mark svg { width: 26px; height: 26px; color: var(--alpine-soft); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--granite-deep);
  letter-spacing: 0.005em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 3px;
  font-weight: 600;
}
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--granite);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--granite-deep);
  border-bottom-color: var(--alpine);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  padding: 6px;
  color: var(--granite);
}
.hamburger svg { width: 26px; height: 26px; }

/* Mobile drawer */
.scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,26,34,0.55);
  z-index: 60;
}
.scrim.open { display: block; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 82%;
  max-width: 340px;
  background: var(--snow);
  z-index: 70;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 24px 22px 28px;
  overflow-y: auto;
  border-left: 3px solid var(--alpine);
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  color: var(--granite);
  margin-left: auto;
  display: block;
  padding: 6px;
}
.drawer-close svg { width: 24px; height: 24px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 22px;
}
.drawer ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1.08rem;
  color: var(--granite-deep);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
.drawer-cta { width: 100%; margin-bottom: 24px; }
.drawer-meta {
  font-size: 0.88rem;
  color: var(--granite-soft);
  line-height: 1.7;
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
}
.drawer-meta strong { color: var(--granite-deep); }

/* Hero */
.hero {
  position: relative;
  background: var(--snow);
  padding: 84px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(59,125,191,0.06), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(178,109,58,0.05), transparent 60%);
  pointer-events: none;
}
.hero-peaks {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  opacity: 0.14;
  pointer-events: none;
}
.hero-peaks svg { width: 100%; height: 100%; color: var(--copper); }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero h1 {
  font-family: var(--font-display);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--alpine-deep); font-style: italic; }
.hero-lead {
  font-size: 1.18rem;
  color: var(--granite-soft);
  line-height: 1.62;
  max-width: 660px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--granite-soft);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { width: 16px; height: 16px; color: var(--copper); }

/* Trust strip */
.trust {
  background: var(--snow-warm);
  border-bottom: 1px solid var(--rule);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 2px solid var(--copper);
  padding-left: 18px;
}
.trust-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--alpine-deep);
  font-weight: 700;
}
.trust-item .desc {
  color: var(--granite);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Sections */
.section-light   { padding: 88px 0; background: var(--snow); }
.section-cream   { padding: 88px 0; background: var(--snow-warm); }
.section-dark    { padding: 88px 0; background: var(--granite-deep); color: var(--snow); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--snow); }
.section-dark p  { color: var(--alpine-soft); }
.section-dark .section-title p { color: var(--alpine-soft); }

/* Services grid (unboxed cards, alpine top-line) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
}
.service-card {
  border-top: 2px solid var(--alpine);
  padding-top: 22px;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--copper);
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}
.service-card p { font-size: 0.98rem; margin-bottom: 14px; }
.chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chips li {
  font-size: 0.76rem;
  padding: 4px 10px;
  background: var(--snow-warm);
  color: var(--granite);
  border-radius: 20px;
  border: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.section-cream .chips li { background: var(--snow); }

/* Engagement formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.format {
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--alpine);
}
.format .duration {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpine-deep);
  margin-bottom: 12px;
  padding: 3px 10px;
  background: rgba(59,125,191,0.09);
  border-radius: 3px;
}
.format h3 { margin-bottom: 10px; }
.format p { margin-bottom: 0; font-size: 0.95rem; }

/* Process on granite-deep with alpine numerals */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 8px 4px 4px;
}
.process-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--alpine-soft);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
  display: block;
}
.process-step h3 { color: var(--snow); font-size: 1.28rem; margin-bottom: 8px; }
.process-step p { color: var(--alpine-soft); font-size: 0.95rem; }
.process-elev {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 26px;
  color: var(--copper);
}
.process-elev span {
  display: inline-block;
  width: 14px;
  background: var(--copper);
  opacity: 0.25;
}
.process-elev span:nth-child(1) { height: 22px; opacity: 0.35; }
.process-elev span:nth-child(2) { height: 40px; opacity: 0.55; }
.process-elev span:nth-child(3) { height: 60px; opacity: 0.75; }
.process-elev span:nth-child(4) { height: 84px; opacity: 1; }

/* Who we work with */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.audience {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  position: relative;
}
.audience::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--copper);
}
.audience h3 { margin-bottom: 10px; font-size: 1.25rem; }
.audience p { margin-bottom: 0; font-size: 0.96rem; }
.audience .aud-icon {
  width: 44px; height: 44px;
  color: var(--alpine);
  margin-bottom: 18px;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq:first-of-type { border-top: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.16rem;
  color: var(--granite-deep);
  list-style: none;
  padding-right: 40px;
  position: relative;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -2px;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--alpine);
  font-weight: 300;
  transition: transform .25s ease;
}
.faq[open] summary::after { content: "\2212"; transform: rotate(0); }
.faq-body { padding: 12px 40px 4px 0; }
.faq-body p { margin-bottom: 0; font-size: 0.98rem; }

/* CTA banner */
.cta-banner {
  background: var(--granite-deep);
  color: var(--snow);
  padding: 82px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--copper);
}
.cta-banner h2 { color: var(--snow); margin-bottom: 14px; }
.cta-banner p {
  color: var(--alpine-soft);
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}
.cta-banner .hero-actions { justify-content: center; }

/* Footer */
.footer {
  background: var(--granite-deep);
  color: var(--alpine-soft);
  padding: 62px 0 26px;
  font-size: 0.92rem;
  border-top: 1px solid rgba(178,109,58,0.2);
}
.footer .brand-name { color: var(--snow); }
.footer .brand-sub { color: var(--copper); }
.footer .brand-mark { background: var(--granite); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 { color: var(--snow); margin-bottom: 16px; font-size: 0.82rem; }
.footer p { color: var(--alpine-soft); margin: 16px 0 18px; font-size: 0.92rem; }
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li { margin-bottom: 9px; }
.footer ul a {
  color: var(--alpine-soft);
  border-bottom: 1px dotted transparent;
  padding-bottom: 1px;
}
.footer ul a:hover { color: var(--snow); border-bottom-color: var(--copper); }
.footer-meta {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(203,191,165,0.14);
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-meta-row svg { width: 15px; height: 15px; color: var(--copper); }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(203,191,165,0.14);
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--alpine-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* Page hero (interior) */
.page-hero {
  background: var(--snow);
  padding: 74px 0 60px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--alpine) 0, var(--alpine) 40%, var(--copper) 40%, var(--copper) 55%, var(--granite) 55%);
}
.page-hero .inner { max-width: 820px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.12rem; color: var(--granite-soft); max-width: 700px; }
.crumbs {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.crumbs a { color: var(--copper); }
.crumbs a:hover { color: var(--granite); }

/* Prose */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; font-size: 1.22rem; }
.prose p { font-size: 1.03rem; color: var(--granite-soft); }
.prose ul { padding-left: 22px; margin-bottom: 1.2em; }
.prose ul li { color: var(--granite-soft); margin-bottom: 8px; font-size: 1.01rem; }

/* Services detail */
.services-detail {
  display: grid;
  gap: 42px;
  max-width: 900px;
  margin: 0 auto;
}
.svc-detail {
  border-top: 2px solid var(--alpine);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  position: relative;
}
.svc-detail::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--copper);
}
.svc-detail .svc-side .svc-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--copper);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.svc-side .svc-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpine-deep);
  font-weight: 700;
}
.svc-detail h3 { font-size: 1.6rem; margin-bottom: 12px; }
.svc-detail ul { padding-left: 18px; margin: 12px 0 8px; }
.svc-detail ul li { margin-bottom: 6px; color: var(--granite-soft); font-size: 0.98rem; }

/* Timeline */
.timeline {
  border-left: 2px solid var(--alpine);
  padding-left: 28px;
  margin: 30px 0 10px;
  display: grid;
  gap: 26px;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--snow-warm);
}
.timeline-item .tl-when {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpine-deep);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.18rem;
  color: var(--granite-deep);
  font-weight: 400;
  margin-bottom: 4px;
}
.timeline-item p { margin-bottom: 0; font-size: 0.96rem; }

/* Specializations */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.spec {
  padding: 18px 20px;
  background: var(--snow-warm);
  border-radius: var(--radius);
  border-left: 3px solid var(--copper);
  font-size: 0.95rem;
  color: var(--granite);
}
.spec strong { display: block; color: var(--granite-deep); margin-bottom: 3px; font-family: var(--font-display); font-weight: 400; font-size: 1.06rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--alpine);
  padding: 10px;
  border-radius: var(--radius);
}
.contact-form-wrap iframe {
  width: 100%;
  min-height: 763px;
  border: none;
  border-radius: 0;
  display: block;
}
.contact-side .card {
  background: var(--snow-warm);
  padding: 26px 24px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  border-left: 3px solid var(--copper);
}
.contact-side h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.contact-side p { font-size: 0.96rem; margin-bottom: 10px; }
.contact-side .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 0.94rem;
  color: var(--granite);
}
.contact-side .meta-row svg { width: 16px; height: 16px; color: var(--alpine); }
.reassure {
  font-size: 0.93rem;
  color: var(--granite-soft);
  padding: 18px 22px;
  border-left: 2px solid var(--alpine);
  background: var(--snow);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* About sections */
.about-block { max-width: 820px; margin: 0 auto; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 30px 0 10px;
}
.pillar {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--alpine);
  border-radius: var(--radius);
}
.pillar h4 { color: var(--granite-deep); margin-bottom: 8px; font-family: var(--font-display); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 1.12rem; }
.pillar p { font-size: 0.93rem; margin-bottom: 0; }

/* Responsive */
@media (max-width: 960px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .btn-primary.nav-cta-btn { display: none; }
  .nav-cta .btn:not(.hamburger) { display: none; }
  .services-grid,
  .formats-grid,
  .audience-grid,
  .pillars,
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail { grid-template-columns: 1fr; gap: 10px; }
  .svc-detail .svc-side { display: flex; align-items: center; gap: 14px; }
  .svc-detail .svc-side .svc-num { font-size: 1.8rem; margin-bottom: 0; }
}

@media (max-width: 620px) {
  .topbar-meta { gap: 14px; font-size: 0.75rem; }
  .hero { padding: 60px 0 64px; }
  .hero-lead { font-size: 1.06rem; }
  .services-grid,
  .formats-grid,
  .audience-grid,
  .pillars,
  .spec-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-light, .section-cream, .section-dark { padding: 60px 0; }
  .btn-large { padding: 14px 22px; }
}
