﻿:root {
  --charcoal: #070707;
  --charcoal-soft: #11100d;
  --white: #f5f1e8;
  --muted: #c9c3ba;
  --amber: #d6a531;
  --amber-light: #f0c45c;
  --olive: #373829;
  --brown: #2a2118;
  --line: rgba(214, 165, 49, 0.15);
  --max: 1720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(214, 165, 49, 0.075), transparent 34rem),
    radial-gradient(circle at 18% 38%, rgba(55, 56, 41, 0.22), transparent 30rem),
    linear-gradient(180deg, #070707 0%, #0b0907 42%, #11100d 100%),
    var(--charcoal);
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  animation: pageFade 700ms ease both;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.014) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.22;
  pointer-events: none;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

section {
  scroll-margin-top: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(7, 7, 7, 0.76);
  border-bottom: 1px solid rgba(214, 165, 49, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo span {
  color: var(--amber);
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 24px rgba(214, 165, 49, 0.22);
}

.logo small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-light), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 220ms ease, transform 220ms ease;
}

.main-nav a:hover {
  color: var(--amber);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(var(--max), 92vw);
  min-height: clamp(560px, 42vw, 640px);
  margin: clamp(86px, 8vw, 104px) auto clamp(26px, 3vw, 44px);
  padding: clamp(66px, 7vw, 96px) clamp(36px, 7vw, 86px) clamp(48px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(214, 165, 49, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.76) 32%, rgba(7, 7, 7, 0.36) 58%, rgba(7, 7, 7, 0.06) 82%, rgba(7, 7, 7, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.16) 0%, rgba(7, 7, 7, 0.01) 50%, rgba(7, 7, 7, 0.72) 100%),
    url("assets/images/hero/wx_hunter_tuft_hero.jpg") right center / cover no-repeat;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34), 0 0 54px rgba(214, 165, 49, 0.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 40%, rgba(214, 165, 49, 0.12), transparent 24rem),
    radial-gradient(circle at 34% 78%, rgba(55, 56, 41, 0.18), transparent 28rem);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(7, 7, 6, 0), var(--charcoal));
  pointer-events: none;
}

.hero-copy,
.section-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-copy {
  max-width: 500px;
  margin-left: clamp(8px, 2vw, 28px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 580px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 7.3rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.lead {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  font-weight: 500;
}

.ideal-for {
  margin-top: 30px;
  color: var(--muted);
}

.ideal-for p {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ideal-for ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ideal-for li {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 190px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease;
}

.ideal-for li + li {
  padding-left: 22px;
  border-left: 1px solid rgba(214, 165, 49, 0.26);
}

.ideal-for li:hover {
  transform: translateY(-2px);
  color: var(--amber-light);
}

.ideal-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid rgba(214, 165, 49, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(247, 243, 236, 0.16), transparent 22%),
    var(--amber);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.76),
    0 0 0 1px rgba(245, 241, 232, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(214, 165, 49, 0.12);
  isolation: isolate;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.ideal-for li:hover .ideal-icon {
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.76),
    0 0 0 1px rgba(240, 196, 92, 0.28),
    0 14px 26px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(214, 165, 49, 0.18);
}

.ideal-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.7);
}

.ideal-label {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 230px;
  max-width: 260px;
  min-height: 52px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber) 54%, #9b711e);
  color: #10100d;
  border: 1px solid rgba(240, 196, 92, 0.72);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(89, 62, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ffd16a, var(--amber-light) 54%, var(--amber));
  box-shadow: 0 22px 48px rgba(89, 62, 18, 0.34), 0 0 18px rgba(214, 165, 49, 0.12);
  transform: translateY(-2px);
}

.section-copy p,
.hunter-block p,
.site-footer {
  color: var(--muted);
}


.how-to {
  position: relative;
  width: min(var(--max), 92vw);
  min-height: 0;
  margin: 0 auto clamp(26px, 3vw, 44px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 165, 49, 0.1);
  border-radius: 24px;
  background: var(--charcoal-soft);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.32), 0 0 54px rgba(214, 165, 49, 0.045);
}

