/* FILE: assets/css/styles.css */

:root {
  --cream: #f7f0e6;
  --cream-2: #efe4d4;
  --paper: #fffdf9;
  --ink: #29251f;
  --ink-soft: #6d6459;
  --cocoa: #4b3427;
  --cocoa-dark: #2f2119;
  --matcha: #74885b;
  --matcha-dark: #566642;
  --berry: #a94f65;
  --berry-soft: #efd9de;
  --line: rgba(75, 52, 39, 0.14);
  --shadow-sm: 0 12px 32px rgba(59, 43, 33, 0.08);
  --shadow-md: 0 24px 64px rgba(47, 33, 25, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1240px;
  --header-height: 76px;
  --mobile-header-height: 62px;
  --mobile-nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.has-mobile-bottom-nav {
  padding-bottom: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

address {
  font-style: normal;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.shell {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2000;
  transform: translateY(-180%);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(75, 52, 39, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--cocoa);
  box-shadow: inset -8px -8px 0 rgba(0, 0, 0, 0.06);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f0cf9d;
}

.brand-mark::before { left: 10px; top: 12px; }
.brand-mark::after { right: 10px; bottom: 11px; }
.brand-mark span:nth-child(1) { right: 12px; top: 10px; }
.brand-mark span:nth-child(2) { left: 14px; bottom: 10px; }
.brand-mark span:nth-child(3) { left: 21px; top: 22px; }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.26rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.desktop-nav a {
  position: relative;
  padding: 0.65rem 0.7rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--cocoa-dark);
  background: var(--cream);
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: var(--matcha);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 820;
  box-shadow: 0 10px 24px rgba(86, 102, 66, 0.2);
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--matcha-dark);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--cocoa-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 25, 18, 0.82) 0%, rgba(38, 25, 18, 0.55) 43%, rgba(38, 25, 18, 0.12) 76%),
    linear-gradient(0deg, rgba(25, 18, 13, 0.52) 0%, transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(4rem, 10vh, 8rem);
  padding-bottom: clamp(3.5rem, 8vh, 6.5rem);
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--matcha-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-section h2,
.legal-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 1rem;
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 7.3rem);
}

.hero-copy > p {
  max-width: 660px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 830;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 12px 30px rgba(169, 79, 101, 0.25);
}

.button-primary:hover {
  background: #913f54;
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-dark {
  background: var(--cocoa-dark);
  color: #fff;
}

.button-full {
  width: 100%;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(30, 20, 15, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 720;
}

.section {
  padding: clamp(4.6rem, 8vw, 8rem) 0;
}

.section-paper {
  background: var(--paper);
}

.section-heading {
  margin-bottom: clamp(2.2rem, 4vw, 4rem);
}

.heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 3rem;
}

.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-section h2,
.legal-page h1 {
  margin-top: 0.65rem;
  font-size: clamp(2.55rem, 5vw, 5rem);
}

.section-heading p,
.split-copy p,
.about-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}

.product-card-large {
  grid-row: span 2;
  min-height: 976px;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(34, 23, 17, 0.76) 0%, rgba(34, 23, 17, 0.16) 54%, transparent 74%);
}

.product-card-body {
  position: absolute;
  z-index: 2;
  left: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  color: #fff;
}

