:root {
  --brown: #2f251c;
  --brown-soft: #4b3828;
  --gold: #b9822d;
  --gold-light: #f2d39c;
  --cream: #fbf6ed;
  --paper: #fffaf3;
  --text: #201a16;
  --muted: #6a5f55;
  --border: #e4d8c7;
  --shadow: 0 12px 30px rgba(47, 37, 28, 0.12);
  --font: "Inter", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --hand: "Kalam", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--font);
  line-height: 1.6;
}

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

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

.container {
  width: min(1190px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 110px;
  padding: 0 clamp(18px, 5vw, 58px);
  background: rgba(255, 250, 243, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(47, 37, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  text-transform: uppercase;
}

.brand i {
  color: var(--gold);
  font-size: 2rem;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.brand small {
  display: block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-cta,
.button-dark {
  color: #fff;
  background: var(--brown);
}

.button-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.button-outline-dark {
  color: var(--brown);
  border: 2px solid var(--brown);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
}

h1 span,
.lunch-card h2,
.practical h2,
.section-heading h2 {
  font-family: var(--hand);
}

h1 span {
  font-size: 0.68em;
  font-weight: 400;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  min-height: 590px;
  background:
    linear-gradient(90deg, rgba(251, 246, 237, 0.98) 0%, rgba(251, 246, 237, 0.92) 40%, rgba(251, 246, 237, 0.2) 65%),
    url("assets/hero-pain.png") center right / cover no-repeat;
}

.hero-inner {
  display: grid;
  align-content: center;
  min-height: 590px;
  max-width: 1180px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.line {
  display: block;
  width: 58px;
  height: 2px;
  margin: 14px 0 24px;
  background: var(--gold);
}

.hero p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 30px;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.commitments {
  padding: 38px 0;
  background: #fff;
  border-block: 1px solid var(--border);
}

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

.commitments article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}

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

.commitments i,
.practical i {
  color: var(--gold);
  font-size: 2.6rem;
}

.commitments p,
.product-card p,
.story p,
.newsletter p {
  color: var(--muted);
}

.section {
  padding: clamp(62px, 8vw, 92px) 0;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.section-heading h2 {
  color: var(--gold);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(47, 37, 28, 0.08);
}

.product-media {
  position: relative;
  height: 178px;
  margin: 0;
  overflow: hidden;
}

.product-media img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 500%;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.prod-2 img { transform: translate(-20%, -50%); }
.prod-3 img { transform: translate(-40%, -50%); }
.prod-4 img { transform: translate(-60%, -50%); }
.prod-5 img { transform: translate(-80%, -50%); }

.product-card h3,
.product-card p,
.product-card strong {
  display: block;
  padding-inline: 18px;
}

.product-card h3 {
  margin-top: 18px;
}

.product-card p {
  min-height: 72px;
  margin-bottom: 10px;
}

.product-card strong {
  padding-bottom: 20px;
  color: var(--gold);
  font-size: 1.12rem;
}

.center {
  text-align: center;
}

.story {
  padding: clamp(56px, 8vw, 84px) 0;
  background: #eee2d0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(38px, 7vw, 82px);
  align-items: center;
}

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

.story p:not(.eyebrow) {
  max-width: 600px;
}

.lunch-info {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: #fff;
}

.lunch-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  background: var(--brown);
}

.lunch-card > div {
  padding: clamp(34px, 5vw, 68px);
  color: #fff;
}

.lunch-card h2 {
  color: #fff;
}

.lunch-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.lunch-card strong {
  display: block;
  margin: 18px 0;
  color: var(--gold-light);
  font-size: 2.4rem;
  font-weight: 800;
}

.practical {
  padding: clamp(38px, 6vw, 72px);
  text-align: center;
}

.practical h2 {
  color: var(--gold);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.practical article {
  padding: 0 18px;
  border-right: 1px solid var(--border);
}

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

.newsletter {
  background: #fff;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 14px;
  max-width: 500px;
  margin: 24px 0 12px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
}

.newsletter button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--brown);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: right center;
}

.site-footer {
  padding: 56px 0 22px;
  color: #fff;
  background: var(--brown);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 76px);
}

.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

.footer-grid nav,
.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h3 {
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}

.payments {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.stamp {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-family: var(--hand);
  text-align: center;
  transform: rotate(-12deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .commitments-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .lunch-info,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(251, 246, 237, 0.98), rgba(251, 246, 237, 0.72)),
      url("assets/hero-pain.png") center right / cover no-repeat;
  }

  .commitments-grid,
  .products-grid,
  .lunch-card,
  .practical-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .commitments article,
  .practical article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
  }

  .newsletter form,
  .footer-bottom {
    flex-direction: column;
  }
}
