/* ==========================================================================
   Der Linsburger — custom styles that layer over Bootstrap 5
   Bootstrap handles: grid (container/row/col), spacing utilities,
   flex utilities, responsive breakpoints, reset.
   Custom CSS handles: stamp aesthetic, colors, typography, components.
   ========================================================================== */

:root {
  --ink: #2d2117;
  --ink-soft: #5e4b3d;
  --paper: #efe3c8;
  --paper-light: #f8f1df;
  --paper-warm: #e6d5ad;
  --rust: #994b2e;
  --rust-dark: #74351f;
  --moss: #5d6647;
  --moss-dark: #454d34;
  --mustard: #c58b3a;
  --line: rgba(45, 33, 23, 0.35);
  --shadow: 6px 6px 0 rgba(45, 33, 23, 0.16);
  --shadow-soft: 4px 4px 0 rgba(45, 33, 23, 0.15);
  --shadow-hard: 8px 8px 0 var(--ink);

  /* Bootstrap container override to match previous max-width */
  --bs-body-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-link-color: inherit;
  --bs-link-hover-color: inherit;
}

/* Bump container max-width slightly for XL to keep our previous roomy feel */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1160px;
  }
}

/* ==========================================================================
   Base
   ========================================================================== */

body {
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(45, 33, 23, 0.075) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 62%, rgba(153, 75, 46, 0.055) 0 1px, transparent 1.5px),
    repeating-linear-gradient(7deg, transparent 0 9px, rgba(255, 255, 255, 0.07) 10px 11px);
  background-size: 19px 19px, 27px 27px, auto;
  font-family: var(--bs-body-font-family);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

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

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1030;
  padding: 0.65rem 0.9rem;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-180%);
  text-decoration: none;
}

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

/* ==========================================================================
   Oak leaf SVG — reusable brand asset
   ========================================================================== */

.leaf {
  display: inline-block;
  width: 3.2rem;
  aspect-ratio: 220/80;
  fill: currentColor;
  color: var(--moss);
  vertical-align: middle;
}

.leaf--hero {
  position: absolute;
  bottom: -1.2rem;
  left: -1.5rem;
  width: 6.5rem;
  color: rgba(93, 102, 71, 0.35);
  transform: rotate(-8deg);
  z-index: -1;
}

.leaf--inline {
  width: 2.2rem;
  color: var(--mustard);
  transform: rotate(-4deg);
}

.leaf--band {
  width: 5rem;
  color: var(--mustard);
  transform: rotate(-6deg);
}

.leaf--story {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  width: 5.4rem;
  color: rgba(93, 102, 71, 0.28);
  transform: rotate(12deg);
}

.leaf--catering {
  position: absolute;
  bottom: -1.6rem;
  left: -1.2rem;
  width: 8rem;
  color: rgba(197, 139, 58, 0.4);
  transform: rotate(-14deg);
  z-index: 0;
}

/* ==========================================================================
   Header + mobile nav (details/summary — no JS)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  border-bottom: 2px solid var(--ink);
  background: rgba(239, 227, 200, 0.95);
  backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark span {
  font-size: 0.58em;
}

/* details wrapper contains the toggle + nav */
.menu {
  position: relative;
}

.menu > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.menu > summary::-webkit-details-marker {
  display: none;
}

.menu > summary::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.7rem;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center top/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center bottom/100% 2px no-repeat;
}

.menu[open] > summary::after {
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
  transform: rotate(90deg);
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 12rem;
  z-index: 1;
}

.main-nav a {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--line);
}

.main-nav a:last-child {
  border-bottom: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--paper);
}

/* Desktop nav: hide toggle, show nav inline */
@media (min-width: 768px) {
  .menu > summary {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem 1.35rem;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    min-width: 0;
  }

  .main-nav a {
    padding: 0.35rem 0;
    font-size: 0.84rem;
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: transparent;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.3em;
  }
}

/* ==========================================================================
   Type scale
   ========================================================================== */

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--rust-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
}

h1 {
  position: relative;
  margin-bottom: 1.6rem;
  padding-right: 0.5rem;
  font-size: clamp(2.8rem, 11vw, 6.6rem);
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  hyphens: manual;
}

h1 span {
  color: var(--rust-dark);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.15;
}

.lead {
  max-width: 42rem;
  margin: 0 0 1.8rem;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  font-weight: 400;
  line-height: 1.55;
}

