:root {
  --ink: #251910;
  --ink-soft: #68513f;
  --paper: #fff8ea;
  --vanilla: #fff0c9;
  --cream: #fffdf6;
  --strawberry: #d64045;
  --strawberry-dark: #9f2529;
  --pistachio: #607b3b;
  --mint: #bde0c1;
  --blueberry: #394b8f;
  --caramel: #c4893e;
  --line: rgba(37, 25, 16, 0.15);
  --shadow: 0 24px 70px rgba(37, 25, 16, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  width: 1.05em;
  height: 1.05em;
  stroke-width: 2.2;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 0.85rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--cream);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 234, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(37, 25, 16, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.6vw, 1.8rem);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a,
.footer-links a,
.outlet-card a,
.order-card a,
.contact-panel a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.outlet-card a:hover,
.contact-panel a:hover {
  color: var(--strawberry);
}

.nav-toggle,
.header-action,
.btn,
.tab-button {
  cursor: pointer;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.header-action:hover {
  background: var(--cream);
  color: var(--strawberry-dark);
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-action:hover {
  background: var(--strawberry);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
}

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

.hero-image {
  object-fit: cover;
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(25, 14, 8, 0.86) 0%, rgba(25, 14, 8, 0.56) 45%, rgba(25, 14, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(25, 14, 8, 0.82) 0%, rgba(25, 14, 8, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100% - 2rem));
  padding: 9rem 0 11rem clamp(1rem, 6vw, 5.5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--strawberry);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow,
.story-copy .eyebrow {
  color: #ffd36d;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4.3rem, 10vw, 10.5rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 246, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--strawberry);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--strawberry-dark);
}

.btn-secondary {
  background: rgba(255, 253, 246, 0.12);
  color: var(--cream);
  border-color: rgba(255, 253, 246, 0.56);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--strawberry-dark);
}

.btn:focus-visible,
.site-nav a:focus-visible,
.header-action:focus-visible,
.nav-toggle:focus-visible,
.tab-button:focus-visible,
.outlet-card a:focus-visible,
.contact-panel a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(214, 64, 69, 0.42);
  outline-offset: 4px;
}

.hero-board {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(720px, calc(100% - 2rem));
  border: 1px solid rgba(255, 253, 246, 0.32);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.1);
  backdrop-filter: blur(16px);
}

.hero-board div {
  min-width: 0;
  padding: 1rem;
}

.hero-board div + div {
  border-left: 1px solid rgba(255, 253, 246, 0.22);
}

.hero-board strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1;
}

.hero-board span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 253, 246, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
}

.marquee-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: var(--blueberry);
  color: var(--cream);
}

.marquee-band span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 253, 246, 0.22);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper);
}

.intro-copy p,
.section-heading p,
.story-copy p,
.contact-section p {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.intro-copy p:not(.eyebrow),
.section-heading p,
.story-copy p {
  margin: 1.2rem 0 0;
}

.intro-gallery {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0.9rem;
  min-height: 560px;
}

.intro-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-gallery img:nth-child(2) {
  margin-top: 4rem;
}

.sizes-section {
  background: linear-gradient(180deg, var(--vanilla), #ffe6b0);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.2rem;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.size-card,
.flavor-card,
.outlet-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.9);
}

.size-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.size-card.featured {
  background: var(--strawberry);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.size-card span {
  color: var(--pistachio);
  font-weight: 850;
  text-transform: uppercase;
}

.size-card.featured span,
.size-card.featured p {
  color: rgba(255, 253, 246, 0.84);
}

.size-card strong {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1;
}

.size-card p {
  margin: auto 0 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.flavors-section {
  background: var(--paper);
}

.flavor-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.82);
}

.tab-button {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease;
}

.tab-button.active,
.tab-button:hover {
  background: var(--blueberry);
  color: var(--cream);
}

.flavor-grid {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.flavor-grid.active {
  display: grid;
}

.flavor-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flavor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 25, 16, 0.12);
}

.flavor-card span {
  color: var(--strawberry-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flavor-card h3 {
  margin-top: 0.9rem;
}

.flavor-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  background: var(--ink);
  color: var(--cream);
}

.story-media {
  min-height: 420px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.story-copy p {
  color: rgba(255, 253, 246, 0.78);
}

.story-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.story-list div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 246, 0.22);
}

.story-list strong,
.story-list span {
  display: block;
}

.story-list strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.story-list span {
  margin-top: 0.25rem;
  color: rgba(255, 253, 246, 0.72);
}

.outlets-section {
  background: var(--paper);
}

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

.outlet-card {
  overflow: hidden;
}

.outlet-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.outlet-card div {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 1.25rem;
}

.outlet-card span {
  color: var(--pistachio);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.outlet-card h3 {
  margin-top: 0.8rem;
}

.outlet-card p {
  margin: 0.8rem 0 1rem;
  color: var(--ink-soft);
}

.outlet-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--strawberry-dark);
  font-weight: 850;
}

.gallery-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr 1fr;
  gap: 0.35rem;
  padding: 0.35rem;
  background: var(--ink);
}

.gallery-section img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-section img:nth-child(2) {
  height: 520px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--blueberry);
  color: var(--cream);
}

.contact-section .eyebrow {
  color: #ffd36d;
}

.contact-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
}

.contact-panel a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-panel a:hover {
  background: var(--vanilla);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--cream);
}

.site-footer div:first-child {
  display: grid;
  gap: 0.2rem;
}

.site-footer span {
  color: rgba(255, 253, 246, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 850;
}

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

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: 76px 1rem auto 1rem;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.9rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--vanilla);
  }

  .header-action {
    justify-self: end;
  }

  .intro-section,
  .story-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .section-heading .eyebrow {
    margin-bottom: -0.8rem;
  }

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

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

  .story-band {
    min-height: 0;
  }

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

  .gallery-section img,
  .gallery-section img:nth-child(2) {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 0.7rem;
    padding: 0.8rem 1rem;
  }

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

  .brand-name {
    font-size: 1.04rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: 100%;
    padding: 7.5rem 1rem 14.5rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(4rem, 22vw, 6.6rem);
  }

  h2 {
    max-width: 11ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-board {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-board div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 246, 0.22);
  }

  .marquee-band {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .marquee-band span {
    white-space: nowrap;
  }

  .section {
    padding: 4rem 1rem;
  }

  .intro-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intro-gallery img {
    height: 310px;
  }

  .intro-gallery img:nth-child(2) {
    margin-top: 0;
  }

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

  .size-card,
  .flavor-card {
    min-height: 0;
  }

  .flavor-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .story-copy {
    padding: 4rem 1rem;
  }

  .story-media {
    min-height: 320px;
  }

  .outlet-card img {
    height: 230px;
  }

  .outlet-card div {
    min-height: 0;
  }

  .gallery-section {
    grid-template-columns: 1fr;
  }

  .gallery-section img,
  .gallery-section img:nth-child(2) {
    height: 280px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

