:root {
  --ink: #211712;
  --muted: #766a62;
  --cream: #fff8ed;
  --paper: #f5ead8;
  --white: #ffffff;
  --line: #e3d2bd;
  --coffee: #5a3425;
  --espresso: #261612;
  --rose: #d95c71;
  --blue: #1b9cc0;
  --mint: #2f826d;
  --gold: #b77833;
  --shadow: 0 22px 60px rgba(55, 35, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(27, 156, 192, 0.08), transparent 34%),
    linear-gradient(180deg, var(--cream), var(--paper));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
select,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 248, 237, 0.92);
  border-bottom: 1px solid rgba(227, 210, 189, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
}

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

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

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--coffee);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  background: rgba(90, 52, 37, 0.08);
}

.icon-button,
.primary-action,
.secondary-action,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.icon-button,
.primary-action,
.checkout-button {
  background: var(--espresso);
  color: var(--white);
}

.secondary-action {
  border: 1px solid rgba(90, 52, 37, 0.22);
  background: rgba(255, 255, 255, 0.6);
  color: var(--coffee);
}

.secondary-action.dark {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.icon-button {
  padding: 0 14px;
}

.icon-button svg,
.primary-action svg,
.secondary-action svg,
.checkout-button svg,
.round-icon svg,
.event-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.64fr);
  gap: clamp(22px, 4vw, 48px);
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) 0 34px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 9vw, 112px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

p {
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-actions a {
  padding: 0 18px;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}

.social-proof div {
  padding: 18px 18px 0 0;
}

.social-proof dt {
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.social-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-order,
.section-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.quick-order {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.panel-heading,
.section-heading {
  display: grid;
  gap: 8px;
}

.panel-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.panel-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(217, 92, 113, 0.13);
  color: #9d2f44;
  font-size: 12px;
  font-weight: 900;
}

.pickup-row {
  display: grid;
  gap: 8px;
}

.customer-row {
  display: grid;
  gap: 8px;
}

.pickup-row label,
.customer-row label,
.cart-title,
.cart-total {
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}

.featured-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(47, 130, 109, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(47, 130, 109, 0.12), rgba(27, 156, 192, 0.1));
}

.featured-order strong,
.featured-order span {
  display: block;
}

.featured-order span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.round-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white);
}

.cart-box {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: var(--espresso);
  color: var(--white);
}

.cart-title,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.text-button {
  border: 0;
  background: transparent;
  color: #f0c5cc;
  font-size: 13px;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 62px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-items li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  color: #f8efe4;
  font-size: 14px;
}

.cart-items .empty-cart {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.qty-badge {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.checkout-button {
  width: 100%;
}

.photo-strip {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.photo-strip img {
  width: 100%;
  height: clamp(260px, 48vw, 520px);
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.strip-note {
  position: absolute;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: grid;
  gap: 4px;
  max-width: 320px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.92);
  color: var(--ink);
}

.strip-note span {
  color: var(--muted);
}

.section-shell,
.split-band {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}

.section-shell {
  padding: clamp(22px, 4vw, 38px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--coffee);
  font-weight: 800;
}

.filter.active {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--white);
}

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

.menu-item {
  display: grid;
  gap: 14px;
  min-height: 218px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.menu-top strong {
  font-size: 19px;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(27, 156, 192, 0.1);
  color: #13718c;
  font-size: 12px;
  font-weight: 800;
}

.add-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-weight: 900;
}

.add-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: var(--mint);
  color: var(--white);
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 8px;
  background: var(--espresso);
  color: var(--white);
}

.split-band p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.event-list svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: #f0bd70;
}

.event-list span {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.request-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.request-grid svg {
  width: 30px;
  height: 30px;
  color: var(--rose);
}

.request-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.merch-grid article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.merch-art {
  display: block;
  height: 164px;
  border-radius: 8px;
  border: 1px solid rgba(90, 52, 37, 0.14);
  background-color: var(--cream);
}

.cup-art {
  background:
    radial-gradient(circle at 50% 34%, rgba(217, 92, 113, 0.55) 0 18%, transparent 19%),
    linear-gradient(100deg, transparent 35%, rgba(255,255,255,.55) 36% 45%, transparent 46%),
    linear-gradient(180deg, #26201e 0 18%, #2f826d 19% 100%);
  clip-path: polygon(30% 8%, 70% 8%, 62% 96%, 38% 96%);
}

.tee-art {
  background:
    radial-gradient(circle at 50% 34%, #fff8ed 0 9%, transparent 10%),
    linear-gradient(135deg, transparent 0 26%, #d95c71 27% 43%, transparent 44%),
    linear-gradient(225deg, transparent 0 26%, #d95c71 27% 43%, transparent 44%),
    linear-gradient(180deg, #2f826d, #1b9cc0);
  clip-path: polygon(18% 18%, 35% 8%, 65% 8%, 82% 18%, 71% 42%, 69% 96%, 31% 96%, 29% 42%);
}

.sticker-art {
  background:
    radial-gradient(circle at 50% 50%, #261612 0 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, #fff8ed 0 43%, transparent 44%),
    conic-gradient(from 20deg, #1b9cc0, #d95c71, #b77833, #2f826d, #1b9cc0);
}

.merch-grid strong,
.merch-grid small {
  display: block;
}

.merch-grid small {
  color: var(--muted);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--espresso);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(150%);
  transition: transform 220ms ease;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .split-band {
    grid-template-columns: 1fr;
  }

  .quick-order {
    min-width: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small,
  .header-order span {
    display: none;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    padding-top: 28px;
  }

  .social-proof {
    grid-template-columns: 1fr;
  }

  .social-proof div {
    padding-right: 0;
  }

  .photo-strip,
  .section-shell,
  .split-band {
    width: min(100% - 24px, 1180px);
  }

  .strip-note {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .menu-grid,
  .merch-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .panel-heading {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(46px, 17vw, 72px);
  }
}
