/* Website-specific layout styles. Tokens come from colors_and_type.css */
@import url('../../colors_and_type.css');

html, body { background: var(--parchment); }
body { margin: 0; }

/* Layout primitives */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* Sticky-on-scroll header */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-hairline);
}
.site-nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand-lockup { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-lockup .mark { width: 38px; height: 38px; }
.brand-lockup .wm { font-family: var(--font-display); font-size: 19px; color: var(--navy-900); letter-spacing: -0.005em; line-height: 1; white-space: nowrap; }
.brand-lockup .wm-sub {
  display: block; font-family: var(--font-body); font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-700);
  margin-top: 4px;
}
.nav-links { display: flex; gap: 32px; flex-wrap: nowrap; }
.nav-links a { white-space: nowrap; }
.nav-links a {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500;
  color: var(--navy-900); text-decoration: none; padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 120ms, border-color 120ms;
}
.nav-links a:hover { color: var(--navy-700); }
.nav-links a.active { border-bottom-color: var(--gold-600); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 3px; border: 1px solid transparent;
  cursor: pointer; transition: all 140ms cubic-bezier(.4,0,.2,1);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--navy-800); color: var(--parchment); }
.btn-primary:hover { background: var(--navy-700); color: var(--parchment); }
.btn-secondary { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-secondary:hover { background: var(--navy-050); }
.btn-ghost { background: transparent; color: var(--navy-800); padding: 12px 4px; }
.btn-ghost::after { content: " →"; color: var(--gold-600); }
.btn-ghost:hover { color: var(--navy-700); }

/* Hero */
.hero { padding: 96px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-700);
  margin-bottom: 22px; display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow .rule { width: 28px; height: 1px; background: var(--gold-600); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 5.4vw, 72px); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--navy-900); margin: 0 0 28px;
  max-width: 16ch;
}
.hero h1 em { color: var(--navy-700); font-style: italic; }
.hero-lede {
  font-family: var(--font-display); font-size: 20px; line-height: 1.55;
  color: var(--fg-secondary); max-width: 36ch; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; }
.hero-rail {
  border-left: 1px solid var(--border-hairline);
  padding-left: 32px;
  padding-bottom: 8px;
}
.hero-rail-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-700);
  margin-bottom: 14px;
}
.hero-rail-quote {
  font-family: var(--font-display); font-style: italic; font-size: 18px;
  line-height: 1.55; color: var(--fg); margin: 0 0 12px;
}
.hero-rail-attrib {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--fg-muted);
}

/* Image variant — Ravenel Bridge hero illustration */
.hero-rail--image { border-left: none; padding-left: 0; }
.hero-illus {
  margin: 0 0 22px;
  border-right: 1px solid var(--navy-800);
  border-bottom: 1px solid var(--navy-800);
  background: var(--paper);
  position: relative;
}
.hero-illus img {
  display: block; width: 100%; height: auto;
  border-bottom: 1px solid var(--border-hairline);
}
.hero-illus figcaption {
  padding: 12px 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-illus .cap-eyebrow {
  font-family: var(--font-body); font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-700);
}
.hero-illus .cap-title {
  font-family: var(--font-display); font-style: italic; font-size: 13.5px;
  color: var(--navy-900); letter-spacing: -0.005em;
}
.hero-rail-quote-sm {
  font-family: var(--font-display); font-style: italic; font-size: 15px;
  line-height: 1.55; color: var(--fg); margin: 0 0 8px;
  padding-left: 14px; border-left: 1px solid var(--gold-600);
}

/* Heavy section break */
.section-break { border: none; border-top: 2px solid var(--navy-800); margin: 0; }

/* Generic section */
.section { padding: 96px 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: end; margin-bottom: 56px;
}
.section-head .eyebrow-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.section-head .eyebrow-row .rule { width: 24px; height: 1px; background: var(--gold-600); }
.section-head .eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-700);
}
.section-head .num {
  margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted);
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4vw, 48px); line-height: 1.1;
  letter-spacing: -0.014em; color: var(--navy-900); margin: 0; max-width: 18ch;
}
.section-head .lede {
  font-family: var(--font-display); font-size: 18px; line-height: 1.55;
  color: var(--fg-secondary); margin: 0; max-width: 42ch;
}

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--border-hairline);
  border-radius: 4px; padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-md); }
