:root {
  --ink: #0a0d09;
  --muted: #5d6659;
  --paper: #f5f2e8;
  --leaf-paper: #e8eedc;
  --line: rgba(10, 13, 9, 0.13);
  --green: #254b2f;
  --lime: #7ed10b;
  --moss: #6f8148;
  --tan: #ba9b6a;
  --nude: #d8c6a4;
  --nude-deep: #b99f76;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(10, 13, 9, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(245, 242, 232, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.header-actions,
.header-cta,
.hero-actions,
.product-footer,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  width: 154px;
  height: 48px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  gap: clamp(16px, 3vw, 32px);
  font-size: 14px;
  font-weight: 600;
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.is-active {
  background: var(--lime);
  color: var(--ink);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 72px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 20%, rgba(126, 209, 11, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(4, 7, 4, 0.88), rgba(14, 25, 13, 0.54) 52%, rgba(10, 13, 9, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-copy strong,
.hero-copy span {
  display: block;
}

.hero-copy strong {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.92em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 6vw, 72px);
}

.section-heading {
  display: block;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 8px 18px 10px;
  border-left: 8px solid var(--lime);
  border-radius: 8px;
  background: var(--nude);
  color: var(--green);
  box-shadow: 0 12px 34px rgba(95, 70, 36, 0.12);
}

.products-section .section-title {
  background: var(--nude-deep);
  color: var(--ink);
}

.profile-content {
  width: min(980px, 100%);
  margin-left: auto;
}

.profile-content > p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.profile-content > p + p {
  margin-top: 18px;
}

.vision-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-top: 34px;
}

.vision-mission article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.vision-mission h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.vision-mission p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.vision-mission ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.vision-mission li + li {
  margin-top: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
}

.stats span,
.process p,
.portfolio-item p,
.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.services-band {
  background:
    linear-gradient(135deg, rgba(126, 209, 11, 0.12), rgba(186, 155, 106, 0.16)),
    var(--leaf-paper);
}

.section-heading.compact {
  margin-bottom: 36px;
}

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

.process article,
.portfolio-item,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process article {
  min-height: 150px;
  padding: 24px;
}

.process span {
  color: var(--moss);
  font-weight: 800;
}

.process h3,
.portfolio-item h3,
.product-card h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.commitment {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(37, 75, 47, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.commitment h3 {
  margin: 0;
  color: var(--green);
  font-size: 24px;
}

.commitment p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.portfolio-item {
  overflow: hidden;
}

.portfolio-visual {
  height: 220px;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(126, 209, 11, 0.55) 0 12%, transparent 13%),
    radial-gradient(ellipse at 70% 62%, rgba(186, 155, 106, 0.7) 0 16%, transparent 17%),
    linear-gradient(135deg, #f1e7cf, #47623b 48%, #1d2d20);
}

.portfolio-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  background: #f2ead8;
}

.achievement-card .portfolio-photo {
  max-height: 420px;
}

.visual-two {
  background:
    radial-gradient(ellipse at 78% 28%, rgba(126, 209, 11, 0.5) 0 13%, transparent 14%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 28px),
    linear-gradient(135deg, #c8ae78, #324d32 48%, #070907);
}

.visual-three {
  background:
    radial-gradient(ellipse at 24% 32%, rgba(126, 209, 11, 0.62) 0 18%, transparent 19%),
    radial-gradient(ellipse at 75% 72%, rgba(245, 242, 232, 0.5) 0 12%, transparent 13%),
    linear-gradient(135deg, #071008, #314f2c 55%, #7a8a44);
}

.visual-four {
  background:
    linear-gradient(90deg, rgba(245, 242, 232, 0.34) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 68% 30%, rgba(126, 209, 11, 0.55) 0 14%, transparent 15%),
    linear-gradient(135deg, #22331f, #816b3e);
}

.visual-five {
  background:
    radial-gradient(ellipse at 22% 68%, rgba(245, 242, 232, 0.7) 0 12%, transparent 13%),
    radial-gradient(ellipse at 70% 36%, rgba(126, 209, 11, 0.48) 0 16%, transparent 17%),
    linear-gradient(135deg, #0a0d09, #48643c 58%, #c2aa72);
}

.visual-six {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 30% 30%, rgba(126, 209, 11, 0.5) 0 14%, transparent 15%),
    linear-gradient(135deg, #7d8f49, #283d26);
}

.visual-seven {
  background:
    radial-gradient(circle at 50% 50%, rgba(126, 209, 11, 0.58) 0 18%, transparent 19%),
    radial-gradient(circle at 82% 22%, rgba(245, 242, 232, 0.62) 0 10%, transparent 11%),
    linear-gradient(135deg, #11170e, #5c7138 54%, #d8c28a);
}

.portfolio-item h3,
.portfolio-item p {
  padding: 0 24px;
}

.portfolio-item p {
  padding-bottom: 24px;
}

.products-section {
  background:
    radial-gradient(circle at 15% 16%, rgba(126, 209, 11, 0.16), transparent 28%),
    #090d08;
  color: var(--white);
}

.products-section .section-heading h2 {
  color: var(--white);
}

.product-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  background: #fbf8ed;
  color: var(--ink);
}

.product-card > div,
.product-footer {
  padding-left: 28px;
  padding-right: 28px;
}

.product-card > div {
  padding-top: 28px;
}

.product-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  background: #f2ead8;
}

.product-card.featured {
  background: #e2f0cd;
  box-shadow: var(--shadow);
}

.product-type {
  margin: 0;
  color: var(--moss);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.product-footer {
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-bottom: 28px;
}

.product-footer a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 32px;
  background: var(--white);
}

.contact-section > div {
  max-width: 760px;
}

.contact-section > .button {
  grid-column: 1;
  width: fit-content;
}

.address-block {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.address-block strong {
  color: var(--green);
  font-size: 18px;
}

.address-block a {
  width: fit-content;
  color: var(--green);
  font-weight: 800;
  box-shadow: inset 0 -2px 0 var(--lime);
}

.map-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.map-fallback {
  display: none;
  min-height: 260px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 209, 11, 0.18), transparent 28%),
    var(--paper);
}

.map-fallback strong,
.map-fallback span,
.map-fallback a {
  display: block;
}

.map-fallback strong {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 24px;
}

.map-fallback span {
  color: var(--muted);
  line-height: 1.6;
}

.map-fallback a {
  width: fit-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.contact-section .button.secondary {
  color: var(--ink);
  border-color: var(--line);
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.social-links a:hover {
  border-color: var(--lime);
  box-shadow: inset 0 -3px 0 var(--lime);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    padding: 16px;
  }

  .hero {
    min-height: 88svh;
    padding-bottom: 48px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 12, 10, 0.28), rgba(4, 7, 4, 0.9));
  }

  .section-heading,
  .vision-mission,
  .commitment,
  .process,
  .portfolio-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .contact-section,
  .footer {
    align-items: flex-start;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section > .button,
  .map-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 320px;
    height: 320px;
  }

  .map-panel {
    min-height: auto;
  }

  .map-panel iframe {
    display: none;
  }

  .map-fallback {
    display: block;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 132px;
    height: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-footer a {
    width: 100%;
    justify-content: center;
  }
}
