:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #f5f4f2;
    --card: #f0efec;
    --gray: #6b6b68;
    --line: #dedcd7;
    --radius: 14px;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

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

  a { color: inherit; text-decoration: none; }

  .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ---------- NAV ---------- */
  header.site {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  header.site .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo .mark {
    width: 30px;
    height: 30px;
    background: var(--black);
    border-radius: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
  }
  nav.main {
    display: flex;
    gap: 36px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  nav.main a { opacity: 0.6; transition: opacity .2s ease; }
  nav.main a:hover, nav.main a.active { opacity: 1; }

  .nav-toggle { display: none; }
  .nav-burger { display: none; }
  .mobile-nav { display: none; }

  @media (max-width: 900px) {
    .nav-burger {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }
    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--line);
      flex-direction: column;
      padding: 8px 40px 20px;
      z-index: 100;
    }
    .nav-toggle:checked ~ .mobile-nav { display: flex; }
    .mobile-nav a {
      padding: 14px 0;
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-bottom: 1px solid var(--line);
      opacity: 0.7;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a.active { opacity: 1; font-weight: 600; }
  }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    margin: 0 0 140px 0;
  }
  .hero .wrap { padding: 0 40px; }
  .hero-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: #111;
  }
  .hero-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 40%;
    filter: brightness(1.16) contrast(1.04);
  }
  .hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.88) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .hero-text {
    max-width: 520px;
    padding: 60px 64px 60px 40px;
    color: var(--white);
  }
  .hero-text h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .hero-sub {
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    opacity: 0.85;
    margin-bottom: 36px;
  }
  .hero-sub span { display: block; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    will-change: transform;
  }
  .btn:active { transform: scale(0.94); }

  .btn-primary {
    background: var(--white);
    color: var(--black);
  }
  .btn-primary:hover { box-shadow: 0 0 0 1px var(--white); }

  .btn-dark {
    background: var(--black);
    color: var(--white);
  }
  .btn-dark:hover { box-shadow: 0 0 0 1px var(--black); }

  .btn-outline {
    background: transparent;
    color: var(--black);
    box-shadow: 0 0 0 1.5px var(--black) inset;
  }
  .btn-outline:hover { background: var(--black); color: var(--white); }

  /* ---------- HERKEN JE DIT ---------- */
  .section { margin-bottom: 140px; }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
  }
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 14px;
    display: block;
  }
  h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 34px;
    letter-spacing: -0.01em;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  .card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
  }
  .card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 22px;
  }
  .card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 16px;
  }
  .card p:last-of-type { margin-bottom: 0; }
  .card .card-cta {
    margin-top: auto;
    padding-top: 28px;
  }
  .card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 13px 22px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform .15s ease;
  }
  .card-btn:active { transform: scale(0.92); }

  .card-dark {
    background: var(--black);
  }
  .card-dark h3 { color: var(--white); }
  .card-dark p { color: rgba(255,255,255,0.72); }
  .card-dark .badge-inline {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255,255,255,0.5);
  }
  .card-btn-light {
    background: var(--white);
    color: var(--black);
  }

  /* responsive */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .step {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 34px 44px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
  }
  .step .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 110px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 8px;
    right: 20px;
    z-index: 0;
  }
  .step h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 23px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: 34px;
  }
  .step p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
  }
  .step p:last-of-type { margin-bottom: 0; }

  .steps-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-4 .step { min-height: 260px; }

  .urgency {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .urgency-card {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 38px;
    display: flex;
    flex-direction: column;
  }
  .urgency-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .urgency-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
  }
  .urgency-card p:last-of-type { margin-bottom: 0; }
  .urgency-card .btn { margin-top: 28px; align-self: flex-start; }

  .faq {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-item {
    border-bottom: 1px solid rgba(10,10,10,0.08);
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .plus {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
  }
  .faq-item summary .plus::before,
  .faq-item summary .plus::after {
    content: '';
    position: absolute;
    background: var(--black);
    transition: transform .2s ease;
  }
  .faq-item summary .plus::before {
    left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%);
  }
  .faq-item summary .plus::after {
    top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%);
  }
  .faq-item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
  .faq-item .faq-answer {
    padding: 0 34px 30px;
    font-size: 15px;
    color: #333;
  }
  .faq-item .faq-answer p { margin-bottom: 14px; }
  .faq-item .faq-answer p:last-child { margin-bottom: 0; }
  .faq-item .faq-answer a { text-decoration: underline; }

  .story.story-dark {
    background: var(--black);
  }
  .story-dark .story-body h3 {
    color: var(--white);
    font-size: 30px;
  }
  .story-dark .story-body p {
    color: rgba(255,255,255,0.75);
  }
  .story-dark .story-body .btn { margin-top: 12px; }

  footer.site {
    padding: 60px 0 80px;
    border-top: 1px solid var(--line);
    margin-top: 20px;
  }
  .footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .footer-col {
    background: var(--card);
    border-radius: var(--radius);
    padding: 34px 32px;
  }
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col a, .footer-col address {
    display: block;
    font-size: 14.5px;
    color: #333;
    font-style: normal;
    margin-bottom: 11px;
    line-height: 1.5;
  }
  .footer-col a:last-child, .footer-col address:last-child { margin-bottom: 0; }
  .footer-col a:hover { color: var(--black); text-decoration: underline; }
  .footer-col .addr-gap { margin-top: 14px; }
  .footer-col-logo { position: relative; min-height: 190px; }
  .footer-col-logo .footer-logo {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 110px;
    height: 110px;
    border-radius: 20px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray);
  }

  @media (max-width: 900px) {
    .footer-cols { grid-template-columns: 1fr; }
  }

  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  @media (max-width: 900px) {
    .split-grid { grid-template-columns: 1fr; }
  }

  .bridge-divider {
    padding: 10px 0 30px;
  }
  .bridge-divider svg {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .bridge-line {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    transition: stroke-dashoffset 1.8s ease;
  }
  .bridge-line.drawn {
    stroke-dashoffset: 0;
  }
  .bridge-dot {
    opacity: 0;
    transition: opacity 0.4s ease 1.6s;
  }
  .bridge-line.drawn ~ .bridge-dot {
    opacity: 1;
  }


  .reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
  }
  .review .quote-mark {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: rgba(10,10,10,0.15);
    margin-bottom: 8px;
  }
  .review p {
    font-size: 15px;
    color: #333;
    flex-grow: 1;
    margin-bottom: 24px;
  }
  .review .who {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--gray);
  }
  .review .who strong {
    color: var(--black);
    font-weight: 600;
  }

  .prose {
    max-width: 760px;
  }
  .prose p {
    font-size: 17px;
    color: #222;
    margin-bottom: 22px;
  }
  .prose p:last-of-type { margin-bottom: 0; }
  .prose ul {
    margin: 0 0 22px 0;
    padding-left: 22px;
  }
  .prose ul li {
    font-size: 17px;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .prose ul li:last-child { margin-bottom: 0; }
  .prose ul li strong { font-weight: 600; }

  .back-link {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--gray);
    text-transform: uppercase;
  }
  .back-link:hover { color: var(--black); }

  .article-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius);
    padding: 48px 56px;
  }
  .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
  }
  .article-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }
  .article-dek {
    font-style: italic;
    color: #444;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .article-rule {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0 0 28px;
  }
  .article-body p { font-size: 16px; }
  .article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.02em;
    color: var(--gray);
    background: rgba(0,0,0,0.05);
    padding: 5px 12px;
    border-radius: 100px;
  }

  .search-btn {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  .search-btn:hover { opacity: 1; }
  .search-btn svg { width: 16px; height: 16px; }
  .search-btn-mobile { display: none; }

  .search-panel {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .search-panel.open { display: block; }
  .search-panel .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
    position: relative;
  }
  .search-input-row { position: relative; }
  .search-panel input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    padding: 12px 48px 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
  }
  .search-panel input:focus { border-color: var(--black); }
  .search-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
  }
  .search-close:hover { color: var(--black); }
  #search-results { margin-top: 10px; max-height: 320px; overflow-y: auto; }
  #search-results a {
    display: block;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  #search-results a:hover { opacity: 0.6; }
  #search-results a:last-child { border-bottom: none; }
  #search-results .no-results { color: var(--gray); font-size: 13px; padding: 8px 4px; }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
  }
  .filter-btn {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--black);
    cursor: pointer;
  }
  .filter-btn:hover { border-color: var(--black); }
  .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
  .blog-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }

  .stance {
    background: var(--black);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    max-width: 760px;
  }
  .stance .not {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
  }
  .stance .not:last-of-type { margin-bottom: 22px; }
  .stance .yes {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: var(--white);
  }
  .story-body .prose {
    max-width: none;
  }
  .story-body .stance {
    margin-top: 32px;
    max-width: none;
  }

  .story {
    background: var(--card);
    border-radius: var(--radius);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .story:last-child { margin-bottom: 0; }
  .story.reverse { flex-direction: row-reverse; }
  .story-img {
    flex: 0 0 38%;
    min-height: 100%;
  }
  .story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .story-body {
    flex: 1;
    padding: 48px 46px;
  }
  .story-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 4px;
  }
  .story-body .who-note {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 24px;
    display: block;
  }
  .story-body p {
    font-size: 15.5px;
    color: #262626;
    margin-bottom: 18px;
  }
  .story-body p:last-of-type { margin-bottom: 0; }
  .story-body p.pull {
    font-style: italic;
    color: var(--black);
  }

  .story-tight .story-img { flex: 0 0 34%; }
  .story-tight .story-img img { max-height: 460px; }
  .story-tight .story-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .story-tight .story-body .btn { align-self: flex-start; margin-top: 22px; }

  /* Kennismaking page: simple, robust photo+text block. Image uses aspect-ratio,
     never stretches to match text height. Text flows naturally. */
  .kw-block {
    display: grid;
    grid-template-columns: 34% 1fr;
    gap: 44px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px;
    align-items: start;
  }
  .kw-block.reverse { grid-template-columns: 1fr 34%; }
  .kw-block.reverse .kw-img { order: 2; }
  .kw-block.reverse .kw-body { order: 1; }
  .kw-img img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
  .kw-block.kw-landscape .kw-img img { aspect-ratio: 4 / 3; }
  .kw-block.kw-compact-photo { grid-template-columns: 24% 1fr; }
  .kw-block.kw-wide { grid-template-columns: 55% 1fr; }
  .kw-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 18px;
  }
  .kw-body p {
    font-size: 16px;
    color: #262626;
    margin-bottom: 16px;
  }
  .kw-body p:last-of-type { margin-bottom: 0; }
  .kw-body .btn { margin-top: 24px; }
  .kw-body .stance { margin-top: 24px; }


  /* ---------- PHONE MOCKUP (WhatsApp-screenshots e.d.) ---------- */
  .phone-mock {
    position: relative;
    width: 230px;
    margin: 0 auto;
    background: var(--black);
    border-radius: 40px;
    padding: 38px 14px 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  }
  .phone-mock-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 14px;
    background: #050505;
    border-radius: 100px;
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  }
  .phone-mock-screen {
    aspect-ratio: 9 / 19.5;
    border-radius: 26px;
    overflow: hidden;
    background: var(--white);
  }
  .phone-mock-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .phone-mock-lg { width: 300px; }
  @media (max-width: 900px) {
    .phone-mock-lg { width: 230px; }
  }

  /* Eenmalig: 'wie schreef dit' in hero-stijl, tekst links, foto in grijstinten */
  .wie-hero .hero-content { justify-content: flex-start; }
  .wie-hero .hero-scrim { background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.05) 100%); }
  .wie-hero .hero-text { padding: 60px 40px 60px 64px; max-width: 560px; }
  .wie-hero .hero-frame img { filter: grayscale(1) contrast(1.1) brightness(1.02); }
  @media (max-width: 900px) {
    .wie-hero .hero-scrim { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.94) 100%); }
    .wie-hero .hero-text { padding: 40px 28px; max-width: 100%; }
  }

  .cta-block {
    background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)), var(--black) url('cta-touw.jpg') center/cover no-repeat;
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .cta-block .msg h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .cta-block .msg .lead {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
  }
  .cta-block .msg .fine {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    display: flex;
    gap: 18px;
  }
  .cta-block .btn { flex-shrink: 0; }

  @media (max-width: 900px) {
    .wrap { padding: 0 24px; }
    .hero .wrap { padding: 0 16px; }
    .hero-frame { min-height: 560px; border-radius: 18px; }
    .hero-content { justify-content: flex-start; }
    .hero-scrim { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.92) 100%); }
    .hero-text { padding: 40px 28px; max-width: 100%; }
    .hero-text h1 { font-size: 30px; }
    nav.main { display: none; }
    .cards { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; }
    h2 { font-size: 28px; }
    .steps { grid-template-columns: 1fr; }
    .step .num { font-size: 90px; }
    .reviews { grid-template-columns: 1fr; }
    .urgency { grid-template-columns: 1fr; }
    .story, .story.reverse { flex-direction: column; }
    .kw-block, .kw-block.reverse, .kw-block.kw-compact-photo, .kw-block.kw-wide {
      grid-template-columns: 1fr;
      padding: 24px;
    }
    .kw-block .kw-img, .kw-block.reverse .kw-img { order: 1; }
    .kw-block .kw-body, .kw-block.reverse .kw-body { order: 2; }
    .story-img { flex: 0 0 auto; height: 260px; }
    .footer-col-logo { min-height: 0; }
    .footer-col-logo .footer-logo {
      position: static;
      width: 64px;
      height: 64px;
      margin-top: 20px;
    }
    .cta-block { flex-direction: column; align-items: flex-start; }
    .cta-block .btn { width: 100%; justify-content: center; }
    .story-body { padding: 32px 26px; }
    .phone-mock { width: 190px; }
    .article-card { padding: 32px 24px; }
    .search-btn-mobile {
      display: block;
      width: 100%;
      text-align: left;
      padding: 14px 0;
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.7;
      border: none;
      background: none;
      color: inherit;
    }
    .search-panel .wrap { padding: 16px 16px; }
  }
