:root {
  color-scheme: light;
  --ink: #172017;
  --muted: #596154;
  --deep: #111a12;
  --green: #253820;
  --moss: #586b35;
  --brass: #c58a3a;
  --brass-dark: #9b6524;
  --cream: #f7f2e8;
  --paper: #fffaf0;
  --line: rgba(23, 32, 23, 0.14);
  --shadow: 0 22px 60px rgba(11, 17, 10, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #efe8da;
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(239, 232, 218, 0.64), rgba(239, 232, 218, 0.56)),
    url("assets/scene/bg-field.jpg") center / cover no-repeat;
  filter: blur(12px) saturate(0.98);
  opacity: 0.62;
  transform: scale(1.04);
  z-index: -1;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--paper);
  color: var(--deep);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 0.75rem;
  color: #fffaf0;
  background: rgba(17, 26, 18, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 9.5rem;
}

.brand-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(10.2rem, 17vw, 12.8rem);
  height: auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.26));
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.93rem;
  color: rgba(255, 250, 240, 0.82);
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--brass);
}

.header-cta {
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 0.5rem;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 250, 240, 0.08);
}

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf0;
  background: var(--deep);
}

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

.hero-media {
  background-image: url("assets/scene/hero-water.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 16, 10, 0.94), rgba(11, 16, 10, 0.74) 42%, rgba(11, 16, 10, 0.18) 74%),
    linear-gradient(0deg, rgba(11, 16, 10, 0.84), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.9rem, 6.7vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.catalog-cta,
.final-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.15rem;
  border-radius: 0.55rem;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #d9a04d, var(--brass));
  color: #171006;
  box-shadow: 0 16px 38px rgba(197, 138, 58, 0.28);
}

.button.secondary {
  background: var(--deep);
  color: var(--paper);
  box-shadow: 0 16px 38px rgba(17, 26, 18, 0.18);
}

.button.ghost {
  border: 1px solid rgba(255, 250, 240, 0.32);
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
}

.hero-close {
  display: inline-grid;
  gap: 0.1rem;
  max-width: 660px;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-left: 5px solid var(--brass);
  border-radius: 0.65rem;
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(14px);
}

.hero-close strong {
  color: var(--paper);
  font-size: 1rem;
}

.hero-close span {
  color: rgba(255, 250, 240, 0.78);
  font-weight: 700;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-proof span,
.tag {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  padding: 0.46rem 0.7rem;
  background: rgba(255, 250, 240, 0.11);
  color: rgba(255, 250, 240, 0.88);
  font-weight: 800;
  font-size: 0.84rem;
}

.trust-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.metric {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.06;
}

.trust-strip p,
.product-card p,
.objection-grid p,
.final-cta p,
.habitat-card p,
.section-copy p,
.section-heading p {
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 6rem auto;
}

.section,
.quick-close,
.product-section,
.final-cta {
  position: relative;
  isolation: isolate;
}

.section::before,
.quick-close::before,
.product-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  top: -3.5rem;
  bottom: -3.5rem;
  left: 50%;
  width: 100vw;
  z-index: -1;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(239, 232, 218, 0.92), rgba(239, 232, 218, 0.54) 45%, rgba(239, 232, 218, 0.9)),
    linear-gradient(180deg, rgba(239, 232, 218, 0.46), rgba(239, 232, 218, 0.74)),
    var(--section-bg, url("assets/scene/bg-field.jpg")) center / cover no-repeat;
  filter: blur(9px) saturate(1.06) contrast(1.02);
  opacity: 0.96;
  transform: translateX(-50%) scale(1.02);
}

.quick-close {
  --section-bg: url("assets/scene/bg-water.jpg");
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 0.75rem;
  background: var(--deep);
  color: var(--paper);
  box-shadow: 0 18px 46px rgba(17, 26, 18, 0.2);
}

.quick-close strong {
  max-width: 680px;
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  line-height: 1.08;
}

.habitat-duo {
  width: min(1600px, calc(100% - 2rem));
  --section-bg: url("assets/scene/bg-water.jpg");
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding-bottom: 0;
  isolation: isolate;
}

.habitat-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0.85rem;
  background: var(--deep);
  color: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 250, 240, 0.16);
  transform: translateY(0) scale(1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
  will-change: transform;
}

.water-habitat {
  background:
    url("assets/scene/bg-water.jpg") center / cover no-repeat;
}

.forest-habitat {
  background:
    url("assets/scene/bg-forest.jpg") center / cover no-repeat;
}

.habitat-card + .habitat-card {
  margin-top: 0;
}

.habitat-card:nth-child(1) {
  z-index: 1;
}

.habitat-card:nth-child(2) {
  z-index: 2;
}

.habitat-card:nth-child(3) {
  z-index: 3;
}

