:root {
  --green-950: #04381f;
  --green-900: #054c2b;
  --green-800: #065b32;
  --green-700: #08713f;
  --green-100: #eaf6ef;
  --green-50: #f4fbf7;
  --orange-600: #ff7a18;
  --orange-500: #ff8b2b;
  --orange-100: #fff0df;
  --text: #122018;
  --muted: #5f6f66;
  --line: rgba(6, 91, 50, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(5, 76, 43, 0.10);
  --shadow-strong: 0 24px 70px rgba(5, 76, 43, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

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

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

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

.section-soft {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 139, 43, 0.10), transparent 32%),
    linear-gradient(180deg, #f5fbf7 0%, #ffffff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 98px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-900);
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--orange-600);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.28);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 122, 24, 0.34);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.btn-outline {
  background: var(--white);
  color: var(--green-800);
  border-color: rgba(6, 91, 50, 0.18);
  box-shadow: 0 10px 22px rgba(5, 76, 43, 0.08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-900);
  margin: 5px 0;
}

.hero {
  padding: 104px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 68px;
}

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

h1,
h2,
h3 {
  font-family: "Quicksand", "Inter", sans-serif;
  color: var(--green-900);
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.12);
  left: -70px;
  bottom: -70px;
}

.food-carousel {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(6, 91, 50, 0.12);
}

.carousel-track {
  height: 500px;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(4, 56, 31, 0.86) 100%);
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(4, 56, 31, 0.18);
}

.slide-caption span {
  display: block;
  color: var(--orange-600);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.slide-caption strong {
  color: var(--green-900);
  line-height: 1.35;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(4, 56, 31, 0.16);
}

.carousel-control.prev {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.about,
.products,
.partner,
.contact {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 62px;
  align-items: center;
}

.about-card {
  min-height: 270px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 24, 0.18), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-card img {
  width: 132px;
  opacity: 0.22;
  filter: brightness(4);
}

.about-copy p {
  color: var(--muted);
  max-width: 740px;
}

.about-copy p strong {
  color: var(--green-900);
}

.menu-count {
  padding: 88px 0;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px 0 0;
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.count-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.count-card strong {
  display: block;
  color: var(--orange-600);
  font-family: "Quicksand", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.count-card span {
  display: block;
  margin-top: 10px;
  color: var(--green-900);
  font-weight: 900;
  line-height: 1.3;
}

.count-note {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

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

.product-card div {
  padding: 20px 20px 24px;
}

.product-card p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 14px;
}

.center-action {
  text-align: center;
  margin-top: 42px;
}

.audience {
  padding: 88px 0;
}

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

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.audience-card span {
  display: inline-flex;
  color: var(--orange-600);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 18px;
}

.audience-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.partner-card {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr;
  gap: 42px;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 122, 24, 0.14), transparent 24%),
    linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: var(--shadow-strong);
}

.partner-card h2,
.partner-card .eyebrow {
  color: var(--white);
}

.partner-card .eyebrow {
  color: #ffb06a;
}

.partner-card p {
  color: rgba(255, 255, 255, 0.82);
}

.partner-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
}

.partner-cta img {
  width: 80px;
  margin: 0 auto 16px;
  opacity: 0.38;
  filter: brightness(2.5);
}

.partner-cta p {
  font-size: 20px;
  color: var(--white);
  font-family: "Quicksand", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
}

.contact-card {
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 70px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card img {
  width: 220px;
  margin: 0 auto 28px;
}

.contact-card p {
  color: var(--muted);
  margin: 22px 0 30px;
}

.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 34px 0;
  text-align: center;
}

.site-footer p {
  margin: 0 auto 8px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.site-footer small {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.70);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .lead,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .food-carousel,
  .carousel-track {
    min-height: 460px;
    height: 460px;
  }

  .count-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 86px;
  }

  .header-inner > .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-strong);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px;
    border-radius: 14px;
  }

  .nav a:hover {
    background: var(--green-50);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    padding: 70px 0 74px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .lead {
    font-size: 16px;
  }

  .food-carousel,
  .carousel-track {
    min-height: 410px;
    height: 410px;
  }

  .about,
  .products,
  .partner,
  .contact {
    padding: 72px 0;
  }

  .about-grid,
  .partner-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-copy,
  .partner-card {
    text-align: center;
  }

  .about-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .count-grid,
  .product-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero {
    padding-top: 52px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .food-carousel,
  .carousel-track {
    min-height: 360px;
    height: 360px;
    border-radius: 24px;
  }

  .slide-caption {
    left: 14px;
    right: 14px;
    bottom: 24px;
    padding: 14px 16px;
  }

  .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 25px;
  }

  .count-grid,
  .product-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: stretch;
  }

  .product-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .contact-card img {
    width: 180px;
  }
}
