/* ==========================================================================
   ANOSMIA HUNTING BLINDS
   Design system — deep timber dark, bone type, blaze accent used sparingly.
   ========================================================================== */

:root {
  /* Color */
  --night:    #0E110A;   /* page */
  --field:    #161A11;   /* raised surface */
  --field-2:  #1E2417;   /* raised surface, hover */
  --moss:     #3E4A22;   /* brand olive, structural only */
  --sage:     #9AA77B;   /* muted text */
  --bone:     #EDE8DA;   /* primary text */
  --blaze:    #E2611B;   /* accent — used with restraint */
  --line:     rgba(237, 232, 218, 0.13);
  --line-2:   rgba(237, 232, 218, 0.07);

  /* Type */
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body:    "Newsreader", Georgia, "Times New Roman", serif;
  --ui:      "Barlow", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Space */
  --gut: clamp(20px, 4vw, 48px);
  --max: 1240px;
  --max-text: 68ch;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe, canvas { display: block; max-width: 100%; }
figure { margin: 0; }
[hidden] { display: none !important; }
a { color: inherit; }

::selection { background: var(--blaze); color: #fff; }

/* ---------- Utilities --------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.mono {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.eyebrow .tick {
  width: 7px; height: 7px;
  background: var(--blaze);
  flex: none;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}

.h-section {
  font-size: clamp(2.1rem, 5.6vw, 3.9rem);
  margin-bottom: 10px;
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
}

.section + .section { border-top: 1px solid var(--line-2); }

.lede {
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  color: #cfcbbd;
  max-width: 62ch;
  margin: 0;
}

/* ---------- Buttons ----------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.btn:hover { background: var(--field-2); border-color: var(--sage); }

.btn--blaze {
  background: var(--blaze);
  border-color: var(--blaze);
  color: #12100c;
}

.btn--blaze:hover { background: #f2712a; border-color: #f2712a; color: #12100c; }

.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ------------------------------------------------------ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px var(--gut);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s, padding 0.3s;
}

.site-header.is-stuck {
  background: rgba(14, 17, 10, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 11px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  margin-right: auto;
}

.wordmark b {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark span {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.34em;
  color: var(--sage);
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  padding: 9px 14px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sage);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--bone); }

.site-nav a[aria-current="page"] {
  color: var(--bone);
  box-shadow: inset 0 -1px 0 var(--blaze);
}

.header-cta { margin-left: 10px; padding: 11px 18px; }

@media (max-width: 720px) {
  .header-cta { display: none; }
  .site-nav a { padding: 8px 8px; font-size: 0.58rem; letter-spacing: 0.1em; }
  .wordmark b { font-size: 1.1rem; letter-spacing: 0.12em; }
}

/* ---------- Hero -------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 140px 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 15%, rgba(78, 92, 44, 0.5), transparent 62%),
    radial-gradient(90% 70% at 8% 92%, rgba(20, 26, 14, 0.95), transparent 70%),
    linear-gradient(180deg, #131710 0%, #0E110A 78%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.75) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(14, 17, 10, 0.95) 0%,
    rgba(14, 17, 10, 0.78) 42%,
    rgba(14, 17, 10, 0.32) 100%
  );
}

/* the scent-drift canvas — the one flourish */
#plume {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.hero .wrap { position: relative; z-index: 3; }

.hero h1 {
  font-size: clamp(3.2rem, 12vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.005em;
  margin: 18px 0 26px;
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--blaze);
}

.hero .lede { max-width: 54ch; }

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-meta span { white-space: nowrap; }

.scroll-hint {
  position: absolute;
  right: var(--gut);
  bottom: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--sage), transparent);
}

@media (max-width: 900px) { .scroll-hint { display: none; } }

/* ---------- Media frames ------------------------------------------------ */

.frame {
  position: relative;
  background: var(--field);
  border: 1px solid var(--line);
  overflow: hidden;
}

.frame--video { aspect-ratio: 16 / 9; }
.frame--photo { aspect-ratio: 4 / 3; }

.frame > iframe,
.frame > video,
.frame > img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

figure .cap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
}

.ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(62, 74, 34, 0.16), transparent 60%),
    var(--field);
}

.ph .label {
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--bone);
}

.ph .key {
  font-family: var(--mono);
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.75;
}

.ph .play {
  width: 54px; height: 54px;
  border: 1px solid var(--blaze);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.ph .play::after {
  content: "";
  border-left: 13px solid var(--blaze);
  border-block: 8px solid transparent;
  margin-left: 4px;
}

/* ---------- Tour grid --------------------------------------------------- */

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  margin-top: 44px;
}

.tour-grid figure { margin: 0; }

/* ---------- Model selector ---------------------------------------------- */

.models-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .models-head { grid-template-columns: 1fr; align-items: start; }
}

.model-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.model-tabs button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  padding: 16px clamp(14px, 4vw, 26px);
  min-width: 0;
  white-space: nowrap;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--sage);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s, color 0.25s;
}

.model-tabs button:last-child { border-right: 0; }
.model-tabs button:hover { background: var(--field); color: var(--bone); }