.section-heading {
  position: absolute;
  top: clamp(28px, 4vw, 54px);
  left: clamp(28px, 4vw, 58px);
  z-index: 4;
  max-width: 760px;
  margin: 0;
  text-align: left;
  pointer-events: none;
}

  .usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(214, 165, 49, 0.12);
}

.usage-card {
  position: relative;
  height: clamp(420px, 30vw, 520px);
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--charcoal-soft);
  box-shadow: none;
  isolation: isolate;
}

.usage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.34) 32%, rgba(7, 7, 7, 0.18) 52%, rgba(7, 7, 7, 0.78) 100%),
    radial-gradient(circle at 72% 18%, rgba(214, 165, 49, 0.1), transparent 38%);
  pointer-events: none;
}

.usage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 420ms ease, filter 420ms ease;
}

.usage-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.04);
}

.usage-card-copy {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 2;
}

.usage-card-copy h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.72);
}

.usage-card-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 500;
}
.hunter-block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 40px);
  width: min(var(--max), 92vw);
  margin: 0 auto clamp(54px, 6vw, 86px);
  min-height: clamp(560px, 42vw, 680px);
  padding: clamp(58px, 6vw, 86px) clamp(42px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(11, 9, 7, 0.68) 36%, rgba(7, 7, 7, 0.18) 60%, rgba(7, 7, 7, 0.02) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.04), rgba(7, 7, 7, 0.34)),
    url("assets/images/background/mediterranean_forest.jpg") center / cover;
  border: 1px solid rgba(214, 165, 49, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.36), 0 0 54px rgba(214, 165, 49, 0.06);
}

.hunter-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(214, 165, 49, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.08));
  pointer-events: none;
}


.hunter-block h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  line-height: 1.04;
  color: var(--white);
}

.hunter-block p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}
.hunter-block > div {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hunter-block > div + .cta-button {
  position: absolute;
  right: clamp(32px, 5vw, 76px);
  bottom: clamp(32px, 5vw, 64px);
  z-index: 2;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 68px);
  border-top: 1px solid rgba(214, 165, 49, 0.14);
  font-size: 0.86rem;
  background: rgba(5, 5, 5, 0.72);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 18px;
    padding-inline: 20px;
  }

  .main-nav {
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

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

  .hero {
    min-height: 560px;
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.84) 0%, rgba(7, 7, 7, 0.68) 44%, rgba(7, 7, 7, 0.32) 100%),
      linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.74)),
      url("assets/images/hero/wx_hunter_tuft_hero.jpg") 64% center / cover no-repeat;
  }
  .hunter-block {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 560px;
  }
  .hunter-block > div + .cta-button {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: fixed;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
  }

  .main-nav {
    width: 100%;
    gap: 18px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero {
    min-height: 560px;
    margin-top: 136px;
    padding: 56px 24px 38px;
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.72) 58%, rgba(7, 7, 7, 0.44) 100%),
      linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.78)),
      url("assets/images/hero/wx_hunter_tuft_hero.jpg") 62% center / cover no-repeat;
  }

  .ideal-for ul {
    gap: 12px;
  }

  .ideal-for li {
    max-width: none;
  }

  .ideal-for li + li {
    padding-left: 0;
    border-left: 0;
  }
  .how-to {
    min-height: 0;
    padding: 0;
    border-radius: 18px;
  }

  .section-heading {
    top: 24px;
    left: 22px;
    right: 22px;
    max-width: none;
  }

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

  .usage-card {
    height: 380px;
    border-radius: 0;
  }

  .hunter-block {
    min-height: 560px;
    padding: 54px 24px;
    border-radius: 18px;
  }
}




































/* Final premium outdoor direction */
:root {
  --bg: #0b0907;
  --panel: #11100d;
  --text: #f4efe6;
  --muted: #c9c3ba;
  --amber: #d7a62f;
  --amber-light: #f0c45c;
  --amber-soft: rgba(215, 166, 47, 0.35);
  --border: rgba(215, 166, 47, 0.22);
  --charcoal: var(--bg);
  --charcoal-soft: var(--panel);
  --white: var(--text);
  --max: 1700px;
}

