@font-face {
  font-family: "Crock";
  src: url("assets/fonts/crock.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Hapna Slab";
  src: url("assets/fonts/HapnaSlabSerif-Medium.ttf") format("truetype");
  font-display: swap;
}

:root {
  --red: #bd1717;
  --red-bright: #f2261e;
  --paper: #eee9de;
  --muted: #9d9890;
  --line: rgba(230, 226, 216, .2);
  --display: "Crock", "Rockwell Extra Bold", Rockwell, Georgia, serif;
  --body: "Hapna Slab", Georgia, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5vh;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background: #090909 url("assets/big-feed-bg.png?v=20260721-bigfeed-original") center top / cover fixed;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.guide-detail-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.guide-detail-shell::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 18%, rgba(255, 255, 255, .035), transparent 38%),
    linear-gradient(to bottom, rgba(0, 0, 0, .04), rgba(0, 0, 0, .58));
}

.vignette {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 9vw rgba(0, 0, 0, .76);
}

.guide-detail-header,
.guide-detail-main,
.guide-detail-footer,
.not-found {
  width: 90vw;
  max-width: 1800px;
  margin-inline: auto;
}

.guide-detail-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 14vh;
  padding: 1.2vh 0 1.35vh;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(230, 226, 216, .62);
}

.brand {
  display: grid;
  width: clamp(74px, 6.6vw, 126px);
  height: clamp(74px, 6.6vw, 126px);
  place-items: center;
  filter: drop-shadow(0 .5vw 1vw rgba(0, 0, 0, .75));
  transition: transform .25s ease, filter .25s ease;
}

.brand:hover,
.brand:focus-visible {
  outline: none;
  transform: scale(1.045) rotate(-1.5deg);
  filter: drop-shadow(0 .7vw 1.3vw rgba(0, 0, 0, .9));
}

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

.header-label {
  max-width: 70vw;
  margin: 0 0 -.1em;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(27px, 4vw, 76px);
  line-height: .84;
  text-align: right;
  text-overflow: ellipsis;
  text-shadow: 0 .2vw .3vw #000;
  text-transform: uppercase;
  white-space: nowrap;
}

.guide-detail-main {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.7vh, 54px) 0 clamp(70px, 9vh, 120px);
}

.breadcrumbs {
  display: flex;
  gap: clamp(7px, .65vw, 13px);
  margin-bottom: clamp(22px, 3vh, 42px);
  align-items: center;
  color: #85817a;
  font-size: clamp(9px, .62vw, 12px);
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #fff;
  outline: none;
}

.breadcrumbs span[aria-hidden] {
  color: var(--red-bright);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, .84fr);
  gap: clamp(30px, 4vw, 76px);
  align-items: center;
}

.guide-hero-picture {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  border: 1px solid var(--line);
  background: #090909;
  box-shadow: 0 2vw 5vw rgba(0, 0, 0, .55);
}

.guide-hero-picture::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, .32), transparent 44%);
}

.guide-hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.04) brightness(.82);
}

.eyebrow {
  margin: 0 0 .75vh;
  color: var(--red-bright);
  font-size: clamp(9px, .64vw, 12px);
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  text-transform: uppercase;
  text-shadow: 0 .2vw .3vw #000;
}

h1 {
  max-width: 760px;
  margin-bottom: 2vh;
  font-size: clamp(42px, 5vw, 96px);
  line-height: .87;
  letter-spacing: .015em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 58px);
  line-height: .93;
}

.guide-summary-copy {
  max-width: 680px;
  margin-bottom: clamp(22px, 3vh, 38px);
  color: #aaa59d;
  font-size: clamp(12px, .86vw, 17px);
  line-height: 1.7;
}

.guide-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(230, 226, 216, .1);
}

.guide-facts div {
  padding: clamp(13px, 1.2vw, 24px) clamp(8px, 1vw, 20px);
  border-right: 1px solid var(--line);
}

.guide-facts div:first-child {
  padding-left: 0;
}

.guide-facts div:last-child {
  border-right: 0;
}

.guide-facts dt {
  margin-bottom: .55vh;
  color: #6f6b65;
  font-size: clamp(7px, .5vw, 10px);
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.guide-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(16px, 1.35vw, 26px);
  text-transform: uppercase;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(210px, 15vw) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 110px);
  margin-top: clamp(76px, 10vh, 145px);
  align-items: start;
}

