:root {
  --red: #e31414;
  --red-deep: #9f1714;
  --cream: #fff5df;
  --cream-soft: #fbf0d6;
  --paper: #fffaf0;
  --ink: #241712;
  --muted: #6f6256;
  --green: #286d3d;
  --olive: #8a7a31;
  --line: rgba(36, 23, 18, 0.14);
  --shadow: 0 18px 45px rgba(36, 23, 18, 0.12);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(40, 109, 61, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  height: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 34px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 750;
}

.nav__links--right {
  justify-content: flex-end;
}

.nav__links a {
  position: relative;
  padding: 12px 0;
}

.nav__links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__links .nav__pill {
  padding: 10px 18px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
}

.nav__links .nav__pill::after {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  line-height: 0;
}

.brand img {
  width: 205px;
  max-height: 72px;
  object-fit: contain;
}

.brand--footer {
  justify-content: flex-start;
}

.brand--footer img {
  width: 190px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: var(--ink);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 72px 8%;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(28, 13, 9, 0.72) 0%, rgba(28, 13, 9, 0.42) 42%, rgba(28, 13, 9, 0.08) 100%),
    var(--hero-image) center / cover no-repeat;
  transition: opacity 520ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide:nth-child(2) {
  background-position: center;
}

.hero__slide:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(28, 13, 9, 0.76) 0%, rgba(28, 13, 9, 0.38) 44%, rgba(28, 13, 9, 0.04) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero__content {
  max-width: 690px;
  color: #fff;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--red .eyebrow {
  color: #ffe8b3;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 0.92;
}

.hero__lead {
  max-width: 570px;
  margin: 24px 0 0;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

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

.button--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

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

.hero__controls {
  position: absolute;
  right: 6%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(12px);
}

.hero__arrow,
.hero__dots button {
  border: 0;
  cursor: pointer;
}

.hero__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 1.08rem;
  font-weight: 950;
}

.hero__dots {
  display: flex;
  gap: 8px;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(36, 23, 18, 0.28);
}

.hero__dots button.is-active {
  width: 28px;
  background: var(--red);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  display: grid;
  gap: 3px;
  padding: 22px 34px;
  background: var(--paper);
}

.quick-strip strong {
  color: var(--red-deep);
}

.quick-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 88px 34px;
}

.section--soft {
  background: var(--cream);
}

.section__head {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.section__head--wide {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  text-align: left;
}

.section__head h2,
.story__copy h2,
.trade h2,
.contact__panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  line-height: 1.02;
}

.section__head p:not(.eyebrow),
.story__copy p,
.trade p,
.contact__panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48));
  content: "";
}

.category-card::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 2px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  content: "";
  pointer-events: none;
  transition: border-color 180ms ease;
}

.category-card.is-active::before {
  border-color: #fff5df;
}

.category-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.category-card:hover img {
  transform: scale(1.05);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filters button {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(159, 23, 20, 0.22);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--red-deep);
  font-weight: 850;
  cursor: pointer;
}

.filters button.is-active {
  background: var(--red);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  gap: 18px;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(36, 23, 18, 0.08);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 12px 26px rgba(36, 23, 18, 0.08);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card figure {
  display: grid;
  min-height: 230px;
  margin: 0;
  place-items: center;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 12px;
}

.product-card p {
  margin: 0 0 4px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 56px;
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.15;
}

.product-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto;
}

.recipe-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  min-height: 520px;
}

.recipe-card img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.recipe-card div {
  padding: 24px;
}

.recipe-card p {
  margin: 0 0 8px;
  color: #ffdca0;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.recipe-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.recipe-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 660px;
  background: #fff;
}

.story__image img {
  height: 100%;
  object-fit: cover;
}

.story__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 72px 8%;
}

.founder-note {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.founder-note img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.founder-note strong,
.founder-note span {
  display: block;
}

.founder-note span {
  margin-top: 4px;
  color: var(--muted);
}

.section--red {
  background:
    linear-gradient(90deg, rgba(159, 23, 20, 0.92), rgba(227, 20, 20, 0.94)),
    url("assets/images/brand-red.jpg") center / cover no-repeat;
  color: #fff;
}

.trade {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 54px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.trade p {
  color: rgba(255, 255, 255, 0.86);
}

.trade .button {
  margin-top: 30px;
}

.trade__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 245, 223, 0.26);
}