html {
  scroll-padding-top: 104px;
}

body {
  background:
    radial-gradient(circle at 76% 4%, rgba(215, 166, 47, 0.08), transparent 38rem),
    radial-gradient(circle at 10% 44%, rgba(57, 58, 42, 0.24), transparent 34rem),
    linear-gradient(180deg, #0b0907 0%, #11100d 48%, #0b0907 100%);
  color: var(--text);
}

body::before {
  opacity: 0.16;
}

section {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 12px 0;
  background: rgba(11, 9, 7, 0.72);
  border-bottom: 1px solid rgba(215, 166, 47, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 42px);
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.logo span {
  color: var(--amber);
  font-size: 1.55rem;
}

.logo small,
.main-nav {
  color: rgba(244, 239, 230, 0.72);
}

.main-nav {
  gap: clamp(22px, 3vw, 44px);
}

.main-nav a {
  color: rgba(244, 239, 230, 0.72);
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--amber-light);
}

.eyebrow {
  color: var(--amber);
  font-size: clamp(0.75rem, 0.8vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title,
h1,
h2 {
  color: var(--text);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: clamp(4rem, 8.2vw, 8.4rem);
}

.section-copy,
.lead,
.usage-card-copy p,
.hunter-block p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 230px;
  max-width: 260px;
  min-height: 52px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber) 56%, #a97a22);
  color: #12100b;
  border: 1px solid rgba(240, 196, 92, 0.62);
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(80, 55, 18, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 24px 48px rgba(80, 55, 18, 0.38), 0 0 18px rgba(215, 166, 47, 0.14);
}

.header-cta {
  min-width: 210px;
  min-height: 44px;
  padding: 12px 24px;
  font-size: 0.78rem;
}

.hero,
.how-to,
.hunter-block {
  width: min(var(--max), 92vw);
  border: 1px solid rgba(215, 166, 47, 0.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.3), 0 0 54px rgba(215, 166, 47, 0.045);
}

.hero {
  min-height: clamp(580px, 43vw, 660px);
  margin: 32px auto clamp(26px, 3vw, 44px);
  padding: clamp(62px, 6vw, 92px) clamp(42px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.82) 0%, rgba(11, 9, 7, 0.66) 34%, rgba(11, 9, 7, 0.28) 60%, rgba(11, 9, 7, 0.06) 100%),
    linear-gradient(180deg, rgba(11, 9, 7, 0.08) 0%, rgba(11, 9, 7, 0.12) 48%, rgba(11, 9, 7, 0.58) 100%),
    url("assets/images/hero/wx_hunter_tuft_hero.jpg") right center / cover no-repeat;
}

.hero::before {
  background:
    radial-gradient(circle at 70% 38%, rgba(215, 166, 47, 0.09), transparent 26rem),
    radial-gradient(circle at 28% 80%, rgba(57, 58, 42, 0.16), transparent 28rem);
}

.hero::after {
  opacity: 0.55;
}

.hero-copy {
  max-width: 540px;
  margin-left: clamp(4px, 1vw, 20px);
}

.how-to {
  position: relative;
  min-height: clamp(560px, 40vw, 650px);
  margin: 0 auto clamp(26px, 3vw, 44px);
  padding: 0;
  background: var(--panel);
}

.section-heading {
  position: absolute;
  top: clamp(32px, 4vw, 58px);
  left: clamp(32px, 4vw, 64px);
  right: clamp(32px, 4vw, 64px);
  z-index: 4;
  max-width: 820px;
  margin: 0;
  text-align: left;
  pointer-events: none;
}

.usage-grid {
  height: 100%;
  min-height: clamp(560px, 40vw, 650px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(215, 166, 47, 0.1);
}

.usage-card {
  height: auto;
  min-height: inherit;
  border-radius: 0;
  box-shadow: none;
}

.usage-card::before {
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.78) 0%, rgba(11, 9, 7, 0.34) 34%, rgba(11, 9, 7, 0.18) 54%, rgba(11, 9, 7, 0.78) 100%),
    radial-gradient(circle at 72% 18%, rgba(215, 166, 47, 0.09), transparent 40%);
}