.guide-sidebar {
  position: sticky;
  top: 4vh;
  padding-right: 1.5vw;
}

.guide-sidebar nav {
  display: grid;
  margin-bottom: 3.5vh;
  border-top: 1px solid rgba(230, 226, 216, .38);
}

.guide-sidebar nav a {
  position: relative;
  padding: 1.25em 0 1.15em 1.1em;
  color: #817d76;
  border-bottom: 1px solid rgba(230, 226, 216, .11);
  font-size: clamp(9px, .62vw, 12px);
  letter-spacing: .08em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, padding-left .2s ease;
}

.guide-sidebar nav a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--red-bright);
  transform: translateY(-50%);
}

.guide-sidebar nav a:hover,
.guide-sidebar nav a:focus-visible {
  padding-left: 1.45em;
  color: #fff;
  outline: none;
}

.requirements {
  padding: clamp(15px, 1.2vw, 22px);
  border-left: 2px solid var(--red-bright);
  background: rgba(189, 23, 23, .09);
}

.requirements ul {
  display: grid;
  gap: .75em;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #aaa59d;
  font-size: clamp(9px, .62vw, 12px);
  line-height: 1.4;
}

.requirements li::before {
  margin-right: .65em;
  color: var(--red-bright);
  content: "+";
}

.guide-article {
  max-width: 1180px;
}

.article-section {
  padding: 0 0 clamp(60px, 8vh, 105px);
  scroll-margin-top: 5vh;
}

.article-section + .article-section {
  padding-top: clamp(54px, 6.5vh, 92px);
  border-top: 1px solid rgba(230, 226, 216, .22);
}

.article-section-heading {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(16px, 1.4vw, 28px);
  margin-bottom: clamp(24px, 3.2vh, 44px);
  align-items: start;
}

.section-number {
  display: block;
  width: auto;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(34px, 3.25vw, 64px);
  line-height: .78;
  text-shadow: 0 .15em .25em rgba(0, 0, 0, .65);
  white-space: nowrap;
}

.article-section h2 {
  max-width: 900px;
  font-size: clamp(31px, 3.2vw, 62px);
}

.article-section > p,
.article-section > ul,
.article-section > ol,
.guide-callout,
.guide-table-wrap {
  max-width: 900px;
  color: #aaa59d;
  font-size: clamp(12px, .86vw, 17px);
  line-height: 1.75;
}

.article-section > p {
  margin-bottom: 1.4em;
}

.guide-bullets,
.guide-steps,
.guide-checklist {
  display: grid;
  gap: .75em;
  margin: 2.1em 0 0;
  padding: 0;
  list-style: none;
}

.guide-bullets li,
.guide-steps li,
.guide-checklist li {
  position: relative;
  padding: .85em 1em .85em 2.2em;
  border-bottom: 1px solid rgba(230, 226, 216, .1);
  background: rgba(255, 255, 255, .016);
}

.guide-bullets li::before {
  position: absolute;
  top: 1.34em;
  left: .85em;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red-bright);
  transform: rotate(45deg);
}

.guide-steps {
  counter-reset: guide-step;
}

.guide-steps li {
  counter-increment: guide-step;
}

.guide-steps li::before {
  position: absolute;
  top: .85em;
  left: .75em;
  color: var(--red-bright);
  content: counter(guide-step, upper-roman);
  font-size: .72em;
  font-weight: 800;
}

.guide-checklist li {
  padding-left: 2.75em;
}

.guide-checklist li::before {
  position: absolute;
  top: .9em;
  left: .85em;
  display: grid;
  width: 1.1em;
  height: 1.1em;
  content: "";
  border: 1px solid rgba(230, 226, 216, .42);
  place-items: center;
}

.guide-table-wrap {
  margin: 2.1em 0 0;
  overflow-x: auto;
  border: 1px solid rgba(230, 226, 216, .16);
  background: rgba(0, 0, 0, .38);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  color: #aaa59d;
  font-size: clamp(11px, .76vw, 15px);
  line-height: 1.55;
}

.guide-table th,
.guide-table td {
  min-width: 150px;
  padding: 1em 1.1em;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(230, 226, 216, .1);
}

