/*
  PrimeMedia Press — MOBILE REDESIGN (dev handoff)
  Mobile-first. Base styles target ~375–430px. One enhancement layer at
  680px for anyone previewing on a tablet/desktop browser — the site's
  desktop layout is a separate pass, not the scope of this file.
  Built on the shared tokens in /tokens/tokens.css and /assets/fonts.
*/

:root {
  --container: 100%;
  --gutter: 22px;
  --section-y: 64px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pm-paper);
  color: var(--pm-ink);
  font-family: var(--pm-font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: 100%; max-width: 560px; margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--pm-font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: var(--pm-tracking-label);
  text-transform: uppercase;
  color: var(--pm-burgundy);
  margin: 0 0 12px;
}
h1, h2, h3 { font-family: var(--pm-font-serif); font-weight: 700; margin: 0; color: var(--pm-ink); letter-spacing: var(--pm-tracking-tight); }
h2 { font-size: 30px; line-height: 1.15; margin-bottom: 14px; }
h3 { font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
p { margin: 0; }
em { font-style: italic; font-weight: 500; color: var(--pm-burgundy); }
.muted { color: var(--pm-graphite); }
.lede { color: var(--pm-graphite); font-size: 16px; max-width: 46ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--pm-font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 0;
  border: 1px solid var(--pm-burgundy);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  background: none;
}
.btn-primary { background: var(--pm-burgundy); color: var(--pm-paper); }
.btn-primary:active { background: var(--pm-burgundy-deep); }
.btn-secondary { background: transparent; color: var(--pm-burgundy); }
.btn-block { display: flex; width: 100%; }

section { padding: var(--section-y) 0; border-bottom: 1px solid var(--pm-hairline); }
section:last-of-type { border-bottom: none; }
.section-tint { background: var(--pm-paper-white); }
.rule { height: 1px; background: var(--pm-hairline); border: none; margin: 0; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--pm-ink);
  color: rgba(245,241,233,0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  gap: 18px;
  padding: 9px var(--gutter);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.topbar-inner::-webkit-scrollbar { display: none; }
.topbar a { text-decoration: none; color: var(--pm-paper); }

/* ---------- Header ---------- */
header.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(245,241,233,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pm-hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: auto; }
.brand .word { font-family: var(--pm-font-serif); font-weight: 700; font-size: 19px; color: var(--pm-ink); line-height: 1; }
.brand .word small { display: block; font-family: var(--pm-font-sans); font-weight: 600; font-size: 8px; letter-spacing: 0.24em; color: var(--pm-burgundy); margin-top: 3px; }

.menu-toggle {
  width: 34px; height: 34px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; width: 22px; height: 1px; background: var(--pm-ink); transition: transform .2s var(--pm-ease), opacity .2s var(--pm-ease); }
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Deliberately a sibling of <header>, not nested inside it: position:sticky
   on the header establishes a containing block for fixed descendants in
   Chromium, which would trap this overlay to the header's own box instead
   of the full viewport. Keeping it outside avoids that entirely. */
.nav-overlay {
  position: fixed; inset: 0; z-index: 55;
  background: var(--pm-ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 40px;
  transform: translateY(-100%);
  transition: transform .32s var(--pm-ease);
}
body.nav-open .nav-overlay { transform: translateY(0); }
.nav-overlay a {
  display: block;
  font-family: var(--pm-font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  color: var(--pm-paper);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--pm-hairline-on-dark);
}
.nav-overlay a:first-child { border-top: 1px solid var(--pm-hairline-on-dark); }
.nav-overlay .nav-cta { margin-top: 32px; border: 1px solid var(--pm-paper); color: var(--pm-paper); text-align: center; padding: 16px; font-family: var(--pm-font-sans); font-style: normal; font-size: 15px; font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 var(--section-y); }
.hero h1 { font-size: 38px; line-height: 1.12; margin-bottom: 24px; }
.hero-caption { font-size: 13px; color: var(--pm-graphite); margin-top: 14px; }
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 20px;
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--pm-hairline);
}
.stat-num { font-family: var(--pm-font-serif); font-weight: 700; font-size: 30px; color: var(--pm-burgundy); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 12.5px; color: var(--pm-graphite); margin-top: 4px; line-height: 1.35; }

.marquee { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--pm-hairline); overflow: hidden; }
.marquee-track { display: flex; gap: 36px; width: max-content; animation: scroll-left 26s linear infinite; }
.marquee span { font-family: var(--pm-font-serif); font-size: 15px; color: var(--pm-graphite-soft); white-space: nowrap; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; overflow-x: auto; } }

