:root {
  --ink: #171717;
  --ink-soft: #2a2927;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --yellow: #f2ce3c;
  --yellow-bright: #ffe14f;
  --red: #d94335;
  --orange: #ef7d32;
  --gray: #74716c;
  --line: rgba(23, 23, 23, 0.16);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.shell { width: var(--shell); margin-inline: auto; }

.announcement {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  letter-spacing: .01em;
}
.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 231, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(23, 23, 23, .06); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; line-height: 1; }
.brand-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  transform: rotate(-4deg);
  border: 2px solid var(--ink);
}
.brand-badge img { width: 100%; height: 100%; object-fit: cover; }
.brand-type { display: grid; gap: 4px; }
.brand-type strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.brand-type small { font-size: 10px; text-transform: uppercase; letter-spacing: .23em; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 12px 19px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: var(--red); transform: translateY(-2px); }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(242, 206, 60, .25), transparent 26%),
    radial-gradient(circle at 10% 100%, rgba(217, 67, 53, .16), transparent 26%),
    var(--ink);
  color: #fff;
  padding: 74px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.35) .7px, transparent .7px);
  background-size: 7px 7px;
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: center; }
.kicker { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kicker span { width: 28px; height: 3px; border-radius: 999px; background: var(--yellow); }
.kicker.dark { color: var(--red); }
.kicker.dark span { background: var(--red); }
.hero h1, h2, h3 { font-family: "Bricolage Grotesque", sans-serif; }
.hero h1 {
  margin: 0;
  max-width: 690px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 800;
  text-wrap: balance;
}
.hero h1 span { display: block; }
.hero h1 em { color: var(--yellow); font-style: normal; letter-spacing: -.035em; }
.hero-lede { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 0 var(--red); }
.button-primary:hover { box-shadow: 0 5px 0 var(--red); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.hero-notes { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-notes span { border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.78); padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }

.hero-visual { position: relative; min-height: 550px; }
.hero-frame {
  position: absolute;
  inset: 18px 8px 28px 28px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 46% 54% 45% 55% / 54% 39% 61% 46%;
  transform: rotate(1.5deg);
  box-shadow: 18px 22px 0 var(--yellow);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-sticker { position: absolute; z-index: 2; display: grid; place-items: center; text-align: center; border: 3px solid var(--ink); box-shadow: 6px 7px 0 var(--ink); }
.hero-sticker-yellow {
  right: -18px;
  top: -8px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--yellow-bright);
  color: var(--ink);
  transform: rotate(8deg);
  align-content: center;
}
.hero-logo-mark { overflow: hidden; padding: 7px; background: #fff; }
.hero-logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-sticker-red {
  left: 0;
  bottom: 0;
  background: var(--red);
  color: #fff;
  border-color: #fff;
  box-shadow: 6px 7px 0 var(--yellow);
  border-radius: 18px;
  padding: 14px 20px;
  transform: rotate(-3deg);
  place-items: start;
  text-align: left;
}
.hero-sticker-red span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.hero-sticker-red strong { font-family: "Bricolage Grotesque"; font-size: 24px; line-height: 1.2; }
.sparkle { position: absolute; color: var(--yellow); font-size: 38px; line-height: 1; }
.sparkle-one { left: -10px; top: 90px; }
.sparkle-two { right: 15px; bottom: 90px; color: #fff; font-size: 26px; }

.marquee { overflow: hidden; background: var(--yellow); border-block: 2px solid var(--ink); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; padding: 14px 0; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: "Bricolage Grotesque", sans-serif; font-size: 15px; font-weight: 800; letter-spacing: .05em; }
.marquee-track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 112px 0; }
.section-intro { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; margin-bottom: 46px; }
h2 { margin: 0; font-size: clamp(43px, 5vw, 68px); line-height: .96; letter-spacing: -.06em; }
.section-intro > p { margin: 0; color: var(--gray); }

.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: auto auto; gap: 18px; }
.service-card { position: relative; min-height: 330px; border-radius: var(--radius-md); padding: 34px; overflow: hidden; border: 1px solid var(--line); }
.service-featured { grid-row: span 2; background: var(--yellow); min-height: 680px; display: flex; flex-direction: column; }
.service-card-light { background: var(--cream); }
.service-card-dark { background: var(--ink); color: #fff; }
.service-image-card { min-height: 365px; padding: 0; border: 0; }
.service-image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(23,23,23,.84)); }
.service-image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card-copy { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 26px; display: grid; grid-template-columns: 1fr auto; align-items: end; color: #fff; }
.image-card-copy span { grid-column: 1/-1; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.image-card-copy h3 { margin: 2px 0 0; font-size: 29px; }
.image-card-copy strong { font-family: "Bricolage Grotesque"; font-size: 24px; color: var(--yellow); }
.service-topline { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 34px; }
.service-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 12px; font-weight: 800; }
.service-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.service-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: none;
  white-space: nowrap;
}
.service-featured h3 { margin: 0 0 16px; font-size: clamp(48px, 5vw, 72px); line-height: .95; letter-spacing: -.055em; }
.service-card:not(.service-featured) h3 { margin: 0 0 12px; font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.service-card p { margin: 0; }
.service-card-light p { color: var(--gray); }
.service-featured > p { max-width: 620px; }
.complete-pricing { margin-top: auto; padding-top: 36px; border-top: 2px solid var(--ink); }
.complete-price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(23,23,23,.42); }
.complete-price-row:last-child { border-bottom: 2px solid var(--ink); }
.complete-price-row span { max-width: 390px; font-size: 14px; font-weight: 800; line-height: 1.25; }
.complete-price-row strong { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(31px, 3.4vw, 48px); line-height: .9; letter-spacing: -.055em; white-space: nowrap; }
.micro-copy { margin-top: 16px !important; font-size: 12px; }
.text-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; width: max-content; font-weight: 800; border-bottom: 2px solid currentColor; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -2px); }
.check-list { display: grid; gap: 9px; list-style: none; padding: 0; margin: 24px 0 0; font-size: 13px; font-weight: 700; }
.check-list li::before { content: "✓"; color: var(--red); margin-right: 8px; }
.service-card-dark .text-link { margin-top: auto; }
.service-card-dark { display: flex; flex-direction: column; }

