:root {
  --red: #b91c1c;
  --red-dark: #7f1d1d;
  --green: #136f3f;
  --cream: #fff7ed;
  --paper: #fffbf5;
  --ink: #18110d;
  --muted: #6f6259;
  --line: #eaded2;
  --surface: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 28px), var(--max));
  margin: 12px auto 0;
  padding: 12px;
  border: 1px solid rgba(234, 222, 210, 0.92);
  border-radius: 8px;
  background: rgba(255, 251, 245, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(55, 30, 18, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
}

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

.brand strong {
  font-size: 17px;
  font-weight: 950;
}

.brand small {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.trust-strip,
.section,
.legal,
.site-footer {
  width: min(calc(100% - 28px), var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 74px 0 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.lead,
.section-head p,
.split p,
.order-copy p,
.contact-section p,
.legal p {
  color: var(--muted);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 34px rgba(185, 28, 28, 0.22);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(66, 31, 14, 0.18);
}

.hero-media::after {
  content: "massa artesanal";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media img {
  height: min(62vw, 560px);
  min-height: 380px;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

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

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: 72px 0 20px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.menu-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(48, 28, 16, 0.07);
}

.menu-item img {
  height: 210px;
  object-fit: cover;
}

.menu-item div {
  padding: 18px;
}

.menu-item span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.split,
.order-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  align-items: start;
}

.info-panel,
.steps,
.contact-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(48, 28, 16, 0.06);
}

.info-panel {
  padding: 24px;
}

.info-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.info-panel li + li {
  margin-top: 10px;
}

.order-section {
  align-items: stretch;
}

.steps {
  display: grid;
}

.steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.steps div:last-child {
  border-bottom: 0;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--red);
}

.contact-grid {
  display: grid;
}

.contact-grid a,
.contact-grid div {
  display: block;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-grid a:last-child,
.contact-grid div:last-child {
  border-bottom: 0;
}

.contact-grid span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 72px 0 34px;
}

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

.legal h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 8px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split,
  .order-section,
  .contact-section,
  .legal {
    grid-template-columns: 1fr;
  }

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

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

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-media img {
    height: 360px;
    min-height: 0;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 12px;
  }
}