/* ---------- Offer / package ---------- */
.media-list { margin-top: 28px; }
.media-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--pm-hairline); }
.media-row .num { font-family: var(--pm-font-serif); font-style: italic; font-weight: 600; color: var(--pm-burgundy); font-size: 18px; width: 26px; flex-shrink: 0; }
.media-row .name { font-weight: 600; font-size: 15.5px; flex: 1; }
.media-row .reach { font-size: 12px; color: var(--pm-graphite-soft); text-align: right; white-space: nowrap; }
.pub-visual {
  margin-top: 28px; aspect-ratio: 3/4; background: var(--pm-paper-white); border: 1px solid var(--pm-hairline);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; padding: 20px;
}
.pub-visual span { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pm-graphite-soft); }
.pub-visual strong { font-family: var(--pm-font-serif); font-weight: 700; font-style: italic; font-size: 22px; color: var(--pm-graphite); }

.pkg-card { background: var(--pm-paper-white); border: 1px solid var(--pm-hairline); padding: 28px 22px; margin-top: 40px; }
.acc-body ul { list-style: none; margin: 0; padding: 0; }
.acc-body li { padding: 10px 0; border-bottom: 1px solid var(--pm-hairline); font-size: 14px; color: var(--pm-graphite); display: flex; gap: 12px; }
.acc-body li:last-child { border-bottom: none; }
.acc-body li::before { content: "✓"; color: var(--pm-burgundy); font-weight: 700; flex-shrink: 0; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.price { font-family: var(--pm-font-serif); font-weight: 700; font-size: 36px; color: var(--pm-burgundy); }
.price-note { font-size: 12.5px; color: var(--pm-graphite-soft); }
.pkg-tg { margin-top: 16px; font-size: 13.5px; text-align: center; }
.pkg-tg a { color: var(--pm-graphite); text-decoration: underline; text-decoration-color: var(--pm-hairline); }

/* ---------- Directions ---------- */
.dir-list { margin-top: 32px; }
.dir-card { display: block; padding: 26px 0; border-top: 1px solid var(--pm-hairline); text-decoration: none; }
.dir-card:first-child { border-top: none; }
.dir-num { font-family: var(--pm-font-serif); font-style: italic; font-weight: 600; color: var(--pm-burgundy); font-size: 24px; margin-bottom: 10px; }
.dir-card h3 { color: var(--pm-ink); }
.dir-card p { color: var(--pm-graphite); font-size: 14.5px; }
.dir-more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--pm-burgundy); }

/* ---------- Cases ---------- */
.nda { border: 1px solid var(--pm-hairline); background: var(--pm-paper-white); padding: 16px 18px; font-size: 13px; color: var(--pm-graphite); margin-top: 20px; }
.case-scroller {
  display: flex; gap: 12px; margin-top: 28px; padding-bottom: 6px;
  overflow-x: auto; scroll-snap-type: x mandatory;
}
.case-tile {
  scroll-snap-align: start; flex: 0 0 68%;
  aspect-ratio: 3/4; background: var(--pm-paper-white); border: 1px solid var(--pm-hairline);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px;
  font-family: var(--pm-font-serif); font-style: italic; color: var(--pm-graphite-soft); font-size: 14px; line-height: 1.4;
}
.case-tile span { display: block; margin-top: 10px; font-family: var(--pm-font-sans); font-style: normal; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pm-graphite-soft); opacity: 0.75; }
.cta-center { text-align: center; margin-top: 32px; }
.tg-note { margin-top: 16px; font-size: 13px; color: var(--pm-graphite); }
.tg-note a { color: var(--pm-burgundy); text-decoration: none; border-bottom: 1px solid currentColor; }

.chat-strip { border: 1px solid var(--pm-hairline); background: var(--pm-paper-white); padding: 26px 22px; margin-top: 36px; text-align: center; }
.chat-strip h3 { font-size: 19px; margin-bottom: 10px; }
.chat-strip p { font-size: 14px; color: var(--pm-graphite); margin-bottom: 20px; }

