@media (max-width: 1100px) {
  :root { --gutter: 32px; }

  .site-nav { gap: 12px; }
  .site-nav a { font-size: 10.5px; }
  .logo { width: 154px; }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 24px;
    --section-y: 52px;
    --fs-body: 14px;
    --fs-small: 12.5px;
    --fs-kicker: 9px;
    --fs-hero: 28px;
    --fs-section: 24px;
    --fs-card: 19px;
    --measure: 30em;
  }

  body {
    border: 8px solid var(--c-frame);
  }

  body::before {
    display: none;
  }

  .site-header,
  .header-inner {
    height: 64px;
    min-height: 64px;
  }

  .logo { width: 142px; }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav.open {
    position: absolute;
    top: 64px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    max-height: calc(100vh - 64px);
    margin: 0;
    padding: 18px var(--gutter);
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 12px 25px rgba(0,0,0,.08);
  }

  .site-nav.open a {
    height: auto;
    padding: 9px 0;
    font-size: 13px;
  }

  .hero {
    align-items: flex-end;
    min-height: calc(84svh - 64px);
    background:
      linear-gradient(180deg, rgba(8,7,6,.08), rgba(8,7,6,.18) 40%, rgba(8,7,6,.82) 82%),
      url("../images/banner-images/hero-workbench-fixed.webp") 58% center / cover no-repeat;
  }

  .hero-copy {
    width: 100%;
    padding: var(--s7) 0 var(--s6);
    transform: none;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: var(--fs-hero);
    line-height: 1.48;
    letter-spacing: .025em;
    text-wrap: balance;
  }

  .hero p {
    max-width: 28em;
    margin-bottom: var(--s2);
    font-size: 13px;
    line-height: 1.9;
  }

  .story-grid,
  .story-grid.reverse,
  .split,
  .order-layout,
  .detail-grid,
  .insta-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .story-grid.reverse {
    gap: var(--s4);
  }

  .story-grid.reverse .story-photo {
    order: 2;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    width: 100%;
    margin-bottom: var(--s4);
    text-align: center;
  }

  .section-head .kicker,
  .section-head h2,
  .section-head .lead {
    text-align: center;
  }

  .section-head h2,
  .story-copy h2,
  .feature-card h2 {
    font-size: var(--fs-section);
    line-height: 1.5;
    letter-spacing: .025em;
    text-wrap: balance;
  }

  .story-photo img,
  .process-card img,
  .feature-card img,
  .order-item img {
    width: 100%;
    aspect-ratio: var(--ratio-story);
    object-fit: cover;
  }

  .story-copy p,
  .split > div:first-child p,
  .feature-card .body p,
  .order-item p {
    max-width: none;
  }

  .bespoke-prices {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .price-card {
    padding: var(--s3) 18px;
  }

  .price-card h3 {
    max-width: 16ch;
    font-size: 19px;
    line-height: 1.5;
  }

  .price {
    padding: 30px 10px;
    font-size: clamp(38px, 12vw, 48px);
  }

  .price small {
    font-size: .38em;
  }

  .plus {
    padding: var(--s1) 0;
    font-size: 24px;
  }

  .gallery-grid {
    width: min(var(--container-max), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-layout {
    gap: var(--s4);
  }

  .order-item {
    grid-template-columns: 1fr;
    gap: var(--s2);
    padding-bottom: var(--s3);
  }

  .order-item img {
    width: 100%;
    height: auto;
  }

  .order-item h3 {
    margin: 0 0 var(--s1);
    font-size: 19px;
  }

  .order-item p {
    font-size: 13px;
    line-height: 1.9;
  }

  .feature-card .body {
    padding: var(--s3) 20px 28px;
  }

  .cta {
    width: 100%;
    min-width: 0;
  }

  .hours img {
    width: 132px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .map iframe {
    height: 360px;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 430px) {
  :root {
    --gutter: 20px;
    --section-y: 48px;
    --fs-hero: 27px;
    --fs-section: 23px;
    --fs-card: 18px;
  }

  body { border-width: 7px; }
  .logo { width: 138px; }
  .hero h1 { max-width: 12ch; }
  .section-head::after { margin-top: var(--s3); }
  .price { font-size: clamp(36px, 11.5vw, 44px); }
  .map iframe { height: 320px; }
}

@media (max-width: 360px) {
  :root {
    --gutter: 18px;
    --fs-hero: 25px;
    --fs-section: 22px;
  }

  .price { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-photo img,
  .gallery-grid img {
    transition: none;
  }
}

@media (max-width: 820px) {
  .hero-actions {
    align-items: stretch;
  }

  .hero-sub-link {
    justify-content: center;
  }

  .line-grid,
  .visit-actions {
    grid-template-columns: 1fr;
  }

  .line-card {
    padding: var(--s3);
  }

  .line-meta {
    grid-template-columns: 1fr;
    gap: var(--s1);
  }

  .visit-action {
    min-height: 92px;
  }
}
