:root {
  --cream: #fff3de;
  --ivory: #fff7ea;
  --paper: #f9eedc;
  --ink: #1f1a16;
  --muted: #706a60;
  --line: #d6c7b5;
  --orange: #f59a0b;
  --orange-dark: #d87f00;
  --blush: #f5c6b8;
  --sage: #a9b89e;
  --terracotta: #9a5c38;
  --gold: #d9a441;
  --clay: #d8b99b;
  --text-dark: #302922;
  --container: min(85vw, 1540px);
  --display: "Bodoni 72", "Didot", "Baskerville", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.4rem;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 17%, rgba(245, 198, 184, .35), transparent 28rem),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 55%, #ffffff 100%);
  color: var(--ink);
  font-family: var(--sans);
}

body.menu-open {
  overflow: hidden;
}

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

::selection {
  background: rgba(245, 154, 11, .22);
  color: var(--ink);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 52px 0 28px;
  transition: padding .28s ease, background .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled {
  width: 100%;
  padding: 18px 7.5vw;
  background: rgba(255, 247, 234, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 199, 181, .62);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(6.4rem, 8.4vw, 8.8rem);
  height: clamp(4.1rem, 5.8vw, 5.8rem);
  overflow: hidden;
  transition: opacity .25s ease;
}

.brand:hover {
  opacity: .8;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.55);
}

.primary-nav {
  display: flex;
  gap: clamp(1.75rem, 3.1vw, 4rem);
  align-items: center;
  color: var(--text-dark);
  font-size: .98rem;
  font-weight: 600;
}

.primary-nav a,
.site-footer a,
.text-link,
.category-card a {
  position: relative;
}

.primary-nav a,
.site-footer nav a {
  padding-block: 0.4rem;
}

.text-link,
.category-card a {
  display: inline-flex;
  align-items: center;
  padding-block: 0.4rem;
}

.primary-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .26s ease;
}

.primary-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  align-items: center;
}

.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #74695d;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease;
}

.icon-button {
  width: 2.75rem;
  height: 2.75rem;
}

.icon-button:hover,
.menu-toggle:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.icon-button:active,
.menu-toggle:active {
  transform: translateY(1px);
  transition-duration: .08s;
}

.icon-button svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  gap: .38rem;
}

.menu-toggle span {
  display: block;
  width: 2.3rem;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(.48rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-.48rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  align-content: center;
  gap: 1.1rem;
  padding: 7rem 8vw 4rem;
  background: rgba(255, 243, 222, .97);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4.6rem);
  line-height: .95;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: clamp(2.5rem, 6vw, 6rem) 0 clamp(4.8rem, 8vw, 8rem);
  background:
    linear-gradient(90deg, rgba(255, 243, 222, .96) 0%, rgba(255, 247, 234, .82) 43%, rgba(216, 185, 155, .28) 100%),
    radial-gradient(circle at 80% 22%, rgba(217, 164, 65, .22), transparent 28rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  width: min(92vw, 1720px);
  min-height: clamp(600px, 70vh, 820px);
  margin: 0 auto;
  gap: clamp(1.4rem, 3vw, 4.5rem);
}

.hero-copy {
  z-index: 2;
  grid-column: 1 / span 5;
  max-width: 48rem;
  padding-top: 1.8rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 6.5ch;
  margin-bottom: 2rem;
  font-size: clamp(5.5rem, 9vw, 11rem);
  line-height: .84;
}

.hero-intro {
  max-width: 33rem;
  margin-bottom: 2.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.7rem;
  align-items: center;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.8rem;
  min-height: 4.6rem;
  padding: 1rem 2.2rem;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(42, 33, 27, .18);
  font-size: 1.06rem;
  font-weight: 800;
  transition: background .22s ease, box-shadow .3s var(--ease-out-expo), transform .3s var(--ease-out-expo);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(42, 33, 27, .22);
  transform: translateY(-3px);
}

.button-primary:active {
  background: var(--orange-dark);
  box-shadow: 0 2px 8px rgba(42, 33, 27, .14);
  transform: translateY(1px);
  transition-duration: .08s;
}

.facebook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.35rem;
  height: 3.9rem;
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(24, 119, 242, .22);
  transition: background .22s ease, box-shadow .3s var(--ease-out-expo), transform .3s var(--ease-out-expo);
}

.facebook-button svg {
  width: 3.35rem;
  height: 3.35rem;
  fill: currentColor;
}