/* ==========================================================================
   Buttons + links
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border: 2px solid var(--ink);
  color: var(--paper-light);
  background: var(--rust);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--rust-dark);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
  color: var(--paper-light);
}

.button--light {
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 rgba(45, 33, 23, 0.55);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--paper);
  box-shadow: 2px 2px 0 rgba(45, 33, 23, 0.55);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 44px;
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.35em;
  text-transform: uppercase;
}

/* ==========================================================================
   Section frame
   ========================================================================== */

.section {
  padding-block: clamp(3rem, 8vw, 8rem);
  border-top: 2px solid var(--ink);
}

.section--no-border {
  border-top: none;
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:not(.eyebrow):last-child {
  margin: 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 4px solid var(--mustard);
  max-width: 40rem;
}

.section-heading--center {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:not(.eyebrow):last-child {
  margin-inline: auto;
}

@media (min-width: 992px) {
  .section-heading--split {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
    align-items: end;
  }

  .section-heading--split .eyebrow,
  .section-heading--split h2 {
    grid-column: 1;
  }

  .section-heading--split > p:not(.eyebrow):last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    padding: 0 0 0 1.5rem;
    border-top: none;
    border-left: 4px solid var(--mustard);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-block: clamp(2.5rem, 7vw, 6rem) clamp(2.5rem, 6vw, 5rem);
}

.hero-copy {
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-top: 0.6rem;
}

.logo-stage {
  position: relative;
  max-width: 26rem;
  margin: 0 auto;
  text-align: center;
  transform: rotate(1.2deg);
}

.stamp-shell {
  position: relative;
  padding: clamp(1rem, 3vw, 1.7rem);
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.stamp-shell img {
  width: 100%;
  height: auto;
}

.stamp-shell::before,
.stamp-shell::after {
  position: absolute;
  width: 1.9rem;
  height: 0.45rem;
  background: var(--paper);
  content: "";
}

.stamp-shell::before {
  top: -0.2rem;
  left: 20%;
  transform: rotate(-5deg);
}

.stamp-shell::after {
  right: 14%;
  bottom: -0.2rem;
  transform: rotate(4deg);
}

.logo-stage figcaption {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
}

/* Premiere ribbon on the hero stamp */

.premiere-ribbon {
  position: absolute;
  top: -0.9rem;
  right: -0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.55rem 0.85rem;
  min-width: 7.5rem;
  color: var(--paper-light);
  background: var(--rust);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(9deg);
  text-align: center;
  z-index: 3;
}

.premiere-ribbon-line1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.premiere-ribbon-line2 {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .premiere-ribbon {
    top: -1.2rem;
    right: -1.4rem;
    min-width: 8.5rem;
    padding: 0.65rem 1rem;
  }

  .premiere-ribbon-line1 {
    font-size: 1.35rem;
  }

  .premiere-ribbon-line2 {
    font-size: 0.62rem;
  }
}

/* ==========================================================================
   Marquee — stamp roll between hero and product
   ========================================================================== */

.marquee {
  position: relative;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  margin-block: 0 clamp(2rem, 4vw, 3rem);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  padding: 1.1rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}

.marquee-word {
  color: var(--paper);
}

.marquee-dot {
  display: inline-flex;
  align-items: center;
  color: var(--mustard);
  font-size: 1.3em;
}

.marquee-dot .leaf {
  color: var(--mustard);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Photo placeholder frames
   ========================================================================== */

.photo-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.4), transparent 55%),
    linear-gradient(135deg, var(--paper-warm) 0%, #d1bd90 100%);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.photo-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(45deg, rgba(45, 33, 23, 0.04) 0 2px, transparent 2px 9px),
    radial-gradient(ellipse at center, transparent 55%, rgba(45, 33, 23, 0.18) 100%);
  pointer-events: none;
}

.photo-frame > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame > img ~ .photo-frame-note,
.photo-frame > img ~ .photo-frame-caption {
  display: none;
}

.photo-frame-note {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  color: var(--ink-soft);
}

.photo-frame-caption {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust-dark);
}

.photo-frame-stamp {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border: 2px solid var(--rust-dark);
  color: var(--rust-dark);
  background: rgba(248, 241, 223, 0.9);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.photo-frame--large {
  aspect-ratio: 4/5;
}

.photo-frame--card {
  aspect-ratio: 4/3;
  margin-bottom: 1.4rem;
}

.photo-frame--polaroid {
  position: absolute;
  right: -0.8rem;
  bottom: -1.2rem;
  width: 42%;
  aspect-ratio: 1;
  padding: 0.9rem 0.9rem 2.4rem;
  transform: rotate(6deg);
  box-shadow: var(--shadow);
  background: var(--paper-light);
}

@media (min-width: 992px) {
  .photo-frame--polaroid {
    right: -1.5rem;
    bottom: -2rem;
    width: 45%;
  }
}

/* ==========================================================================
   Product
   ========================================================================== */

.product-photo {
  position: relative;
  max-width: 32rem;
  margin-inline: auto;
  padding-bottom: 1rem;
}

@media (min-width: 992px) {
  .product-photo {
    max-width: none;
    transform: rotate(-1.4deg);
  }
}

.product-copy .lead {
  color: var(--ink);
}

.variants {
  margin-top: 1.6rem;
}

.variant {
  position: relative;
  height: 100%;
  padding: 1.1rem 1.2rem 1.2rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow-soft);
}

.variant--secondary {
  background:
    repeating-linear-gradient(-40deg, transparent 0 8px, rgba(45, 33, 23, 0.05) 8px 9px),
    var(--paper-light);
}

@media (min-width: 768px) {
  .variant--secondary {
    transform: rotate(0.6deg);
  }

  .variant--primary {
    transform: rotate(-0.6deg);
  }
}

.variant-tag {
  margin: 0 0 0.35rem;
  color: var(--rust-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.variant h3 {
  margin: 0 0 0.35rem;
  font-size: 1.3rem;
  line-height: 1.1;
}

.variant p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.variant-pict {
  display: block;
  height: 5rem;
  width: auto;
  margin: 0.1rem auto 0.7rem;
  fill: currentColor;
  color: var(--rust-dark);
}

.variant-pict--single {
  aspect-ratio: 120 / 128;
}

.variant-pict--plate {
  aspect-ratio: 180 / 128;
  color: var(--moss-dark);
}

.product-facts {
  display: grid;
  gap: 1.1rem;
  margin: 1.6rem 0 0;
  padding: 0;
}

.product-facts > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}

@media (min-width: 576px) {
  .product-facts > div {
    grid-template-columns: 6.5rem 1fr;
    gap: 1.2rem;
    align-items: baseline;
  }
}

.product-facts > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-facts dt {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust-dark);
}

.product-facts dd {
  margin: 0;
  color: var(--ink);
}

/* ==========================================================================
   Ingredients — Aufbau-Anleitung
   ========================================================================== */

.build-illustration {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  padding: 0;
}

.build-illustration img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  background: var(--paper-light);
}