.guide-table th {
  color: #eee9de;
  background: rgba(189, 23, 23, .16);
  font-family: var(--display);
  font-size: .82em;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.guide-item-cards {
  display: grid;
  max-width: 1120px;
  margin: 2.4em 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-item-card {
  display: grid;
  min-width: 0;
  padding: clamp(16px, 1.3vw, 24px);
  grid-template-columns: clamp(82px, 7vw, 118px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(15px, 1.4vw, 24px);
  border: 1px solid rgba(230, 226, 216, .14);
  background: linear-gradient(135deg, rgba(189, 23, 23, .08), rgba(0, 0, 0, .4) 48%);
}

.guide-item-card-media {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(230, 226, 216, .12);
  background: radial-gradient(circle, rgba(255, 255, 255, .08), rgba(0, 0, 0, .5));
}

.guide-item-card-media img {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.guide-item-card-body h3 {
  margin: 0;
  color: #eee9de;
  font-family: var(--display);
  font-size: clamp(18px, 1.25vw, 25px);
  letter-spacing: .035em;
  line-height: 1.1;
  text-transform: uppercase;
}

.guide-item-card-body p {
  margin: .7em 0 0;
  color: #aaa59d;
  font-size: clamp(11px, .72vw, 14px);
  line-height: 1.55;
}

.guide-item-card-body .guide-item-card-location {
  color: var(--red-bright);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guide-item-card-body .guide-item-card-hint {
  padding-top: .65em;
  border-top: 1px solid rgba(230, 226, 216, .09);
  color: #d3cdc2;
}

.guide-callout {
  margin: 2.1em 0 0;
  padding: 1.15em 1.35em;
  color: #aaa59d;
  border-left: 3px solid var(--red-bright);
  background: linear-gradient(90deg, rgba(189, 23, 23, .13), rgba(255, 255, 255, .018));
  font-size: clamp(12px, .82vw, 16px);
  line-height: 1.65;
}

.guide-callout strong {
  display: block;
  margin-bottom: .3em;
  color: #eee9de;
  font-family: var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guide-callout p {
  margin: 0;
}

.guide-callout a {
  display: inline-block;
  margin-top: .8em;
  color: #eee9de;
  font-family: var(--display);
  font-size: .86em;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration-color: var(--red-bright);
  text-underline-offset: .24em;
  text-transform: uppercase;
}

.guide-callout a:hover,
.guide-callout a:focus-visible {
  color: #fff;
  text-decoration-thickness: 2px;
}

pre {
  max-width: 900px;
  margin: clamp(25px, 3vh, 40px) 0 0;
  padding: clamp(17px, 1.4vw, 28px);
  overflow-x: auto;
  color: #ebe6dc;
  border-left: 3px solid var(--red-bright);
  background: rgba(0, 0, 0, .7);
  font: clamp(11px, .73vw, 14px)/1.65 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
}

.article-image {
  overflow: hidden;
  max-width: 1050px;
  margin: clamp(31px, 4vh, 56px) 0 0;
  border: 1px solid rgba(230, 226, 216, .18);
  background: #050505;
  box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, .45);
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.guide-image-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #050505;
  color: inherit;
  cursor: zoom-in;
}

.guide-image-trigger::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  content: "Zoom +";
  color: #eee9de;
  border: 1px solid rgba(230, 226, 216, .4);
  background: rgba(5, 5, 5, .82);
  font: 700 10px var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .72;
  transition: opacity .2s ease, border-color .2s ease, background .2s ease;
}

.guide-image-trigger:hover::after,
.guide-image-trigger:focus-visible::after {
  border-color: var(--red-bright);
  background: rgba(189, 23, 23, .92);
  opacity: 1;
}

.guide-image-trigger:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: -2px;
}

.guide-lightbox-open {
  overflow: hidden;
}

.guide-lightbox[hidden] {
  display: none;
}

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

.guide-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: clamp(12px, 2vw, 30px);
  place-items: center;
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(12px);
}

.guide-lightbox-close,
.guide-lightbox-control {
  display: grid;
  padding: 0;
  place-items: center;
  color: #eee9de;
  border: 1px solid rgba(230, 226, 216, .38);
  background: rgba(8, 8, 8, .78);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.guide-lightbox-close:hover,
.guide-lightbox-close:focus-visible,
.guide-lightbox-control:hover,
.guide-lightbox-control:focus-visible {
  color: #fff;
  border-color: var(--red-bright);
  background: var(--red);
  outline: 0;
}

.guide-lightbox-close {
  position: absolute;
  z-index: 4;
  top: clamp(12px, 1.5vw, 24px);
  right: clamp(12px, 1.5vw, 24px);
  width: 50px;
  height: 50px;
  font-size: 34px;
  line-height: 1;
}

.guide-lightbox-close:hover,
.guide-lightbox-close:focus-visible {
  transform: rotate(3deg);
}

.guide-lightbox-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: clamp(50px, 4.5vw, 72px);
  height: clamp(76px, 11vh, 112px);
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
  transform: translateY(-50%);
}

.guide-lightbox-control:hover,
.guide-lightbox-control:focus-visible {
  transform: translateY(-50%);
}

.guide-lightbox-control span {
  transform: translateY(-3px);
}

.guide-lightbox-previous {
  left: clamp(12px, 1.5vw, 24px);
}

.guide-lightbox-next {
  right: clamp(12px, 1.5vw, 24px);
}

.guide-lightbox-figure {
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.guide-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 86px);
  margin: auto;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .65);
}

