:root {
  --ink: #171916;
  --paper: #f2f1ec;
  --white: #ffffff;
  --line: #d3d4ce;
  --muted: #666a63;
  --acid: #d9f64a;
  --rust: #c95735;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --header-height: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
section { scroll-margin-top: var(--header-height); }
.shell { width: min(100% - 80px, 1360px); margin-inline: auto; }
.section-pad { padding-block: 132px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; background: var(--acid); color: var(--ink); }
.skip-link:focus { top: 12px; }
.eyebrow { margin: 0 0 28px; font-size: 11px; font-weight: 600; letter-spacing: 1.8px; line-height: 1; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 12px 3px 0; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.82); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 400; line-height: .92; letter-spacing: 0; }
h1 { max-width: 950px; margin-bottom: 34px; color: var(--white); font-size: clamp(68px, 8.2vw, 132px); }
h2 { margin-bottom: 0; font-size: clamp(56px, 6.2vw, 92px); }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 30px; padding: 14px 22px; border: 1px solid transparent; border-radius: 0; font-size: 13px; font-weight: 600; transition: background .25s, color .25s, border-color .25s; }
.button-solid { background: var(--acid); color: var(--ink); }
.button-solid:hover, .button-solid:focus-visible { background: var(--white); }
.button-outline { border-color: var(--ink); }
.button-outline:hover, .button-outline:focus-visible { background: var(--ink); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 24px; padding-block: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.light-link { color: var(--white); }
.dark-link { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: grid; height: var(--header-height); grid-template-columns: 1fr auto 1fr; align-items: center; padding-inline: 40px; border-bottom: 1px solid rgba(255,255,255,.22); color: var(--white); transition: background .3s, color .3s, border-color .3s, height .3s; }
.site-header.is-scrolled, .site-header.menu-active { height: 68px; border-color: var(--line); background: rgba(242,241,236,.96); color: var(--ink); backdrop-filter: blur(12px); }
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand-name { font-size: 14px; font-weight: 600; letter-spacing: 1.2px; line-height: 1; white-space: nowrap; }
.brand-name b { color: var(--rust); font-weight: 600; }
.brand-mark { display: flex; align-items: end; gap: 2px; height: 19px; transform: skew(-18deg); }
.brand-mark span { display: block; width: 3px; background: currentColor; }
.brand-mark span:nth-child(1) { height: 11px; }.brand-mark span:nth-child(2) { height: 19px; }.brand-mark span:nth-child(3) { height: 15px; }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 500; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.menu-toggle, .mobile-menu { display: none; }

.hero { position: relative; min-height: 820px; height: 100svh; overflow: hidden; background: #343832; }
.hero-slides, .hero-slide, .hero-shade { position: absolute; inset: 0; }
.hero-slide { background: var(--hero-image) center center / cover no-repeat; opacity: 0; transform: scale(1.03); transition: opacity 1s ease, transform 7s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { background: linear-gradient(90deg, rgba(7,10,8,.76) 0%, rgba(7,10,8,.38) 48%, rgba(7,10,8,.1) 78%), linear-gradient(0deg, rgba(7,9,7,.48), transparent 44%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 100%; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 98px; }
.hero-copy { max-width: 520px; margin-bottom: 36px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 36px; }
.slide-controls { position: absolute; z-index: 3; right: 0; bottom: 34px; left: 0; display: flex; align-items: center; gap: 14px; color: var(--white); }
.slide-arrow { width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: transparent; color: var(--white); transition: background .2s, color .2s; }
.slide-arrow:hover { background: var(--white); color: var(--ink); }
.slide-dots { display: flex; align-items: center; gap: 8px; margin-left: 6px; }
.slide-dot { width: 26px; height: 20px; padding: 0; border: 0; background: transparent; }
.slide-dot::after { content: ""; display: block; width: 100%; height: 1px; background: rgba(255,255,255,.42); }
.slide-dot.is-active::after { height: 2px; background: var(--acid); }
.slide-label { margin-left: 8px; font-size: 10px; letter-spacing: 1px; }
.hero-scroll { position: absolute; z-index: 3; right: 34px; bottom: 34px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); transform: rotate(90deg) translateX(-100%); transform-origin: right bottom; }
.hero-scroll span { width: 44px; height: 1px; background: currentColor; }.hero-scroll small { font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; }

.intro { background: var(--paper); }
.intro-grid, .section-heading, .quote-grid, .faq-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 11vw; align-items: end; }
.intro-copy { max-width: 500px; padding-bottom: 4px; }
.intro-copy p, .section-heading > p, .process-heading > p, .feature-copy > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.intro-copy .text-link { margin-top: 16px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 112px; border-top: 1px solid var(--line); }
.stat { display: flex; min-height: 112px; align-items: end; gap: 22px; padding: 24px 24px 0 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }.stat strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }.stat span { color: var(--muted); font-size: 12px; line-height: 1.35; }

.services { background: var(--ink); color: var(--white); }
.section-heading { align-items: end; margin-bottom: 76px; }
.services .section-heading > p { color: rgba(255,255,255,.6); }
.service-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px 24px; }
.service-card-large { grid-row: span 2; }
.service-image { overflow: hidden; background: #343631; }
.service-card-large .service-image { height: 780px; }.service-card:not(.service-card-large) .service-image { height: 300px; }
.service-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }.service-card:hover img { transform: scale(1.025); }
.service-body { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding-top: 24px; }
.service-number { color: rgba(255,255,255,.42); font-family: var(--serif); font-size: 18px; }
.service-body h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: 1; }
.service-body p { max-width: 560px; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.service-link { display: inline-flex; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 11px; font-weight: 600; }

.feature { background: #e7e8e2; }
.feature-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); gap: 10vw; align-items: center; }
.feature-visual { display: grid; grid-template-rows: auto auto; }.feature-visual img { aspect-ratio: 4 / 5; height: auto; object-fit: cover; object-position: center; }
.image-caption { position: static; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; width: 100%; padding: 24px; background: var(--acid); }
.image-caption span { display: block; margin-bottom: 0; font-size: 10px; font-weight: 600; text-transform: uppercase; }.image-caption strong { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1; }
.feature-copy h2 { margin-bottom: 38px; }.feature-copy > p { max-width: 520px; }
.feature-list { margin: 42px 0; border-top: 1px solid #bdbfb7; }
.feature-list div { display: grid; grid-template-columns: 64px 1fr; padding-block: 15px; border-bottom: 1px solid #bdbfb7; }.feature-list strong { color: var(--rust); font-family: var(--serif); font-weight: 400; }.feature-list span { font-size: 13px; font-weight: 600; }

.process { background: var(--paper); }.process-heading { margin-bottom: 76px; }.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-step { min-height: 280px; padding: 32px 50px 0 0; border-right: 1px solid var(--line); }.process-step + .process-step { padding-left: 38px; }.process-step:last-child { border-right: 0; }
.process-step > span { color: var(--rust); font-family: var(--serif); font-size: 23px; }.process-step h3 { margin: 70px 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 400; }.process-step p { max-width: 330px; color: var(--muted); font-size: 13px; }

.quote-section { padding-block: 110px; background: var(--rust); color: var(--white); }
.quote-grid { align-items: start; }.quote-intro h2 { margin-bottom: 32px; }.quote-intro > p { max-width: 480px; color: rgba(255,255,255,.72); }.quote-note { display: flex; align-items: center; gap: 12px; margin-top: 56px; font-size: 12px; }.quote-note > span:first-child { color: var(--acid); }

.faq { background: #e7e8e2; }.faq-grid { align-items: start; }.faq-list { border-top: 1px solid #bdbfb7; }
details { border-bottom: 1px solid #bdbfb7; } summary { position: relative; display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; list-style: none; font-size: 14px; font-weight: 600; cursor: pointer; } summary::-webkit-details-marker { display: none; } summary span { font-size: 24px; font-weight: 400; transition: transform .2s; } details[open] summary span { transform: rotate(45deg); } details p { max-width: 580px; padding: 0 48px 26px 0; color: var(--muted); font-size: 13px; }

.site-footer { padding: 58px 0 28px; background: var(--ink); color: var(--white); }.footer-brand { font-size: 18px; }.footer-arrow { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }.footer-arrow:hover { background: var(--acid); color: var(--ink); }.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; }

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .shell { width: min(100% - 48px, 900px); }.section-pad { padding-block: 96px; }
  .desktop-nav { display: none; }.site-header { grid-template-columns: 1fr auto; height: 68px; padding-inline: 24px; }.menu-toggle { position: relative; z-index: 2; display: grid; width: 38px; height: 38px; padding: 10px 7px; border: 0; background: transparent; color: currentColor; }.menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .25s; }.site-header.menu-active .menu-toggle span:first-child { transform: translateY(5px) rotate(45deg); }.site-header.menu-active .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 68px 0 0; display: flex; flex-direction: column; padding: 48px 24px; background: var(--paper); color: var(--ink); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s, transform .25s; }.mobile-menu[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: none; }.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 32px; }.mobile-menu .mobile-quote { margin-top: 24px; border: 0; font-family: var(--sans); font-size: 14px; font-weight: 600; }
  .intro-grid, .section-heading, .quote-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }.stats-row { grid-template-columns: 1fr 1fr; }.stat:nth-child(2) { border-right: 0; }.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card-large .service-image { height: 620px; }.feature-grid { grid-template-columns: 1fr; gap: 80px; }.feature-visual { width: 100%; }.process-grid { grid-template-columns: 1fr; }.process-step, .process-step + .process-step { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }.process-step h3 { margin-top: 30px; }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 40px); }.section-pad { padding-block: 76px; }
  h1 { font-size: 61px; } h2 { font-size: 52px; }.eyebrow { margin-bottom: 20px; }.site-header { padding-inline: 20px; }
  .hero { min-height: 720px; }.hero-slide { background-position: 62% center; }.hero-content { justify-content: flex-end; padding: 100px 0 145px; }.hero-copy { font-size: 15px; line-height: 1.6; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }.slide-controls { bottom: 24px; }.hero-scroll { display: none; }
  .intro-grid { gap: 32px; }.intro-copy p, .section-heading > p, .process-heading > p, .feature-copy > p { font-size: 15px; }.stats-row { margin-top: 70px; }.stat { min-height: 100px; gap: 12px; padding-right: 10px; }.stat strong { font-size: 20px; }.stat span { font-size: 10px; }
  .section-heading, .process-heading { margin-bottom: 48px; }.service-grid { grid-template-columns: 1fr; gap: 54px; }.service-card-large { grid-row: auto; }.service-card-large .service-image, .service-card:not(.service-card-large) .service-image { height: 420px; }.service-body { grid-template-columns: 34px 1fr; }
  .feature-grid { gap: 64px; }.feature-visual { width: 100%; }.image-caption { padding: 20px; }.image-caption strong { font-size: 24px; }.feature-copy h2 { margin-bottom: 28px; }
  .quote-section { padding-block: 76px; }.quote-intro h2 { margin-bottom: 24px; }.quote-note { margin-top: 36px; }
  .faq-grid { gap: 48px; }.footer-arrow { grid-column: 2; grid-row: 1; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Verified business content and concept preview additions */
.header-brand-group { display: flex; align-items: center; gap: 18px; justify-self: start; }
.concept-badge { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.7); font-size: 9px; font-weight: 600; line-height: 1.25; text-transform: uppercase; white-space: nowrap; }
.site-header.is-scrolled .concept-badge, .site-header.menu-active .concept-badge { border-color: var(--line); color: var(--muted); }
.site-header { grid-template-columns: auto 1fr auto; gap: 34px; }
.desktop-nav { justify-self: center; gap: 24px; }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 14px; white-space: nowrap; }
.header-action { font-size: 10px; font-weight: 600; }
.header-action-primary { padding: 9px 12px; background: var(--acid); color: var(--ink); }
.hero-content h1 { max-width: 1040px; font-size: clamp(58px, 5.9vw, 92px); line-height: .96; }
.service-list { margin: 12px 0 18px; padding: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; list-style: none; }
.service-list li::before { content: ""; display: inline-block; width: 12px; height: 1px; margin: 0 10px 4px 0; background: var(--acid); }
.proof { background: var(--paper); }
.proof-links { border-top: 1px solid var(--line); }
.proof-links a { display: grid; min-height: 106px; grid-template-columns: 64px minmax(220px, 1fr) minmax(180px, .7fr) auto; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.proof-links a:hover, .proof-links a:focus-visible { padding-inline: 18px; background: var(--white); }
.proof-links span { color: var(--rust); font-family: var(--serif); font-size: 20px; }
.proof-links strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.proof-links small { color: var(--muted); font-size: 12px; }
.proof-links b { font-size: 20px; font-weight: 400; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.38); }
.contact-action { display: grid; min-height: 92px; grid-template-columns: 1fr auto; align-content: center; column-gap: 24px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.38); }
.contact-action span { color: rgba(255,255,255,.65); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.contact-action strong { grid-column: 1; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1.2; }
.contact-action b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--acid); font-size: 20px; font-weight: 400; }
.contact-action:hover strong, .contact-action:focus-visible strong { color: var(--acid); }
.location { background: #e7e8e2; }
.location-grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 8vw; align-items: center; }
.location-copy h2 { margin-bottom: 36px; }
.location-copy address, .location-copy > p { margin: 0 0 24px; color: var(--muted); font-size: 15px; font-style: normal; line-height: 1.7; }
.location-copy address strong { color: var(--ink); }
.map-frame { min-height: 500px; background: #d1d2cc; }
.map-frame iframe { display: block; width: 100%; height: 500px; border: 0; }
.footer-main { position: relative; display: grid; grid-template-columns: 1.15fr 1.35fr .85fr .7fr auto; gap: 44px; padding-bottom: 58px; }
.footer-identity p { margin: 28px 0 24px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.6; }
.footer-concept { color: var(--acid); font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.footer-column { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h3 { margin: 0 0 10px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.footer-column a, .footer-column p { max-width: 100%; margin: 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.55; overflow-wrap: anywhere; }
.footer-column a:hover, .footer-column a:focus-visible { color: var(--acid); }
.footer-arrow { align-self: start; }

@media (max-width: 1260px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-actions { grid-column: 3; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; gap: 12px; }
  .header-actions { display: none; }
  .concept-badge { font-size: 8px; }
  .mobile-menu { overflow-y: auto; }
  .mobile-actions { display: grid; gap: 10px; margin-top: 24px; }
  .mobile-menu .mobile-actions a { display: flex; min-height: 48px; align-items: center; justify-content: center; padding: 10px 16px; border: 1px solid var(--ink); font-family: var(--sans); font-size: 13px; font-weight: 600; text-align: center; }
  .mobile-menu .mobile-actions a:nth-child(2) { border-color: var(--acid); background: var(--acid); }
  .hero-content h1 { max-width: 820px; font-size: 62px; }
  .proof-links a { grid-template-columns: 48px 1fr auto; }
  .proof-links small { display: none; }
  .location-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-main { grid-template-columns: 1.2fr 1.3fr 1fr; }
  .footer-column:last-of-type { grid-column: 2; }
  .footer-arrow { grid-column: 3; grid-row: 1; justify-self: end; }
}

@media (max-width: 680px) {
  .header-brand-group { gap: 10px; }
  .concept-badge { max-width: 76px; padding-left: 10px; white-space: normal; }
  .hero-content { justify-content: flex-end; padding: 92px 0 136px; }
  .hero-content h1 { max-width: 100%; margin-bottom: 22px; font-size: 42px; line-height: 1; }
  .hero-copy { margin-bottom: 26px; }
  .stats-row { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .proof-links a { min-height: 96px; grid-template-columns: 36px 1fr auto; gap: 12px; }
  .proof-links strong { font-size: 22px; line-height: 1.15; }
  .contact-action strong { font-size: 25px; }
  .map-frame, .map-frame iframe { min-height: 360px; height: 360px; }
  .footer-main { grid-template-columns: 1fr auto; gap: 40px 24px; }
  .footer-identity, .footer-column { grid-column: 1 / -1; }
  .footer-column:last-of-type { grid-column: 1 / -1; }
  .footer-arrow { grid-column: 2; grid-row: 1; }
  .footer-bottom { line-height: 1.5; }
}

@media (max-width: 390px) {
  .brand-name { font-size: 12px; }
  .hero-content h1 { font-size: 38px; }
  .slide-dots { gap: 3px; }
  .slide-dot { width: 21px; }
}

/* Navigation switches to the compact menu before the full header becomes crowded. */
@media (max-width: 1260px) {
  :root { --header-height: 68px; }
  .site-header { grid-template-columns: 1fr auto; height: 68px; gap: 12px; padding-inline: 24px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 44px; height: 44px; padding: 12px 10px; border: 0; background: transparent; color: currentColor; }
  .menu-toggle span { display: block; width: 24px; height: 1px; background: currentColor; transition: transform .25s; }
  .site-header.menu-active .menu-toggle span:first-child { transform: translateY(5px) rotate(45deg); }
  .site-header.menu-active .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 68px 0 0; display: flex; overflow-y: auto; flex-direction: column; padding: 48px 24px; background: var(--paper); color: var(--ink); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s, transform .25s; }
  .mobile-menu[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 32px; line-height: 1.2; }
  .mobile-actions { display: grid; gap: 10px; margin-top: 24px; }
  .mobile-menu .mobile-actions a { display: flex; min-height: 48px; align-items: center; justify-content: center; padding: 10px 16px; border: 1px solid var(--ink); font-family: var(--sans); font-size: 13px; font-weight: 600; text-align: center; }
  .mobile-menu .mobile-actions a:nth-child(2) { border-color: var(--acid); background: var(--acid); }
}

@media (max-width: 680px) {
  .site-header { padding-inline: 20px; }
  .mobile-menu { padding: 32px 20px; }
  .mobile-menu > a { font-size: 28px; }
}