.build-illustration figcaption {
  max-width: 34rem;
  margin: 1.4rem auto 0;
  text-align: center;
}

.build-illustration-caption {
  margin: 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
}

.build-illustration-note {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.3rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.build-illustration-note strong {
  color: var(--rust-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ==========================================================================
   Statement band
   ========================================================================== */

.statement-band {
  border-block: 2px solid var(--ink);
  color: var(--ink);
  padding-block: clamp(2rem, 5vw, 4rem);
}

.statement-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2.5rem);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
}

.statement-band-inner span:first-child {
  transform: rotate(-1.5deg);
}

.statement-band-inner span:last-child {
  color: var(--rust-dark);
  transform: rotate(1deg);
}

/* ==========================================================================
   Local story
   ========================================================================== */

.story-panel {
  position: relative;
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-panel p:not(.eyebrow) {
  max-width: 50rem;
  position: relative;
}

.story-panel > .eyebrow,
.story-panel > h2 {
  position: relative;
}

.village-mark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 16rem;
  padding: 2rem 1.4rem;
  border: 4px double var(--paper-light);
  outline: 3px solid var(--moss);
  color: var(--paper-light);
  background: var(--moss);
  text-align: center;
  text-transform: uppercase;
  max-width: 25rem;
  margin: 1.5rem auto 0;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 992px) {
  .village-mark {
    min-height: 20rem;
    margin: 0 0 0 auto;
    transform: rotate(2deg);
  }
}

.village-mark strong {
  display: block;
  margin: 0.35rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  letter-spacing: -0.03em;
}

.village-mark span {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.oak-word::before,
.oak-word::after {
  content: "—";
  padding-inline: 0.45rem;
}

/* ==========================================================================
   Tasting / dates
   ========================================================================== */

.date-list {
  display: grid;
  gap: 1.5rem;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.date-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  padding: 1.2rem 1.3rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 576px) {
  .date-item {
    grid-template-columns: 8.5rem 1fr;
    gap: 1.4rem;
    padding: 1.4rem 1.5rem;
  }
}

.date-item--premiere {
  background: var(--paper-light);
  border-color: var(--rust-dark);
  box-shadow: 6px 6px 0 var(--rust);
}

@media (min-width: 576px) {
  .date-item--premiere {
    transform: rotate(-0.5deg);
  }

  .date-item--soon {
    transform: rotate(0.4deg);
  }
}

.date-item--soon {
  background: repeating-linear-gradient(
    -45deg,
    var(--paper-light) 0 10px,
    rgba(45, 33, 23, 0.05) 10px 20px
  );
  border-style: dashed;
  color: var(--ink-soft);
}

.date-day {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

@media (min-width: 576px) {
  .date-day {
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.75rem 0.5rem;
  }
}

.date-item--premiere .date-day {
  color: var(--paper-light);
  background: var(--rust);
  border-color: var(--rust-dark);
}

.date-weekday {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.date-number {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

@media (min-width: 576px) {
  .date-number {
    font-size: 2.4rem;
  }
}

@media (min-width: 992px) {
  .date-number {
    font-size: 2.6rem;
  }
}

.date-month {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.date-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.date-tag {
  margin: 0;
  color: var(--rust-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.date-body h3 {
  margin: 0;
  font-size: 1.25rem;
}

.date-place {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.date-stamp {
  position: absolute;
  top: -0.9rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border: 2px dashed var(--rust-dark);
  background: var(--paper-light);
  color: var(--rust-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(6deg);
}

/* ==========================================================================
   Catering
   ========================================================================== */

.catering {
  padding-bottom: clamp(4rem, 10vw, 9rem);
}

.catering-panel {
  position: relative;
  padding: clamp(1.8rem, 5vw, 4rem);
  border: 2px solid var(--ink);
  background: var(--moss);
  color: var(--paper-light);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.catering-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(30deg, transparent 0 14px, rgba(255, 255, 255, 0.03) 14px 15px),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.catering-copy {
  position: relative;
  z-index: 1;
}

.catering-copy .eyebrow {
  color: var(--mustard);
}

.catering-copy h2 {
  color: var(--paper-light);
}

.catering-copy p {
  color: var(--paper-warm);
}

.catering-copy .fine-print {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(248, 241, 223, 0.78);
}

.catering-mark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  aspect-ratio: 1;
  max-width: 14rem;
  margin: 1.5rem auto 0;
  padding: 1.5rem;
  border: 3px double var(--paper-light);
  outline: 3px solid var(--paper-light);
  outline-offset: -12px;
  color: var(--paper-light);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

@media (min-width: 992px) {
  .catering-mark {
    max-width: none;
    margin: 0 0 0 auto;
  }
}

.catering-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.catering-mark span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 5px solid var(--ink);
  font-size: 0.9rem;
  padding-block: 2rem 2.5rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.35rem;
}

.site-footer nav a {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
  text-transform: uppercase;
}

.footer-brand p:first-child strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-brand p:last-child {
  color: var(--ink-soft);
}

.footer-note {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.4rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .footer-note {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

.footer-credit-line {
  text-align: left;
}

@media (min-width: 576px) {
  .footer-credit-line {
    text-align: right;
  }
}

.footer-heart {
  color: var(--rust);
  font-size: 0.85em;
}

.footer-credit {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.25em;
}

.footer-credit-tld {
  color: #c4622c;
}

.footer-credit:hover .footer-credit-tld,
.footer-credit:focus-visible .footer-credit-tld {
  color: #c4622c;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-page {
  min-height: 70vh;
  padding-block: clamp(2.5rem, 8vw, 6rem);
}

.legal-page h1 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
}

.legal-page h2 {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}

.placeholder-box {
  margin: 1.6rem 0;
  padding: 1.1rem 1.25rem;
  border: 3px dashed var(--rust);
  background: var(--paper-light);
}

.placeholder-box strong:first-child {
  display: block;
  color: var(--rust-dark);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   Focus
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .logo-stage,
  .product-photo,
  .village-mark,
  .catering-mark,
  .date-item,
  .premiere-ribbon,
  .date-stamp,
  .statement-band-inner span,
  .variant {
    transform: none !important;
  }
}

/* ==========================================================================
   Print
   ========================================================================== */

@media (print) {
  .site-header nav,
  .menu,
  .button,
  .text-link,
  .catering,
  .marquee,
  .statement-band {
    display: none;
  }

  body {
    background: #fff;
  }
}
