:root {
  color-scheme: light;
  --bg: #f4efe6;
  --bg-soft: #fbf9f4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #fffdf9;
  --ink: #2d241d;
  --muted: #6b6158;
  --placeholder: #94877a;
  --accent: #a88b6a;
  --accent-soft: #e8ded2;
  --stroke: #d9cec2;
  --warning: #b4654a;
  --shadow: 0 18px 50px rgba(45, 36, 29, 0.1);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.96), rgba(251, 249, 244, 0.96) 48%, rgba(240, 236, 226, 0.96)),
    var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 206, 194, 0.66);
  background: rgba(251, 249, 244, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(45, 36, 29, 0.16);
  font-size: 20px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 9px 10px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(232, 222, 210, 0.72);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
}

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.76);
}

.button.outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--stroke);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(45, 36, 29, 0.84), rgba(45, 36, 29, 0.56) 44%, rgba(45, 36, 29, 0.18)),
    url("assets/hero-food.jpg");
  background-size: cover, 112% auto;
  background-position: center, center top;
  background-repeat: no-repeat;
  color: #fffaf3;
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 250, 243, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero .lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.9);
  font-size: clamp(1.15rem, 2.4vw, 1.48rem);
  line-height: 1.42;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 16px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.95rem;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section.compact {
  padding-top: 42px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

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

.feature-card {
  border: 1px solid rgba(217, 206, 194, 0.78);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(45, 36, 29, 0.06);
}

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

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--accent-soft);
  font-size: 1.25rem;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
}

.trust-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  border: 1px solid rgba(217, 206, 194, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
  color: var(--muted);
  font-weight: 650;
  min-height: 86px;
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.story-copy {
  border-radius: 8px;
  background: var(--surface-solid);
  border: 1px solid rgba(217, 206, 194, 0.82);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.story-copy p {
  margin-top: 14px;
  color: var(--muted);
}

.story-image {
  position: relative;
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(217, 206, 194, 0.82);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  padding: 16px;
  color: #fffaf3;
  background: rgba(45, 36, 29, 0.78);
  backdrop-filter: blur(14px);
}

.story-overlay span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.92rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent-soft);
  font-weight: 900;
}

.cta-panel {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 36, 29, 0.98), rgba(76, 58, 45, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 250, 243, 0.08) 0 1px, transparent 1px 34px);
  color: #fffaf3;
  padding: clamp(28px, 6vw, 58px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
}

.cta-panel p {
  margin-top: 12px;
  max-width: 640px;
  color: rgba(255, 250, 243, 0.82);
}

.page-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 32px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

.page-hero p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 720px;
  font-size: 1.1rem;
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.legal-card {
  border: 1px solid rgba(217, 206, 194, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(45, 36, 29, 0.08);
  padding: clamp(24px, 4vw, 46px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.notice {
  border-left: 4px solid var(--accent);
  background: rgba(232, 222, 210, 0.58);
  padding: 16px 18px;
  border-radius: 8px;
  margin: 0 0 28px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.contact-card {
  border: 1px solid rgba(217, 206, 194, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
}

.contact-card p {
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid rgba(217, 206, 194, 0.82);
  background: rgba(251, 249, 244, 0.76);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 24px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 10px;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  outline: none;
}

@media (max-width: 1120px) {
  .hero {
    background-size: cover, 126% auto;
    background-position: center, 70% top;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links a {
    padding-left: 0;
  }

  .hero {
    min-height: 76vh;
    background-image:
      linear-gradient(180deg, rgba(45, 36, 29, 0.4), rgba(45, 36, 29, 0.88)),
      url("assets/hero-food.jpg");
    background-size: cover, cover;
    background-position: center, 44% top;
  }

  .hero-content {
    padding: 76px 0 46px;
  }

  .feature-grid,
  .story-panel,
  .cta-panel,
  .footer-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    grid-column: auto;
  }

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

  .story-image img {
    min-height: 320px;
  }

  .cta-panel {
    align-items: start;
  }

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

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

@media (max-width: 520px) {
  .hero {
    background-position: center, 42% top;
  }

  .nav-links {
    gap: 4px 12px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section {
    padding: 54px 0;
  }

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

  .button {
    width: 100%;
  }

  .trust-band,
  .footer-links {
    grid-template-columns: 1fr;
  }
}