.usage-card img {
  height: 100%;
  object-fit: cover;
}

.hunter-block {
  min-height: clamp(560px, 40vw, 650px);
  margin: 0 auto clamp(54px, 6vw, 86px);
  padding: clamp(58px, 6vw, 86px) clamp(42px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.84) 0%, rgba(11, 9, 7, 0.62) 36%, rgba(11, 9, 7, 0.16) 62%, rgba(11, 9, 7, 0.02) 100%),
    linear-gradient(180deg, rgba(11, 9, 7, 0.04), rgba(11, 9, 7, 0.34)),
    url("assets/images/background/mediterranean_forest.jpg") center / cover;
}

.hunter-block h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 3.3vw, 3rem);
}

.hunter-block p:not(.eyebrow) {
  max-width: 520px;
}

.hunter-block > div + .cta-button {
  position: absolute;
  right: clamp(32px, 5vw, 76px);
  bottom: clamp(32px, 5vw, 64px);
  z-index: 2;
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .how-to,
  .hunter-block {
    width: min(94vw, var(--max));
  }

  .hero {
    min-height: 580px;
  }

  .how-to,
  .usage-grid,
  .hunter-block {
    min-height: 580px;
  }

  .hunter-block > div + .cta-button {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: sticky;
    padding: 10px 0;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    width: 92vw;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero {
    margin-top: 24px;
    min-height: 590px;
    padding: 48px 24px 34px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .how-to {
    min-height: auto;
  }

  .section-heading {
    top: 24px;
    left: 22px;
    right: 22px;
  }

  .usage-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .usage-card {
    min-height: 380px;
  }

  .hunter-block {
    min-height: 560px;
    padding: 54px 24px;
    border-radius: 18px;
  }
}

/* Header overlap fix */
.site-header {
  position: sticky;
  top: 0;
  min-height: 76px;
  padding: 10px 0;
}

.header-inner {
  min-height: 56px;
  flex-wrap: nowrap;
}

.logo,
.main-nav,
.header-cta {
  flex: 0 0 auto;
}

.main-nav {
  margin-left: auto;
}

.header-cta {
  margin-left: clamp(12px, 2vw, 28px);
}

main {
  padding-top: 24px;
}

.hero {
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 10px 0;
  }

  .header-inner {
    min-height: 48px;
  }

  main {
    padding-top: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 58px;
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
    min-height: 42px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  main {
    padding-top: 18px;
  }

  .hero {
    margin-top: 0;
  }
}

/* Fine tune: Como usar + CTA eyebrow consistency */
.hunter-block .eyebrow,
.section-heading .eyebrow {
  color: var(--amber);
  font-size: clamp(0.75rem, 0.8vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-to {
  min-height: 0;
}

.section-heading {
  top: clamp(46px, 5vw, 76px);
  left: clamp(42px, 5vw, 78px);
  right: clamp(42px, 5vw, 78px);
  padding: 18px 0 34px;
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.58), rgba(11, 9, 7, 0));
}

.usage-grid {
  min-height: 0;
}

.usage-card {
  height: clamp(420px, 30vw, 520px);
  min-height: 0;
}

.usage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usage-card::before {
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.72) 0%, rgba(11, 9, 7, 0.4) 24%, rgba(11, 9, 7, 0.14) 52%, rgba(11, 9, 7, 0.78) 100%),
    radial-gradient(circle at 72% 18%, rgba(215, 166, 47, 0.09), transparent 40%);
}

