:root {
  --ink: #191713;
  --muted: #695f52;
  --paper: #f7f7f2;
  --soft: #e5ebe2;
  --gold: #d69b2d;
  --gold-dark: #a86f12;
  --green: #486a4c;
  --blue: #445d78;
  --charcoal: #25231f;
  --line: rgba(25, 23, 19, 0.14);
  --shadow: 0 24px 70px rgba(37, 35, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 247, 242, 0.88);
  border-bottom: 1px solid rgba(25, 23, 19, 0.08);
  display: flex;
  gap: 28px;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(247, 247, 242, 0.96);
  box-shadow: 0 10px 30px rgba(25, 23, 19, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(214, 155, 45, 0.42);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  width: 42px;
}

.brand-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(25, 23, 19, 0.72);
}

.site-nav a,
.footer-links a {
  transition: color 160ms ease;
}

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

.header-cta {
  border: 1px solid rgba(25, 23, 19, 0.2);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 16px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 148px clamp(20px, 5vw, 72px) 86px;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 72% center;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.94) 0%, rgba(247, 247, 242, 0.72) 30%, rgba(247, 247, 242, 0.24) 54%, rgba(247, 247, 242, 0) 78%),
    linear-gradient(0deg, rgba(25, 23, 19, 0.12), rgba(25, 23, 19, 0));
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.3rem, 8vw, 7.6rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 780px;
}

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

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(25, 23, 19, 0.75);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  max-width: 610px;
}

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

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.primary:hover {
  background: #e0aa43;
}

.button.secondary {
  background: rgba(25, 23, 19, 0.88);
  color: #fffaf0;
}

.button.dark {
  background: var(--ink);
  color: #fffaf0;
}

.hero-panel {
  background: rgba(25, 23, 19, 0.88);
  bottom: 34px;
  color: #fff9eb;
  display: grid;
  gap: 8px;
  max-width: 360px;
  padding: 22px;
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  z-index: 3;
}

.hero-panel span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-band {
  align-items: start;
  background: var(--ink);
  color: #fff9eb;
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
}

.intro-band .eyebrow {
  color: var(--gold);
}

.mission-copy {
  color: rgba(255, 249, 235, 0.78);
  display: grid;
  font-size: 1.08rem;
  gap: 18px;
}

.mission-copy p {
  margin: 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  max-width: 790px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 650px;
}

.videos-section {
  background: #ffffff;
}

.video-grid,
.playlist-grid,
.gear-grid,
.support-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card,
.playlist-card,
.gear-card,
.affiliate-feature,
.affiliate-list {
  background: #f7f7f2;
  border: 1px solid var(--line);
}