.results { background: var(--ink); color: #fff; }
.results-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 54px; align-items: end; margin-bottom: 42px; }
.results-heading h2 { max-width: 720px; }
.results-intro { margin: 0; color: rgba(255,255,255,.66); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.result-card { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); background: #232220; }
.result-card-wide { grid-column: 1 / -1; }
.result-card-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.result-card-heading span { color: var(--yellow); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.result-card-heading p { margin: 0; max-width: 280px; color: rgba(255,255,255,.64); font-size: 13px; text-align: right; }
.result-pair { display: grid; grid-template-columns: 1fr 1fr; }
.result-pair figure { position: relative; margin: 0; min-width: 0; }
.result-pair figure + figure { border-left: 1px solid rgba(255,255,255,.16); }
.result-image { aspect-ratio: 4 / 3; overflow: hidden; background: #343434; }
.result-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.result-card:hover .result-image img { transform: scale(1.025); }
.result-pair figcaption { position: absolute; left: 14px; top: 14px; z-index: 1; padding: 7px 11px; border-radius: 999px; background: rgba(23,23,23,.78); color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; backdrop-filter: blur(8px); }
.result-pair figcaption.after-label { background: var(--yellow); color: var(--ink); }

.maintenance { background: var(--red); }
.maintenance-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.maintenance-copy h2 { max-width: 600px; }
.maintenance-copy p:not(.kicker) { max-width: 520px; margin: 22px 0 30px; }
.maintenance-list { border-top: 2px solid var(--ink); }
.maintenance-list div { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(23,23,23,.45); }
.maintenance-list span { font-size: 11px; font-weight: 800; }
.maintenance-list strong { font-family: "Bricolage Grotesque"; font-size: 21px; line-height: 1.1; }

.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 78px; align-items: center; }
.story-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.story-photo img { width: 100%; min-height: 560px; height: 100%; object-fit: cover; }
.story-pin { position: absolute; left: 20px; bottom: 20px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px; padding: 10px 16px; font-size: 12px; font-weight: 800; box-shadow: 4px 5px 0 var(--ink); }
.story-copy p:not(.kicker) { color: var(--gray); margin: 22px 0 0; }
.story-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.story-services span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-size: 12px; font-weight: 700; }
.dark-link { color: var(--ink); }

.contact { background: var(--cream); }
.contact-card { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: stretch; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 68px; box-shadow: 14px 15px 0 var(--yellow); }
.contact-copy { align-self: center; }
.contact-copy h2 { max-width: 600px; }
.contact-copy p:not(.kicker) { max-width: 620px; margin: 22px 0 0; color: rgba(255,255,255,.68); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact-panel { overflow: hidden; align-self: stretch; border-radius: var(--radius-md); background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); box-shadow: 8px 9px 0 var(--red); }
.contact-panel-top { display: grid; grid-template-columns: 122px 1fr; gap: 20px; align-items: center; padding: 28px; border-bottom: 2px solid var(--ink); }
.contact-panel-top img { width: 122px; height: 122px; object-fit: cover; border-radius: 50%; border: 2px solid var(--ink); background: #fff; }
.contact-panel-top div { display: grid; }
.contact-panel-top span, .contact-row span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-panel-top a { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(27px, 3vw, 42px); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.contact-panel-top small { margin-top: 7px; font-size: 12px; font-weight: 700; }
.contact-row { display: grid; grid-template-columns: 86px 1fr auto; gap: 16px; align-items: center; padding: 20px 24px; border-bottom: 1px solid rgba(23,23,23,.42); }
.contact-row:last-child { border-bottom: 0; }
.contact-row strong { min-width: 0; font-size: 13px; overflow-wrap: anywhere; }
.contact-row b { font-size: 18px; transition: transform .2s ease; }
.contact-row:hover b { transform: translate(3px, -3px); }

.visit { background: var(--yellow); padding: 86px 0; border-top: 2px solid var(--ink); }
.visit-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.visit-details { display: grid; grid-template-columns: 1.2fr 1fr .8fr; border-top: 2px solid var(--ink); }
.visit-details a { padding: 20px 20px 20px 0; border-bottom: 1px solid rgba(23,23,23,.35); }
.visit-details a + a { padding-left: 20px; border-left: 1px solid rgba(23,23,23,.35); }
.visit-details span { display: block; margin-bottom: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.visit-details strong { font-size: 14px; line-height: 1.5; }

.site-footer { background: var(--ink); color: #fff; padding: 54px 0 26px; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 34px; align-items: center; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand .brand-badge { background: #fff; }
.footer-main > p { margin: 0; font-family: "Bricolage Grotesque"; font-size: 22px; text-align: center; color: var(--yellow); }
.social-links { display: flex; gap: 18px; font-size: 13px; font-weight: 800; }
.social-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255,255,255,.44); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .site-nav {
    position: fixed;
    inset: 124px 16px auto;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 22px;
    box-shadow: 8px 9px 0 var(--yellow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 15px 12px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 10px; text-align: center; border-bottom: 0; }
  .menu-button { width: 48px; height: 48px; display: grid; place-content: center; gap: 6px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); cursor: pointer; }
  .menu-button span { width: 21px; height: 2px; background: var(--ink); transition: .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero-grid, .section-intro, .maintenance-grid, .story-grid, .contact-card, .visit-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-grid { gap: 46px; }
  .hero-visual { min-height: 560px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-row: auto; min-height: 620px; }
  .section-intro { gap: 24px; }
  .results-heading { grid-template-columns: 1fr; gap: 20px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card-wide { grid-column: auto; }
  .maintenance-grid { gap: 52px; }
  .story-grid { gap: 48px; }
  .contact-card { gap: 40px; padding: 46px; }
  .visit-grid { gap: 38px; }
  .visit-details { grid-template-columns: 1fr; }
  .visit-details a + a { padding-left: 0; border-left: 0; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .social-links { justify-self: center; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); --radius-lg: 26px; --radius-md: 20px; }
  body { padding-bottom: 72px; }
  .announcement-inner { justify-content: center; }
  .announcement-inner span { display: none; }
  .announcement { font-size: 12px; }
  .nav-wrap { height: 74px; }
  .brand-badge { width: 42px; height: 42px; }
  .brand-badge img { width: 100%; height: 100%; }
  .brand-type strong { font-size: 21px; }
  .brand-type small { font-size: 8px; }
  .site-nav { inset: 110px 12px auto; }
  .hero { padding: 46px 0 66px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 68px); line-height: 1.04; letter-spacing: -.045em; }
  .hero-lede { font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-notes { gap: 6px; }
  .hero-notes span { font-size: 10px; }
  .hero-visual { min-height: 395px; }
  .hero-frame { inset: 12px 12px 24px 10px; box-shadow: 10px 12px 0 var(--yellow); border-radius: 36% 64% 38% 62% / 58% 36% 64% 42%; }
  .hero-sticker-yellow { width: 104px; height: 104px; right: -3px; top: -7px; }
  .hero-logo-mark { padding: 5px; }
  .hero-sticker-red { left: 0; bottom: 0; padding: 10px 13px; }
  .hero-sticker-red strong { font-size: 18px; }
  .sparkle-one { display: none; }
  .section { padding: 76px 0; }
  h2 { font-size: 44px; }
  .section-intro { margin-bottom: 30px; }
  .service-card { padding: 24px; min-height: 300px; }
  .service-featured { min-height: 580px; }
  .service-featured h3 { font-size: 48px; }
  .complete-pricing { padding-top: 26px; }
  .complete-price-row { gap: 14px; padding: 13px 0; }
  .complete-price-row span { font-size: 12px; }
  .complete-price-row strong { font-size: 34px; }
  .service-image-card { min-height: 320px; padding: 0; }
  .results-heading { margin-bottom: 28px; }
  .result-card-heading { display: grid; gap: 5px; padding: 18px; }
  .result-card-heading p { text-align: left; }
  .result-pair { grid-template-columns: 1fr; }
  .result-pair figure + figure { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .result-image { aspect-ratio: 4 / 3; }
  .maintenance-grid { gap: 38px; }
  .maintenance-list strong { font-size: 18px; }
  .story-photo img { min-height: 420px; }
  .contact-card { padding: 28px 20px; box-shadow: 8px 9px 0 var(--yellow); }
  .contact-buttons { display: grid; }
  .contact-panel-top { grid-template-columns: 86px 1fr; padding: 20px; }
  .contact-panel-top img { width: 86px; height: 86px; }
  .contact-panel-top a { font-size: 27px; }
  .contact-row { grid-template-columns: 62px 1fr auto; padding: 17px 18px; }
  .visit { padding: 68px 0; }
  .footer-main > p { font-size: 20px; }
  .footer-bottom { display: grid; text-align: center; justify-content: center; }
  .mobile-call {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 10px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 4px 5px 0 var(--red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .mobile-call strong { font-size: 14px; letter-spacing: 0; }
}

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