.product-card-body h3 {
  margin: 0.5rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.product-card-body p {
  max-width: 540px;
  margin: 0.72rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.product-tag {
  display: inline-block;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.order-strip {
  margin-top: 1.15rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: var(--radius-md);
  background: var(--berry-soft);
}

.order-strip h3 {
  margin: 0.5rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.order-strip p {
  max-width: 760px;
  margin: 0.72rem 0 0;
  color: #65545a;
}

.catering-section {
  background: var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.image-stack {
  position: relative;
  min-height: 650px;
}

.image-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack-main {
  width: 76%;
  height: 590px;
}

.image-stack-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 320px;
  border: 8px solid var(--cream);
}

.split-copy .lead,
.about-copy .lead,
.contact-section .lead {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-list h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-list p {
  margin: 0.3rem 0 0;
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--cocoa-dark);
  font-weight: 820;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.about-copy > p + p {
  margin-top: 1rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.7rem;
}

.about-points span {
  padding: 0.5rem 0.74rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 760;
}

.about-media {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.gallery-section {
  padding: clamp(4rem, 7vw, 7rem) 0 0;
  background: var(--cocoa-dark);
  color: #fff;
}

.compact-heading {
  margin-bottom: 2rem;
}

.compact-heading h2 {
  max-width: 720px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 0.35rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #241914;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.locations-section {
  background: #f9f5ef;
}

.locations-grid {
  display: grid;
  gap: 1.4rem;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.location-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.location-index {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  color: rgba(75, 52, 39, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.location-copy h3 {
  margin: 0.4rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.location-copy address {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.opening-hours {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.7rem;
  padding-top: 1.3rem;
  width: 100%;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.opening-hours strong {
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.location-copy .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.location-note {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.map-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--cream-2);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.map-placeholder iframe {
  filter: saturate(0.4) opacity(0.78);
}

.map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.48rem 0.68rem;
  border-radius: 999px;
  background: rgba(47, 33, 25, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.05em;
}

.contact-section {
  background: var(--matcha-dark);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.contact-section h2 {
  max-width: 780px;
}

.contact-section .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 0.3rem;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.contact-label {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 830;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-label:first-child {
  margin-top: 0;
}

.contact-card a:not(.button),
.contact-card > span:not(.contact-label) {
  font-size: 1.05rem;
  font-weight: 760;
}

.contact-card .button {
  margin-top: 1.5rem;
}

.site-footer {
  padding: 2.4rem 0;
  background: #251a14;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 2rem;
}

.footer-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 740;
}

.site-footer nav a:hover {
  color: #fff;
}

.footer-copy {
  white-space: nowrap;
}

.mobile-bottom-nav {
  display: none;
}

.legal-page {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(3.2rem, 7vw, 6rem) 0;
  background: var(--paper);
}

.legal-inner {
  width: min(calc(100% - 2.5rem), 860px);
  margin-inline: auto;
}

.legal-page h1 {
  margin-bottom: 1.8rem;
}

.legal-page h2 {
  margin: 2rem 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.legal-page p,
.legal-page li,
.legal-page address {
  color: var(--ink-soft);
}

.legal-page a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.legal-notice {
  margin: 0 0 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(169, 79, 101, 0.3);
  border-radius: var(--radius-sm);
  background: #fff3f5;
  color: #70414d;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .desktop-nav a {
    padding-inline: 0.48rem;
    font-size: 0.82rem;
  }

  .header-cta {
    display: none;
  }

  .split-layout,
  .about-grid {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: var(--mobile-header-height);
  }

  body.has-mobile-bottom-nav {
    padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom, 0px));
  }

  section[id] {
    scroll-margin-top: calc(var(--mobile-header-height) + 12px);
  }

  .site-header {
    height: var(--mobile-header-height);
  }

  .site-header-inner {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .desktop-nav {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-mark::before { left: 8px; top: 10px; }
  .brand-mark::after { right: 8px; bottom: 9px; }
  .brand-mark span:nth-child(1) { right: 10px; top: 8px; }
  .brand-mark span:nth-child(2) { left: 11px; bottom: 8px; }
  .brand-mark span:nth-child(3) { left: 17px; top: 18px; }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .hero {
    min-height: calc(100svh - var(--mobile-header-height));
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(38, 25, 18, 0.82) 0%, rgba(38, 25, 18, 0.46) 58%, rgba(38, 25, 18, 0.22) 100%);
  }

  .hero-inner {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5.2rem);
  }

  .heading-grid,
  .split-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .heading-grid {
    gap: 1.2rem;
  }

  .product-card-large {
    min-height: 720px;
  }

  .image-stack {
    min-height: 620px;
  }

  .split-copy {
    max-width: 720px;
  }

  .about-media,
  .about-media img {
    min-height: 500px;
  }

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

  .location-card {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom, 0px));
    padding: 0.35rem max(0.35rem, env(safe-area-inset-left, 0px)) env(safe-area-inset-bottom, 0px) max(0.35rem, env(safe-area-inset-right, 0px));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    background: rgba(255, 253, 249, 0.985);
    border-top: 1px solid rgba(75, 52, 39, 0.14);
    box-shadow: 0 -12px 32px rgba(47, 33, 25, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    border-radius: 12px;
    color: #82776d;
    font-size: 0.63rem;
    font-weight: 780;
    line-height: 1;
  }

  .mobile-bottom-nav svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--berry);
    background: #fff2f5;
  }
}

@media (max-width: 660px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .section {
    padding: 4.3rem 0;
  }

  .hero-inner {
    padding-bottom: 2.4rem;
  }

  .hero-copy > p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 0.8rem;
    font-size: 0.84rem;
  }

  .hero-facts {
    gap: 0.4rem;
  }

  .hero-facts li {
    font-size: 0.69rem;
  }

  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .contact-section h2,
  .legal-page h1 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

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

  .product-card,
  .product-card-large {
    min-height: 510px;
    grid-row: auto;
  }

  .order-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-strip .button {
    width: 100%;
  }

  .image-stack {
    min-height: 500px;
  }

  .image-stack-main {
    width: 86%;
    height: 470px;
  }

  .image-stack-small {
    width: 48%;
    height: 230px;
    border-width: 5px;
  }

  .about-media,
  .about-media img {
    min-height: 420px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-tall {
    grid-row: auto;
  }

  .location-copy {
    padding: 1.3rem;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

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

  .gallery-wide {
    grid-column: auto;
  }

  .mobile-bottom-nav a {
    font-size: 0.58rem;
  }

  .mobile-bottom-nav svg {
    width: 20px;
    height: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
