:root {
  --font-heading: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --mama-orange: #f4510b;
  --mama-cream: #fff3da;
  --mama-peach: #f6a45b;
  --mama-brown: #3a1b0b;
  --mama-white: #ffffff;
  --mama-paper: #fffaf0;
  --mama-line: rgba(58, 27, 11, 0.12);
  --mama-soft-line: rgba(244, 81, 11, 0.16);
  --shadow-soft: 0 18px 45px rgba(58, 27, 11, 0.1);
  --shadow-tight: 0 10px 22px rgba(58, 27, 11, 0.08);
  --radius-card: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(246, 164, 91, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, #fffdf8 0%, #fff3da 100%);
  color: var(--mama-brown);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(244, 81, 11, 0.035) 0 2px, transparent 2px 18px);
  mask-image: linear-gradient(180deg, black 0%, transparent 55%);
  z-index: -1;
}

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

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

button,
a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

:focus-visible {
  outline: 3px solid rgba(244, 81, 11, 0.34);
  outline-offset: 3px;
}

section[id],
div[id] {
  scroll-margin-top: 8rem;
}

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

.section {
  padding-block: 72px;
}

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

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

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

.brand-mark img {
  width: auto;
  height: 58px;
}

.brand-mark span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--mama-brown);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(58, 27, 11, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding-block: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--mama-orange);
  transform: scaleX(0);
  transform-origin: left;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--mama-orange);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-toggle {
  min-height: 44px;
  border: 1px solid rgba(244, 81, 11, 0.24);
  border-radius: 999px;
  background: var(--mama-white);
  color: var(--mama-brown);
  cursor: pointer;
  font: 800 0.9rem / 1 var(--font-body);
  padding: 0 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  padding: 13px 20px;
  text-align: center;
}

.button-primary {
  background: var(--mama-orange);
  color: var(--mama-white);
  box-shadow: 0 12px 25px rgba(244, 81, 11, 0.26);
}

.button-primary:hover {
  background: #d94408;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(244, 81, 11, 0.28);
  background: var(--mama-white);
  color: var(--mama-brown);
}

.button-secondary:hover {
  border-color: var(--mama-orange);
  background: var(--mama-cream);
  transform: translateY(-2px);
}

.button-light {
  background: var(--mama-white);
  color: var(--mama-brown);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  padding-block: 60px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 243, 218, 0.64) 100%),
    var(--mama-paper);
  border-bottom: 1px solid var(--mama-soft-line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(244, 81, 11, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--mama-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 10px 13px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--mama-brown);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: 4.7rem;
}