.svc-rule {
  display: block; width: 32px; height: 2px;
  background: var(--navy-800); margin-bottom: 16px;
  transition: width 220ms cubic-bezier(.4,0,.2,1), background 220ms;
}
.svc-card:hover .svc-rule { width: 56px; background: var(--gold-600); }
.svc-num {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-700);
  margin-bottom: 8px;
}
.svc-title {
  font-family: var(--font-display); font-size: 24px; line-height: 1.18;
  letter-spacing: -0.008em; color: var(--navy-900); margin: 0 0 12px;
}
.svc-body {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--fg-secondary); margin: 0 0 20px;
}
.svc-link {
  margin-top: auto; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--navy-800); text-decoration: none;
  border-bottom: 1px solid var(--gold-600); padding-bottom: 2px;
  align-self: flex-start;
}

/* Editorial pull-quote / founder block */
.pull-quote {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px;
  padding: 80px 0; align-items: center;
}
.pull-quote .q {
  font-family: var(--font-display); font-size: 36px; line-height: 1.25;
  font-style: italic; letter-spacing: -0.012em; color: var(--navy-900);
  margin: 0;
}
.pull-quote .attrib {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-700);
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
}
.pull-quote .attrib .rule { width: 24px; height: 1px; background: var(--gold-600); }
.pull-quote .portrait {
  width: 100%; aspect-ratio: 3 / 4; background: var(--parchment-deep);
  border-bottom: 1px solid var(--navy-800);
  border-right: 1px solid var(--navy-800);
  position: relative;
  font-family: var(--font-body); font-size: 11px; color: var(--ink-400);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: var(--navy-800); color: var(--parchment);
  padding: 80px 0 32px; margin-top: 80px;
}
.site-footer .container { color: var(--parchment); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand .wm { font-family: var(--font-display); font-size: 22px; color: var(--parchment); }
.footer-brand .wm-sub { font-family: var(--font-body); font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-300); margin-top: 6px; }
.footer-brand .gold-rule { width: 280px; height: 1px; background: var(--gold-500); margin: 10px 0; }
.footer-brand p { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: rgba(245,239,227,.78); margin-top: 16px; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-300);
  margin: 0 0 18px;
}
.footer-col a {
  display: block; font-family: var(--font-body); font-size: 14px;
  color: rgba(245,239,227,.86); text-decoration: none; margin-bottom: 10px;
  border-bottom: none;
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-size: 12px; color: rgba(245,239,227,.6);
  padding-top: 24px; border-top: 1px solid rgba(245,239,227,.14);
}

/* Services-page hero */
.svc-hero { padding: 80px 0 56px; }
.svc-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 56px; line-height: 1.06; letter-spacing: -0.018em;
  color: var(--navy-900); margin: 18px 0 16px; max-width: 16ch;
}
.svc-hero .lede {
  font-family: var(--font-display); font-size: 19px; line-height: 1.55;
  color: var(--fg-secondary); max-width: 52ch;
}

/* Big service block */
.svc-block {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  padding: 64px 0; border-top: 1px solid var(--border-hairline);
  align-items: start;
}
.svc-block .left .num {
  font-family: var(--font-mono); font-size: 12px; color: var(--gold-700);
  letter-spacing: 0.08em;
}
.svc-block .left h3 {
  font-family: var(--font-display); font-size: 32px; line-height: 1.1;
  letter-spacing: -0.012em; color: var(--navy-900); margin: 10px 0 0;
}
.svc-block .right p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--fg); margin: 0 0 18px; max-width: 56ch;
}
.svc-block .right ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 12px;
}
.svc-block .right li {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px;
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--fg-secondary);
}
.svc-block .right li::before {
  content: "—"; color: var(--gold-600); font-weight: 600;
}