.habitat-card:nth-child(4) {
  z-index: 4;
}

.habitat-card:hover,
.habitat-card:focus-within {
  z-index: 20;
  transform: translateY(-0.7rem) scale(1.018);
  border-color: rgba(217, 160, 77, 0.62);
  box-shadow: 0 34px 90px rgba(11, 17, 10, 0.34);
  filter: saturate(1.06);
}

.habitat-card:not(:last-child) .habitat-content {
  padding-bottom: clamp(1.35rem, 5vw, 3rem);
}

.habitat-backdrop,
.habitat-shade {
  position: absolute;
  inset: 0;
}

.habitat-backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.habitat-card:hover .habitat-backdrop,
.habitat-card:focus-within .habitat-backdrop {
  transform: scale(1.045);
}

.habitat-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 9, 0.92), rgba(8, 13, 9, 0.62) 46%, rgba(8, 13, 9, 0.1)),
    linear-gradient(0deg, rgba(8, 13, 9, 0.82), transparent 55%);
}

.field-habitat .habitat-shade {
  background:
    linear-gradient(90deg, rgba(34, 22, 10, 0.88), rgba(34, 22, 10, 0.58) 48%, rgba(34, 22, 10, 0.1)),
    linear-gradient(0deg, rgba(18, 16, 10, 0.82), transparent 55%);
}

.diver-habitat .habitat-shade {
  background:
    linear-gradient(90deg, rgba(9, 20, 22, 0.92), rgba(9, 20, 22, 0.66) 48%, rgba(9, 20, 22, 0.12)),
    linear-gradient(0deg, rgba(9, 15, 15, 0.84), transparent 56%);
}

.forest-habitat .habitat-shade {
  background:
    linear-gradient(90deg, rgba(24, 18, 11, 0.92), rgba(24, 18, 11, 0.68) 48%, rgba(24, 18, 11, 0.14)),
    linear-gradient(0deg, rgba(20, 17, 12, 0.86), transparent 56%);
}

.habitat-content {
  position: relative;
  max-width: 680px;
  padding: clamp(1.35rem, 5vw, 3rem);
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 0.65rem;
  color: var(--brass);
  background: rgba(255, 250, 240, 0.1);
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.habitat-content h2 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
}

.habitat-card p {
  max-width: 700px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 1.06rem;
}

.habitat-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.6rem;
}

