:root {
  --ink: #171312;
  --muted: #625954;
  --paper: #fffaf3;
  --surface: #ffffff;
  --line: #eadfd2;
  --accent: #d94319;
  --accent-dark: #a93012;
  --teal: #0f6f67;
  --gold: #c98b2e;
  --shadow: 0 22px 60px rgba(32, 22, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(234, 223, 210, 0.85);
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 23px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover {
  color: var(--accent);
}

.lang {
  display: flex;
  gap: 6px;
}

.lang a {
  min-width: 38px;
  border: 1px solid var(--line);
  padding: 7px 9px;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  background: #fff;
}

.lang a.active {
  border-color: var(--accent);
  background: rgba(217, 67, 25, 0.08);
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 850;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 24px;
}

.hero {
  padding: 54px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 900;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-item {
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
  padding: 12px 14px;
}

.proof-item strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 540px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background: #070707;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 330px;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(28, 17, 10, 0.18);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 740px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
}

.section-head p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}

.surface {
  background: #fff;
}

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

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  background: rgba(15, 111, 103, 0.1);
  color: var(--teal);
  font-size: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

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

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

.product-copy h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
}

.product-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.photo-panel {
  overflow: hidden;
  background: #070707;
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

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

.audience-item {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(23, 19, 18, 0.1), rgba(23, 19, 18, 0.84)), url("../img/fresh.jpg");
  background-size: cover;
  color: #fff;
  padding: 24px;
}

.audience-item:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(23, 19, 18, 0.1), rgba(23, 19, 18, 0.84)), url("../img/delivery.jpg");
  background-position: center;
}

.audience-item:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(23, 19, 18, 0.1), rgba(23, 19, 18, 0.84)), url("../img/stock.jpg");
  background-position: right center;
}

.audience-item h3 {
  font-size: 24px;
}

.audience-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(217, 67, 25, 0.08);
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

details[open] {
  border-color: rgba(217, 67, 25, 0.34);
  box-shadow: 0 14px 34px rgba(32, 22, 16, 0.08);
}

details[open] summary::after {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq details p {
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.24s ease, margin-top 0.24s ease;
}

.faq details:not([open]) p {
  margin-top: 0;
  opacity: 0;
}

.map-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.contact-box {
  background: var(--ink);
  color: #fff;
  padding: 30px;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-line {
  display: block;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 850;
}

.contact-line + .contact-line {
  margin-top: 8px;
}

.map {
  min-height: 360px;
  border: 0;
  width: 100%;
  filter: saturate(0.92) contrast(1.02);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: 0.2s ease;
}

.social-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 7, 0.82);
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  background: #fff;
  font-size: 24px;
}

.js [data-aos] {
  opacity: 0;
  transition-duration: 720ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js [data-aos="fade-up"] {
  transform: translate3d(0, 28px, 0);
}

.js [data-aos="fade-right"] {
  transform: translate3d(-28px, 0, 0);
}

.js [data-aos="fade-left"] {
  transform: translate3d(28px, 0, 0);
}

.js [data-aos="zoom-in"] {
  transform: scale(0.96);
}

.js [data-aos].aos-animate {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (max-width: 900px) {
  body {
    padding-top: 74px;
  }

  .topbar {
    position: fixed;
    z-index: 100;
  }

  [data-aos="fade-left"],
  [data-aos="fade-right"],
  .js [data-aos="fade-left"],
  .js [data-aos="fade-right"] {
    transform: translate3d(0, 28px, 0) !important;
  }

  [data-aos].aos-animate,
  .js [data-aos].aos-animate {
    transform: none !important;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero-media {
    min-height: 420px;
  }

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

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

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

  .brand span {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-proof,
  .cards,
  .audience {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  section {
    padding: 54px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}
