:root {
  color-scheme: light;
  --ink: #121317;
  --muted: #667085;
  --line: #d9dde5;
  --paper: #f8fafc;
  --white: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0b514d;
  --coral: #e4574f;
  --gold: #d19b3d;
  --shadow: 0 18px 50px rgba(24, 31, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.locked {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(217, 221, 229, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.cart-button,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links {
  gap: 26px;
  color: #363b45;
  font-weight: 700;
}

.cart-button {
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 18, 0.86) 0%, rgba(10, 14, 18, 0.64) 42%, rgba(10, 14, 18, 0.08) 100%);
}

.hero-content {
  position: relative;
  width: min(640px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 88px);
  padding: 80px 0 110px;
  color: var(--white);
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #80e0d5;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.soft {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.button.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

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

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip span,
.section-heading p,
.flavor-board p,
.visit-section p,
.cart-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.shop-section,
.flavor-section,
.visit-section {
  padding: 72px clamp(16px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 0;
}

.fulfillment-toggle,
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fulfillment-toggle {
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.fulfillment-toggle button,
.filter {
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #3f4652;
  font-weight: 800;
  cursor: pointer;
}

.fulfillment-toggle button {
  padding: 0 14px;
}

.fulfillment-toggle .active,
.filter.active {
  background: var(--ink);
  color: var(--white);
}

.filter-row {
  margin-bottom: 24px;
}

.filter {
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.product-card {
  display: grid;
  min-height: 380px;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.product-art {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.15), rgba(228, 87, 79, 0.12)),
    #eef4f3;
}

.pack {
  width: 88px;
  height: 118px;
  border: 1px solid rgba(18, 19, 23, 0.12);
  border-radius: 8px;
  background: linear-gradient(160deg, var(--pack), #ffffff 62%);
  box-shadow: 0 18px 28px rgba(18, 19, 23, 0.16);
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: #edf7f5;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.product-card p {
  color: var(--muted);
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 20px;
  font-weight: 800;
}

.add-button {
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.flavor-section {
  background: #eef2f6;
}

.flavor-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.flavor-board article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.swatch {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.swatch.mint {
  background: #0f766e;
}

.swatch.berry {
  background: #b33f62;
}

.swatch.classic {
  background: #d19b3d;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 40px;
  background: var(--white);
}

.hours-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: var(--muted);
}

.site-footer {
  padding: 24px clamp(16px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.age-gate,
.scrim {
  position: fixed;
  inset: 0;
}

.age-gate {
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 14, 18, 0.78);
  backdrop-filter: blur(18px);
}

.age-gate.hidden {
  display: none;
}

.age-panel {
  width: min(460px, 100%);
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.age-panel h1 {
  color: var(--ink);
  font-size: 38px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 42;
  display: grid;
  width: min(420px, 100%);
  height: 100vh;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform 180ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.scrim {
  z-index: 40;
  display: none;
  background: rgba(10, 14, 18, 0.42);
}

.scrim.open {
  display: block;
}

.cart-header,
.cart-footer {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cart-header h2 {
  font-size: 28px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  overflow: auto;
  padding: 14px 20px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line p {
  margin-bottom: 4px;
  font-weight: 800;
}

.cart-line span {
  color: var(--muted);
  font-size: 14px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  cursor: pointer;
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 18px;
}

.empty-cart {
  padding: 32px 0;
  color: var(--muted);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 14, 18, 0.88), rgba(10, 14, 18, 0.5));
  }

  .product-grid,
  .flavor-board,
  .service-strip,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .cart-button span {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 42px;
  }

  .product-card {
    min-height: 340px;
  }

  .hours-list div,
  .product-footer {
    align-items: start;
    flex-direction: column;
  }
}
