:root {
  --paper: #f7efe5;
  --paper-deep: #eadfce;
  --cream: #fffaf3;
  --ink: #160d0b;
  --ink-soft: #3c2d28;
  --muted: #75665b;
  --red: #d82020;
  --red-dark: #9d1717;
  --gold: #f0c85a;
  --mint: #b9d8c2;
  --line: 2px solid var(--ink);
  --max: 1220px;
  --gutter: clamp(18px, 4vw, 40px);
  --display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(22, 13, 11, 0.035) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--red-dark);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  padding: 9px var(--gutter);
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px var(--gutter);
  background: rgba(247, 239, 229, 0.94);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--red);
  border: var(--line);
  color: var(--cream);
  font-family: var(--display);
  font-size: 17px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

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

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

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: var(--line);
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--red-dark);
  color: var(--cream);
}

.button-secondary,
.button-ghost {
  background: var(--cream);
  color: var(--ink);
}

.button-secondary:hover,
.button-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

.button-large {
  min-height: 54px;
  padding-inline: 24px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: var(--line);
  border-radius: 6px;
  background: var(--cream);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.section {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: clamp(40px, 6.2vw, 68px);
}

h2 {
  max-width: 780px;
  font-size: clamp(30px, 4.5vw, 52px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  padding-top: clamp(32px, 5vw, 66px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  border: var(--line);
  background: var(--cream);
}

.hero-facts dt {
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-weight: 800;
  line-height: 1.25;
}

.hero-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 540px;
}

.hero-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--cream);
}

.hero-photo-large {
  grid-row: span 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  background: var(--gold);
  border: var(--line);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.logistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: var(--line);
  background: var(--ink);
  color: var(--cream);
}

.logistics article {
  min-width: 0;
  padding: 22px clamp(16px, 2vw, 28px);
  border-right: 1px solid rgba(255, 250, 243, 0.25);
}

.logistics article:last-child {
  border-right: 0;
}

.logistics span,
.category-card span,
.step-number {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.logistics strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.logistics p {
  margin: 10px 0;
  color: rgba(255, 250, 243, 0.82);
  font-size: 14px;
  line-height: 1.4;
}

.logistics a {
  color: var(--cream);
  font-weight: 800;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.intro-band > p,
.section-heading p,
.proof-copy p,
.owner-cta p,
.site-footer p {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: grid;
  grid-template-rows: 220px auto auto 1fr;
  min-width: 0;
  min-height: 460px;
  padding: 12px;
  border: var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  background: #fff3d8;
  color: var(--ink);
}

.category-card img {
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
  border: var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.category-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.category-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.feature-card {
  grid-column: span 2;
}

.ordering {
  width: 100%;
  max-width: none;
  padding-inline: var(--gutter);
  background: var(--red);
  border-block: var(--line);
}

.ordering .section-heading,
.ordering .order-steps {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.ordering .eyebrow,
.ordering h2,
.ordering .section-heading p {
  color: var(--cream);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.order-steps article {
  min-width: 0;
  padding: 24px;
  border: var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.order-steps h3 {
  margin-top: 16px;
  font-family: var(--display);
  text-transform: uppercase;
}

.order-steps p {
  color: var(--ink-soft);
}

.order-steps a {
  font-weight: 900;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 120px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.proof-grid article {
  min-height: 190px;
  padding: 22px;
  border: var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.proof-grid span {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.proof-grid p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border: var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}

.gallery-grid img:nth-child(1) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 2;
}

.owner-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
}

.owner-cta h2 {
  max-width: 860px;
}

.owner-cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  margin-top: 80px;
  padding: 38px var(--gutter);
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  width: min(100%, var(--max));
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  margin-inline: auto;
  align-items: start;
}

.site-footer strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 250, 243, 0.74);
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: var(--cream);
  font-weight: 800;
}

.footer-owner-link {
  display: inline-block;
  margin-bottom: 12px;
}

.disclaimer {
  max-width: 430px;
  margin: 0;
  font-size: 14px;
}

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

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .site-header.is-open .site-nav a,
  .site-header.is-open .header-actions a {
    width: 100%;
  }

  .header-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero,
  .intro-band,
  .proof,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-board {
    min-height: 430px;
  }

  .logistics,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 64px 64px;
  }

  .concept-bar {
    font-size: 10px;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .header-actions,
  .order-steps,
  .proof-grid,
  .footer-grid,
  .owner-cta {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .header-actions {
    display: grid;
  }

  .hero-facts,
  .logistics,
  .category-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
  }

  .hero-photo-large {
    grid-row: auto;
  }

  .logistics article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 243, 0.25);
  }

  .category-card,
  .feature-card {
    grid-column: auto;
    min-height: 0;
  }

  .category-card {
    grid-template-rows: 210px auto auto auto;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .owner-cta {
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}

@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;
  }

  .button:hover,
  .category-card:hover {
    transform: none;
  }
}