/* ---------- GEO answer block ---------- */
.geo-block { background: var(--pm-paper-white); border: 1px solid var(--pm-hairline); border-left: 3px solid var(--pm-burgundy); padding: 26px 22px; margin-top: 36px; }
.geo-block .geo-label { font-size: 12px; font-weight: 600; letter-spacing: var(--pm-tracking-label); text-transform: uppercase; color: var(--pm-burgundy); margin-bottom: 12px; }
.geo-block h3 { font-size: 18px; margin-bottom: 10px; }
.geo-block p { font-size: 14.5px; color: var(--pm-graphite); margin-bottom: 10px; }
.geo-block p:last-child { margin-bottom: 0; }

/* ---------- Process ---------- */
.steps { margin-top: 32px; }
.process-bar { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--pm-hairline); font-size: 13px; color: var(--pm-graphite); display: flex; flex-wrap: wrap; gap: 8px 14px; }

/* ---------- About / team ---------- */
.member-photo {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--pm-paper-white); border: 1px solid var(--pm-hairline);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 8px;
  color: var(--pm-graphite-soft); font-family: var(--pm-font-serif); font-style: italic; font-size: 10.5px; line-height: 1.3;
  margin-bottom: 14px;
}
.team-list { margin-top: 28px; }
.team-card { padding: 24px 0; border-top: 1px solid var(--pm-hairline); }
.team-card:first-child { border-top: none; }
.team-role { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--pm-burgundy); margin-bottom: 10px; }
.team-card p.bio { color: var(--pm-graphite); font-size: 14.5px; margin-bottom: 10px; }
.team-tg { font-size: 12.5px; color: var(--pm-graphite-soft); }

/* ---------- Reviews ---------- */
.review-scroller { display: flex; gap: 16px; margin-top: 30px; padding-bottom: 6px; overflow-x: auto; scroll-snap-type: x mandatory; }
.review-card { scroll-snap-align: start; flex: 0 0 84%; background: var(--pm-paper-white); border: 1px solid var(--pm-hairline); padding: 26px 22px; }
.review-card p.quote { font-family: var(--pm-font-serif); font-style: italic; font-size: 17px; line-height: 1.5; margin-bottom: 18px; }
.review-card .by { font-size: 12.5px; color: var(--pm-graphite-soft); border-top: 1px solid var(--pm-hairline); padding-top: 14px; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--pm-hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--pm-hairline); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 0;
  font-family: var(--pm-font-serif); font-size: 16.5px; font-weight: 700; color: var(--pm-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer;
}
.faq-q .ic { font-family: var(--pm-font-sans); font-weight: 400; font-size: 22px; color: var(--pm-burgundy); transition: transform .2s var(--pm-ease); flex-shrink: 0; }
.faq-item.open .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s var(--pm-ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 0 20px; color: var(--pm-graphite); font-size: 14.5px; }

/* ---------- Generic accordion (native <details>/<summary>) ----------
   Used wherever a section is a "short label, long detail on click"
   affair: process steps, package inclusions/media list, footer legal
   text. FAQ keeps its own animated JS version above — this one trades
   the slide animation for zero extra script, which is the right trade
   for content that doesn't need to feel snappy. */
.acc { border-top: 1px solid var(--pm-hairline); }
.acc:last-of-type { border-bottom: 1px solid var(--pm-hairline); }
.acc > summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  display: flex; align-items: center; gap: 14px;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::marker { content: ""; }
.acc .acc-title { flex: 1; font-family: var(--pm-font-sans); font-weight: 700; font-size: 15px; color: var(--pm-ink); }
.acc .acc-ic { font-family: var(--pm-font-sans); font-weight: 400; font-size: 20px; color: var(--pm-burgundy); flex-shrink: 0; transition: transform .2s var(--pm-ease); }
.acc[open] .acc-ic { transform: rotate(45deg); }
.acc .acc-body { padding: 0 0 20px; }
.acc .acc-body p { color: var(--pm-graphite); font-size: 14px; margin: 0 0 10px; }
.acc .acc-body p:last-child { margin-bottom: 0; }

.acc.step-acc .step-num-inline {
  font-family: var(--pm-font-serif); font-style: italic; font-weight: 600;
  color: var(--pm-burgundy); font-size: 22px; flex-shrink: 0; width: 30px;
}
.acc.step-acc .acc-title { font-family: var(--pm-font-serif); font-weight: 700; font-size: 17px; }
.acc.step-acc .acc-body { padding-left: 44px; }

