:root {
  --red: #c91f32;
  --red-dark: #8f1723;
  --gold: #f3bf3b;
  --leaf: #2f6f49;
  --ink: #211b17;
  --muted: #665c53;
  --paper: #fffaf0;
  --cream: #f6ecd8;
  --line: rgba(33, 27, 23, 0.14);
  --shadow: 0 18px 50px rgba(33, 27, 23, 0.14);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(143, 23, 35, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(33, 27, 23, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand img,
.site-footer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a,
.header-call {
  text-decoration: none;
}

.header-call {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(92vh - 74px);
  overflow: hidden;
  color: #ffffff;
  background: #2a1a14;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center 44%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 17, 14, 0.88), rgba(25, 17, 14, 0.52) 44%, rgba(25, 17, 14, 0.08)),
    linear-gradient(0deg, rgba(25, 17, 14, 0.42), transparent 44%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, 92vw);
  min-height: calc(92vh - 74px);
  padding: clamp(42px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 9vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.45;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 12px 26px rgba(143, 23, 35, 0.28);
}

.btn.secondary {
  color: var(--ink);
  background: var(--gold);
}

.btn.ghost {
  color: var(--red-dark);
  border-color: var(--red);
  background: #ffffff;
}

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

.trust-strip div {
  min-height: 96px;
  padding: 20px clamp(16px, 3vw, 34px);
  background: #ffffff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--red-dark);
  font-size: 24px;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--red-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.product-card,
.menu-item,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card.highlight img {
  aspect-ratio: 5 / 4;
}

.product-copy {
  padding: 22px;
}

.product-copy p,
.story-copy p,
.menu-item p,
.order-copy p,
.site-footer p,
.thanks-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: #fff3d8;
}

.story-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 620px;
}

.story-copy h2,
.video-copy h2,
.order-copy h2 {
  color: var(--red-dark);
}

.text-link {
  color: var(--leaf);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.menu-section {
  background: #ffffff;
}

.area-section {
  background: #ffffff;
}

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

.area-card {
  display: grid;
  gap: 10px;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fffdf8;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.area-card strong {
  color: var(--red-dark);
  font-size: 24px;
  line-height: 1.15;
}

.area-card span {
  color: var(--muted);
  line-height: 1.5;
}

.menu-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

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

.menu-item strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 24px;
  white-space: nowrap;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: var(--cream);
}

.video-section video {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  background: #111111;
  box-shadow: var(--shadow);
}

.faq-section {
  background: #fffdf8;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(33, 27, 23, 0.08);
}

.faq-list summary {
  padding: 20px 22px;
  color: var(--red-dark);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: #ffffff;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.order-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  font: inherit;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--red-dark);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: #ffffff;
  font-weight: 900;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--cream);
}

.thanks-panel {
  width: min(620px, 100%);
  padding: clamp(26px, 6vw, 54px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.thanks-panel img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.thanks-panel h1 {
  color: var(--red-dark);
  font-size: clamp(34px, 6vw, 58px);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: #fff3d8;
}

.seo-hero h1 {
  color: var(--red-dark);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
}

.seo-hero p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.seo-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--leaf);
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
}

.seo-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.seo-panel h2,
.seo-panel h3 {
  color: var(--red-dark);
}

.seo-panel p,
.seo-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.seo-panel ul {
  padding-left: 20px;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    min-height: 82vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(25, 17, 14, 0.88), rgba(25, 17, 14, 0.54) 62%, rgba(25, 17, 14, 0.22)),
      linear-gradient(90deg, rgba(25, 17, 14, 0.32), transparent);
  }

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

  .product-grid,
  .story-band,
  .video-section,
  .order-section,
  .seo-hero,
  .seo-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    padding-inline: 12px;
  }

  .brand span {
    max-width: 112px;
    overflow-wrap: anywhere;
    line-height: 1.05;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-call {
    padding: 9px 10px;
    font-size: 13px;
  }

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

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

  .trust-strip div {
    min-height: 82px;
  }

  .menu-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-item strong {
    white-space: normal;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
  }
}