/* Feature deliverable block — Carolina Cancer Case Card */
.feature-deliverable {
  margin: 64px 0;
  background: var(--navy-800); color: var(--parchment);
  border-radius: 4px;
  padding: 56px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.feature-deliverable .label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-300);
  margin-bottom: 14px;
}
.feature-deliverable h3 {
  font-family: var(--font-display); font-size: 42px; line-height: 1.06;
  letter-spacing: -0.014em; color: var(--parchment); margin: 0 0 18px;
}
.feature-deliverable p {
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.65;
  color: rgba(245,239,227,.84); margin: 0 0 24px; max-width: 38ch;
}
.feature-deliverable .right { display: flex; justify-content: center; }
.feature-deliverable .card-mock {
  background: var(--paper); color: var(--navy-900);
  width: 100%; max-width: 320px; aspect-ratio: 1.6 / 1;
  border-radius: 3px; padding: 22px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.feature-deliverable .card-mock .cm-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.feature-deliverable .card-mock .cm-eyebrow {
  font-family: var(--font-body); font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-700);
}
.feature-deliverable .card-mock .cm-num {
  font-family: var(--font-mono); font-size: 9px; color: var(--ink-500);
}
.feature-deliverable .card-mock h4 {
  font-family: var(--font-display); font-size: 18px; line-height: 1.1;
  margin: 0 0 12px; color: var(--navy-900); letter-spacing: -0.005em;
}
.feature-deliverable .card-mock .cm-rule {
  width: 100%; height: 1px; background: var(--gold-600); margin-bottom: 10px;
}
.feature-deliverable .card-mock .cm-rows { display: grid; gap: 5px; flex: 1; }
.feature-deliverable .card-mock .cm-row {
  display: grid; grid-template-columns: 60px 1fr; gap: 8px; font-size: 8.5px;
  font-family: var(--font-body); color: var(--fg-secondary);
}
.feature-deliverable .card-mock .cm-row b { color: var(--navy-800); font-weight: 600; font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.12em; }
.feature-deliverable .card-mock .cm-foot {
  margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border-hairline);
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-size: 8px; color: var(--ink-500); letter-spacing: 0.08em;
}

/* About-page columns */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; padding: 56px 0; }
.about-portrait {
  width: 100%; aspect-ratio: 3/4; background: var(--parchment-deep);
  border-bottom: 1px solid var(--navy-800);
  border-right: 1px solid var(--navy-800);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 10.5px; color: var(--ink-400);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.about-body h2 {
  font-family: var(--font-display); font-size: 42px; line-height: 1.08;
  letter-spacing: -0.014em; margin: 0 0 8px; color: var(--navy-900);
}
.about-body .role {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-700);
  margin-bottom: 32px;
}
.about-body p { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--fg); max-width: 60ch; margin: 0 0 18px; }
.creds-list {
  margin-top: 32px; border-top: 1px solid var(--border-hairline);
  padding-top: 24px; display: grid; gap: 8px;
}
.creds-list .row {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.55;
  padding: 6px 0;
}
.creds-list .row b { font-weight: 600; color: var(--gold-700); text-transform: uppercase; font-size: 11px; letter-spacing: 0.14em; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding: 48px 0 96px; }
.contact-form { display: grid; gap: 18px; }
.field-row { display: grid; gap: 6px; }
.field-row .label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy-800);
}
.field-row input, .field-row select, .field-row textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--fg);
  background: var(--paper); border: 1px solid var(--ink-200);
  border-radius: 2px; padding: 12px 14px; outline: none;
  transition: border-color 120ms, box-shadow 120ms;
}
.field-row textarea { min-height: 110px; resize: vertical; }
.field-row input:focus, .field-row textarea:focus, .field-row select:focus { border-color: var(--navy-800); box-shadow: 0 0 0 3px rgba(20,48,77,.08); }
.field-row .help { font-family: var(--font-body); font-size: 11.5px; color: var(--fg-muted); }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-meta .block { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border-hairline); }
.contact-meta .block:last-child { border-bottom: none; }
.contact-meta .label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-700);
  margin-bottom: 10px;
}
.contact-meta address, .contact-meta p {
  font-family: var(--font-display); font-style: normal; font-size: 17px;
  line-height: 1.55; color: var(--fg); margin: 0;
}

/* Banner CTA */
.banner-cta {
  background: var(--parchment-deep);
  padding: 64px 0; margin-top: 32px;
  border-top: 2px solid var(--navy-800);
}
.banner-cta .inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.banner-cta h3 {
  font-family: var(--font-display); font-size: 36px; line-height: 1.12;
  letter-spacing: -0.012em; color: var(--navy-900); margin: 0 0 12px;
}
.banner-cta p { font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--fg-secondary); margin: 0; max-width: 44ch; }
.banner-cta .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* Notice bar - thin gold band above nav */
.notice-bar {
  background: var(--navy-900); color: var(--gold-100);
  font-family: var(--font-body); font-size: 12px;
  text-align: center; padding: 7px 16px;
  letter-spacing: 0.04em;
}
.notice-bar a { color: var(--gold-300); text-decoration: underline; text-decoration-color: rgba(217,185,117,.4); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none; border: none; padding: 8px; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
  align-items: stretch;
}
.nav-toggle-bar {
  display: block; height: 2px; background: var(--navy-900);
  transition: transform 180ms, opacity 180ms;
}
.site-nav.is-open .nav-toggle .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .nav-toggle .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-toggle .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { display: none; }
.nav-drawer[hidden] { display: none !important; }

