:root {
  --forest: #1d3828;
  --forest-deep: #10261a;
  --sage: #79957a;
  --sage-soft: #e9efe7;
  --moss: #a7b68b;
  --gold: #d7b36a;
  --sand: #efe5d1;
  --ink: #1c1d1a;
  --muted: #5f645d;
  --white: #ffffff;
  --shadow: rgba(20, 31, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #f5f1ea 0%, #f8f6f1 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 56, 40, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 96px;
  padding: 0.5rem 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(29, 56, 40, 0.08);
  box-shadow: 0 8px 20px rgba(29, 56, 40, 0.08);
  padding: 0;
}

.brand-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--forest-deep);
}

.brand-tag {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 1rem;
  color: var(--muted);
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--forest-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest), var(--sage));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(29, 56, 40, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(29, 56, 40, 0.16);
  background: rgba(255, 255, 255, 0.45);
  color: var(--forest-deep);
}

.hero {
  padding: 0 0 4rem;
  overflow-x: clip;
  background: radial-gradient(circle at top left, rgba(167, 182, 139, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(233, 239, 231, 0.92) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-brand-wrap {
  grid-column: 1 / -1;
  width: 100vw;
  aspect-ratio: 2.678;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0.4rem;
  overflow: hidden;
}

.hero-brand-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: var(--sage-soft);
  object-fit: cover;
  object-position: center top;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--forest);
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.site-footer h2 {
  margin: 0;
  color: var(--forest-deep);
  line-height: 1.12;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.04em;
}

.lead {
  margin-top: 1.2rem;
  max-width: 60ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--forest-deep);
  font-weight: 600;
}

.hero-points li {
  position: relative;
  padding-left: 1.15rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(29, 56, 40, 0.1);
  box-shadow: 0 20px 50px var(--shadow);
  background: var(--white);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-card {
  right: 0;
  top: 2rem;
  width: min(390px, 82%);
  height: 430px;
  border-radius: 28px;
}

.secondary-card {
  left: 0;
  bottom: 0;
  width: min(280px, 56%);
  height: 260px;
  border-radius: 22px;
  border-color: rgba(29, 56, 40, 0.08);
}

.product-section,
.quality-section {
  padding: 2rem 0 4rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.center-heading {
  text-align: center;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.company-overview {
  padding: 2rem 0 4rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.overview-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--forest-deep);
}

.overview-copy p {
  color: var(--muted);
}

.overview-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(29, 56, 40, 0.95), rgba(21, 33, 27, 0.95));
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(17, 38, 27, 0.15);
}

.metric-box {
  padding: 1.2rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.metric-box strong {
  color: var(--white);
  font-size: 1.1rem;
}

.metric-box span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-panel {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 56, 40, 0.08);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(29, 56, 40, 0.05);
}

.intro-panel {
  grid-template-columns: 1fr;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.status-pill {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(167, 182, 139, 0.18);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.82rem;
}

.status-pill.muted {
  background: rgba(215, 179, 106, 0.16);
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pricing-block {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gold);
  background: rgba(239, 229, 209, 0.35);
  border-radius: 14px;
  color: var(--forest-deep);
  font-size: 1.3rem;
  font-weight: 700;
}

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 56, 40, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(29, 56, 40, 0.05);
}

.card-image {
  height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.placeholder-1 {
  background: linear-gradient(135deg, #29563a, #90a978);
}

.placeholder-2 {
  background: linear-gradient(135deg, #586c4d, #c7b07a);
}

.placeholder-3 {
  background: linear-gradient(135deg, #244638, #7ea69b);
}

.placeholder-4 {
  background: linear-gradient(135deg, #4b3d2f, #cbb79b);
}

.card-body {
  padding: 1.5rem 1.4rem 1.7rem;
}

.product-kicker {
  margin: 0 0 0.5rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.card-body h3 {
  margin: 0 0 0.9rem;
  color: var(--forest-deep);
  font-size: 1.5rem;
  line-height: 1.25;
}

.card-body ul {
  margin: 0 0 1.3rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card-body li + li {
  margin-top: 0.45rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.quality-card {
  padding: 1.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 56, 40, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(29, 56, 40, 0.04);
}

.quality-card h3 {
  margin: 0 0 0.65rem;
  color: var(--forest-deep);
  font-size: 1.2rem;
}

.quality-card p {
  margin: 0;
  color: var(--muted);
}

.product-detail-section {
  padding: 4rem 0 2rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--forest-deep);
}

.detail-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 56, 40, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(29, 56, 40, 0.05);
}

.detail-card .card-image {
  min-height: 420px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.site-footer {
  background: linear-gradient(180deg, #1d3828 0%, #11261b 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 1.5rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h2 {
  color: var(--white);
  max-width: 700px;
}

.contact-box {
  min-width: 260px;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.contact-box a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-page {
  max-width: 760px;
}

.contact-card {
  margin-top: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 56, 40, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(29, 56, 40, 0.05);
}

.contact-card a {
  display: inline-block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: var(--forest-deep);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-note {
  margin: 0;
  color: var(--muted);
  max-width: 50ch;
}

.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .overview-grid,
  .product-panel,
  .quality-grid,
  .footer-wrap,
  .detail-layout,
  .detail-specs {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid,
  .overview-grid,
  .product-panel,
  .footer-wrap,
  .detail-layout {
    gap: 2rem;
  }

  .overview-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 0;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .primary-card {
    width: 86%;
    height: 350px;
  }

  .secondary-card {
    width: 48%;
    height: 190px;
  }

  .site-footer {
    padding-top: 3rem;
  }
}