.guide-lightbox-figure figcaption {
  display: flex;
  min-height: 20px;
  padding: 0 clamp(4px, 1vw, 16px);
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  color: #cfc8bd;
  font-family: var(--display);
  font-size: clamp(10px, .72vw, 13px);
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.guide-lightbox-figure figcaption span:last-child {
  color: var(--red-bright);
  white-space: nowrap;
}

.subguide-directory,
.guide-gallery-section,
.guide-videos-section {
  margin-top: clamp(72px, 10vh, 145px);
  padding-top: clamp(35px, 4.2vh, 62px);
  border-top: 1px solid rgba(230, 226, 216, .45);
}

.guide-videos-section.is-primary {
  margin-top: clamp(44px, 6vh, 82px);
}

.guide-videos-section.is-primary + .guide-layout {
  margin-top: clamp(56px, 7vh, 100px);
}

.guide-store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: 2.2em;
}

.guide-store-link {
  display: grid;
  min-height: 360px;
  overflow: hidden;
  color: #e6e2d8;
  border: 1px solid rgba(230, 226, 216, .2);
  background: #090909;
  grid-template-rows: minmax(170px, 13vw) 1fr;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.guide-store-link-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
  transition: filter .25s ease, transform .35s ease;
}

.guide-store-link-body {
  display: flex;
  padding: clamp(18px, 2vw, 28px);
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.guide-store-link:last-child:nth-child(odd) {
  min-height: 260px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, .85fr) 1fr;
  grid-template-rows: 1fr;
}

.guide-store-link:hover,
.guide-store-link:focus-visible {
  border-color: rgba(207, 40, 28, .9);
  background: rgba(207, 40, 28, .08);
  transform: translateY(-2px);
}

.guide-store-link:hover .guide-store-link-image,
.guide-store-link:focus-visible .guide-store-link-image {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.025);
}

.guide-store-link strong,
.guide-store-link small {
  display: block;
}

.guide-store-link strong {
  font: clamp(18px, 1.4vw, 26px) var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guide-store-link small {
  margin-top: .7em;
  color: #aaa59d;
  font-size: clamp(12px, .8vw, 15px);
  line-height: 1.55;
}

.guide-store-link-action {
  display: block;
  color: #d34639;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .guide-store-links {
    grid-template-columns: 1fr;
  }

  .guide-store-link {
    min-height: 330px;
    grid-template-rows: minmax(170px, 52vw) 1fr;
  }

  .guide-store-link:last-child:nth-child(odd) {
    min-height: 330px;
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(170px, 52vw) 1fr;
  }
}

.subguide-groups {
  margin-top: clamp(28px, 4vh, 52px);
}

.subguide-group-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.subguide-group-card {
  position: relative;
  display: grid;
  min-height: clamp(210px, 22vw, 390px);
  padding: clamp(24px, 3vw, 54px);
  overflow: hidden;
  align-content: end;
  border: 1px solid rgba(230, 226, 216, .3);
  background: linear-gradient(145deg, rgba(189, 23, 23, .12), transparent 44%), rgba(4, 4, 4, .72);
  text-decoration: none;
  transition: transform .28s ease;
}

.subguide-group-card::after,
.subguide-card::after {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color .25s ease;
}

.subguide-group-card:hover,
.subguide-group-card:focus-visible,
.subguide-card:hover,
.subguide-card:focus-visible {
  z-index: 2;
  outline: none;
  transform: scale(1.025);
}