/* ============================================================
   MOBILE — < 880px (covers phones + small tablets in portrait)
   ============================================================ */
@media (max-width: 880px) {
  .container { padding: 0 20px; }

  /* Notice bar — shorter on mobile */
  .notice-bar { font-size: 11.5px; padding: 6px 14px; line-height: 1.4; }

  /* Nav: brand + hamburger only; hide inline links and CTA */
  .site-nav .nav-inner { padding: 14px 0; }
  .brand-lockup .mark { width: 32px; height: 32px; }
  .brand-lockup .wm { font-size: 16px; }
  .brand-lockup .wm-sub { font-size: 8.5px; letter-spacing: 0.18em; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-drawer {
    display: flex; flex-direction: column; gap: 4px;
    padding: 8px 0 18px;
    border-top: 1px solid var(--border-hairline);
    margin-top: 6px;
  }
  .nav-drawer a {
    font-family: var(--font-body); font-size: 17px; font-weight: 500;
    color: var(--navy-900); text-decoration: none;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-hairline);
  }
  .nav-drawer a.active { color: var(--gold-700); }
  .nav-drawer a:last-of-type { border-bottom: none; }
  .nav-drawer .btn { margin-top: 12px; width: 100%; padding: 14px 22px; }

  /* Hero */
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero h1 {
    font-size: clamp(36px, 9vw, 48px); line-height: 1.06;
    margin-bottom: 20px; max-width: none;
  }
  .hero-lede { font-size: 17px; max-width: none; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-ghost { width: auto; align-self: flex-start; padding-left: 0; }
  .hero-rail--image { padding-left: 0; }
  .hero-rail-quote-sm { font-size: 14px; }

  /* Section + section heads */
  .section { padding: 56px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 36px); max-width: none; }
  .section-head .lede { font-size: 16px; max-width: none; }
  .section-head .num { margin-left: 0; }

  /* Service cards: 3 → 1 */
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 24px 22px; }
  .svc-title { font-size: 22px; }

  /* Pull quote */
  .pull-quote { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .pull-quote .q { font-size: 24px; line-height: 1.3; }
  .pull-quote .portrait { aspect-ratio: 4 / 3; max-width: 320px; }

  /* Feature deliverable (Carolina Cancer Case Card) */
  .feature-deliverable {
    grid-template-columns: 1fr; gap: 36px;
    padding: 40px 28px; margin: 40px 0;
  }
  .feature-deliverable h3 { font-size: 30px; }
  .feature-deliverable p { max-width: none; }
  .feature-deliverable .card-mock { max-width: 100%; aspect-ratio: 1.6 / 1; }

  /* Services page hero + blocks */
  .svc-hero { padding: 48px 0 32px; }
  .svc-hero h1 { font-size: clamp(34px, 8.5vw, 44px); max-width: none; }
  .svc-hero .lede { font-size: 17px; }
  .svc-block { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .svc-block .left h3 { font-size: 26px; }
  .svc-block .right p { font-size: 15.5px; }

  /* About page */
  .about-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .about-portrait { max-width: 320px; aspect-ratio: 4 / 3; }
  .about-body h2 { font-size: 34px; }
  .about-body p { font-size: 15.5px; max-width: none; }
  .creds-list .row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
  .creds-list .row b { margin-bottom: 2px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 32px 0 64px; }
  .field-grid-2 { grid-template-columns: 1fr; gap: 14px; }
  .field-row input, .field-row select, .field-row textarea { font-size: 16px; /* prevents iOS zoom-on-focus */ }
  .contact-meta address, .contact-meta p { font-size: 16px; }

  /* Banner CTA */
  .banner-cta { padding: 48px 0; }
  .banner-cta .inner { grid-template-columns: 1fr; gap: 24px; }
  .banner-cta h3 { font-size: 26px; }
  .banner-cta .actions { justify-content: flex-start; }
  .banner-cta .actions .btn { flex: 1 1 auto; }

  /* Footer: 4 cols → 2 cols */
  .site-footer { padding: 56px 0 28px; margin-top: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .gold-rule { width: 100%; max-width: 280px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ============================================================
   SMALL PHONES — < 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 44px; }
  .hero h1 { font-size: clamp(32px, 9.5vw, 40px); }
  .feature-deliverable { padding: 32px 20px; }
  .feature-deliverable .card-mock .cm-row { grid-template-columns: 56px 1fr; font-size: 8px; }
  .footer-top { grid-template-columns: 1fr; }
}