.facebook-button:hover,
.facebook-button:focus-visible {
  background: #0f66d6;
  box-shadow: 0 8px 24px rgba(24, 119, 242, .28);
  transform: translateY(-3px);
}

.facebook-button:active {
  background: #0f66d6;
  box-shadow: 0 2px 8px rgba(24, 119, 242, .16);
  transform: translateY(1px);
  transition-duration: .08s;
}

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.35rem;
  height: 3.9rem;
  background: rgba(255, 247, 234, .12);
  color: var(--ivory);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 234, .22);
  transition: background .22s ease, box-shadow .3s var(--ease-out-expo), transform .3s var(--ease-out-expo);
}

.email-button svg {
  width: 3.45rem;
  height: 3.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.email-button:hover,
.email-button:focus-visible {
  background: rgba(217, 164, 65, .2);
  box-shadow: inset 0 0 0 1px rgba(217, 164, 65, .72), 0 8px 24px rgba(42, 33, 27, .22);
  transform: translateY(-3px);
}

.email-button:active {
  transform: translateY(1px);
  transition-duration: .08s;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  min-height: 3.9rem;
  padding: .85rem 1.45rem;
  border: 1px solid rgba(255, 247, 234, .32);
  color: rgba(255, 247, 234, .86);
  font-size: 1.5rem;
  font-weight: 800;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .3s var(--ease-out-expo);
}

.phone-button:hover,
.phone-button:focus-visible {
  background: rgba(255, 247, 234, .1);
  border-color: rgba(255, 247, 234, .58);
  color: var(--ivory);
  transform: translateY(-3px);
}

.phone-button:active {
  transform: translateY(1px);
  transition-duration: .08s;
}

.text-link {
  color: var(--text-dark);
  font-weight: 800;
}

.text-link span,
.category-card a span {
  display: inline-block;
  transition: transform .22s ease;
}

.text-link:hover span,
.category-card a:hover span {
  transform: translateX(.28rem);
}

.hero-visual {
  z-index: 1;
  grid-column: 6 / -1;
  align-self: center;
  position: relative;
  filter: drop-shadow(0 34px 30px rgba(42, 33, 27, .1));
}

.hero-visual img {
  width: min(100%, 72rem);
  min-height: clamp(28rem, 52vw, 43rem);
  margin-inline: auto 0;
  border-radius: 36px 0 0 36px;
  object-fit: cover;
  object-position: 65%;
  mix-blend-mode: multiply;
}

.store-story,
.visit-panel {
  width: var(--container);
  margin: 0 auto;
}

.categories {
  width: 100%;
  margin: 0;
  padding: 0 0 clamp(5rem, 8vw, 8.5rem);
}

.expanded-band {
  width: 100%;
  margin: 0;
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: rgba(249, 238, 220, .58);
  border-top: 1px solid rgba(214, 199, 181, .72);
  border-bottom: 1px solid rgba(214, 199, 181, .72);
}

.expanded-band-inner {
  width: var(--container);
  margin: 0 auto;
}

.expanded-band-copy {
  max-width: min(58rem, 78vw);
}

.section-heading {
  display: block;
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 20ch;
  font-size: clamp(3.3rem, 5.8vw, 6.8rem);
  line-height: .92;
}

.story-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
  line-height: .92;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.7rem);
  align-items: start;
  width: var(--container);
  margin: clamp(2.4rem, 4.5vw, 4.8rem) auto 0;
}

.category-card {
  overflow: hidden;
  background: rgba(255, 247, 234, .9);
  border: 1px solid rgba(214, 199, 181, .62);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(42, 33, 27, .07);
  transition: transform .32s var(--ease-out-expo), box-shadow .32s ease;
}

.category-card:nth-child(even) {
  margin-top: clamp(1.4rem, 3vw, 3.5rem);
}

.category-card:hover {
  box-shadow: 0 26px 66px rgba(42, 33, 27, .12);
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease-out-expo);
}

.category-card:hover img {
  transform: scale(1.045);
}

.category-card div {
  padding: 1.35rem 1.35rem 1.55rem;
}

.category-index {
  display: inline-block;
  margin-bottom: .7rem;
  color: var(--terracotta);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  transition: transform .35s var(--ease-out-expo);
}

.category-card:hover .category-index {
  transform: translateY(-5px);
}

