:root {
  --green-950: #08291f;
  --green-900: #0d3429;
  --green-800: #103d31;
  --green-700: #185542;
  --green-100: #eaf2ee;
  --gold-600: #c99524;
  --gold-500: #d6a735;
  --gold-100: #fbf4df;
  --ink: #17201c;
  --muted: #657069;
  --line: #dce4df;
  --surface: #ffffff;
  --soft: #f5f8f6;
  --shadow: 0 24px 70px rgba(9, 42, 32, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--green-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 61, 49, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 230px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a,
.footer-links a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 12px;
  color: white;
  background: var(--green-900);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(13, 52, 41, 0.15);
}

.header-cta svg {
  width: 20px;
  fill: currentColor;
}

.menu-button {
  display: none;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(214, 167, 53, 0.14), transparent 23rem),
    linear-gradient(180deg, #fbfdfc 0%, #f1f6f3 100%);
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 64px;
  padding-block: 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
}

.hero-text {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--green-900);
  box-shadow: 0 16px 32px rgba(13, 52, 41, 0.18);
}

.button-secondary {
  color: var(--green-900);
  border: 1px solid var(--line);
  background: white;
}

.button-gold {
  color: var(--green-950);
  background: linear-gradient(135deg, #e4bb55, var(--gold-500));
  box-shadow: 0 12px 28px rgba(214, 167, 53, 0.2);
}

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

.audiences span {
  padding: 7px 12px;
  border: 1px solid rgba(16, 61, 49, 0.1);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 35, 26, 0.5));
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: white;
  background: rgba(6, 35, 26, 0.62);
  backdrop-filter: blur(14px);
}

.hero-card strong {
  font-size: 1.08rem;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  padding-block: 100px;
}

.section-soft {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-content {
  padding-top: 14px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-content p:first-child {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green-800);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.section-heading > p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
  margin-inline: auto;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 16px 50px rgba(16, 61, 49, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(16, 61, 49, 0.12);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(13, 52, 41, 0.86);
  font-size: 0.73rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 26px;
}

.product-body h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.55rem;
}

.product-body p {
  min-height: 52px;
  margin: 10px 0 22px;
  color: var(--muted);
}

.product-contact {
  padding: 0;
  border: 0;
  color: var(--green-800);
  background: none;
  font-weight: 850;
  cursor: pointer;
}

.product-contact::after {
  content: " →";
  color: var(--gold-600);
}

.contact {
  color: white;
  background:
    radial-gradient(circle at 95% 0%, rgba(214, 167, 53, 0.12), transparent 25rem),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.section-kicker-light {
  color: #efc85f;
}

.contact h2 {
  color: white;
}

.contact-info > p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
}

.contact address {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  font-style: normal;
}

.contact address a,
.contact address > div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
}

.contact address small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 650;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  outline: none;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.1);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  background: #061f18;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 208px 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-wrap img {
  width: 190px;
  height: auto;
  border-radius: 10px;
}

.footer-wrap p {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: white;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: 210px 1fr auto;
  }

  .header-cta span {
    display: none;
  }

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

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

  .hero-media > img {
    min-height: 430px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 205px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: white;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--green-900);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 77px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: 0 20px 40px rgba(13, 52, 41, 0.12);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

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

  .main-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 55px 70px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 10vw, 4.4rem);
  }

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

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-content {
    padding-top: 0;
  }

  .contact-info {
    max-width: 620px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-links {
    order: 2;
  }
}

@media (max-width: 620px) {
  .section {
    padding-block: 72px;
  }

  .product-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 310px;
    border-radius: 20px;
  }

  .hero-media > img {
    min-height: 310px;
  }

  .hero-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-body p {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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