:root {
  color-scheme: light;
  --ink: #16302e;
  --deep: #082321;
  --muted: #62716e;
  --paper: #fff9f0;
  --panel: #ffffff;
  --sun: #f7bc35;
  --mango: #f47c35;
  --berry: #d93f71;
  --ocean: #13869b;
  --mint: #a8dfc1;
  --line: rgba(22, 48, 46, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 249, 240, 0.93);
  box-shadow: 0 12px 34px rgba(8, 35, 33, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

nav {
  gap: clamp(10px, 2.4vw, 24px);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 35, 33, 0.86), rgba(8, 35, 33, 0.48) 44%, rgba(8, 35, 33, 0.05)),
    linear-gradient(0deg, rgba(8, 35, 33, 0.55), rgba(8, 35, 33, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 86px) clamp(36px, 8vw, 84px);
  color: white;
}

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

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.2rem, 9.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 900;
}

.button.primary {
  color: var(--deep);
  background: var(--sun);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.intro,
.section,
.visit,
footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.intro {
  padding-block: clamp(44px, 8vw, 86px);
  background: var(--deep);
  color: white;
}

.intro p {
  width: min(1040px, 100%);
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.section {
  padding-block: clamp(56px, 9vw, 112px);
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.menu-lead {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(8, 35, 33, 0.06);
}

.menu-lead h3 {
  max-width: 15ch;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.98;
}

.menu-lead p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 45px rgba(8, 35, 33, 0.07);
}

.swatch {
  min-height: 220px;
  background-size: cover;
}

.ice-blue {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.95), transparent 18%),
    linear-gradient(135deg, #dff8ff, #7bc7da 48%, #ffffff);
}

.strawberry {
  background:
    radial-gradient(circle at 65% 25%, rgba(255, 255, 255, 0.86), transparent 20%),
    linear-gradient(135deg, #ffedf1, #f15d80 46%, #fff3f6);
}

.rainbow {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(90deg, #ef4040, #f4be30, #56b870, #28a9d6, #8b61c2);
}

.machine {
  background:
    radial-gradient(circle at 52% 30%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, #67d7d2, #11879b 50%, #f8d68a);
}

figcaption {
  min-height: 110px;
  padding: 18px;
  color: var(--muted);
  font-weight: 720;
}

.subsection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 14px;
}

.subsection-heading h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
}

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

.favorite-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: var(--deep);
  box-shadow: 0 16px 45px rgba(8, 35, 33, 0.08);
}

.favorite-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.favorite-card .tag {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.86);
}

.rainbow-card {
  background:
    linear-gradient(140deg, rgba(8, 35, 33, 0.72), rgba(8, 35, 33, 0.24)),
    linear-gradient(90deg, #e93f45, #f2ba2f, #3dbd78, #198fcb);
}

.classic-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(135deg, #d93f71, #f47c35 52%, #f7bc35);
}

.build-card {
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(135deg, #13869b, #7253a0);
}

.tag {
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.flavor-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.flavor-column {
  padding: 24px;
  background: var(--panel);
}

.flavor-column h3 {
  max-width: 440px;
  margin-bottom: 18px;
}

.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flavor-list li {
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--ink);
  background: #f2eadf;
  font-size: 0.92rem;
  font-weight: 850;
}

.flavor-column:nth-child(2) .flavor-list li {
  background: #e8f4f3;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  background: #eaf7f1;
}

.story p:last-child {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 1px;
  align-self: stretch;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-list article {
  padding: 24px;
  background: var(--panel);
}

.feature-list p,
.review-grid p,
.visit-panel p,
footer p {
  margin: 0;
  color: var(--muted);
}

.feature-list h3 {
  margin-bottom: 10px;
}

.reviews {
  background: var(--paper);
}

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

.review-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: var(--deep);
}

.review-grid article:nth-child(2) {
  background: var(--ocean);
}

.review-grid article:nth-child(3) {
  background: #7253a0;
}

.review-grid article:nth-child(4) {
  background: var(--berry);
}

.review-grid p,
.review-grid span {
  color: white;
}

.review-grid p {
  font-size: 1.04rem;
  font-weight: 750;
}

.review-grid span {
  font-size: 0.88rem;
  font-weight: 900;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(28px, 6vw, 80px);
  padding-block: clamp(56px, 9vw, 112px);
  color: white;
  background: var(--deep);
}

.visit h2 {
  max-width: 10ch;
}

.visit-panel {
  display: grid;
  gap: 24px;
  align-content: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.visit-panel p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  background: #041816;
  color: white;
}

footer p:first-child {
  color: white;
  font-weight: 900;
}

@media (max-width: 980px) {
  .goodies-grid,
  .favorite-menu,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .favorite-menu .favorite-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 35, 33, 0.86), rgba(8, 35, 33, 0.36)),
      linear-gradient(0deg, rgba(8, 35, 33, 0.72), rgba(8, 35, 33, 0.04) 50%);
  }

  .about,
  .flavor-board,
  .menu-lead,
  .subsection-heading,
  .visit {
    grid-template-columns: 1fr;
  }

  .subsection-heading {
    display: grid;
    align-items: start;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
  }

  .brand {
    max-width: 160px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
  }

  nav {
    gap: 9px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .button {
    width: 100%;
  }

  .goodies-grid,
  .favorite-menu,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .favorite-menu .favorite-card:last-child {
    grid-column: auto;
  }
}