.subguide-group-card:hover::after,
.subguide-group-card:focus-visible::after,
.subguide-card:hover::after,
.subguide-card:focus-visible::after {
  border-color: var(--red-bright);
}

.subguide-group-card > span {
  position: absolute;
  top: clamp(18px, 2vw, 34px);
  right: clamp(18px, 2vw, 34px);
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 60px);
}

.subguide-group-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 86px);
  line-height: .88;
  text-transform: uppercase;
}

.subguide-group-card small {
  max-width: 42ch;
  margin-top: 1em;
  color: var(--muted);
  font-size: clamp(13px, .95vw, 18px);
  line-height: 1.55;
}

.subguide-group-card em {
  margin-top: 1.35em;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(13px, .9vw, 17px);
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.subguide-toolbar {
  display: flex;
  margin-bottom: clamp(20px, 2.7vh, 34px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.subguide-toolbar a {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(15px, 1.05vw, 20px);
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.subguide-toolbar p {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.subguide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
}

.subguide-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(230, 226, 216, .3);
  background: #050505;
  text-decoration: none;
  transition: transform .28s ease;
}

.subguide-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.8;
  overflow: hidden;
  background: #101010;
}

.subguide-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .72));
}

.subguide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05) brightness(.72);
  transition: transform .4s ease, filter .4s ease;
}

.subguide-card:hover img,
.subguide-card:focus-visible img {
  transform: scale(1.07);
  filter: saturate(.95) contrast(1.05) brightness(.9);
}

.subguide-card-copy {
  display: grid;
  min-height: 132px;
  padding: clamp(17px, 1.6vw, 27px);
  align-content: start;
  gap: 10px;
}

.subguide-card-copy strong {
  font-family: var(--display);
  font-size: clamp(22px, 1.9vw, 36px);
  line-height: .94;
  text-transform: uppercase;
}

.subguide-card-copy > span {
  color: var(--muted);
  font-size: clamp(12px, .82vw, 16px);
  line-height: 1.45;
}

.section-heading {
  display: flex;
  gap: 3vw;
  margin-bottom: clamp(28px, 4vh, 54px);
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading > p {
  max-width: 440px;
  margin-bottom: 0;
  color: #77736d;
  font-size: clamp(10px, .7vw, 13px);
  line-height: 1.55;
  text-align: right;
}

.guide-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(15px, 1.5vw, 28px);
}

.guide-gallery figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  border: 1px solid rgba(230, 226, 216, .18);
  background: #050505;
  box-shadow: 0 1.2vw 3vw rgba(0, 0, 0, .35);
}

.guide-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.88) brightness(.9);
  transition: filter .25s ease, transform .35s ease;
}

.guide-gallery figure:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.018);
}

.guide-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 38px);
}

.guide-videos:has(.video-item:only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.video-item {
  min-width: 0;
}

.video-item > p {
  margin: 1.2em 0 0;
  color: #aaa59d;
  font: clamp(12px, .85vw, 16px) var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(230, 226, 216, .2);
  background: #050505;
  box-shadow: 0 1.8vw 5vw rgba(0, 0, 0, .58);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
}

.video-fallback::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, .45);
  transition: background .25s ease;
}

.video-fallback img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.72);
  transition: filter .25s ease, transform .4s ease;
}

.video-fallback-action {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  gap: clamp(12px, 1.2vw, 24px);
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 38px);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 3px 12px #000;
}

.video-fallback-play {
  display: grid;
  width: clamp(50px, 4.6vw, 86px);
  aspect-ratio: 1;
  padding-left: .12em;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  background: var(--red);
  font-family: Arial, sans-serif;
  font-size: .72em;
}

.video-fallback:hover::after,
.video-fallback:focus-visible::after {
  background: rgba(0, 0, 0, .24);
}

.video-fallback:hover img,
.video-fallback:focus-visible img {
  filter: saturate(.95) brightness(.86);
  transform: scale(1.025);
}

.guide-credit {
  margin: clamp(55px, 7vh, 95px) 0 0;
  color: #5f5b55;
  font-size: clamp(8px, .55vw, 10px);
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.guide-credit a {
  color: #8f8980;
  text-decoration-color: rgba(189, 23, 23, .72);
  text-underline-offset: .22em;
}

.guide-credit a:hover,
.guide-credit a:focus-visible {
  color: #d8d2c7;
}

.guide-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2vw;
  margin-top: clamp(35px, 5vh, 72px);
  padding: 2.3vh 0;
  align-items: center;
  border-top: 1px solid rgba(230, 226, 216, .48);
  border-bottom: 1px solid rgba(230, 226, 216, .16);
}

