:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f6368;
  --line: #e6e6e2;
  --paper: #ffffff;
  --soft: #f5f4ef;
  --wash: #ece8dd;
  --accent: #d0a34a;
  --accent-2: #77b7c8;
  --radius: 8px;
  --header-height: 96px;
  --shadow: 0 22px 60px rgba(24, 24, 24, 0.12);
  font-family: "Maven Pro", "Avenir Next", Avenir, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.5;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(24, 24, 24, 0.08);
}

.header-inner {
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.quick-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.quick-nav a:hover,
.quick-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.order-button,
.ghost-button,
.hero-control,
.inventory-link {
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}

.order-button:hover,
.order-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible,
.hero-control:hover,
.hero-control:focus-visible,
.inventory-link:hover,
.inventory-link:focus-visible {
  transform: translateY(-1px);
}

.order-button:active,
.ghost-button:active,
.hero-control:active,
.inventory-link:active {
  transform: translateY(0) scale(0.98);
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.28) 48%, rgba(10, 10, 10, 0.08)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.76), rgba(10, 10, 10, 0) 44%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: min(12vh, 96px) 28px 86px;
  color: var(--paper);
}

.hero-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.95;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.order-button--large,
.ghost-button {
  min-height: 52px;
  padding: 0 26px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-control {
  min-width: 62px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
  cursor: pointer;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 104px 28px;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.copy-panel {
  max-width: 700px;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.copy-panel p {
  font-size: 1rem;
  margin: 0 0 18px;
}

.review-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 28px 96px;
  text-align: center;
}

.review-section h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.stars {
  color: var(--ink);
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

blockquote {
  margin: 0 auto;
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.products-section,
.location-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 28px;
}

.products-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 0;
  max-width: 620px;
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  min-height: 290px;
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 22px;
  background: var(--soft);
}

.product-card div {
  padding: 16px;
  display: grid;
  gap: 7px;
}

.product-card p {
  margin: 0;
  font-size: 0.92rem;
}

.product-card span {
  font-weight: 900;
}

.inventory-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  background: var(--wash);
  color: var(--ink);
  border: 1px solid var(--line);
}

.location-section {
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.store-card {
  border-radius: var(--radius);
  background: var(--soft);
  padding: 24px;
  min-height: 520px;
}

.store-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.store-card p {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 700;
}

.store-card a:not(.order-button) {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 10px;
}

.service-line {
  padding-top: 12px;
}

.hours-list {
  margin: 26px 0 0;
  display: grid;
  gap: 6px;
}

.hours-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
}

.hours-list dt {
  text-transform: uppercase;
  font-weight: 800;
}

.hours-list dd {
  margin: 0;
  font-weight: 800;
}

.map-panel {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wash);
  display: block;
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.site-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 28px 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 42px;
  align-items: center;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.4rem;
}

.site-footer img {
  object-fit: contain;
}

.site-footer nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 860px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    padding: 0 18px;
    grid-template-columns: auto 1fr;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .quick-nav {
    display: none;
  }

  .order-button {
    min-height: 42px;
    padding: 0 16px;
  }

  .hero {
    min-height: 78dvh;
  }

  .hero-content {
    padding: 44px 18px 84px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 5rem);
  }

  .hero-controls {
    left: 18px;
    right: auto;
    bottom: 22px;
  }

  .section-grid,
  .section-heading,
  .location-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .products-section,
  .location-section {
    padding: 66px 18px;
  }

  .review-section {
    padding: 32px 18px 66px;
  }

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

  .site-footer nav {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    grid-template-columns: 132px 1fr;
    grid-template-rows: auto;
  }

  .product-card img {
    height: 100%;
    min-height: 150px;
    padding: 14px;
  }

  .store-card,
  .map-panel,
  .map-panel img {
    min-height: 420px;
  }
}

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