.trade__facts div {
  min-height: 180px;
  padding: 24px;
  background: rgba(36, 23, 18, 0.22);
}

.trade__facts dt {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
}

.trade__facts dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  background: var(--cream);
}

.contact__media img {
  height: 100%;
  min-height: 780px;
  object-fit: cover;
}

.contact__panel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 78px 8%;
  background: var(--paper);
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact__details a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--red-deep);
  font-weight: 850;
}

.inquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.inquiry label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.inquiry__wide {
  grid-column: 1 / -1;
}

.inquiry input,
.inquiry select,
.inquiry textarea {
  width: 100%;
  border: 1px solid rgba(36, 23, 18, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

.inquiry textarea {
  resize: vertical;
}

.legal {
  padding: 72px 34px;
  background: #fffaf0;
  border-top: 1px solid var(--line);
}

.legal__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
}

.legal h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1;
}

.legal p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.legal article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal h3 {
  margin: 0 0 12px;
  color: var(--red-deep);
  font-size: 1rem;
  text-transform: uppercase;
}

.legal a {
  color: var(--red-deep);
  font-weight: 850;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  padding: 40px 34px;
  background: #170d0a;
  color: rgba(255, 255, 255, 0.78);
}

.footer p {
  margin: 10px 0 0;
}

.footer a {
  color: #fff5df;
  font-weight: 850;
}

.footer div:last-child {
  text-align: right;
}

@media (max-width: 1180px) {
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recipe-grid,
  .trade,
  .contact {
    grid-template-columns: 1fr;
  }

  .recipe-card,
  .contact__media img {
    min-height: 520px;
  }

  .trade__facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: auto;
  }

  .site-header {
    min-height: 74px;
    height: auto;
  }

  .nav {
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
    min-height: 74px;
    padding: 10px 18px;
  }

  .nav__toggle {
    display: flex;
    grid-column: 1;
    grid-row: 1;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    min-width: 170px;
  }

  .brand img {
    width: 170px;
    max-height: 62px;
  }

  .nav__links {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .nav__links {
    display: flex;
  }

  .nav__links a {
    padding: 14px 4px;
  }

  .nav__links .nav__pill {
    width: max-content;
    padding: 10px 18px;
    margin-top: 6px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero__slide {
    align-items: flex-end;
    padding: 56px 22px 112px;
    background:
      linear-gradient(180deg, rgba(28, 13, 9, 0.06) 0%, rgba(28, 13, 9, 0.72) 58%, rgba(28, 13, 9, 0.86) 100%),
      var(--hero-image) center / cover no-repeat;
  }

  .hero h1,
  .hero h2 {
    font-size: 3.6rem;
  }

  .hero__lead {
    font-size: 1.06rem;
  }

  .hero__controls {
    right: 50%;
    bottom: 22px;
    transform: translateX(50%);
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }

  .section__head,
  .section__head--wide {
    display: block;
    text-align: left;
  }

  .section__head h2,
  .story__copy h2,
  .trade h2,
  .contact__panel h2 {
    font-size: 2.45rem;
  }

  .filters {
    justify-content: flex-start;
    margin-top: 22px;
  }

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

  .story__image img {
    max-height: 460px;
  }

  .story__copy,
  .contact__panel {
    padding: 58px 22px;
  }

  .legal {
    padding: 58px 22px;
  }

  .legal__inner,
  .legal__grid {
    grid-template-columns: 1fr;
  }

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

  .footer div:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 74svh;
  }

  .hero__actions,
  .contact__details {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .contact__details a {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .trade__facts,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 250px;
  }

  .product-card {
    min-height: auto;
  }

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

  .recipe-card,
  .recipe-card img {
    min-height: 360px;
  }

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

  .contact__media img {
    min-height: 360px;
  }
}
