:root {
  --cream: #fff8ec;
  --paper: #fffdf8;
  --butter: #ffd978;
  --peach: #f6a97d;
  --berry: #7e2f45;
  --cocoa: #3b2519;
  --muted: #7d6254;
  --line: rgba(59, 37, 25, 0.14);
  --shadow: 0 24px 70px rgba(85, 45, 24, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cocoa);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 217, 120, 0.45), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(246, 169, 125, 0.35), transparent 28rem),
    var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 236, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--berry);
  color: white;
  font-family: Fraunces, serif;
  box-shadow: 0 10px 20px rgba(126, 47, 69, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}

.nav-links a:not(.button) {
  color: var(--muted);
  text-decoration: none;
}

.hero, .section, .footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 54px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--berry);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3, h4 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 5.9rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.35rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--berry);
  box-shadow: 0 12px 22px rgba(126, 47, 69, 0.22);
}

.button.secondary {
  background: transparent;
  color: var(--berry);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button.disabled,
.button[aria-disabled="true"] {
  background: #c5a797;
  border-color: #c5a797;
  color: #fffdf8;
  box-shadow: none;
  cursor: not-allowed;
}

.note {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card, .product-card, .pickup-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 16px;
  transform: rotate(1.5deg);
}

.photo-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: rgba(59, 37, 25, 0.55);
  font-weight: 800;
  border: 2px dashed rgba(126, 47, 69, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 217, 120, 0.55), rgba(246, 169, 125, 0.45)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.3) 0 10px, rgba(255,255,255,0.08) 10px 20px);
}

.photo-placeholder.large {
  min-height: 430px;
}

.hero-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(126, 47, 69, 0.16);
}

.portrait-card {
  transform: rotate(1.2deg);
}

.featured-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 8px 6px;
}

.featured-caption span,
.product-card p,
.section-heading p,
.pickup-card p,
.steps,
.allergy-note {
  color: var(--muted);
}

.section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 28px;
}

.menu-groups {
  display: grid;
  gap: 34px;
}

.menu-group {
  display: grid;
  gap: 16px;
}

.group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.group-heading span {
  color: var(--berry);
  font-weight: 900;
}

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

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

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

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.product-photo {
  width: 100%;
  min-height: 210px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.product-card .photo-placeholder {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.product-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-body p {
  margin-bottom: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--berry);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.steps {
  margin: 0;
  padding-left: 24px;
  font-size: 1.05rem;
}

.steps li + li { margin-top: 16px; }

.pickup-section {
  padding-top: 42px;
}

.pickup-card {
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.pickup-card h3 {
  margin-bottom: 8px;
}

.address-details {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.address-details[hidden] {
  display: none;
}

.address-text {
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--cocoa);
  text-align: left;
  cursor: pointer;
}

.address-text:hover,
.address-text:focus-visible {
  color: var(--berry);
  text-decoration: underline;
}

.address-hint {
  margin: -6px 0 0;
  font-size: 0.92rem;
}

.address-details iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 20px;
  background: var(--cream);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 34px;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .product-grid.compact, .product-grid.compact.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 48px; gap: 32px; }
  .hero-card { transform: none; }
  .product-grid,
  .product-grid.compact,
  .product-grid.compact.two,
  .product-grid.compact.three {
    grid-template-columns: 1fr;
  }
  .photo-placeholder.large { min-height: 320px; }
  .footer { flex-direction: column; }
  .pickup-card { grid-template-columns: 1fr; }
  .pickup-card .button { width: 100%; }
}

@media (max-width: 520px) {
  .hero, .section, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 3.7rem);
    letter-spacing: -0.055em;
  }

  h2 { font-size: 2.35rem; }
  h3 { font-size: 1.7rem; }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .group-heading {
    align-items: flex-start;
  }

  .group-heading span {
    max-width: 58%;
    text-align: right;
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .product-card,
  .pickup-card,
  .cart-panel {
    border-radius: 24px;
  }

  .product-photo,
  .photo-placeholder {
    min-height: 200px;
  }

  .product-body,
  .cart-panel,
  .pickup-card {
    padding: 20px;
  }

  .add-button {
    min-width: 116px;
  }

  .address-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .address-details iframe {
    min-height: 280px;
  }
}


.payment-success {
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 16px 22px;
  border-radius: 18px;
  background: #edf8ee;
  border: 1px solid rgba(59, 116, 64, 0.22);
  color: #275b2c;
  font-weight: 700;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.add-button {
  appearance: none;
  cursor: pointer;
}

.cart-panel {
  position: sticky;
  top: 92px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.cart-panel h3 {
  margin-bottom: 10px;
}

.cart-help,
.cart-empty,
.cart-fineprint,
.cart-status {
  color: var(--muted);
  font-size: 0.94rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--berry);
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.quantity-controls span {
  min-width: 22px;
  text-align: center;
  color: var(--cocoa);
  font-weight: 900;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-top: 2px solid var(--line);
  color: var(--muted);
}

.cart-total-row strong {
  color: var(--berry);
  font-size: 1.5rem;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.text-button {
  display: block;
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-status[data-tone="success"] {
  color: #2f7437;
}

.cart-status[data-tone="error"] {
  color: #a12c2c;
}

@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
    order: -1;
  }
}