/* dark variant — footer legal accordion sits on the burgundy-deep ground */
.acc--dark { border-top-color: var(--pm-hairline-on-dark); }
.acc--dark:last-of-type { border-bottom-color: var(--pm-hairline-on-dark); }
.acc--dark .acc-title { color: var(--pm-paper); font-weight: 600; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.acc--dark .acc-ic { color: rgba(245,241,233,0.7); }
.acc--dark .acc-body p { color: rgba(245,241,233,0.6); font-size: 11px; line-height: 1.65; }

/* ---------- Contact ---------- */
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12.5px; color: var(--pm-graphite-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--pm-hairline); background: transparent;
  padding: 10px 0; font-family: var(--pm-font-sans); font-size: 15px; color: var(--pm-ink); border-radius: 0;
}
.field select { appearance: none; -webkit-appearance: none; background-image: none; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--pm-burgundy); }
.field input::placeholder, .field textarea::placeholder { color: var(--pm-graphite-soft); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--pm-graphite); margin-bottom: 26px; }
.consent input { margin-top: 3px; accent-color: var(--pm-burgundy); }
.contact-info { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--pm-hairline); }
.contact-info p { margin-bottom: 16px; font-size: 15px; }
.contact-info a { color: var(--pm-ink); text-decoration: none; }
.contact-info .lab { font-size: 11.5px; color: var(--pm-graphite-soft); display: block; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.form-error { display: none; color: var(--pm-burgundy); font-size: 13.5px; margin-top: 14px; text-align: center; }
.form-error.show { display: block; }
.form-error a { color: var(--pm-burgundy); text-decoration: underline; }

/* thank-you state */
#thanks { display: none; text-align: center; padding: 24px 0 8px; }
#thanks.show { display: block; }
#thanks .stamp { font-family: var(--pm-font-serif); font-style: italic; font-weight: 600; font-size: 26px; margin-bottom: 14px; }
#thanks p { color: var(--pm-graphite); font-size: 14.5px; margin-bottom: 8px; }
#thanks a { color: var(--pm-burgundy); text-decoration: underline; }
#contact-form.hide { display: none; }

/* ---------- Footer ---------- */
footer { background: var(--pm-burgundy-deep); color: var(--pm-paper); padding: 56px 0 32px; }
.footer-logo { font-family: var(--pm-font-serif); font-weight: 700; font-size: 21px; }
.footer-slogan { font-size: 13px; color: rgba(245,241,233,0.72); margin-top: 6px; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 13.5px; margin: 30px 0; padding: 26px 0; border-top: 1px solid var(--pm-hairline-on-dark); border-bottom: 1px solid var(--pm-hairline-on-dark); }
.footer-menu a { text-decoration: none; color: var(--pm-paper); }
.footer-contacts { font-size: 13px; color: rgba(245,241,233,0.8); line-height: 1.8; margin-bottom: 30px; }
.bottom-line { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--pm-hairline-on-dark); font-size: 12px; color: rgba(245,241,233,0.6); }

