:root {
  --ink: #1f1b18;
  --muted: #6d6258;
  --paper: #fff8e1;
  --sun: #ffd23f;
  --red: #d33d2f;
  --leaf: #2f8f45;
  --lime: #b8d94f;
  --sky: #dff8ff;
  --white: #fffdf7;
  --line: rgba(31, 27, 24, 0.16);
  --shadow: 0 18px 50px rgba(31, 27, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(47, 143, 69, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf7 0%, #fff8e1 48%, #eefad8 100%);
  background-size: 42px 42px, auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 9px clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 225, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 150px;
  padding: 5px 9px 7px;
  color: var(--red);
  text-decoration: none;
  background: var(--sun);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

.brand-main {
  font-size: 24px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-script {
  margin-top: -2px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 0.9;
  color: #8f2a27;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 9px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 8px;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  flex: 0 0 3px;
  width: 24px;
  height: 3px;
  margin: 3px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 168px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: 0 clamp(18px, 5vw, 72px) 22px;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}

.hero-copy,
.hero-visual,
.split > *,
.builder-section > *,
.visit-section > * {
  min-width: 0;
}

.hero h1,
.section h2,
.builder-copy h2,
.visit-section h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 7vw, 94px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 {
  max-width: none;
  font-size: 50px;
}

.section h2,
.builder-copy h2,
.visit-section h2 {
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.section h2,
.builder-copy h2,
.visit-section h2 {
  font-size: clamp(34px, 5vw, 66px);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero h1 {
    font-size: 42px;
  }
}

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

.hero-text,
.section p,
.builder-copy p,
.visit-section p {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button,
.cookie-bar button,
.chip,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.cookie-bar button:hover,
.chip:hover,
.filter:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

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

.secondary {
  background: var(--sun);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  object-fit: cover;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.main-photo {
  right: 8%;
  bottom: 0;
  width: min(58vw, 430px);
  height: 480px;
}

.small-photo {
  width: 240px;
  height: 250px;
}

.small-photo.top {
  left: 0;
  top: 26px;
  transform: rotate(-4deg);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--ink);
  background: var(--leaf);
  color: white;
}

.intro-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 900;
  border-right: 2px solid var(--ink);
}

.intro-strip span:last-child {
  border-right: 0;
}

.section,
.builder-section,
.visit-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
}

.note {
  padding: 14px 16px;
  color: var(--ink) !important;
  background: var(--sky);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.photo-pair {
  display: grid;
  grid-template-columns: minmax(260px, 520px);
  gap: 14px;
  align-items: end;
  justify-content: end;
}

.photo-pair img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
}

.menu-section {
  background: #fff14f;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

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

.menu-item,
blockquote,
.juice-card {
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(31, 27, 24, 0.9);
}

.menu-item {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-item h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1;
}

.menu-item p {
  margin: 0 0 18px;
  font-size: 15px;
}

.menu-item strong {
  font-size: 26px;
  color: var(--red);
}

.featured {
  background: var(--leaf);
  color: white;
}

.featured p,
.featured strong {
  color: white;
}

.custom-card {
  background: var(--sky);
}

.pill {
  align-self: flex-start;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.pill.green {
  background: var(--lime);
}

.builder-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}

.builder-total {
  display: inline-grid;
  gap: 2px;
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
}

.builder-total span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-total strong {
  font-size: 34px;
  color: var(--red);
}

.builder {
  display: grid;
  gap: 22px;
}

.sandwich-preview {
  position: relative;
  min-height: 300px;
  padding: 56px 24px;
  background: #dff8ff;
  border: 3px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.sandwich-preview::before,
.sandwich-preview::after {
  content: "🥕 🍋 🥑 🍍 🍉";
  position: absolute;
  left: 20px;
  right: 20px;
  color: rgba(31, 27, 24, 0.5);
  font-size: 28px;
  word-spacing: 20px;
}

.sandwich-preview::before {
  top: 16px;
}

.sandwich-preview::after {
  bottom: 16px;
}

.bread,
.layer {
  width: min(92%, 560px);
  margin: 0 auto;
  border: 2px solid var(--ink);
}

.bread {
  height: 78px;
  background: #f5b63d;
}

.top-bread {
  border-radius: 90px 90px 22px 22px;
}

.bottom-bread {
  border-radius: 20px 20px 80px 80px;
}

.layer {
  height: 0;
  opacity: 0;
  transform: scaleX(0.86);
  transition: height 180ms ease, opacity 180ms ease;
}

.layer.active {
  height: var(--layer-height, 30px);
  opacity: 1;
}

.lettuce {
  background: repeating-linear-gradient(90deg, #2f8f45, #2f8f45 18px, #b8d94f 18px, #b8d94f 30px);
}

.protein {
  background: #9d4a29;
}

.sauce {
  background: #d33d2f;
}

.extras {
  background: #ffe77a;
}

.ingredient-controls,
.juice-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.filter {
  background: var(--white);
  font-size: 14px;
}

.chip.active,
.filter.active {
  background: var(--leaf);
  color: white;
}

.juice-section {
  background: #eaf7d0;
  border-bottom: 2px solid var(--ink);
}

.juice-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.juice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  min-height: 104px;
}

.juice-card span {
  grid-row: span 2;
  font-size: 34px;
}

.juice-card b {
  font-size: 19px;
}

.juice-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.juice-card.is-hidden {
  display: none;
}

.proof-section {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 8px 0 18px;
  color: var(--ink) !important;
  font-size: 20px !important;
  line-height: 1.2;
}

.stars {
  color: #f5b63d;
  font-size: 18px;
  letter-spacing: 0;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

blockquote cite {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  background: #eaf7d0;
  border-bottom: 2px solid var(--ink);
}

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

.faq-item {
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(31, 27, 24, 0.9);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.visit-section img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.details {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.details div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.details dt {
  font-weight: 900;
}

.details dd {
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 26px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--ink);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--sun);
  font-weight: 900;
}

.cookie-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  padding: 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 14px;
}

.cookie-bar button {
  min-height: 38px;
  padding: 8px 14px;
  background: var(--sun);
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero,
  .split,
  .builder-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

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

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

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

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 18px;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: max(18px, calc(100vw - 372px));
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transform: translateY(-50%);
  }

  .nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding: 8px 18px 14px;
    background: rgba(255, 248, 225, 0.98);
    border-bottom: 2px solid var(--ink);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:hover {
    border-color: transparent;
    border-bottom-color: var(--line);
  }

  .section h2,
  .builder-copy h2,
  .visit-section h2 {
    max-width: calc(100vw - 52px);
    font-size: 38px;
    overflow-wrap: normal;
  }

  .hero h1 {
    max-width: calc(100vw - 52px);
    font-size: 30px;
  }

  .hero-copy {
    max-width: calc(100vw - 52px);
  }

  .hero-text {
    max-width: calc(100vw - 52px);
  }

  .hero-visual {
    min-height: 490px;
    overflow: hidden;
  }

  .main-photo {
    right: 0;
    width: min(76%, 300px);
    height: 440px;
  }

  .small-photo {
    width: min(52%, 210px);
    height: 230px;
  }

  .intro-strip {
    grid-template-columns: 1fr 1fr;
  }

  .intro-strip span:nth-child(2n) {
    border-right: 0;
  }

  .menu-grid,
  .juice-board,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .photo-pair {
    grid-template-columns: 1fr;
  }

  .photo-pair img {
    height: 340px;
  }

  .details div {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
  }
}