.category-card h3 {
  min-height: 4.7rem;
  margin-bottom: .85rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.category-card p {
  min-height: 5.8rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}

.category-card a {
  color: var(--text-dark);
  font-weight: 800;
  transition: color .22s ease;
}

.category-card a:hover {
  color: var(--terracotta);
}

.local-seo {
  background:
    linear-gradient(90deg, rgba(31, 26, 22, .98), rgba(48, 41, 34, .96));
  color: var(--ivory);
}

.local-seo-copy {
  display: block;
}

.local-seo-copy h2 {
  max-width: 20ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.1rem, 5vw, 6rem);
  line-height: .94;
}

.local-seo-copy .eyebrow {
  color: var(--gold);
}

.local-seo-copy > p:not(.eyebrow) {
  max-width: 43rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 247, 234, .7);
  font-size: 1.05rem;
  line-height: 1.72;
}

.local-seo-copy .text-link {
  color: var(--ivory);
}

.store-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.15fr);
  grid-template-areas:
    "copy experience"
    "services services";
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: start;
  padding: clamp(5rem, 8vw, 8.5rem) 0 clamp(4.5rem, 7vw, 7.2rem);
  border-top: 1px solid var(--line);
}

.story-copy {
  grid-area: copy;
}

.story-copy > p:not(.eyebrow) {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-copy .text-link {
  margin-top: .3rem;
}

.store-experience {
  grid-area: experience;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(15rem, .75fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(42, 33, 27, .08);
}

.store-photo {
  margin: 0;
  background: var(--paper);
}

.store-photo img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.store-notes {
  display: grid;
  background: rgba(255, 247, 234, .95);
}

.store-notes div {
  display: grid;
  align-content: center;
  gap: .7rem;
  min-height: 9rem;
  padding: clamp(1.3rem, 2vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.store-notes div:last-child {
  border-bottom: 0;
}

.store-notes span {
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.store-notes strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.15vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.service-grid {
  grid-area: services;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.5rem);
  align-content: start;
}

.service-item {
  min-height: 13.5rem;
  padding: 1.6rem;
  background: rgba(255, 247, 234, .7);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background .28s ease, border-color .28s ease;
}

.service-item:hover {
  background: rgba(255, 247, 234, .98);
  border-color: var(--clay);
}

.service-item span {
  display: inline-grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 2.2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-size: .76rem;
  font-weight: 900;
}

.service-item:nth-child(2) span {
  background: var(--sage);
  color: var(--ink);
}

.service-item:nth-child(3) span {
  background: var(--terracotta);
}

.service-item h3 {
  margin-bottom: .8rem;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.service-item p {
  color: var(--muted);
  line-height: 1.58;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  margin-bottom: clamp(4rem, 7vw, 7.5rem);
  padding: clamp(2.2rem, 4.5vw, 4rem);
  background: var(--ink);
  color: var(--ivory);
}

.visit-copy {
  display: grid;
  align-content: start;
  padding-block: clamp(.4rem, 1vw, 1rem);
}

.visit-copy .eyebrow {
  color: var(--gold);
}

.visit-copy h2 {
  margin-bottom: clamp(1.7rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.4rem, 2.6vw, 2rem);
  border-bottom: 1px solid rgba(255, 247, 234, .16);
  color: var(--ivory);
  font-size: clamp(3.2rem, 5.7vw, 7rem);
  line-height: .94;
}

.visit-address {
  margin-bottom: clamp(1.4rem, 2.6vw, 2rem);
  padding-bottom: clamp(1.4rem, 2.6vw, 2rem);
  border-bottom: 1px solid rgba(255, 247, 234, .16);
}

.visit-address address {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.8vw, 2.05rem);
  font-style: normal;
  line-height: 1.35;
}

.visit-note {
  max-width: 38rem;
  margin: 1.2rem 0 1.8rem;
  color: rgba(255, 247, 234, .62);
  font-size: .98rem;
  line-height: 1.65;
}

.hours-block {
  gap: .85rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ivory);
  font-size: clamp(1rem, 1.08vw, 1.15rem);
  font-weight: 700;
}

.hours-table tr {
  border-top: 1px solid rgba(255, 247, 234, .16);
  transition: background .22s ease, color .22s ease;
}

.hours-table tr:last-child {
  border-bottom: 1px solid rgba(255, 247, 234, .16);
}

.hours-table td {
  padding: .72rem 0;
  vertical-align: middle;
}

.hours-table td:last-child {
  color: rgba(255, 247, 234, .72);
  text-align: right;
  white-space: nowrap;
}

.hours-table tr.today {
  background: rgba(245, 154, 11, .12);
  box-shadow: inset 3px 0 0 var(--orange);
}

.hours-table tr.today td {
  padding-inline: .85rem;
}

.hours-table tr.today td:first-child {
  color: var(--orange);
}

.hours-table tr.today td:last-child {
  color: var(--ivory);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: .2rem;
}

.visit-actions .button-primary {
  min-width: 12rem;
  min-height: 3.9rem;
}

.visit-map {
  overflow: hidden;
  min-height: clamp(30rem, 45vw, 46rem);
  background: #d8d4cb;
  border: 1px solid rgba(255, 247, 234, .16);
  border-radius: 8px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(.72) contrast(.94) brightness(.9);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: clamp(2.25rem, 4vw, 3.1rem) 0;
  background: var(--ink);
  color: rgba(255, 247, 234, .58);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 2.2vw, 2.2rem);
  align-items: center;
  justify-content: flex-end;
  font-size: .9rem;
  font-weight: 700;
}

.footer-nav a {
  color: inherit;
  transition: color .22s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--ivory);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s var(--ease-out-expo), transform .72s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  animation: heroReveal 0.95s var(--ease-out-expo) both;
}

.hero .hero-copy { animation-delay: 0.12s; }
.hero .hero-visual { animation-delay: 0.32s; }

.category-grid > .reveal:nth-child(2) { transition-delay: 0.08s; }
.category-grid > .reveal:nth-child(3) { transition-delay: 0.16s; }
.category-grid > .reveal:nth-child(4) { transition-delay: 0.24s; }

.service-grid > .reveal:nth-child(2) { transition-delay: 0.1s; }
.service-grid > .reveal:nth-child(3) { transition-delay: 0.2s; }

:focus-visible {
  outline: 3px solid rgba(245, 154, 11, .62);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --container: min(90vw, 980px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-top: 2.2rem;
  }

  .primary-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    min-height: 0;
  }

  .hero-copy {
    grid-column: 1 / span 4;
  }

  .hero-visual {
    grid-column: 5 / -1;
    grid-row: 1;
  }

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

  .category-card:nth-child(even) {
    margin-top: 0;
  }

  .store-story,
  .visit-panel {
    grid-template-columns: 1fr;
  }

  .store-story {
    grid-template-areas:
      "copy"
      "experience"
      "services";
  }

  .store-experience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 7.35rem;
  }

  :root {
    --container: min(90vw, 40rem);
  }

  .site-header {
    padding: 1.3rem 0 1rem;
  }

  .site-header.is-scrolled {
    padding: .9rem 5vw;
  }

  .brand {
    width: 6.2rem;
    height: 4.6rem;
  }

  .icon-button {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  h1 {
    max-width: 8ch;
    margin-bottom: 1.4rem;
    font-size: clamp(4rem, 17vw, 5.35rem);
  }

  .hero-intro {
    margin-bottom: 1.4rem;
  }

  .button-primary {
    width: 100%;
    min-height: 4.25rem;
  }

  .text-link {
    width: 100%;
  }

  .hero-visual {
    order: 2;
  }

  .hero-visual img {
    height: clamp(34rem, 128vw, 44rem);
    min-height: 0;
    object-fit: cover;
    object-position: 70% 68%;
    border-radius: 8px;
  }

  .section-heading {
    display: block;
  }

  .expanded-band {
    padding: clamp(3rem, 12vw, 4.5rem) 0;
  }

  .section-heading h2,
  .local-seo-copy h2,
  .story-copy h2,
  .visit-copy h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .local-seo-copy {
    display: block;
  }

  .category-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .category-card h3 {
    min-height: auto;
  }

  .category-card p {
    min-height: 0;
  }

  .store-story {
    gap: 1.5rem;
  }

  .store-photo img {
    min-height: 20rem;
  }

  .service-item {
    min-height: 0;
  }

  .visit-panel {
    padding: 1.25rem;
  }

  .visit-map {
    min-height: 24rem;
  }

  .category-grid > .reveal:nth-child(2),
  .category-grid > .reveal:nth-child(3),
  .category-grid > .reveal:nth-child(4),
  .service-grid > .reveal:nth-child(2),
  .service-grid > .reveal:nth-child(3) {
    transition-delay: 0s;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--clay);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--terracotta);
}

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

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

  .hero .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