/* ---------- Sticky bottom CTA ---------- */
/* Shown once the hero has scrolled out of view; hidden again once the
   real contact form (#contacts) is on screen, so it never fights the
   in-page form for attention. See the IntersectionObserver pair below. */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(245,241,233,0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pm-hairline);
  padding: 14px var(--gutter) calc(14px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .28s var(--pm-ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-caption { text-align: center; font-size: 12px; color: var(--pm-graphite-soft); margin-top: 10px; }
.sticky-caption a { color: var(--pm-burgundy); text-decoration: underline; }

/* ---------- Service page furniture (media-publications.html etc.) ---------- */
.back-link {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--pm-graphite-soft);
  text-decoration: none; margin-bottom: 18px;
}
.cross-links { padding: 40px 0; }
.cross-links .cross-link {
  display: block; font-family: var(--pm-font-serif); font-style: italic; font-size: 17px;
  color: var(--pm-ink); text-decoration: none; padding: 14px 0; border-top: 1px solid var(--pm-hairline);
}
.cross-links .cross-link:last-child { border-bottom: 1px solid var(--pm-hairline); }
.legal-disclaimer {
  font-size: 13px; color: var(--pm-graphite); background: var(--pm-burgundy-tint);
  border-left: 3px solid var(--pm-burgundy); padding: 14px 16px; line-height: 1.5;
}

/* Desktop header nav — hidden on mobile, replaces the hamburger at 1024px */
.nav-links { display: none; }

@media (min-width: 680px) {
  :root { --gutter: 40px; --section-y: 96px; }
  .hero h1 { font-size: 50px; }
  h2 { font-size: 38px; }
  .stats { grid-template-columns: repeat(4,1fr); }
  .case-tile, .review-card { flex-basis: 42%; }
}

/* ==================================================================
   Desktop layer (≥1024px). Same editorial system, one wide column
   becomes a real page grid: horizontal nav, split offer/contact
   layouts, multi-column card rows. Mobile rules above stay the base.
   ================================================================== */
@media (min-width: 1024px) {
  :root { --gutter: 48px; --section-y: 120px; }

  .wrap { max-width: 1140px; }

  /* ---- header: horizontal menu instead of hamburger ---- */
  .menu-toggle { display: none; }
  .nav-overlay { display: none; }
  .nav-inner { padding: 16px var(--gutter); max-width: 1140px; margin: 0 auto; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a {
    font-size: 14px; font-weight: 500; text-decoration: none; color: var(--pm-ink);
    letter-spacing: 0.01em;
  }
  .nav-links a:hover { color: var(--pm-burgundy); }
  .nav-links .nav-links-cta {
    border: 1px solid var(--pm-burgundy); color: var(--pm-burgundy);
    padding: 9px 18px; font-weight: 600;
  }
  .nav-links .nav-links-cta:hover { background: var(--pm-burgundy); color: var(--pm-paper); }
  .topbar-inner { max-width: 1140px; margin: 0 auto; padding: 9px var(--gutter); }

  /* ---- type scale up ---- */
  .hero { padding: 88px 0 var(--section-y); }
  .hero h1 { font-size: 64px; max-width: 720px; }
  h2 { font-size: 44px; }
  .lede { font-size: 18px; max-width: 56ch; }

  /* hero CTA: inline button, not a full-width bar */
  .hero .btn-block { display: inline-flex; width: auto; padding: 18px 44px; }
  .stats { gap: 32px 40px; margin-top: 56px; }
  .stat-num { font-size: 40px; }
  .stat-label { font-size: 13.5px; }

  /* ---- offer: visual left, package card right ---- */
  #service .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; align-items: start; }
  #service .wrap > * { grid-column: 1 / -1; }
  /* visual spans the full stack of right-column rows so the package
     card, both accordions and the GEO block sit beside it, not below */
  #service .wrap > .pub-visual { grid-column: 1; grid-row: span 4; margin-top: 36px; }
  #service .wrap > .pkg-card,
  #service .wrap > .acc,
  #service .wrap > .geo-block { grid-column: 2; }
  #service .wrap > .pkg-card { margin-top: 36px; }
  #service .wrap > .geo-block { margin-top: 28px; }

  /* ---- directions: three columns ---- */
  .dir-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; }
  .dir-card, .dir-card:first-child { border-top: 1px solid var(--pm-hairline); padding: 30px 0; }

  /* ---- cases: four tiles in a row, no horizontal scroll ---- */
  .case-scroller { overflow-x: visible; flex-wrap: wrap; }
  .case-tile { flex: 1 1 22%; }

  /* ---- team: two columns ---- */
  .team-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
  .team-card, .team-card:first-child { border-top: 1px solid var(--pm-hairline); padding: 30px 0; }

  /* ---- reviews: three cards visible ---- */
  .review-card { flex-basis: 31.5%; }

  /* ---- FAQ: readable line length ---- */
  #faq .wrap { max-width: 800px; }
  .faq-q { font-size: 18px; }

  /* ---- contacts: form left, info right ---- */
  #contacts .wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0 72px; align-items: start; }
  #contacts .wrap > h2, #contacts .wrap > .lede { grid-column: 1 / -1; }
  #contacts .wrap > form, #contacts .wrap > #thanks { grid-column: 1; }
  #contacts .wrap > .contact-info {
    grid-column: 2; margin-top: 32px; padding-top: 0; border-top: none;
  }

  /* ---- service pages: hero caption + disclaimer width ---- */
  .hero-caption { font-size: 15px; }
  .legal-disclaimer { max-width: 720px; }
  .cross-links .cross-link { font-size: 19px; }

  /* ---- footer: brand left, menu/contacts right ---- */
  footer .wrap { max-width: 1140px; }
  .footer-menu { gap: 12px 32px; }

  /* mobile-only furniture off */
  .sticky-cta { display: none !important; }
}