.habitat-products span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.3rem;
  padding: 0.35rem 0.72rem 0.35rem 0.35rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.13);
  color: var(--paper);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.habitat-products img {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.intro-grid,
.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-grid {
  --section-bg: url("assets/scene/bg-forest.jpg");
}

.split-proof {
  --section-bg: url("assets/scene/bg-water.jpg");
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy > p,
.section-heading p {
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.feature-list div,
.objection-grid article {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.64);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-panel.product-focus {
  background: var(--deep);
}

.image-panel.product-focus img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.image-panel.product-focus figcaption {
  color: rgba(255, 250, 240, 0.78);
}

.image-panel figcaption {
  padding: 0.8rem 1rem 1rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.9rem;
}

.image-panel.compact img {
  aspect-ratio: 4 / 5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.product-section {
  --section-bg: url("assets/scene/bg-field.jpg");
  width: min(1600px, calc(100% - 2rem));
}

.product-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 360px);
  grid-auto-columns: minmax(230px, 270px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.15rem 0.25rem 1rem;
  scroll-padding-inline: 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--brass) rgba(23, 32, 23, 0.1);
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}

.product-grid::-webkit-scrollbar {
  height: 0.75rem;
}

.product-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(23, 32, 23, 0.08);
}

.product-grid::-webkit-scrollbar-thumb {
  border: 3px solid rgba(247, 242, 232, 0.9);
  border-radius: 999px;
  background: var(--brass);
}

.product-card {
  display: grid;
  grid-template-rows: 185px 1fr auto;
  height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(17, 26, 18, 0.08);
  scroll-snap-align: start;
}

.product-card.featured {
  border-color: rgba(197, 138, 58, 0.48);
  box-shadow: 0 18px 46px rgba(197, 138, 58, 0.16);
}

.product-card img {
  width: 100%;
  height: 185px;
  object-fit: contain;
  object-position: center;
  padding: 0.6rem;
  background: #fff;
}

.product-card div {
  padding: 0.85rem 0.9rem 0;
}

.product-card h3 {
  margin: 0.52rem 0 0.35rem;
  font-size: 1rem;
  line-height: 1.18;
}

.product-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.tag {
  display: inline-flex;
  border-color: rgba(88, 107, 53, 0.22);
  background: rgba(88, 107, 53, 0.1);
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin: 0 0.9rem 0.85rem;
  color: var(--brass-dark);
  font-weight: 950;
  font-size: 0.92rem;
  text-decoration: none;
}

.text-link::after {
  content: ">";
  margin-left: 0.45rem;
}

.catalog-cta,
.final-cta {
  margin-top: 2rem;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 0.75rem;
  background: var(--deep);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.catalog-cta h3,
.final-cta h2,
.final-cta p {
  max-width: 760px;
}

.catalog-cta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.flow-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.7rem;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(255, 250, 240, 0.7);
}

.flow-list li::before {
  content: counter(flow);
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.55rem;
  background: var(--brass);
  color: var(--deep);
  font-weight: 950;
}

.flow-list strong,
.flow-list span {
  display: block;
  grid-column: 2;
}

.flow-list span {
  color: var(--muted);
  margin-top: -0.45rem;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.objection-section {
  --section-bg: url("assets/scene/bg-forest.jpg");
}

.objection-grid article {
  background: var(--paper);
  display: grid;
  align-content: start;
}

.objection-grid h3 {
  margin-bottom: 0.45rem;
}

.mini-cta {
  display: inline-flex;
  justify-self: start;
  margin-top: 0.4rem;
  padding: 0.72rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--deep);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.mini-cta::after {
  content: ">";
  margin-left: 0.5rem;
  color: var(--brass);
}

.final-cta {
  --section-bg: url("assets/scene/bg-forest.jpg");
  width: min(var(--max), calc(100% - 2rem));
  margin: 6rem auto 0;
  align-items: center;
}

.site-footer {
  width: min(1600px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 6rem;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.18fr) minmax(240px, 0.92fr) minmax(230px, 0.78fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border-radius: 0.85rem;
  background: var(--deep);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.footer-brand img {
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.04rem;
}

.footer-brand .button {
  margin-top: 0.6rem;
}

.footer-column {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 250, 240, 0.14);
}

.footer-title {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 0.55rem;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
}

.footer-column strong:not(.footer-title) {
  color: rgba(255, 250, 240, 0.92);
}

.footer-main a {
  color: var(--paper);
}

.footer-column a {
  color: var(--brass);
  font-weight: 800;
}

.footer-bottom {
  padding: 1rem 0 0;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-sticky {
  display: none;
}

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

  .button,
  .habitat-card,
  .habitat-backdrop {
    transition: none;
  }

  .button:hover,
  .habitat-card:hover,
  .habitat-card:focus-within,
  .habitat-card:hover .habitat-backdrop,
  .habitat-card:focus-within .habitat-backdrop {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .split-proof,
  .habitat-duo,
  .trust-strip,
  .footer-main,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .habitat-card {
    min-height: 560px;
  }

  .habitat-card + .habitat-card {
    margin-top: 0;
  }

  .habitat-card:not(:last-child) .habitat-content {
    padding-bottom: clamp(1.35rem, 5vw, 3rem);
  }

  .product-grid {
    grid-auto-columns: minmax(220px, 38vw);
    grid-template-rows: repeat(2, 350px);
  }

  .product-card {
    grid-template-rows: 175px 1fr auto;
    height: 350px;
  }

  .product-card img {
    height: 175px;
  }

  .split-proof .image-panel {
    order: 2;
  }

  .footer-column {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.14);
  }
}

@media (max-width: 640px) {
  .site-header {
    margin-top: 0.5rem;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 16, 10, 0.72), rgba(11, 16, 10, 0.92) 66%),
      linear-gradient(90deg, rgba(11, 16, 10, 0.74), rgba(11, 16, 10, 0.2));
  }

  .hero-content {
    padding: 7rem 0 3rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-actions .button,
  .quick-close .button,
  .catalog-cta .button,
  .final-cta .button,
  .habitat-card .button {
    width: 100%;
  }

  .quick-close {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    margin: 4rem auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .habitat-card {
    min-height: 620px;
  }

  .habitat-card + .habitat-card {
    margin-top: 0;
  }

  .habitat-card:hover,
  .habitat-card:focus-within {
    transform: translateY(-0.45rem);
  }

  .habitat-card:not(:last-child) .habitat-content {
    padding-bottom: clamp(1.35rem, 5vw, 3rem);
  }

  .habitat-products span {
    width: 100%;
  }

  .product-grid {
    grid-auto-columns: minmax(74vw, 1fr);
    grid-template-rows: repeat(2, 340px);
  }

  .product-card {
    grid-template-rows: 165px 1fr auto;
    height: 340px;
  }

  .product-card img {
    height: 165px;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    display: block;
    padding: 0.75rem;
    background: rgba(17, 26, 18, 0.88);
    backdrop-filter: blur(16px);
  }

  .mobile-sticky .button {
    width: 100%;
  }
}