.guide-pagination > a:not(.all-guides) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .8vw;
  align-items: center;
  text-decoration: none;
}

.guide-pagination > a:last-child {
  grid-template-columns: 1fr auto;
  text-align: right;
}

.guide-pagination > a:not(.all-guides) span {
  grid-row: 1 / 3;
  color: var(--red-bright);
  font-size: 1.25em;
}

.guide-pagination small {
  color: #6f6b65;
  font-size: clamp(8px, .52vw, 10px);
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.guide-pagination strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(12px, 1vw, 19px);
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.guide-pagination a:hover strong,
.guide-pagination a:focus-visible strong,
.guide-pagination a:hover.all-guides,
.guide-pagination a:focus-visible.all-guides {
  color: #fff;
}

.guide-pagination a:focus-visible {
  outline: 1px solid var(--red-bright);
  outline-offset: 8px;
}

.all-guides {
  color: #a49f97;
  font-family: var(--display);
  font-size: clamp(9px, .64vw, 12px);
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.not-found {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  padding: 12vh 0;
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 2vh;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red-bright);
  background: rgba(189, 23, 23, .2);
  font: 800 11px var(--display);
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.guide-detail-footer {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 8vh;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(230, 226, 216, .5);
  color: #aaa69f;
  font-family: var(--display);
  font-size: clamp(8px, .61vw, 12px);
  letter-spacing: .035em;
}

.guide-detail-footer p {
  margin: 0;
}

.guide-detail-footer p span {
  margin-inline: .45vw;
  color: var(--red-bright);
}

.guide-detail-footer a {
  color: #d6d1c8;
  text-decoration: none;
  text-transform: uppercase;
}

kbd {
  display: inline-grid;
  min-width: 2vw;
  height: 1.25vw;
  min-height: 18px;
  margin-left: .4vw;
  padding-inline: .35vw;
  place-items: center;
  color: #090909;
  border: 1px solid #fff;
  border-radius: 1px;
  background: #eeeae1;
  font-family: Arial, sans-serif;
  font-size: clamp(7px, .52vw, 10px);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .guide-hero {
    grid-template-columns: 1fr;
  }

  .guide-hero-copy {
    max-width: 840px;
  }

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

  .guide-sidebar {
    position: static;
    padding-right: 0;
  }

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

  .requirements {
    max-width: 650px;
  }

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

@media (max-width: 720px) {
  .guide-detail-header,
  .guide-detail-main,
  .guide-detail-footer,
  .not-found {
    width: 88vw;
  }

  .guide-detail-header {
    min-height: auto;
    padding: 1.4vh 0 1.2vh;
  }

  .brand {
    width: min(20vw, 96px);
    height: min(20vw, 96px);
  }

  .header-label {
    max-width: 65vw;
    font-size: clamp(20px, 7vw, 38px);
  }

  .breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(42px, 14vw, 74px);
  }

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

  .guide-facts div,
  .guide-facts div:first-child {
    display: flex;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 226, 216, .08);
  }

  .guide-facts dt {
    margin: 0;
  }

  .guide-layout {
    margin-top: 70px;
  }

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

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

  .guide-item-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

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

  .guide-gallery,
  .guide-videos {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 12px;
    text-align: left;
  }

  .subguide-group-choices,
  .subguide-grid {
    grid-template-columns: 1fr;
  }

  .subguide-toolbar {
    display: block;
  }

  .subguide-toolbar p {
    margin-top: 12px;
    text-align: left;
  }

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

  .all-guides {
    display: none;
  }

  .guide-detail-footer {
    justify-content: center;
  }

  .guide-detail-footer p {
    display: none;
  }

  .guide-lightbox {
    padding: 10px 56px;
  }

  .guide-lightbox-figure img {
    max-height: calc(100vh - 72px);
  }

  .guide-lightbox-control {
    width: 42px;
    height: 64px;
    font-size: 48px;
  }

  .guide-lightbox-previous {
    left: 8px;
  }

  .guide-lightbox-next {
    right: 8px;
  }

  .guide-lightbox-close {
    width: 44px;
    height: 44px;
  }

  .guide-lightbox-figure figcaption {
    padding: 0;
    gap: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