h2 {
  font-size: 3.05rem;
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 640px;
  color: rgba(58, 27, 11, 0.78);
  font-size: 1.18rem;
  line-height: 1.75;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.action-row.stacked {
  align-items: stretch;
  flex-direction: column;
}

.hero-table {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-table::before {
  content: "";
  position: absolute;
  inset: 14% 0 6% 10%;
  border: 1px solid rgba(58, 27, 11, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 81, 11, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--mama-cream);
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
  z-index: -1;
}

.recipe-strip {
  position: absolute;
  top: 20px;
  right: 24px;
  width: min(310px, 72%);
  border: 2px dashed rgba(58, 27, 11, 0.22);
  border-radius: 8px;
  background: var(--mama-white);
  box-shadow: var(--shadow-tight);
  padding: 18px;
  transform: rotate(3deg);
  z-index: 3;
}

.recipe-strip span {
  display: block;
  color: var(--mama-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-strip strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.05;
}

.hero-product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(58, 27, 11, 0.18));
}

.hero-product-large {
  right: 4%;
  bottom: 3%;
  width: min(520px, 82%);
}

.hero-product-small {
  left: 0;
  bottom: 10%;
  width: min(310px, 46%);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 22px;
}

.text-stack > p,
.split-layout > p,
.section-heading > p {
  color: rgba(58, 27, 11, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-section {
  background: var(--mama-white);
  border-bottom: 1px solid var(--mama-line);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article,
.info-card,
.review-card {
  border: 1px solid var(--mama-line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-tight);
  padding: 22px;
}

.proof-list p,
.info-card p,
.review-card p {
  color: rgba(58, 27, 11, 0.74);
}

.products-band,
.gallery-section {
  background: var(--mama-cream);
  border-block: 1px solid var(--mama-soft-line);
}

.section-heading {
  display: grid;
  gap: 15px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading .button {
  width: fit-content;
  margin-top: 8px;
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: grid;
  gap: 18px;
  height: 100%;
  border: 1px solid var(--mama-line);
  border-radius: var(--radius-card);
  background: var(--mama-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 81, 11, 0.3);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(244, 81, 11, 0.08) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--mama-paper);
}

.product-media img {
  width: 86%;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(58, 27, 11, 0.14));
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 0 22px 22px;
}

.product-body p {
  color: rgba(58, 27, 11, 0.76);
}

.product-details {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.data-panel {
  border-left: 4px solid var(--mama-peach);
  background: var(--mama-paper);
  padding: 12px 14px;
}

.data-label {
  display: block;
  color: var(--mama-orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.story-preview,
.catalog-section,
.operation-section {
  background: var(--mama-white);
}

.story-grid {
  align-items: center;
}

.image-frame {
  margin: 0;
  border: 1px solid var(--mama-line);
  border-radius: var(--radius-card);
  background: var(--mama-cream);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.note {
  border-left: 5px solid var(--mama-orange);
  background: var(--mama-cream);
  padding: 16px 18px;
}

.review-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mama-orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--mama-brown);
  color: var(--mama-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-copy h2,
.contact-copy p {
  color: var(--mama-white);
}

.contact-copy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mama-cream);
}

.contact-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.contact-panel strong {
  color: var(--mama-peach);
}

.page-hero {
  background: var(--mama-cream);
  border-bottom: 1px solid var(--mama-soft-line);
}

.page-hero h1 {
  max-width: 12ch;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.business-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--mama-soft-line);
  border-radius: var(--radius-card);
  background: var(--mama-cream);
  padding: 22px;
}

.business-details strong {
  color: var(--mama-orange);
}

.gallery-shell {
  position: relative;
  margin-top: 26px;
}

.carousel-window {
  overflow: hidden;
  border: 1px solid var(--mama-line);
  border-radius: var(--radius-card);
  background: var(--mama-white);
  box-shadow: var(--shadow-soft);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s ease;
}

.carousel-slide {
  padding: 10px;
}

.carousel-slide img {
  width: 100%;
  height: 360px;
  border-radius: 6px;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--mama-soft-line);
  border-radius: 999px;
  background: var(--mama-white);
  box-shadow: var(--shadow-tight);
  color: var(--mama-brown);
  cursor: pointer;
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 81, 11, 0.32);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--mama-orange);
}

.site-footer {
  background: var(--mama-brown);
  color: var(--mama-white);
  padding-block: 42px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 34px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

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

.site-footer strong {
  display: block;
  color: var(--mama-white);
  margin-bottom: 10px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 7px;
}

.site-footer a:hover {
  color: var(--mama-cream);
}

.copyright {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

::selection {
  background: rgba(244, 81, 11, 0.22);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-block: 14px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-table {
    min-height: 450px;
  }

  .product-grid,
  .review-grid,
  .catalog-grid,
  .operation-grid,
  .business-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    position: static;
  }

  .section {
    padding-block: 52px;
  }

  .brand-mark img {
    height: 48px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.9rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    flex: 1 1 190px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-table {
    min-height: 360px;
  }

  .recipe-strip {
    right: 8px;
    width: 78%;
    padding: 14px;
  }

  .recipe-strip strong {
    font-size: 1.32rem;
  }

  .hero-product-large {
    width: 88%;
  }

  .hero-product-small {
    width: 48%;
  }

  .button,
  .language-toggle {
    min-height: 50px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .carousel-slide img {
    height: 280px;
  }

  .carousel-control {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
