:root {
  color-scheme: light;
  --ink: #201421;
  --muted: #655b67;
  --paper: #fff7db;
  --surface: #fffdf6;
  --banana: #ffd447;
  --melon: #ff6f59;
  --mint: #37b487;
  --blue: #3d74d7;
  --grape: #7a4cc2;
  --line: #2b2030;
  --soft-line: rgba(32, 20, 33, 0.16);
  --shadow: 9px 9px 0 #201421;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 111, 89, 0.24), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(61, 116, 215, 0.18), transparent 24%),
    linear-gradient(135deg, #fff7db 0%, #fff2c2 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 247, 219, 0.95);
  border-bottom: 3px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 68px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--melon);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--line);
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 52px;
}

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

.brand strong {
  font-size: 1.05rem;
}

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

.site-nav {
  display: flex;
  gap: 10px;
}

.site-nav a,
.pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--line);
  font-weight: 800;
  padding: 9px 13px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--banana);
  outline: none;
  transform: translate(-1px, -1px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  min-height: calc(100vh - 78px);
  padding: clamp(40px, 7vw, 86px) clamp(18px, 5vw, 68px) clamp(28px, 5vw, 60px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  color: var(--grape);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  margin-bottom: 22px;
  max-width: 760px;
}

.lede,
.section-heading p,
.wholesale-card p,
.fine-print li,
.product-card p {
  color: var(--muted);
  line-height: 1.58;
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.33rem);
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.call-button {
  background: var(--mint);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--line);
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  text-decoration: none;
}

.call-button:hover,
.call-button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translate(-2px, -2px);
  outline: none;
}

.pill {
  background: var(--banana);
  font-size: 0.9rem;
}

.hero-photo {
  border: 4px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transform: rotate(1.5deg);
}

.hero-photo img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-badge {
  background: var(--surface);
  border: 3px solid var(--line);
  bottom: 18px;
  left: 18px;
  max-width: min(330px, calc(100% - 36px));
  padding: 12px 14px;
  position: absolute;
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 3px;
}

.menu,
.wholesale,
.location,
.fine-print {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 68px);
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  margin-bottom: 28px;
}

.section-heading h2,
.wholesale h2,
.fine-print h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 0;
}

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

.product-card {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--line);
  overflow: hidden;
}

.product-card.pop {
  background: #fff1f0;
}

.product-card.blue {
  background: #eff5ff;
}

.product-card img {
  aspect-ratio: 1.12 / 1;
  border-bottom: 3px solid var(--line);
  object-fit: cover;
  width: 100%;
}

.card-copy {
  padding: 18px;
}

.tag {
  background: var(--banana);
  border: 2px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
  padding: 6px 9px;
}

.product-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.price {
  color: var(--melon);
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
  margin: 16px 0 7px;
}

.product-card small {
  color: var(--muted);
  font-weight: 800;
}

.wholesale {
  background: var(--blue);
  border-block: 4px solid var(--line);
  color: #fffdf6;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.wholesale .eyebrow {
  color: #fdf2bd;
}

.wholesale-card p {
  color: #4c3f52;
}

.wholesale-card {
  align-items: center;
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--line);
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  padding: 16px;
}

.wholesale-card img {
  aspect-ratio: 1 / 1;
  border: 3px solid var(--line);
  object-fit: cover;
  width: 100%;
}

.text-link {
  background: var(--melon);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--line);
  display: inline-flex;
  font-weight: 900;
  margin-top: 8px;
  padding: 12px 14px;
  text-decoration: none;
}

.location {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
}

.location h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.98;
  margin-bottom: 0;
}

.location-card {
  background: #fff1f0;
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--line);
  padding: clamp(20px, 4vw, 32px);
}

.location-card strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.location-card p {
  color: #4c3f52;
  line-height: 1.58;
  margin-bottom: 0;
}

.fine-print {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
}

.fine-print ul {
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--line);
  list-style-position: inside;
  margin: 0;
  padding: 20px;
}

.fine-print li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .wholesale,
  .location,
  .fine-print {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-photo {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav a {
    text-align: center;
  }

  h1 {
    font-size: 2.75rem;
  }

  .call-button,
  .pill {
    width: 100%;
  }

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