.model-tabs button[aria-selected="true"] {
  background: var(--field-2);
  color: var(--bone);
  box-shadow: inset 0 -2px 0 var(--blaze);
}

.model-tabs .t-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.model-tabs .t-price {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.tab-panel[hidden] { display: none; }

.model-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 24px;
  padding-bottom: 22px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.model-headline .name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.model-headline .price {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--blaze);
  margin-left: auto;
}

.model-media {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 60px);
}

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

/* ---------- Spec lists --------------------------------------------------- */

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 clamp(28px, 5vw, 72px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.specs li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.96rem;
  line-height: 1.5;
  color: #ddd8ca;
}

.specs li::before {
  content: "";
  width: 12px;
  height: 1px;
  margin-top: 0.75em;
  background: var(--blaze);
}

.specs--single { grid-template-columns: 1fr; max-width: var(--max-text); }

.spec-block + .spec-block { margin-top: clamp(30px, 4vw, 48px); }

.spec-block > .mono { display: block; margin-bottom: 8px; }

.spec-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 900px) { .spec-split { grid-template-columns: 1fr; } }

/* ---------- Extras ------------------------------------------------------- */

.extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(40px, 6vw, 68px);
}

.extra-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--field);
  border: 1px solid var(--line);
  transition: border-color 0.25s, background-color 0.25s, transform 0.25s;
}

.extra-card:hover {
  border-color: var(--sage);
  background: var(--field-2);
  transform: translateY(-3px);
}

.extra-card .x-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.extra-card h3 {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.extra-card .x-price {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blaze);
  white-space: nowrap;
}

.extra-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #cbc7b9;
}

/* ---------- Slideshow ---------------------------------------------------- */

.slideshow { position: relative; }

.slideshow .stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--field);
  border: 1px solid var(--line);
  overflow: hidden;
}

.slideshow .stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: fadeUp 0.5s ease;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(14, 17, 10, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--bone);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.slide-nav:hover { background: var(--blaze); border-color: var(--blaze); color: #12100c; }
.slide-nav.prev { left: 0; }
.slide-nav.next { right: 0; }

.slide-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 12px;
}

/* ---------- Trail-cam banner --------------------------------------------- */

.banner {
  position: relative;
  min-height: clamp(400px, 62vh, 660px);
  display: grid;
  place-items: center;
  padding: 80px var(--gut);
  overflow: hidden;
  background: #10140E;
  text-align: center;
  border-block: 1px solid var(--line-2);
}

.banner-media { position: absolute; inset: 0; }

.banner-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.banner-media {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(70, 88, 104, 0.55), transparent 65%),
    linear-gradient(165deg, #1b2229, #29323c 55%, #171d16);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,17,10,0.55), rgba(14,17,10,0.88));
}

.banner-inner { position: relative; z-index: 2; max-width: 760px; }

.banner-inner h2 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  margin: 16px 0 22px;
}

.banner-inner .lede { margin-inline: auto; }
.banner-inner .eyebrow { justify-content: center; }
.banner-inner .eyebrow::after { display: none; }
.banner-inner .btn { margin-top: 30px; }

/* ---------- Field / partner videos ---------------------------------------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  gap: clamp(20px, 3vw, 34px);
  margin-top: 44px;
}

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

.v-title {
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 600;
  color: #ddd8ca;
  line-height: 1.35;
}

/* ---------- Why Anosmia page ---------------------------------------------- */

.why-hero {
  padding-block: clamp(140px, 18vw, 220px) clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}

.why-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 85% 0%, rgba(62, 74, 34, 0.45), transparent 60%);
}

.why-hero .wrap { position: relative; }

.why-hero h1 {
  font-size: clamp(2.6rem, 8.5vw, 6.6rem);
  font-weight: 800;
  margin: 16px 0 24px;
  max-width: 16ch;
}

.pronounce {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 26px;
}

.reasons { max-width: 880px; margin: 0; padding: 0; list-style: none; counter-reset: r; }

.reasons > li {
  counter-increment: r;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding-block: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line-2);
}

.reasons > li:first-child { border-top: 1px solid var(--line-2); }

.reasons > li::before {
  content: counter(r, decimal-leading-zero);
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--sage);
  opacity: 0.55;
  transition: color 0.35s, opacity 0.35s, -webkit-text-stroke-color 0.35s;
}

.reasons > li:hover::before {
  color: var(--blaze);
  -webkit-text-stroke-color: var(--blaze);
  opacity: 1;
}

.reasons p {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #ddd8ca;
}

@media (max-width: 640px) {
  .reasons > li { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Footer --------------------------------------------------------- */

.site-footer {
  padding-block: clamp(60px, 9vw, 110px) 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #10140D, #0B0E07);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-2);
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; align-items: start; }
}

.footer-top h2 { font-size: clamp(2rem, 6vw, 3.6rem); }

.contact-list { display: flex; flex-direction: column; gap: 16px; }

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.contact-line .value {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  transition: color 0.2s;
}

a.contact-line:hover .value { color: var(--blaze); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  padding-top: 26px;
}

.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--bone); }

/* ---------- Motion --------------------------------------------------------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-in { opacity: 1; transform: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blaze);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  #plume { display: none; }
}
