:root {
  --ink: #201814;
  --muted: #6f625b;
  --paper: #fffaf1;
  --cream: #fff1c7;
  --coral: #f05b54;
  --berry: #b32355;
  --mint: #80b969;
  --blue: #2f7d9b;
  --chocolate: #4b2a1f;
  --line: rgba(32, 24, 20, 0.16);
  --shadow: 0 20px 60px rgba(32, 24, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
select {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
}

.site-nav {
  gap: clamp(14px, 3vw, 34px);
  font-weight: 700;
  justify-content: center;
}

.site-nav a,
.header-action {
  min-height: 38px;
  padding: 8px 0;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.header-action {
  justify-self: end;
  justify-content: center;
  min-width: 82px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 80px) 72px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 14, 11, 0.78) 0%, rgba(28, 14, 11, 0.42) 38%, rgba(28, 14, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(32, 24, 20, 0.64) 0%, rgba(32, 24, 20, 0.12) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd477;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 11vw, 10.5rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(28, 14, 11, 0.46);
  backdrop-filter: blur(14px);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ff06b;
  box-shadow: 0 0 0 6px rgba(127, 240, 107, 0.18);
  flex: 0 0 auto;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.intro p:last-child {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

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

.flavor-card,
.format-item,
.visit-panel,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.flavor-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
}

.flavor-card p,
.format-item p,
.order-band p,
.visit p {
  color: var(--muted);
}

.flavor-card strong {
  font-size: 1.2rem;
}

.scoop {
  width: 78px;
  height: 78px;
  border-radius: 50% 50% 46% 54%;
  box-shadow: inset -12px -14px 0 rgba(32, 24, 20, 0.12);
}

.scoop-strawberry {
  background: radial-gradient(circle at 28% 25%, #ffd0d0 0 12%, #f05b54 13% 58%, #b32355 100%);
}

.scoop-pistachio {
  background: radial-gradient(circle at 32% 24%, #e7ffd0 0 13%, #80b969 14% 64%, #496f3e 100%);
}

.scoop-chocolate {
  background: radial-gradient(circle at 28% 22%, #b87755 0 12%, #6b3a29 13% 62%, #2f1711 100%);
}

.scoop-mango {
  background: radial-gradient(circle at 30% 24%, #fff2a5 0 12%, #f3a63f 13% 60%, #d85137 100%);
}

.formats {
  padding-top: 20px;
}

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

.format-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.format-item span {
  color: var(--blue);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
}

.format-item p {
  margin-bottom: 0;
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  margin: clamp(20px, 4vw, 48px) 0;
  padding: clamp(48px, 8vw, 86px) clamp(20px, 6vw, 80px);
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.order-band h2 {
  color: var(--berry);
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  background: #fffaf7;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0 12px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: center;
}

.visit-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--chocolate);
  color: #fff;
}

.visit-panel span {
  color: #ffd477;
  font-weight: 800;
}

.visit-panel strong {
  font-size: 2rem;
  line-height: 1.1;
}

.visit-panel a {
  color: #9edcff;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .intro,
  .order-band,
  .visit {
    grid-template-columns: 1fr;
  }

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

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

  .brand span:last-child {
    max-width: 112px;
    line-height: 1.05;
  }

  .hero {
    min-height: 94vh;
    padding: 104px 18px 88px;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5.25rem);
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero-status {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .section {
    width: min(100% - 32px, 1120px);
  }

  .flavor-grid,
  .format-item {
    grid-template-columns: 1fr;
  }

  .flavor-card {
    min-height: 230px;
  }

  .order-band {
    padding-inline: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}
