:root {
  --ink: #10150e;
  --paper: #f3f1e8;
  --lime: #d7f36b;
  --muted: #676b61;
  --pink: #ec418f;
  --line: #d4d6c9;
  --pad: clamp(24px, 5.6vw, 90px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 15px/1.6 "Space Grotesk",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open,
body.menu-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button {
  border: 0;
  background: none;
}
::selection {
  color: var(--ink);
  background: var(--lime);
}
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
button:focus-visible,
a:focus-visible {
  border-radius: 2px;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: var(--lime);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  top: 16px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-header {
  height: 100px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wordmark > span {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
}
.wordmark small {
  display: block;
  font-size: 7px;
  letter-spacing: 3px;
  margin-top: 9px;
}
.mountain-mark {
  width: 40px;
  height: 40px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 11px;
  font-weight: 500;
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:after,
.text-link:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  bottom: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.desktop-nav a:hover:after,
.text-link:hover:after {
  transform: scaleX(1);
}
.desktop-nav a:last-child {
  margin-left: 22px;
}
.desktop-nav a span {
  padding-left: 15px;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  padding: 14px 0 14px 14px;
}
.menu-toggle i {
  width: 22px;
  height: 9px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.mobile-nav {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 29;
  background: var(--paper);
  padding: 20px var(--pad) 35px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 40px 50px #0003;
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 22px;
}
.hero {
  min-height: 700px;
  height: calc(100svh - 100px);
  max-height: 1050px;
  background: #090e09;
  color: var(--paper);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-art,
.hero-art img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-art img {
  object-fit: cover;
  object-position: 70% 55%;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, #080d07b3 0%, #080d072e 53%, transparent 75%),
    linear-gradient(0deg, #080c0877, transparent 20%);
}
.hero-content {
  padding: clamp(75px, 9vh, 130px) var(--pad) 110px;
  position: relative;
  max-width: 1100px;
}
.hero-content .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  color: #e6e9d8;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
h1 {
  font:
    400 clamp(86px, 9.3vw, 148px)/0.89 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: -1.2px;
}
h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero-description {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 30px;
  color: #d9ded1;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 19px 25px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background 0.25s,
    transform 0.25s;
  color: var(--ink);
  min-height: 54px;
}
.button span {
  font-size: 20px;
  line-height: 12px;
  transition: transform 0.25s;
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button-lime {
  background: var(--lime);
}
.button-lime:hover {
  background: #e6ff94;
}
.hero-content .button {
  margin-top: 35px;
}
.button-outline {
  border: 1px solid #ffffff70;
  color: var(--paper);
}
.button-outline:hover {
  background: #ffffff12;
}
.hero-caption {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 28px;
  border-top: 1px solid #ffffff35;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.hero-caption > span:nth-child(2) {
  color: #b6bdb0;
}
.hero-caption a {
  margin-left: auto;
  font-size: 23px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff50;
  border-radius: 50%;
}
.vertical-caption {
  position: absolute;
  right: 24px;
  top: 50%;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 3px;
}
.ticker {
  background: var(--lime);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker > div {
  width: max-content;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  animation: ticker 70s linear infinite;
}
.ticker span {
  padding: 0 40px;
  font-size: 19px;
  vertical-align: middle;
}
.ticker:hover > div {
  animation-play-state: paused;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section-pad {
  padding: 80px var(--pad) 100px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.section-label span:last-child {
  color: var(--muted);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10%;
  padding-top: 65px;
  align-items: center;
}
.display {
  font:
    400 clamp(64px, 7.8vw, 120px)/0.93 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: -0.5px;
}
.serif-word {
  font:
    italic 400 0.83em/1 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.07em;
}
.intro-copy {
  max-width: 390px;
}
.intro-copy > p:first-of-type {
  font-size: 22px;
  line-height: 1.5;
}
.small-star {
  display: block;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 25px;
}
.muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.intro-copy .muted {
  margin-top: 22px;
}
.text-link {
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  gap: 40px;
  align-items: center;
  margin-top: 27px;
  padding-bottom: 8px;
  position: relative;
  border-bottom: 1px solid var(--ink);
}
.text-link span {
  font-size: 20px;
}
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e8ebdf;
}
.product-visual {
  background: #020302;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
}
.product-visual > img {
  width: 72%;
  height: auto;
  max-height: 790px;
  object-fit: contain;
  position: relative;
  mix-blend-mode: screen;
}
.product-watermark {
  position: absolute;
  left: 5%;
  top: 10%;
  font: 400 clamp(120px, 18vw, 290px)/1 "Bebas Neue";
  writing-mode: vertical-rl;
  color: #ffffff09;
  z-index: -1;
}
.visual-caption {
  position: absolute;
  bottom: 35px;
  left: 38px;
  font-size: 8px;
  letter-spacing: 2px;
  color: #b8bcb1;
}
.product-copy {
  padding: 85px clamp(35px, 6vw, 100px);
  align-self: center;
}
.product-copy .eyebrow {
  margin-bottom: 28px;
}
.pink {
  color: #bb2369;
}
.product-subtitle {
  font-size: 23px;
  line-height: 1.4;
  margin: 22px 0 18px;
}
.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 0;
  border-top: 1px solid #bec3b5;
  border-bottom: 1px solid #bec3b5;
  margin: 30px 0;
}
.product-facts dt {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: var(--muted);
}
.product-facts dd {
  font-size: 19px;
  margin: 7px 0 0;
}
.note-tabs {
  display: flex;
  border-bottom: 1px solid #bfc6b4;
  gap: 22px;
}
.note-tabs button {
  font-size: 10px;
  padding: 0 0 12px;
  position: relative;
  color: var(--muted);
  white-space: nowrap;
}
.note-tabs button[aria-selected="true"] {
  color: var(--ink);
}
.note-tabs button[aria-selected="true"]:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--ink);
  height: 2px;
}
.note-panel {
  min-height: 112px;
  padding-top: 17px;
  font-size: 12px;
  color: #50564b;
  line-height: 1.8;
}
.detail-note {
  font-size: 9px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
}
.statement {
  background: var(--lime);
  padding-top: 75px;
  padding-bottom: 55px;
  overflow: hidden;
}
.statement .eyebrow {
  margin-bottom: 40px;
}
.statement h2 {
  font: 400 clamp(72px, 11.4vw, 175px)/0.92 "Bebas Neue";
  letter-spacing: -1px;
}
.statement-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 55px;
  font-size: 11px;
}
.statement-bottom svg {
  width: 75px;
  height: 75px;
}
.statement-bottom > span {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-align: right;
}
.next-brand {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  overflow: hidden;
  color: var(--paper);
  background: #130f0b;
}
.next-brand > img,
.next-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  z-index: -2;
}
.next-overlay {
  background: linear-gradient(90deg, #090906bd, transparent);
  z-index: -1;
}
.next-content {
  padding: 85px var(--pad);
}
.next-content h2 {
  font: 400 70px/0.95 "Bebas Neue";
  margin: 30px 0;
}
.bensons-serif {
  font:
    400 1.22em/1 Georgia,
    serif;
  letter-spacing: -4px;
}
.next-index {
  position: absolute;
  right: var(--pad);
  bottom: 35px;
  font-size: 8px;
  letter-spacing: 1.3px;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px var(--pad) 34px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffffff25;
  padding-bottom: 35px;
}
.footer-wordmark {
  font-size: clamp(30px, 5.3vw, 80px);
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1.1;
}
.back-top {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.back-top span {
  font-size: 20px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 30px;
  padding-top: 28px;
  font-size: 10px;
}
.footer-bottom p span {
  color: #a8afa1;
  font-size: 9px;
}
.footer-bottom nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}
.footer-bottom nav button {
  padding: 8px 0;
  font-size: 10px;
}
.copyright {
  color: #a8afa1;
  font-size: 9px;
  align-self: center;
}
.age-gate {
  padding: 0;
  max-width: min(540px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  width: 540px;
  border: 1px solid #48513b;
  background: var(--ink);
  color: var(--paper);
  overflow: auto;
}
.age-gate::backdrop {
  background: #071004d9;
  backdrop-filter: blur(11px);
}
.age-card {
  padding: 40px 50px 30px;
  text-align: center;
}
.age-wordmark {
  display: block;
  letter-spacing: 4px;
  font-size: 15px;
  margin-bottom: 35px;
}
.age-card .eyebrow {
  font-size: 8px;
  color: #b5c0aa;
}
.age-card h2 {
  font: 400 clamp(48px, 6.5vw, 73px)/0.94 "Bebas Neue";
  margin: 25px 0;
}
.age-card h2 em {
  font-style: normal;
  color: var(--lime);
}
.age-card > p:not([class]) {
  font-size: 12px;
  color: #c8cfbf;
  max-width: 300px;
  margin: 0 auto;
}
.age-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 25px 0;
}
.age-actions .button {
  min-width: 250px;
  text-align: left;
}
.age-no {
  font-size: 11px;
  color: #d6ddcc;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding: 10px 25px;
}
.age-note {
  font-size: 8px;
  letter-spacing: 1.7px;
  color: #9fa992;
  margin-top: 27px;
}
.age-denied {
  font-size: 14px;
  margin: 24px 0;
  color: var(--lime);
}
.privacy-dialog {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 50px;
  max-width: min(560px, calc(100% - 32px));
}
.privacy-dialog::backdrop {
  background: #0009;
  backdrop-filter: blur(5px);
}
.privacy-dialog h2 {
  font: 400 55px/1 "Bebas Neue";
  margin: 20px 0;
}
.privacy-dialog p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 18px;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 30px;
  width: 44px;
  height: 44px;
}
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.will-reveal.in-view {
  opacity: 1;
  transform: none;
}
.noscript-note {
  padding: 20vh 10%;
  max-width: 700px;
  margin: auto;
}
/* Benson’s has its own type, colour and atmosphere. */
body[data-brand="bensons"] {
  --ink: #1e1912;
  --paper: #efe7d6;
  --lime: #d3b475;
  --muted: #756753;
  --line: #cfc4ac;
}
.bensons-wordmark {
  font:
    400 35px/1 Georgia,
    serif;
  letter-spacing: -1px;
}
.bensons-wordmark small {
  display: block;
  letter-spacing: 4px;
  font: 400 7px/1 "Space Grotesk";
  margin-top: 8px;
  text-align: center;
}
.bensons-hero h1 {
  font-size: clamp(80px, 9.4vw, 146px);
}
.bensons-hero .hero-art img {
  object-position: 70% 50%;
}
.bensons-hero .hero-shade {
  background:
    linear-gradient(90deg, #130e07bd, transparent 90%),
    linear-gradient(0deg, #130e0777, transparent 25%);
}
.bensons-intro .display {
  font-family: Georgia, serif;
  font-size: clamp(44px, 5.7vw, 87px);
  line-height: 1.04;
  letter-spacing: -3px;
}
.bensons-product {
  background: #e4dac5;
}
.bensons-product .product-visual {
  background: #17100a;
}
.bensons-product .product-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  mix-blend-mode: normal;
}
.bensons-product .display {
  font-size: clamp(65px, 7vw, 110px);
}
.bensons-product .product-facts {
  border-color: #c1b395;
}
.bensons-product .product-copy {
  padding-top: 65px;
  padding-bottom: 65px;
}
.gold {
  color: #8f6426;
}
.bensons-statement h2 {
  font:
    400 clamp(65px, 8.8vw, 135px)/1 Georgia,
    serif;
  letter-spacing: -5px;
}
.bensons-statement {
  background: #d3b475;
}
.bensons-statement .statement-bottom > span {
  color: var(--ink);
}
.bensons-footer .footer-wordmark {
  font-family: Georgia, serif;
  letter-spacing: -3px;
}
/* The collection is a quiet connective layer, not an invented company. */
body[data-brand="collection"] {
  --ink: #20251e;
  --paper: #eeeae1;
  --lime: #d7f36b;
}
.collection-wordmark {
  font-size: 17px;
  letter-spacing: -0.7px;
}
.collection-wordmark small {
  display: block;
  font-size: 7px;
  letter-spacing: 2px;
  margin-top: 5px;
}
.collection-intro {
  padding: 90px var(--pad) 70px;
}
.collection-intro .eyebrow {
  margin-bottom: 45px;
}
.collection-intro h1 {
  font-size: clamp(82px, 10.7vw, 164px);
}
.collection-intro h1 .serif-word {
  font-size: 0.76em;
}
.collection-intro-bottom {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.collection-intro-bottom p {
  font-size: 14px;
  max-width: 410px;
}
.collection-intro-bottom > span {
  font-size: 9px;
  letter-spacing: 1.4px;
  white-space: nowrap;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 0 var(--pad) 85px;
}
.brand-card {
  display: block;
}
.brand-card-picture {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #111;
}
.brand-card-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 50%;
  transition: transform 0.7s;
}
.brand-card:hover img {
  transform: scale(1.035);
}
.brand-card-picture:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0008, transparent 45%);
}
.brand-card-number {
  position: absolute;
  top: 25px;
  left: 25px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
}
.brand-card-name {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font: 400 clamp(45px, 4.5vw, 70px)/1 "Bebas Neue";
  z-index: 1;
}
.brand-card-name.bensons-serif {
  font-family: Georgia, serif;
  letter-spacing: -2px;
}
.brand-card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 1px solid #fff9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
}
.brand-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding-top: 18px;
  gap: 12px;
}
.brand-card-meta span:last-child {
  color: var(--muted);
}
.collection-outro {
  border-top: 1px solid var(--line);
  padding: 65px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: start;
}
.collection-outro h2 {
  font:
    400 clamp(40px, 4.5vw, 65px)/1.07 Georgia,
    serif;
  letter-spacing: -2px;
}
.collection-outro p {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
}
.collection-footer .footer-wordmark {
  font:
    400 clamp(30px, 5vw, 70px)/1.1 Georgia,
    serif;
  letter-spacing: -3px;
}
@media (min-width: 1700px) {
  .hero-art img {
    object-position: 70% 50%;
  }
  .hero-content {
    padding-top: 130px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
  }
  .desktop-nav a:last-child {
    margin-left: 8px;
  }
  .hero {
    min-height: 660px;
  }
  .hero-content {
    padding-top: 105px;
  }
  h1 {
    font-size: clamp(76px, 10vw, 110px);
  }
  .product-visual {
    min-height: 740px;
  }
  .product-copy {
    padding: 55px 38px;
  }
  .note-tabs {
    gap: 17px;
  }
  .intro-grid {
    gap: 7%;
  }
  .brand-card-picture {
    height: 480px;
  }
}
@media (max-width: 900px) {
  .site-header {
    height: 80px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    height: calc(100svh - 80px);
    min-height: 710px;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero-content .eyebrow {
    margin-bottom: 32px;
  }
  .hero-art img {
    object-position: 66% 50%;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-content .button {
    margin-top: 25px;
  }
  .vertical-caption {
    display: none;
  }
  .section-pad {
    padding-top: 60px;
    padding-bottom: 65px;
  }
  .intro-grid {
    grid-template-columns: 1.1fr 1fr;
    padding-top: 50px;
    gap: 8%;
  }
  .intro-copy > p:first-of-type {
    font-size: 18px;
  }
  .product-copy {
    padding: 50px 30px;
  }
  .product-visual {
    min-height: 720px;
  }
  .product-visual > img {
    width: 95%;
  }
  .product-facts dd {
    font-size: 17px;
  }
  .note-tabs {
    gap: 12px;
  }
  .note-tabs button {
    font-size: 9px;
  }
  .product-subtitle {
    font-size: 20px;
  }
  .product-copy > .muted {
    font-size: 12px;
  }
  .footer-bottom {
    grid-template-columns: 1fr auto;
  }
  .footer-bottom nav {
    justify-content: end;
    gap: 20px;
  }
  .copyright {
    grid-column: 1/-1;
  }
  .brand-card-picture {
    height: 390px;
  }
  .collection-intro {
    padding-top: 65px;
  }
  .collection-outro {
    gap: 8%;
  }
}
@media (max-width: 700px) {
  :root {
    --pad: 24px;
  }
  .site-header {
    height: 80px;
  }
  .wordmark > span {
    font-size: 20px;
    letter-spacing: 3px;
  }
  .mountain-mark {
    width: 31px;
    height: 31px;
  }
  .wordmark {
    gap: 10px;
  }
  .wordmark small {
    font-size: 6px;
    letter-spacing: 2.4px;
  }
  .hero {
    height: auto;
    min-height: 860px;
    max-height: none;
  }
  .hero-art img {
    object-position: center bottom;
    object-fit: cover;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #080c08ab 0%,
      #080c081a 37%,
      transparent 65%,
      #080c088c 100%
    );
  }
  .hero-content {
    padding-top: 48px;
    padding-bottom: 420px;
    max-width: none;
  }
  .hero-content .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 27px;
  }
  h1 {
    font-size: clamp(70px, 15.5vw, 106px);
    letter-spacing: -0.7px;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 22px;
    line-height: 1.65;
  }
  .hero-content .button {
    margin-top: 22px;
    padding: 16px 19px;
    min-height: 49px;
    gap: 25px;
    font-size: 10px;
  }
  .hero-caption {
    bottom: 20px;
    gap: 15px;
    font-size: 7px;
    letter-spacing: 0.8px;
    padding-top: 15px;
  }
  .hero-caption a {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .hero-caption > span:nth-child(2) {
    max-width: 160px;
  }
  .ticker {
    padding: 12px 0;
  }
  .ticker > div {
    font-size: 9px;
  }
  .ticker span {
    padding: 0 25px;
  }
  .section-label {
    font-size: 7px;
    letter-spacing: 1px;
    gap: 20px;
    padding-bottom: 23px;
  }
  .section-label span:last-child {
    text-align: right;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 35px;
  }
  .display {
    font-size: clamp(68px, 17vw, 100px);
  }
  .intro-copy {
    max-width: 100%;
  }
  .small-star {
    font-size: 30px;
    margin-bottom: 22px;
  }
  .intro-copy > p:first-of-type {
    font-size: 20px;
  }
  .intro-copy .muted {
    font-size: 13px;
    max-width: 410px;
  }
  .text-link {
    font-size: 10px;
  }
  .product-section {
    grid-template-columns: 1fr;
  }
  .product-visual {
    min-height: 540px;
    height: 590px;
  }
  .product-visual > img {
    width: 82%;
    height: 90%;
    max-height: 530px;
  }
  .product-watermark {
    font-size: 170px;
    left: 10%;
    top: 5%;
  }
  .visual-caption {
    bottom: 24px;
    left: 24px;
    font-size: 7px;
  }
  .product-copy {
    padding: 48px 28px 45px;
  }
  .product-copy .display {
    font-size: 90px;
  }
  .product-copy > .muted {
    font-size: 14px;
  }
  .product-copy .eyebrow {
    font-size: 9px;
  }
  .product-subtitle {
    font-size: 22px;
  }
  .product-facts {
    margin: 25px 0;
  }
  .product-facts dd {
    font-size: 20px;
  }
  .note-tabs {
    gap: 28px;
  }
  .note-tabs button {
    font-size: 10px;
  }
  .note-panel {
    min-height: 95px;
    font-size: 12px;
  }
  .detail-note {
    font-size: 9px;
    margin-top: 12px;
  }
  .statement {
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .statement .eyebrow {
    font-size: 8px;
    margin-bottom: 32px;
  }
  .statement h2 {
    font-size: clamp(61px, 15vw, 104px);
  }
  .statement-bottom {
    margin-top: 40px;
    font-size: 9px;
  }
  .statement-bottom svg {
    width: 48px;
    height: 48px;
  }
  .statement-bottom > span {
    font-size: 7px;
  }
  .next-brand {
    min-height: 530px;
  }
  .next-brand > img {
    object-position: 72% center;
  }
  .next-overlay {
    background: linear-gradient(90deg, #070704b5, transparent);
  }
  .next-content {
    padding: 50px 24px;
  }
  .next-content .eyebrow {
    font-size: 8px;
    max-width: 150px;
    line-height: 1.8;
  }
  .next-content h2 {
    font-size: 54px;
    margin: 25px 0;
  }
  .next-content .button {
    font-size: 10px;
    gap: 25px;
    padding: 16px 20px;
  }
  .next-index {
    font-size: 7px;
    left: 24px;
    right: auto;
    bottom: 24px;
  }
  .site-footer {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .footer-top {
    padding-bottom: 27px;
  }
  .footer-wordmark {
    font-size: 30px;
    letter-spacing: 3px;
  }
  .back-top {
    font-size: 8px;
    gap: 10px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    padding-top: 22px;
    gap: 25px;
    font-size: 9px;
  }
  .footer-bottom nav {
    justify-content: start;
    gap: 30px;
  }
  .footer-bottom nav button {
    font-size: 9px;
  }
  .copyright {
    font-size: 8px;
  }
  .age-card {
    padding: 30px 26px 24px;
  }
  .age-wordmark {
    margin-bottom: 30px;
  }
  .age-card h2 {
    font-size: 65px;
  }
  .age-card > p:not([class]) {
    font-size: 12px;
  }
  .age-actions .button {
    min-width: 240px;
  }
  .privacy-dialog {
    padding: 45px 25px 30px;
  }
  .bensons-wordmark {
    font-size: 29px;
  }
  .bensons-hero h1 {
    font-size: clamp(75px, 17vw, 115px);
  }
  .bensons-hero .hero-art img {
    object-position: center bottom;
  }
  .bensons-hero .hero-shade {
    background: linear-gradient(
      180deg,
      #130e07b0,
      #130e0720 42%,
      transparent 65%,
      #130e0788 100%
    );
  }
  .bensons-intro .display {
    font-size: 57px;
    letter-spacing: -2px;
  }
  .bensons-product .product-visual {
    min-height: 450px;
    height: 550px;
  }
  .bensons-product .product-visual img {
    height: 100%;
    object-position: center;
  }
  .bensons-product .product-copy {
    padding: 45px 28px;
  }
  .bensons-product .display {
    font-size: 88px;
  }
  .bensons-statement h2 {
    font-size: clamp(48px, 12vw, 80px);
    letter-spacing: -2px;
  }
  .bensons-footer .footer-wordmark {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .collection-intro {
    padding: 50px 24px 38px;
  }
  .collection-intro .eyebrow {
    font-size: 8px;
    margin-bottom: 30px;
  }
  .collection-intro h1 {
    font-size: clamp(64px, 16vw, 102px);
  }
  .collection-intro-bottom {
    display: block;
    margin-top: 35px;
    padding-bottom: 25px;
  }
  .collection-intro-bottom p {
    font-size: 13px;
  }
  .collection-intro-bottom > span {
    display: block;
    margin-top: 27px;
    font-size: 8px;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 50px;
  }
  .brand-card-picture {
    height: 450px;
  }
  .brand-card-name {
    font-size: 55px;
    left: 24px;
    bottom: 24px;
  }
  .brand-card-arrow {
    right: 24px;
    bottom: 24px;
  }
  .brand-card-meta {
    font-size: 9px;
    padding-top: 13px;
  }
  .collection-outro {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 45px 24px;
  }
  .collection-outro h2 {
    font-size: 43px;
  }
  .collection-outro p {
    font-size: 13px;
  }
  .collection-footer .footer-wordmark {
    font-size: 32px;
    letter-spacing: -1.5px;
  }
}
@media (max-width: 370px) {
  .hero {
    min-height: 820px;
  }
  .hero-content {
    padding-bottom: 395px;
  }
  .hero-content .eyebrow {
    font-size: 7px;
  }
  .product-visual {
    height: 520px;
    min-height: 500px;
  }
  .note-tabs {
    gap: 18px;
  }
  .age-card h2 {
    font-size: 56px;
  }
  .hero-caption {
    gap: 10px;
  }
  .footer-wordmark {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .will-reveal {
    opacity: 1;
    transform: none;
  }
}

.age-pending .site-shell {
  visibility: hidden;
}
body.age-pending {
  background: var(--ink);
}

.collection-wordmark,
.bensons-wordmark {
  display: block;
}
.next-brand > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.next-brand > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
@media (max-width: 700px) {
  .bensons-hero h1 {
    font-size: clamp(47px, 13.3vw, 88px);
  }
  .next-brand {
    min-height: 650px;
  }
  .next-brand > picture img {
    object-position: center bottom;
  }
  .next-overlay {
    background: linear-gradient(180deg, #090d08aa, transparent 55%);
  }
  .next-content h2 {
    font-size: 48px;
    margin: 18px 0;
  }
  .next-content {
    padding-top: 35px;
  }
  .next-content .eyebrow {
    max-width: none;
    font-size: 7px;
  }
  .next-content .button {
    padding: 14px 18px;
    min-height: 45px;
  }
  .bensons-wordmark small {
    margin-top: 7px;
  }
  .collection-wordmark small {
    margin-top: 6px;
  }
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.brand-card-picture {
  height: 500px;
}
.brand-card-name {
  font-size: clamp(38px, 3.7vw, 61px);
}
.brand-card-name.nightbird-card-name {
  font-family: Georgia, serif;
  letter-spacing: -2px;
  font-size: clamp(36px, 3.5vw, 58px);
}
.nightbird-card-picture img {
  object-position: 69% 50%;
}
.brand-card-meta {
  font-size: 9px;
  flex-wrap: wrap;
  gap: 5px 12px;
}
.footer-bottom nav {
  flex-wrap: wrap;
}
@media (max-width: 1100px) and (min-width: 701px) {
  .brand-card-picture {
    height: 420px;
  }
  .brand-card-name {
    left: 22px;
    bottom: 32px;
    font-size: 38px;
  }
  .brand-card-arrow {
    right: 15px;
    bottom: 25px;
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  .brand-card-name.nightbird-card-name {
    font-size: 36px;
  }
}
@media (max-width: 700px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .brand-card-picture {
    height: 440px;
  }
  .brand-card-name {
    font-size: 55px;
  }
  .brand-card-name.nightbird-card-name {
    font-size: 49px;
  }
}

/* Brand chapters keep discovery close as each world unfolds. */
.brand-chapters{display:flex;align-items:center;justify-content:flex-end;gap:38px;min-height:70px;padding:10px var(--pad);position:sticky;top:0;z-index:20;background:var(--paper);border-bottom:1px solid var(--line);font-size:10px}
.brand-chapters>span{margin-right:auto;font-size:9px;letter-spacing:1.6px;font-weight:600}
.brand-chapters a{min-height:44px;display:flex;align-items:center;border-bottom:1px solid transparent}
.brand-chapters a:hover{border-color:currentColor}
.note-tabs button{min-height:44px;padding:10px 0 12px}
body[data-brand="mountain"] .site-header{background:#10150e;color:#f3f1e8;border-color:#ffffff25}
.mountain-hero .hero-content{padding-top:clamp(65px,8vh,110px)}
.mountain-hero h1{font-size:clamp(112px,12.2vw,190px);letter-spacing:-2px}
.mountain-hero .hero-description{max-width:410px}
.mountain-manifesto{background:#f3f1e8;padding-bottom:50px}
.mountain-manifesto-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:12%;align-items:center;padding:65px 0}
.mountain-manifesto .display{font-size:clamp(90px,10vw,154px);line-height:.88}
.mountain-manifesto .display em{font-style:normal;color:#b92c6a}
.mountain-manifesto-copy{max-width:405px}
.mountain-manifesto-copy svg{width:75px;height:75px;margin-bottom:30px;color:#8b986c}
.mountain-manifesto-copy .manifesto-lead{font-size:27px;line-height:1.35;margin-bottom:22px}
.mountain-manifesto-copy>p:not(.manifesto-lead){font-size:14px;color:#63695d;line-height:1.85;margin-top:15px}
.mountain-signatures{display:flex;justify-content:space-between;gap:20px;padding-top:30px;border-top:1px solid var(--line);font-size:9px;letter-spacing:1.3px}
body[data-brand="mountain"] .product-visual{background:radial-gradient(ellipse at 50% 50%,#202818,#020302 70%)}
body[data-brand="mountain"] .product-watermark{color:#d7f36b18;writing-mode:horizontal-tb;top:7%;left:4%;font-size:clamp(90px,10vw,160px)}
body[data-brand="mountain"] .product-visual>img{mix-blend-mode:lighten;transform:rotate(-7deg);width:78%;max-height:740px}
body[data-brand="mountain"] .product-copy{background:#e9eddc}
.mountain-serve{position:relative;isolation:isolate;overflow:hidden;background:#d7f36b;display:grid;grid-template-columns:1.1fr 1fr;gap:12%;padding:85px var(--pad)}
.mountain-serve-title .eyebrow{margin-bottom:35px}
.mountain-serve h2{font:400 clamp(90px,10.5vw,160px)/.86 "Bebas Neue";letter-spacing:-1px}
.mountain-serve h2 em{font-style:normal;color:#10150e;-webkit-text-stroke:1.5px #10150e;color:transparent}
.mountain-serve-title>p:last-child{font-size:13px;margin-top:28px}
.mountain-serve-steps{align-self:center}
.mountain-serve-steps article{display:flex;gap:25px;padding:25px 0;border-top:1px solid #10150e40}
.mountain-serve-steps article>span{font-size:10px;letter-spacing:1px;padding-top:8px}
.mountain-serve-steps h3{font-size:22px;font-weight:500;line-height:1.3;margin-bottom:12px}
.mountain-serve-steps p{font-size:13px;max-width:315px;color:#3e4c1f}
.serve-watermark{font:400 650px/1 "Bebas Neue";position:absolute;right:-70px;bottom:-190px;color:#10150e04;z-index:-1;transform:rotate(-15deg)}
/* Benson’s: warm paper, ornamental framing and a slower editorial rhythm. */
body[data-brand="bensons"] .site-header{background:#17120d;color:#efe7d6;border-color:#d3b47544}
.bensons-chapters{background:#d3b475;border-color:#17120d33}
.bensons-story{background:#211a13;color:#f0e6d3;text-align:center;position:relative;border:16px solid #211a13;outline:1px solid #d3b47544;outline-offset:-30px;padding-top:72px;padding-bottom:70px}
.bensons-story .eyebrow{color:#d3b475;margin:22px 0 30px;font-size:9px}
.bensons-seal{width:140px;height:140px;border:1px solid #d3b47588;outline:1px solid #d3b47544;outline-offset:7px;border-radius:50%;margin:0 auto 38px;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#d3b475;transform:rotate(-8deg)}
.bensons-seal span{font-size:6px;letter-spacing:1.5px}
.bensons-seal b{font:400 69px/1.2 Georgia,serif}
.bensons-story h2{font:400 clamp(45px,5.7vw,87px)/1.12 Georgia,serif;letter-spacing:-2.5px}
.bensons-story h2 em{color:#d3b475;font-weight:400}
.bensons-story-copy{max-width:600px;margin:35px auto;font-size:15px;color:#d0c2ac;line-height:1.85}
.bensons-rule{display:flex;justify-content:center;align-items:center;gap:30px;font-size:9px;letter-spacing:2px;color:#d3b475}
.bensons-rule i{font-style:normal;font-size:22px}
.bensons-story .text-link{border-color:#d3b475;color:#f0e6d3;margin-top:30px}
.bensons-product .product-copy{grid-column:1;grid-row:1}
.bensons-product .product-visual{grid-column:2;grid-row:1}
.bensons-product .product-facts dd{font-family:Georgia,serif;font-size:24px}
.bensons-ritual{display:grid;grid-template-columns:1fr 1.15fr;gap:13%;background:#eaddc2;padding-top:90px;padding-bottom:90px}
.bensons-ritual h2{font:400 clamp(64px,7.8vw,120px)/1.05 Georgia,serif;letter-spacing:-4px;margin:35px 0 25px}
.bensons-ritual h2 em{color:#8f6426;font-weight:400}
.bensons-ritual-heading>p:last-child{font-size:14px;color:#756753}
.bensons-ritual-steps{align-self:center}
.bensons-ritual-steps article{border-top:1px solid #b7a887;padding:25px 0}
.bensons-ritual-steps article>span{font-size:8px;letter-spacing:1.8px;color:#806634}
.bensons-ritual h3{font:400 30px/1.3 Georgia,serif;margin:15px 0 12px}
.bensons-ritual-steps p{font-size:13px;line-height:1.8;color:#756753;max-width:390px}
/* The collection behaves as an editorial doorway into distinct worlds. */
.collection-editorial{position:relative;padding-bottom:0;overflow:hidden}
.collection-editorial h1{font-size:clamp(76px,8.7vw,134px);max-width:1040px}
.collection-editorial .collection-intro-bottom{border:0;margin-bottom:35px;padding-bottom:0}
.collection-editorial .text-link{margin-top:0;white-space:nowrap}
.collection-edition{position:absolute;right:var(--pad);top:95px;font-size:8px;line-height:1.9;letter-spacing:2px;text-align:right}
.collection-stories{padding:20px var(--pad) 80px;display:grid;gap:32px}
.collection-story{display:grid;grid-template-columns:1.1fr 1fr;min-height:570px;overflow:hidden}
.collection-story-photo{display:block;position:relative;overflow:hidden;background:#080b08;min-height:570px}
.collection-story-photo img{width:100%;height:100%;object-fit:cover;object-position:78% center;position:absolute;inset:0;transition:transform .6s}
.collection-story-photo:hover img{transform:scale(1.035)}
.collection-story-photo>span{position:absolute;left:28px;top:26px;z-index:1;font-size:8px;letter-spacing:1.7px;color:#eee8dc}
.collection-story-copy{padding:55px clamp(30px,4.5vw,70px);display:flex;flex-direction:column;align-items:flex-start;justify-content:center}
.collection-story-copy h2{font:400 clamp(50px,5.9vw,90px)/1.1 "Bebas Neue";margin-top:25px;letter-spacing:-1px}
.collection-story-copy .eyebrow{font-size:8px;letter-spacing:1.5px}
.collection-story-tagline{font-size:22px;margin-top:15px;line-height:1.35}
.collection-story-copy>p:not([class]){font-size:13px;line-height:1.8;margin-top:20px;opacity:.75;max-width:400px}
.collection-story-copy dl{display:grid;grid-template-columns:1fr 1fr;gap:40px;border-top:1px solid currentColor;width:100%;padding-top:20px;margin:30px 0}
.collection-story-copy dt{font-size:7px;letter-spacing:1.5px;opacity:.65}
.collection-story-copy dd{margin:6px 0 0;font-size:18px}
.collection-story-copy .button{width:100%;border:1px solid currentColor;background:transparent;color:inherit}
.collection-story-copy .button:hover{background:#ffffff14}
.collection-mountain{background:#d7f36b;color:#17200f}
.collection-bensons{background:#282017;color:#ebdec5}
.collection-bensons .collection-story-photo{grid-column:2;grid-row:1}
.collection-bensons .collection-story-copy{grid-column:1;grid-row:1}
.collection-bensons h2{font-family:Georgia,serif;letter-spacing:-3px;font-size:clamp(50px,5.4vw,82px)}
.collection-bensons .eyebrow{color:#d3b475}
.collection-bensons .collection-story-photo img{object-position:69% center}
.collection-nightbird{background:#101f33;color:#ece5d6}
.collection-nightbird h2{font-family:Georgia,serif;letter-spacing:-3px;font-size:clamp(50px,5.4vw,82px)}
.collection-nightbird .eyebrow{color:#d9c292}
.collection-nightbird .collection-story-photo img{object-position:73% center}
@media(max-width:1100px){
 .brand-chapters{gap:25px}.brand-chapters>span{font-size:8px;letter-spacing:1px}
 .mountain-manifesto-grid{gap:8%}.mountain-manifesto-copy .manifesto-lead{font-size:24px}
 .collection-story-copy{padding:35px}.collection-story-copy h2{font-size:55px}.collection-story-photo,.collection-story{min-height:550px}
 .collection-edition{display:none}.collection-story-tagline{font-size:20px}
}
@media(max-width:700px){
 .brand-chapters{min-height:64px;gap:0;justify-content:space-between;padding:7px 18px;font-size:9px;flex-wrap:wrap}
 .brand-chapters>span{display:none}.brand-chapters a{min-height:44px;padding:0 6px}
 .mountain-hero h1{font-size:clamp(89px,22vw,145px);letter-spacing:-1px}.mountain-hero .hero-content{padding-top:44px;padding-bottom:435px}
 .mountain-hero .hero-description{font-size:12px;max-width:320px}
 .mountain-manifesto{padding-top:45px;padding-bottom:30px}
 .mountain-manifesto-grid{grid-template-columns:1fr;gap:38px;padding:40px 0}
 .mountain-manifesto .display{font-size:clamp(84px,22vw,132px)}
 .mountain-manifesto-copy svg{width:50px;height:50px;margin-bottom:20px}
 .mountain-manifesto-copy .manifesto-lead{font-size:25px}.mountain-manifesto-copy>p:not(.manifesto-lead){font-size:13px}
 .mountain-signatures{flex-wrap:wrap;gap:14px;font-size:7px;padding-top:22px}
 body[data-brand="mountain"] .product-visual>img{width:85%;height:86%;max-height:500px}
 body[data-brand="mountain"] .product-watermark{font-size:93px;top:6%}
 .mountain-serve{grid-template-columns:1fr;gap:40px;padding:48px 24px}
 .mountain-serve h2{font-size:clamp(97px,25vw,145px)}.mountain-serve-title .eyebrow{margin-bottom:30px}
 .mountain-serve-steps h3{font-size:21px}.mountain-serve-steps article{padding:23px 0;gap:20px}
 .bensons-story{border-width:8px;outline-offset:-18px;padding:55px 24px}
 .bensons-seal{width:115px;height:115px;margin-bottom:30px}.bensons-seal b{font-size:55px}.bensons-seal span{font-size:5px}
 .bensons-story h2{font-size:clamp(38px,10.5vw,66px);letter-spacing:-1.5px}.bensons-story-copy{font-size:13px;margin:28px auto}
 .bensons-rule{font-size:7px;gap:17px;letter-spacing:1.2px}.bensons-story .eyebrow{font-size:8px}
 .bensons-product .product-copy{grid-column:auto;grid-row:2}.bensons-product .product-visual{grid-column:auto;grid-row:1}
 .bensons-ritual{grid-template-columns:1fr;gap:35px;padding:48px 24px}
 .bensons-ritual h2{font-size:80px;letter-spacing:-3px;margin:25px 0}.bensons-ritual h3{font-size:28px}
 .collection-editorial h1{font-size:clamp(57px,14.7vw,100px);line-height:.95}
 .collection-editorial .collection-intro-bottom{margin-bottom:10px}
 .collection-editorial .text-link{margin-top:23px;font-size:10px}
 .collection-stories{padding:24px 16px 40px;gap:24px}
 .collection-story{grid-template-columns:1fr;min-height:0}
 .collection-story-photo{min-height:430px}
 .collection-story-copy{padding:32px 27px 36px}
 .collection-story-copy h2{font-size:64px;margin-top:22px}
 .collection-story-copy .eyebrow{font-size:7px}
 .collection-bensons h2,.collection-nightbird h2{font-size:54px;letter-spacing:-2px}
 .collection-bensons .collection-story-photo{grid-column:auto;grid-row:auto}.collection-bensons .collection-story-copy{grid-column:auto;grid-row:auto}
 .collection-story-photo>span{top:22px;left:24px;font-size:7px}
 .collection-story-copy dl{gap:20px;margin:26px 0}.collection-story-tagline{font-size:21px}
 .collection-story-copy .button{min-height:52px}
}
@media(max-width:370px){.brand-chapters{font-size:8px;padding-inline:12px}.collection-story-photo{min-height:370px}.collection-story-copy{padding-inline:23px}.collection-story-copy h2{font-size:54px}.collection-bensons h2,.collection-nightbird h2{font-size:47px}.mountain-signatures{font-size:6px}.mountain-hero .hero-content{padding-bottom:430px}}

/* Keep the route switcher within reach throughout every brand story. */
.site-header{position:sticky;top:0;height:84px}
.brand-chapters{position:relative;top:auto}
@media(min-width:701px){.hero{height:calc(100svh - 84px)}.bensons-hero h1{font-size:clamp(72px,8vw,125px)}}
@media(max-width:700px){.site-header{height:72px}}