@media (max-width: 900px) {
  .how-to,
  .usage-grid {
    min-height: 0;
  }

  .usage-card {
    height: 440px;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .section-heading {
    top: 28px;
    left: 24px;
    right: 24px;
    padding: 14px 0 28px;
  }

  .usage-card {
    height: 380px;
    min-height: 0;
  }
}

/* Fine tune usage captions */
.usage-card-copy {
  left: clamp(56px, 7vw, 104px);
  right: clamp(30px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 48px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.usage-card-copy h3,
.usage-card-copy p {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.usage-card-copy h3 {
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.78);
}

.usage-card-copy p {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.72);
}

.usage-card::before {
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.68) 0%, rgba(11, 9, 7, 0.28) 34%, rgba(11, 9, 7, 0.1) 54%, rgba(11, 9, 7, 0.82) 100%),
    radial-gradient(circle at 72% 18%, rgba(215, 166, 47, 0.08), transparent 40%);
}

@media (max-width: 560px) {
  .usage-card-copy {
    left: 32px;
    right: 24px;
    bottom: 28px;
  }
}

/* Align usage captions to each image */
.usage-card-copy {
  left: clamp(42px, 5vw, 72px);
  right: clamp(28px, 4vw, 52px);
  text-align: left;
}

@media (max-width: 560px) {
  .usage-card-copy {
    left: 28px;
    right: 24px;
  }
}

/* Usage section requested adjustments */
.section-heading {
  background: transparent;
  padding: 0;
}

.section-heading .eyebrow {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.72);
}

.usage-card-copy {
  text-align: left;
}

.usage-card:first-child .usage-card-copy {
  left: clamp(96px, 11vw, 180px);
  right: clamp(28px, 4vw, 56px);
}

.usage-card:nth-child(2) .usage-card-copy {
  left: clamp(88px, 9vw, 150px);
  right: clamp(36px, 5vw, 72px);
}

@media (max-width: 560px) {
  .usage-card:first-child .usage-card-copy,
  .usage-card:nth-child(2) .usage-card-copy {
    left: 34px;
    right: 24px;
  }
}

/* Minimal Apple-style usage section */
.how-to {
  position: relative;
  min-height: clamp(500px, 36vw, 600px);
  padding: 0;
  background: var(--panel);
}

.usage-word {
  position: absolute;
  top: clamp(34px, 5vw, 72px);
  left: clamp(34px, 5vw, 76px);
  z-index: 5;
  color: rgba(244, 239, 230, 0.92);
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.48);
  pointer-events: none;
}

.usage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: clamp(500px, 36vw, 600px);
  background: rgba(215, 166, 47, 0.08);
}

.usage-card {
  position: relative;
  height: auto;
  min-height: inherit;
  overflow: hidden;
  border-radius: 0;
  background: var(--panel);
}

.usage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.28), rgba(11, 9, 7, 0.06) 42%, rgba(11, 9, 7, 0.32)),
    linear-gradient(90deg, rgba(11, 9, 7, 0.34), rgba(11, 9, 7, 0.04) 38%, rgba(11, 9, 7, 0.08));
  pointer-events: none;
}

.usage-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.usage-flow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: min(18vw, 240px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 230, 0.28), rgba(215, 166, 47, 0.62));
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.usage-flow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(215, 166, 47, 0.72);
  border-right: 1px solid rgba(215, 166, 47, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.usage-card-copy,
.section-heading {
  display: none;
}

@media (max-width: 560px) {
  .how-to,
  .usage-grid {
    min-height: auto;
  }

  .usage-word {
    top: 28px;
    left: 24px;
    font-size: clamp(3rem, 18vw, 5rem);
  }

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

  .usage-card {
    min-height: 320px;
  }

  .usage-flow {
    top: 50%;
    left: 50%;
    width: 1px;
    height: 72px;
    background: linear-gradient(180deg, transparent, rgba(244, 239, 230, 0.28), rgba(215, 166, 47, 0.62));
  }

  .usage-flow::after {
    right: auto;
    top: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
}

/* Minimal usage indicators */
.usage-word,
.usage-card-copy,
.section-heading {
  display: none;
}

.usage-step {
  position: absolute;
  top: clamp(24px, 3vw, 42px);
  left: clamp(24px, 3vw, 42px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.08);
  color: rgba(244, 239, 230, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22), 0 0 22px rgba(215, 166, 47, 0.1);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.usage-card::before {
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.2) 0%, rgba(11, 9, 7, 0.04) 48%, rgba(11, 9, 7, 0.26) 100%),
    radial-gradient(circle at 70% 18%, rgba(215, 166, 47, 0.06), transparent 42%);
}

.usage-flow {
  width: min(22vw, 310px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 239, 230, 0.26) 26%, rgba(215, 166, 47, 0.7) 72%, transparent 100%);
  box-shadow: 0 0 18px rgba(215, 166, 47, 0.16);
  opacity: 0.82;
}

