:root {
  --forest: #08291c;
  --forest-2: #123d2b;
  --leaf: #4f7f34;
  --gold: #b8792f;
  --wood: #7f542f;
  --cream: #e7ddcc;
  --paper: #f2eadc;
  --ink: #0e1b15;
  --muted: #4f5c53;
  --line: rgba(8, 41, 28, 0.22);
  --shadow: 0 24px 70px rgba(8, 41, 28, 0.26);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #e6dccb 0%, #d8dfd0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background-image: radial-gradient(circle at 20% 10%, rgba(184,121,47,.28), transparent 28%), radial-gradient(circle at 85% 5%, rgba(48,92,53,.28), transparent 30%), linear-gradient(rgba(8,41,28,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(8,41,28,.045) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 14px 32px rgba(18,51,38,.24); }
.btn-secondary { background: var(--paper); color: var(--forest); border: 1px solid var(--line); }
.btn-gold { background: var(--gold); color: #1f1608; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(226, 216, 199, 0.92);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .04em; }
.brand img { width: 46px; height: 46px; border-radius: 14px; object-fit: cover; box-shadow: 0 8px 20px rgba(18,51,38,.16); }
.brand span { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 12px; border-radius: 999px; color: #1c3428; font-weight: 700; font-size: .92rem; }
.nav-links a:hover, .nav-links a.active { background: rgba(79,127,52,.18); color: var(--forest); }
.mobile-toggle { display: none; border: 0; background: var(--forest); color: #fff; border-radius: 12px; padding: 10px 12px; font-weight: 800; }
.hero { padding: 88px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
h1, h2, h3 { line-height: 1.08; margin: 0; color: var(--forest); }
h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.04em; }
h3 { font-size: 1.35rem; }
p { margin: 0; color: var(--muted); }
.hero p { font-size: 1.17rem; margin-top: 22px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.metric { background: rgba(242,234,220,.82); border: 1px solid var(--line); border-radius: 22px; padding: 16px; }
.metric strong { display: block; color: var(--forest); font-size: 1.25rem; }
.metric span { color: var(--muted); font-size: .86rem; }
.hero-card { position: relative; isolation: isolate; }
.hero-card::before { content: ""; position: absolute; inset: 34px -18px -18px 34px; border-radius: 36px; background: linear-gradient(145deg, var(--forest) 0%, #061d14 100%); z-index: -1; }
.hero-card img { width: 100%; height: min(620px, 62vw); object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.badge-stack { position: absolute; left: -24px; right: auto; bottom: 28px; display: grid; gap: 10px; z-index: 2; max-width: min(340px, calc(100% - 24px)); }
.floating-badge { background: rgba(242,234,220,.96); border: 1px solid var(--line); border-radius: 18px; padding: 13px 16px; color: var(--forest); font-weight: 900; line-height: 1.25; overflow-wrap: anywhere; box-shadow: 0 12px 32px rgba(8,41,28,.22); }
.section { padding: 78px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-head p { max-width: 560px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: rgba(242,234,220,.88); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 18px 52px rgba(18,51,38,.08); }
.icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; background: rgba(79,127,52,.18); color: var(--forest); font-size: 1.45rem; margin-bottom: 22px; }
.card p, .feature p { margin-top: 12px; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: center; }
.image-collage { display: grid; grid-template-columns: 1fr .72fr; gap: 16px; align-items: stretch; }
.image-collage img { height: 100%; min-height: 360px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.image-collage img:nth-child(2) { min-height: 260px; align-self: end; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 18px; border-radius: 22px; background: rgba(242,234,220,.76); border: 1px solid var(--line); }
.feature strong { color: var(--forest); font-size: 1.02rem; }
.feature .check { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; color: #fff; background: var(--forest-2); font-weight: 900; }
.band { background: var(--forest); color: #fff; border-radius: 38px; padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; overflow: hidden; position: relative; }
.band::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -90px; top: -90px; background: rgba(212,154,72,.18); }
.band h2, .band p { color: #fff; }
.band p { opacity: .78; margin-top: 12px; }
.gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 260px; gap: 16px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; box-shadow: 0 14px 38px rgba(18,51,38,.10); }
.gallery img:first-child { grid-row: span 2; }
.page-hero { padding: 70px 0 42px; }
.page-hero .container { display: grid; gap: 18px; }
.page-hero p { max-width: 760px; font-size: 1.12rem; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.spec-table { overflow: hidden; border-radius: 26px; border: 1px solid var(--line); background: var(--paper); }
.spec-row { display: grid; grid-template-columns: 1fr 1.4fr; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; }
.spec-row strong, .spec-row span { padding: 18px 20px; }
.spec-row strong { background: rgba(79,127,52,.16); color: var(--forest); }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 34px; padding: 34px; box-shadow: var(--shadow); }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line b { color: var(--forest); }
.footer { margin-top: 58px; padding: 40px 0; background: #071c14; color: rgba(255,255,255,.74); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, auto); gap: 28px; align-items: start; }
.footer a:hover { color: #fff; }
.footer .brand small { color: rgba(255,255,255,.72); }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .mobile-toggle { display: inline-flex; }
  .nav-links { position: absolute; inset: 78px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; padding: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .two-col, .band { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-card img { height: 460px; }
  .badge-stack { left: 16px; right: 16px; max-width: none; }
  .card-grid { grid-template-columns: 1fr; }
  .section-head { display: grid; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--forest) 0%, #061d14 100%);
    box-shadow: var(--shadow);
  }
  .hero-card::before { display: none; }
  .hero-card img {
    width: 100%;
    height: clamp(220px, 58vw, 360px);
    min-height: 0;
    border-radius: 24px;
    box-shadow: none;
  }
  .badge-stack {
    position: static;
    max-width: none;
  }
  .floating-badge {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: .95rem;
  }
  .hero-metrics, .gallery, .image-collage { grid-template-columns: 1fr; }
  .image-collage img { height: auto; min-height: 0; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.4rem); }
  .brand { gap: 10px; }
  .brand img { width: 44px; height: 44px; }
  .band { padding: 30px; border-radius: 28px; }
  .spec-row { grid-template-columns: 1fr; }
}

.hero-visual {
  position: relative;
  min-height: 660px;
  isolation: isolate;
  perspective: 1000px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 10% 8%;
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(8, 41, 28, .94), rgba(22, 69, 48, .9));
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  z-index: -2;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(135deg, transparent 4%, #000 24%, #000 68%, transparent 92%);
  animation: grid-drift 16s linear infinite;
  z-index: -1;
}
.hero-card {
  position: absolute;
  inset: 34px 18px 108px 0;
  isolation: isolate;
  transform-style: preserve-3d;
  animation: premium-float 7s ease-in-out infinite;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--gold) 0%, #5f3d1f 100%);
  z-index: -1;
  opacity: .72;
}
.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(231, 221, 204, .38);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(184, 121, 47, .16);
}
.orbit-one {
  width: 190px;
  height: 190px;
  right: -20px;
  top: 42px;
  animation: rotate-orbit 12s linear infinite;
}
.orbit-one::after { left: 24px; top: 20px; }
.orbit-two {
  width: 128px;
  height: 128px;
  left: -14px;
  bottom: 168px;
  animation: rotate-orbit 9s linear infinite reverse;
}
.orbit-two::after { right: 8px; bottom: 22px; }
.moving-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(242, 234, 220, .88);
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 0 16px 40px rgba(8,41,28,.2);
}
.chip-one { right: 26px; top: 28px; animation: chip-slide 6s ease-in-out infinite; }
.chip-two { left: 16px; bottom: 132px; animation: chip-slide 6.8s ease-in-out infinite reverse; }
.logistics-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 26px;
  background: rgba(242, 234, 220, .92);
  box-shadow: 0 18px 48px rgba(8,41,28,.22);
  overflow: hidden;
  z-index: 5;
}
.logistics-panel div:not(.route-line) {
  position: relative;
  z-index: 2;
  padding-left: 18px;
}
.logistics-panel div:not(.route-line)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(79,127,52,.16);
}
.logistics-panel strong,
.logistics-panel small { display: block; }
.logistics-panel strong { color: var(--forest); font-size: 1rem; }
.logistics-panel small { color: var(--muted); font-weight: 700; }
.route-line {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 21px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79,127,52,.34), transparent);
}
.route-line span {
  position: absolute;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  animation: route-move 4.2s ease-in-out infinite;
}
.card,
.feature,
.contact-card,
.spec-table,
.process-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover,
.feature:hover,
.contact-card:hover,
.spec-table:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,121,47,.46);
  box-shadow: 0 24px 60px rgba(18,51,38,.14);
}
.section-dark {
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin: 34px 0;
  color: #fff;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0 max(20px, calc((100vw - 1160px) / 2));
  border-radius: 42px;
  background: linear-gradient(145deg, #08291c 0%, #123d2b 72%, #2f4f26 100%);
  box-shadow: var(--shadow);
  z-index: -1;
}
.section-dark h2,
.section-dark h3,
.section-dark p { color: #fff; }
.section-dark p { opacity: .78; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.process-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -44px;
  bottom: -44px;
  border-radius: 34px;
  background: rgba(184,121,47,.2);
  animation: premium-float 8s ease-in-out infinite;
}
.process-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #f4c078;
  font-weight: 900;
  letter-spacing: .12em;
}
.process-card p { margin-top: 12px; }
@keyframes premium-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(.001deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(1.2deg); }
}
@keyframes rotate-orbit { to { transform: rotate(360deg); } }
@keyframes chip-slide {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-16px, 12px, 0); }
}
@keyframes route-move {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 42px); opacity: 0; }
}
@keyframes grid-drift { to { background-position: 44px 44px; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 900px) {
  .hero-visual { min-height: 600px; }
  .hero-card { inset: 26px 0 118px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .section-dark::before { inset: 0 20px; }
}
@media (max-width: 620px) {
  .hero-visual { min-height: 0; }
  .hero-visual::before,
  .hero-visual::after,
  .orbit,
  .moving-chip { display: none; }
  .hero-card {
    position: relative;
    inset: auto;
    animation: none;
  }
  .hero-card img { min-height: 0; }
  .logistics-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
  .route-line { display: none; }
  .section-dark { margin: 12px 0; }
}
.site-header.is-scrolled {
  background: rgba(242, 234, 220, .94);
  box-shadow: 0 10px 34px rgba(8,41,28,.12);
}
.hero-visual { transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .2s ease-out; }

@media (max-width: 760px) {
  html { font-size: 15px; }
  body { overflow-x: hidden; }
  body::before {
    opacity: .32;
    background-size: auto, auto, 34px 34px, 34px 34px;
  }
  .container { width: min(100% - 24px, 1160px); }
  .site-header { backdrop-filter: blur(14px); }
  .nav {
    min-height: 66px;
    gap: 12px;
  }
  .brand { min-width: 0; }
  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .brand span {
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .98rem;
  }
  .brand small { font-size: .62rem; }
  .mobile-toggle {
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
  }
  .nav-links {
    inset: 72px 12px auto 12px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 10px;
    border-radius: 18px;
  }
  .nav-links a {
    width: 100%;
    padding: 13px 14px;
    font-size: 1rem;
  }
  .hero { padding: 38px 0 34px; }
  .page-hero { padding: 42px 0 24px; }
  .hero-grid { gap: 30px; }
  h1 {
    font-size: clamp(2rem, 11.5vw, 3.05rem);
    letter-spacing: -.045em;
  }
  h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.25rem);
    letter-spacing: -.035em;
  }
  h3 { font-size: 1.16rem; }
  .hero p,
  .page-hero p {
    font-size: 1rem;
    margin-top: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 13px 18px;
    text-align: center;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .metric { padding: 14px 15px; }
  .hero-visual {
    min-height: 0;
    transform: none !important;
  }
  .hero-card {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 26px;
    background: linear-gradient(145deg, var(--forest) 0%, #061d14 100%);
    box-shadow: var(--shadow);
    animation: none;
  }
  .hero-card::before,
  .hero-visual::before,
  .hero-visual::after,
  .orbit,
  .moving-chip { display: none; }
  .hero-card img {
    width: 100%;
    height: clamp(230px, 62vw, 340px);
    min-height: 0;
    border: 0;
    border-radius: 20px;
    box-shadow: none;
  }
  .badge-stack {
    position: static;
    max-width: none;
    gap: 8px;
  }
  .floating-badge {
    width: 100%;
    padding: 11px 12px;
    font-size: .9rem;
  }
  .logistics-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
    padding: 14px;
    border-radius: 20px;
  }
  .route-line { display: none; }
  .section { padding: 44px 0; }
  .section-head { gap: 14px; margin-bottom: 22px; }
  .card-grid,
  .two-col,
  .split,
  .gallery,
  .image-collage,
  .process-grid { grid-template-columns: 1fr; }
  .card,
  .contact-card,
  .process-card {
    padding: 22px;
    border-radius: 22px;
  }
  .icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    margin-bottom: 16px;
  }
  .feature {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 15px;
  }
  .feature .check {
    width: 40px;
    height: 40px;
  }
  .image-collage img,
  .gallery img,
  .split img[style] {
    min-height: 0;
    max-height: 360px;
    object-fit: cover;
    border-radius: 22px !important;
  }
  .gallery { grid-auto-rows: auto; }
  .gallery img:first-child { grid-row: auto; }
  .band {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
  }
  .band::after {
    width: 180px;
    height: 180px;
  }
  .section-dark {
    margin: 8px 0;
    padding: 44px 0;
  }
  .section-dark::before {
    inset: 0 12px;
    border-radius: 26px;
  }
  .process-card { min-height: 0; }
  .process-card span { margin-bottom: 18px; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-row strong,
  .spec-row span { padding: 14px 16px; }
  .contact-line {
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
  }
  .footer {
    margin-top: 34px;
    padding: 34px 0;
  }
  .footer-grid { gap: 24px; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 18px, 1160px); }
  .brand span { max-width: 130px; }
  h1 { font-size: clamp(1.82rem, 11vw, 2.45rem); }
  .card,
  .contact-card,
  .process-card,
  .band { padding: 18px; }
}
