:root {
  --bg: #100d08;
  --text: #f8f3ea;
  --muted: #cdbba1;
  --accent: #dfab66;
  --accent-2: #f1c47d;
  --line: rgba(255, 255, 255, 0.12);
  --ok: #9ed38a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, #2f2418 0%, var(--bg) 50%),
    linear-gradient(180deg, #151008 0%, #0f0d08 100%);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(8, 8, 8, 0.52);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.logo-mark {
  width: 64px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.45));
}

.hamburger {
  width: 46px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  display: grid;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: grid;
  gap: 8px;
  padding: 0 4% 14px;
}

.mobile-menu[hidden] { display: none !important; }

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  padding: 22px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.75)),
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.55));
}

.hero-img {
  width: min(56vw, 760px);
  max-height: 68vh;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  z-index: 2;
  opacity: 0;
  transform: translateX(0) scale(1);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.55);
}

.hero-text {
  position: absolute;
  right: 8vw;
  max-width: 530px;
  z-index: 3;
  opacity: 0;
  transform: translateX(40px);
}

.hero-text small {
  color: var(--accent);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 10px;
}

.hero-text h1 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.hero-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
}

.btn {
  margin-top: 10px;
  color: var(--text);
  border: 1px solid rgba(241, 196, 125, .55);
  background: linear-gradient(180deg, rgba(241, 196, 125, .17), rgba(255,255,255,.04));
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}

.loaded .hero-img {
  animation: fadeIn 0.6s ease forwards, slideLeft 1.5s cubic-bezier(0.2, 0.9, 0.2, 1) 0.25s forwards;
}

.loaded .hero-text {
  animation: reveal 0.9s ease 0.95s forwards;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLeft { from { transform: translateX(0) scale(1); } to { transform: translateX(-24vw) scale(0.86); } }
@keyframes reveal { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

.content { margin: 24px auto 30px; }
.section-title { margin: 0 0 8px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.section-sub { color: var(--muted); margin-top: 0; }

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

.cat {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  color: var(--text);
  border-radius: 18px;
  padding: 12px;
  display: grid;
  gap: 12px;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.cat:hover,
.cat:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(241, 196, 125, .72);
  box-shadow: 0 16px 36px rgba(0,0,0,.32);
  outline: none;
}

.cat-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 170px;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform .35s ease;
}

.cat:hover .cat-media img { transform: scale(1.05); }

.cat-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: .76rem;
  letter-spacing: .05em;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.28);
  padding: 6px 10px;
  border-radius: 999px;
}

.cat-body strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.cat-body em {
  display: block;
  font-style: normal;
  color: var(--muted);
  margin-bottom: 8px;
}

.cat-note {
  color: rgba(241, 196, 125, .92);
  font-size: .84rem;
}

.coming-soon { border-style: dashed; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px auto 16px;
}

.trust-strip article {
  background: linear-gradient(160deg, rgba(223,171,102,.16), rgba(255,255,255,.03));
  border: 1px solid rgba(223,171,102,.36);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.trust-strip span {
  font-size: .92rem;
  color: var(--muted);
}

.info-grid {
  margin: 8px auto 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.info-card h3 { margin: 0 0 10px; }

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #e8d7bf;
  line-height: 1.7;
}

.contact-list {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.2);
}

.contact-list p {
  margin: 6px 0;
  color: #e5d8c7;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(18px);
  background: rgba(12, 22, 8, 0.95);
  border: 1px solid rgba(158, 211, 138, 0.55);
  color: var(--ok);
  border-radius: 999px;
  padding: 10px 16px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.page-hero { padding: 34px 0 10px; }
.page-hero h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: var(--muted); max-width: 62ch; }

.box-grid {
  margin: 16px auto 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  transform: translateY(14px);
  opacity: 0;
  animation: riseIn 0.6s ease forwards;
}

.box:nth-child(2) { animation-delay: 0.08s; }
.box:nth-child(3) { animation-delay: 0.16s; }
.box:nth-child(4) { animation-delay: 0.24s; }
.box:nth-child(5) { animation-delay: 0.32s; }
.box:nth-child(6) { animation-delay: 0.4s; }

.box h3 { margin: 0 0 8px; }
.box p { margin: 0; color: var(--muted); line-height: 1.6; }

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.product-grid { margin-top: 10px; }

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  overflow: visible;
}

.product-card img {
  width: auto;
  max-width: 100%;
  height: clamp(230px, 30vw, 320px);
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8px;
  background: transparent;
  border-radius: 12px;
  margin: 0 auto 10px;
  transition: transform .35s ease;
  --pack-scale: 1;
  transform: scale(var(--pack-scale));
}

.product-card:hover img { transform: scale(calc(var(--pack-scale) + 0.04)); }

.product-card img.pack-zoom {
  --pack-scale: 1.42;
}

.product-card h3 {
  width: 100%;
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.product-card p {
  width: 100%;
  margin: 0;
}

@media (max-width: 920px) {
  .hero-img {
    width: min(88vw, 520px);
    max-height: 52vh;
  }
  .loaded .hero-img { animation: fadeIn 0.6s ease forwards, slideMobile 1.25s ease 0.25s forwards; }

  .hero-text {
    left: 6vw;
    right: 6vw;
    bottom: 7vh;
    max-width: none;
    transform: translateY(24px);
  }

  .loaded .hero-text { animation: revealMobile 0.9s ease 0.85s forwards; }

  @keyframes slideMobile { from { transform: translateY(-6vh) scale(1); } to { transform: translateY(-24vh) scale(0.72); } }
  @keyframes revealMobile { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  .categories { grid-template-columns: 1fr; }
  .cat-media { height: 190px; }
  .box-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .info-grid { grid-template-columns: 1fr; }
  .box-grid { grid-template-columns: 1fr; }
}


.map-wrap {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