.usage-flow::before {
  content: "";
  position: absolute;
  inset: -9px -6px;
  border-top: 1px solid rgba(215, 166, 47, 0.26);
  border-radius: 50%;
  transform: translateY(8px) rotate(-2deg);
}

.usage-flow::after {
  width: 13px;
  height: 13px;
  border-top: 2px solid rgba(215, 166, 47, 0.78);
  border-right: 2px solid rgba(215, 166, 47, 0.78);
}

@media (max-width: 560px) {
  .usage-step {
    top: 22px;
    left: 22px;
    width: 42px;
    height: 42px;
  }

  .usage-flow {
    width: 3px;
    height: 88px;
  }
}

/* Usage section premium scale refinement */
.how-to {
  min-height: clamp(560px, 42vw, 680px);
}

.usage-grid {
  min-height: clamp(560px, 42vw, 680px);
}

.usage-card {
  min-height: inherit;
}

.usage-step {
  top: clamp(30px, 3.2vw, 54px);
  left: clamp(30px, 3.2vw, 54px);
  width: clamp(68px, 5vw, 82px);
  height: clamp(68px, 5vw, 82px);
  border: 1px solid rgba(244, 239, 230, 0.34);
  background: linear-gradient(145deg, rgba(244, 239, 230, 0.16), rgba(244, 239, 230, 0.06));
  color: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 34px rgba(215, 166, 47, 0.18);
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 900;
}

.usage-flow {
  width: min(24vw, 360px);
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 239, 230, 0.28) 18%, rgba(215, 166, 47, 0.78) 72%, transparent 100%);
  box-shadow: 0 0 24px rgba(215, 166, 47, 0.2);
  opacity: 0.9;
}

.usage-flow::before {
  inset: -12px -8px;
  background: radial-gradient(ellipse at center, rgba(215, 166, 47, 0.16), transparent 70%);
}

.usage-flow::after {
  width: 15px;
  height: 15px;
  border-top-width: 3px;
  border-right-width: 3px;
}

@media (max-width: 900px) {
  .how-to,
  .usage-grid {
    min-height: auto;
  }

  .usage-card {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .usage-step {
    top: 24px;
    left: 24px;
    width: 62px;
    height: 62px;
    font-size: 1.35rem;
  }

  .usage-card {
    min-height: 340px;
  }

  .usage-flow {
    width: 4px;
    height: 96px;
  }
}

/* Usage section height alignment */
.how-to {
  min-height: clamp(500px, 36vw, 590px);
  padding: 0;
}

.usage-grid {
  min-height: clamp(500px, 36vw, 590px);
}

.usage-card {
  min-height: clamp(500px, 36vw, 590px);
  height: auto;
}

.usage-card img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .how-to,
  .usage-grid {
    min-height: auto;
  }

  .usage-card {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .usage-card {
    min-height: 315px;
  }
}

/* Usage section fixed desktop height */
.how-to {
  --usage-block-height: 560px;
  height: var(--usage-block-height);
  min-height: var(--usage-block-height);
  max-height: var(--usage-block-height);
  padding: 0;
  overflow: hidden;
}

.usage-grid {
  height: 100%;
  min-height: 0;
}

.usage-card {
  height: 100%;
  min-height: 0;
  max-height: none;
}

.usage-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .how-to {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .usage-grid {
    height: auto;
  }

  .usage-card {
    height: 390px;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .usage-card {
    height: 315px;
  }
}