.video-thumb {
  align-items: flex-end;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  display: flex;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.video-thumb::after {
  background: linear-gradient(180deg, rgba(25, 23, 19, 0.02), rgba(25, 23, 19, 0.72));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.video-thumb img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 240ms ease;
  width: 100%;
}

.video-thumb:hover img {
  transform: scale(1.035);
}

.play-button {
  background: #fff9eb;
  clip-path: polygon(32% 22%, 32% 78%, 78% 50%);
  height: 44px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  z-index: 2;
}

.video-label,
.tag {
  background: rgba(255, 249, 235, 0.92);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 7px 9px;
  text-transform: uppercase;
  z-index: 2;
}

.video-body,
.gear-card {
  padding: 22px;
}

.video-body p,
.playlist-card p,
.gear-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.playlist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.playlist-card {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(160px, 0.82fr) minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.playlist-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

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

.playlist-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.playlist-card .tag {
  align-self: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.playlist-card-dark {
  background: var(--charcoal);
  color: #fff9eb;
}

.playlist-card-dark p {
  color: rgba(255, 249, 235, 0.72);
}

.playlist-card-dark .tag {
  background: rgba(255, 249, 235, 0.12);
  border-color: rgba(255, 249, 235, 0.2);
  color: #fff9eb;
}

.section-action {
  margin-top: 30px;
}

.guides-section {
  background: var(--ink);
  color: #fff9eb;
}

.guides-intro {
  align-items: end;
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  margin-bottom: 38px;
}

.guides-intro .section-heading {
  margin-bottom: 0;
}

.guides-intro .eyebrow {
  color: var(--gold);
}

.guides-intro > p {
  color: rgba(255, 249, 235, 0.7);
  font-size: 1.06rem;
  margin-bottom: 0;
  max-width: 560px;
}

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

.guide-card {
  background: #fff9eb;
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  min-height: 270px;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.guide-card:hover {
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.guide-card-featured {
  grid-column: span 2;
  grid-template-columns: minmax(300px, 1.12fr) minmax(0, 0.88fr);
  min-height: 380px;
}

.guide-card-image {
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.guide-card-image::after {
  background: linear-gradient(180deg, transparent 52%, rgba(25, 23, 19, 0.56));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.guide-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

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

.guide-card-image .tag {
  bottom: 16px;
  left: 16px;
  position: absolute;
}

.guide-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3.5vw, 46px);
}

.guide-card-body h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  margin-bottom: 16px;
}

.guide-card:not(.guide-card-featured) .guide-card-body h3 {
  font-size: clamp(1.3rem, 1.9vw, 2rem);
}

.guide-card-body p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 26px;
}

.guide-card-body strong {
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.82rem;
  margin-top: auto;
  padding-top: 16px;
  text-transform: uppercase;
}

.guide-card-links {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 249, 235, 0.62), transparent 30%),
    linear-gradient(145deg, #f7df98, #d69b2d);
}

.guide-card-mark {
  align-content: center;
  background: rgba(25, 23, 19, 0.06);
  display: grid;
  justify-items: center;
  min-height: 100%;
  padding: 28px;
}

.guide-card-mark .card-icon {
  background: rgba(255, 249, 235, 0.54);
  border-color: rgba(25, 23, 19, 0.22);
  height: 84px;
  margin-bottom: 16px;
  width: 84px;
}

.guide-card-mark small {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gear-section {
  background:
    linear-gradient(180deg, #f7f7f2 0%, #ffffff 48%, #eef2ea 100%);
}

.affiliate-feature {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(25, 23, 19, 0.94), rgba(37, 35, 31, 0.86)),
    linear-gradient(90deg, rgba(214, 155, 45, 0.2), rgba(72, 106, 76, 0.12));
  color: #fff9eb;
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  margin-bottom: 22px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
}

.affiliate-feature::before {
  background: var(--gold);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}

.affiliate-feature-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.affiliate-feature h3 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  margin-bottom: 0;
}

.affiliate-feature p {
  color: rgba(255, 249, 235, 0.75);
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 680px;
}

.affiliate-feature .tag {
  align-self: start;
  background: rgba(255, 249, 235, 0.12);
  border: 1px solid rgba(255, 249, 235, 0.24);
  color: #fff9eb;
  display: inline-flex;
  justify-self: start;
}

.affiliate-feature .button {
  justify-self: start;
  margin-top: 4px;
}

.discount-card {
  align-self: stretch;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 249, 235, 0.48), rgba(255, 249, 235, 0) 34%),
    linear-gradient(145deg, #f7d879, #d69b2d 68%, #b57918);
  border: 1px solid rgba(255, 249, 235, 0.34);
  color: #fff9eb;
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  place-content: center;
  position: relative;
  text-align: center;
  z-index: 1;
}

.discount-card::before,
.discount-card::after {
  border: 1px solid rgba(25, 23, 19, 0.18);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.discount-card::after {
  border-color: rgba(255, 249, 235, 0.38);
  inset: 18px;
}

.discount-card span {
  color: rgba(25, 23, 19, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-card strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  letter-spacing: 0;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.discount-card .discount-amount {
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.discount-card small {
  color: rgba(25, 23, 19, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.merch-showcase {
  background: #ffffff;
  border: 1px solid var(--line);
  margin: 22px 0;
  padding: clamp(22px, 4vw, 42px);
}

.merch-heading {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  margin-bottom: 24px;
}

.merch-heading .eyebrow {
  margin-bottom: 0;
}

.merch-heading h3 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  margin-bottom: 0;
}

.merch-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

.merch-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.merch-card {
  background: #f7f7f2;
  border: 1px solid var(--line);
  display: grid;
  overflow: hidden;
  position: relative;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.merch-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.merch-card img {
  aspect-ratio: 3 / 4;
  background: #eee8db;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.merch-price {
  background: var(--ink);
  color: #fff9eb;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 10px;
  position: absolute;
  right: 12px;
  top: 12px;
}

.merch-card > div {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.merch-card h4 {
  font-size: 1rem;
  line-height: 1.15;
  margin: 0;
}

.merch-card div span {
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 800;
  padding-top: 12px;
}

.affiliate-layout {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.affiliate-list {
  background: #ffffff;
  display: grid;
  padding: 22px;
}

.list-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  padding-bottom: 20px;
}

.affiliate-list .tag {
  display: inline-flex;
  margin-bottom: 18px;
}

.affiliate-list a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 14px 0;
  transition: color 160ms ease, padding-left 160ms ease;
}

.affiliate-list a:hover {
  color: var(--gold-dark);
  padding-left: 8px;
}

.affiliate-list a:last-child {
  border-bottom: 0;
}

.affiliate-list a span:not(.link-icon) {
  font-weight: 800;
}

.affiliate-list a strong {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gear-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  position: relative;
}

.link-icon,
.card-icon {
  align-items: center;
  background: rgba(214, 155, 45, 0.14);
  border: 1px solid rgba(214, 155, 45, 0.38);
  display: inline-flex;
  flex: 0 0 auto;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}

.card-icon {
  height: 54px;
  margin-bottom: 20px;
  width: 54px;
}

.link-icon::before,
.link-icon::after,
.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.icon-hook::before {
  border: 3px solid var(--gold-dark);
  border-left-color: transparent;
  border-top-color: transparent;
  height: 17px;
  transform: rotate(35deg);
  width: 12px;
}

.icon-grid::before {
  background:
    linear-gradient(var(--gold-dark), var(--gold-dark)) 50% 0 / 2px 100% no-repeat,
    linear-gradient(var(--gold-dark), var(--gold-dark)) 0 50% / 100% 2px no-repeat;
  border: 2px solid var(--gold-dark);
  height: 20px;
  width: 20px;
}

.icon-box::before {
  border: 2px solid var(--gold-dark);
  height: 17px;
  width: 22px;
}

.icon-box::after {
  border-left: 2px solid var(--gold-dark);
  height: 18px;
  transform: skewX(-24deg) translate(8px, -5px);
}

.icon-shield::before {
  background: var(--gold-dark);
  clip-path: polygon(50% 0, 82% 14%, 78% 62%, 50% 100%, 22% 62%, 18% 14%);
  height: 24px;
  width: 22px;
}

.icon-kit::before {
  border: 3px solid var(--gold-dark);
  height: 22px;
  width: 28px;
}

.icon-kit::after {
  border: 3px solid var(--gold-dark);
  border-bottom: 0;
  height: 8px;
  top: 10px;
  width: 14px;
}

.icon-camera::before {
  border: 3px solid var(--gold-dark);
  height: 20px;
  width: 28px;
}

.icon-camera::after {
  border: 3px solid var(--gold-dark);
  height: 8px;
  width: 8px;
}

.icon-bolt::before {
  background: var(--gold);
  clip-path: polygon(54% 0, 18% 52%, 47% 52%, 34% 100%, 84% 38%, 55% 38%);
  height: 30px;
  width: 22px;
}

.gear-card .tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  margin-bottom: 36px;
}

.gear-card a {
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
}

.gear-card-featured {
  background: #fff9eb;
}

.gear-card-sage {
  background: #e5ebe2;
}

.gear-card-dark {
  background: var(--charcoal);
  color: #fff9eb;
}

.gear-card-dark p {
  color: rgba(255, 249, 235, 0.72);
}

.gear-card-dark a {
  border-top-color: rgba(255, 249, 235, 0.18);
  color: var(--gold);
}

.gear-card-dark .tag {
  background: rgba(255, 249, 235, 0.12);
  border-color: rgba(255, 249, 235, 0.2);
  color: #fff9eb;
}

.gear-card-dark .card-icon {
  background: rgba(255, 249, 235, 0.1);
  border-color: rgba(255, 249, 235, 0.24);
}

.gear-card-gold {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 249, 235, 0.64), rgba(255, 249, 235, 0) 32%),
    linear-gradient(145deg, #f8df92, #d69b2d 66%, #b57918);
  border-color: rgba(168, 111, 18, 0.42);
  box-shadow: 0 18px 44px rgba(168, 111, 18, 0.22);
  overflow: hidden;
}

.gear-card-gold::before,
.gear-card-gold::after {
  border: 1px solid rgba(25, 23, 19, 0.15);
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.gear-card-gold::after {
  border-color: rgba(255, 249, 235, 0.38);
  inset: 15px;
}

.gear-card-gold p {
  color: rgba(25, 23, 19, 0.68);
}

.gear-card-gold a {
  background: var(--ink);
  border-top: 0;
  color: #fff9eb;
  margin-inline: -4px;
  padding: 14px 16px;
  position: relative;
  text-align: center;
  transition: background 160ms ease, transform 160ms ease;
  z-index: 1;
}

.gear-card-gold a:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.gear-card-gold .tag {
  background: rgba(255, 249, 235, 0.52);
  border-color: rgba(25, 23, 19, 0.22);
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.gear-card-gold .card-icon {
  background: rgba(255, 249, 235, 0.48);
  border-color: rgba(25, 23, 19, 0.22);
  position: relative;
  z-index: 1;
}

.gear-card-gold .icon-bolt::before {
  background: var(--ink);
}

.gear-card-gold h3,
.gear-card-gold p {
  position: relative;
  z-index: 1;
}

.affiliate-note {
  background: rgba(25, 23, 19, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  margin: 28px 0 0;
  max-width: 960px;
  padding: 18px;
}

.guide-page {
  background: #fff;
}

.guide-hero {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  min-height: 86vh;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
}

.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 34px;
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.guide-hero h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  max-width: 900px;
}

.guide-lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  max-width: 720px;
}

.guide-meta {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 30px;
  padding-top: 20px;
}

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

.guide-hero-media {
  margin: 0;
}

.guide-hero-media img {
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.guide-hero-media figcaption {
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 12px;
}

.guide-verdict {
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 249, 235, 0.7), transparent 30%),
    linear-gradient(145deg, #f8df92, #d69b2d 68%, #b57918);
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  padding: clamp(42px, 7vw, 96px) clamp(20px, 7vw, 110px);
}

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

.guide-verdict p:last-child {
  color: rgba(25, 23, 19, 0.7);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.guide-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
  margin: 0 auto;
  max-width: 1420px;
  padding: clamp(62px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.guide-article {
  min-width: 0;
}

.guide-video-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.guide-section-heading {
  max-width: 800px;
}

.guide-section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.video-loader {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  margin: 32px 0 18px;
  overflow: hidden;
  position: relative;
}

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

.video-loader::after {
  background: linear-gradient(180deg, rgba(25, 23, 19, 0.08), rgba(25, 23, 19, 0.52));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.video-loader.is-loaded::after {
  display: none;
}

.video-loader-button {
  align-items: center;
  background: rgba(25, 23, 19, 0.88);
  border: 1px solid rgba(255, 249, 235, 0.34);
  bottom: 22px;
  color: #fff9eb;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 12px;
  left: 22px;
  padding: 12px 18px 12px 13px;
  position: absolute;
  z-index: 2;
}

.video-loader-button .play-button {
  height: 28px;
  left: auto;
  position: relative;
  top: auto;
  transform: none;
  width: 28px;
}

.text-link {
  color: var(--gold-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.guide-copy-section {
  display: grid;
  gap: 28px;
  grid-template-columns: 54px minmax(0, 1fr);
  padding: clamp(52px, 7vw, 88px) 0;
}

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

.guide-number {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding-top: 7px;
}

.guide-copy-section h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 28px;
  max-width: 800px;
}

.guide-copy-section div > p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 780px;
}

.guide-link-list {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 28px;
  max-width: 780px;
}

.guide-link-list a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-weight: 800;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 0;
}

.guide-link-list a:hover {
  color: var(--gold-dark);
}

.guide-link-list strong {
  color: var(--gold-dark);
  font-size: 0.74rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.guide-pullquote {
  background: var(--charcoal);
  border-left: 8px solid var(--gold);
  color: #fff9eb;
  margin: 0;
  padding: clamp(30px, 5vw, 58px);
}

.guide-pullquote p {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 0;
}

.decision-section {
  border-top: 1px solid var(--line);
  padding: clamp(58px, 7vw, 90px) 0;
}

.decision-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.decision-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
}

.decision-card-positive {
  background: var(--soft);
}

.decision-card h3 {
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.decision-card ul {
  color: var(--muted);
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.guide-referral {
  align-items: center;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 249, 235, 0.66), transparent 31%),
    linear-gradient(145deg, #f8df92, #d69b2d 68%, #b57918);
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: clamp(28px, 5vw, 50px);
}

.guide-referral .card-icon {
  background: rgba(255, 249, 235, 0.52);
  border-color: rgba(25, 23, 19, 0.2);
  height: 70px;
  margin: 0;
  width: 70px;
}

.guide-referral .icon-bolt::before {
  background: var(--ink);
}

.guide-referral h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.guide-referral p:not(.eyebrow) {
  color: rgba(25, 23, 19, 0.68);
  margin-bottom: 0;
}

.guide-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.guide-sidebar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  padding: 24px;
}

.guide-sidebar-card a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 13px 0;
}

.guide-sidebar-card a:hover {
  color: var(--gold-dark);
}

.guide-sidebar-dark {
  background: var(--charcoal);
  color: #fff9eb;
}

.guide-sidebar-dark .eyebrow {
  color: var(--gold);
}

.guide-sidebar-dark p:not(.eyebrow) {
  color: rgba(255, 249, 235, 0.7);
}

.guide-sidebar-dark a {
  border-top-color: rgba(255, 249, 235, 0.16);
  color: var(--gold);
}

.related-guides {
  background: var(--paper);
}

.related-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  overflow: hidden;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.related-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.related-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.related-card > div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.related-card .tag {
  align-self: flex-start;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.related-card strong {
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 16px;
  text-transform: uppercase;
}

.related-card-action {
  background: var(--charcoal);
  color: #fff9eb;
}

.related-card-action p {
  color: rgba(255, 249, 235, 0.68);
}

.related-card-action strong {
  border-top-color: rgba(255, 249, 235, 0.18);
  color: var(--gold);
}

.contact-section {
  align-items: start;
  background: var(--charcoal);
  color: #fff9eb;
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 249, 235, 0.74);
  font-size: 1.08rem;
  max-width: 560px;
}

.contact-form {
  background: #ffffff;
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.hidden-field {
  display: none;
}

label {
  color: rgba(25, 23, 19, 0.76);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

input,
textarea {
  background: #fff;
  border: 1px solid rgba(25, 23, 19, 0.18);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  resize: vertical;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(214, 155, 45, 0.24);
}

.site-footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(20px, 5vw, 72px);
}

.footer-brand {
  color: var(--ink);
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  font-weight: 800;
  gap: 18px;
}

.success-page {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.96), rgba(247, 247, 242, 0.74)),
    url("assets/family-desert-hero-v3-web.jpg") center / cover;
  display: flex;
  min-height: 100vh;
  padding: clamp(20px, 5vw, 72px);
}

.success-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 720px;
  padding: clamp(26px, 5vw, 58px);
}

.success-card h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.success-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 540px;
}

@media (max-width: 900px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .intro-band,
  .contact-section,
  .affiliate-feature,
  .affiliate-layout,
  .merch-heading,
  .guides-intro,
  .guide-hero,
  .guide-verdict,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 880px;
    padding-bottom: 260px;
  }

  .hero-panel {
    left: 20px;
    right: auto;
  }

  .video-grid,
  .playlist-grid,
  .gear-grid,
  .support-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-card-featured {
    grid-column: auto;
  }

  .guide-card,
  .guide-card-featured {
    grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1fr);
    min-height: 300px;
  }

  .guide-sidebar {
    grid-row: 1;
    position: static;
  }

  .guide-referral {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .guide-referral .button {
    grid-column: 1 / -1;
  }

  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-feature {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .header-cta {
    font-size: 0.78rem;
    padding: 9px 11px;
  }

  .hero {
    min-height: 820px;
    padding: 118px 18px 250px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 247, 242, 0.96) 0%, rgba(247, 247, 242, 0.84) 50%, rgba(247, 247, 242, 0.28) 100%),
      linear-gradient(0deg, rgba(25, 23, 19, 0.2), rgba(25, 23, 19, 0));
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    bottom: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
  }

  .section {
    padding-inline: 18px;
  }

  .affiliate-feature .button {
    width: 100%;
  }

  .playlist-card {
    grid-template-columns: 1fr;
  }

  .playlist-card img {
    aspect-ratio: 16 / 9;
  }

  .affiliate-list a {
    align-items: flex-start;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .affiliate-list a strong {
    grid-column: 2;
  }

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

  .guide-card,
  .guide-card-featured {
    grid-template-columns: 1fr;
  }

  .guide-card-image,
  .guide-card-mark {
    aspect-ratio: 16 / 9;
  }

  .guide-hero {
    padding: 108px 18px 52px;
  }

  .guide-copy-section {
    gap: 12px;
    grid-template-columns: 1fr;
  }

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

  .guide-referral {
    grid-template-columns: 1fr;
  }

  .video-loader-button {
    bottom: 12px;
    left: 12px;
  }
}
