@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/bravo-brief-14/assets/fonts/montserrat-500.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/bravo-brief-14/assets/fonts/nunito-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/bravo-brief-14/assets/fonts/nunito-sans-700.woff2") format("woff2");
}

:root {
  --ink: #1c1c1c;
  --black: #000;
  --white: #fff;
  --paper: #efefef;
  --paper-soft: #f7f7f4;
  --fog: #d9dcda;
  --line: #cfcfcf;
  --muted: #626561;
  --accent: #f15a24;
  --accent-dark: #a63812;
  --green: #586052;
  --blue: #aab8bc;
  --head: "Montserrat", Arial, sans-serif;
  --body: "Nunito Sans", Arial, sans-serif;
  --gutter: clamp(20px, 4vw, 52px);
  --section-space: clamp(78px, 10vw, 150px);
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .11);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell-wide,
.reading-shell {
  width: min(100% - (var(--gutter) * 2), 1400px);
  margin-inline: auto;
}

.reading-shell {
  width: min(100% - (var(--gutter) * 2), 780px);
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0;
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 500;
}

h1,
h2 {
  letter-spacing: -.035em;
  line-height: .98;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.8vw, 82px);
}

h3 {
  line-height: 1.14;
}

.announcement {
  min-height: 30px;
  display: grid;
  place-items: center;
  padding: 6px var(--gutter);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-family: var(--head);
  font-size: 9px;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid #dedede;
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav {
  height: 100%;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand-mark {
  width: 80px;
  height: 58px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 80px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
}

.nav-links a,
.nav-cta {
  font-family: var(--head);
  font-size: 10px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .25s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: .11em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease;
}

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

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: #272727;
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: var(--paper);
}

.button-block {
  width: 100%;
}

.hero {
  padding: clamp(30px, 2.8vw, 40px) 0 clamp(54px, 6vw, 84px);
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: clamp(24px, 2vw, 30px);
  color: var(--muted);
  font-family: var(--head);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.story-meta span + span::before {
  content: "·";
  margin-right: 20px;
  color: #aaa;
}

.hero-copy > .eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(46px, 4.6vw, 68px);
}

.hero h1 span {
  background: linear-gradient(transparent 66%, rgba(241, 90, 36, .25) 66%);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: #4e504d;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 28px;
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--head);
  font-size: 10px;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-offer {
  max-width: 620px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.hero-offer > p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
}

.hero-offer > p span {
  color: var(--muted);
  font-size: 13px;
}

.hero-offer > p strong {
  font-family: var(--head);
  font-size: 16px;
  font-weight: 500;
}

.hero-offer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 24px;
  padding: 0;
  margin: 0 0 6px;
  list-style: none;
  font-size: 13px;
}

.hero-offer li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-offer small {
  color: var(--muted);
  font-size: 11px;
}

.hero-media {
  position: relative;
  min-height: 720px;
}

.hero-media figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img,
.hero-media video {
  height: 100%;
  object-fit: cover;
}

.hero-video {
  inset: 0 16% 8% 0;
}

.hero-video .video-label {
  right: auto;
  width: min(58%, 310px);
}

.hero-product {
  right: 0;
  bottom: 0;
  width: 38%;
  height: 43%;
  border: 8px solid var(--white);
  background: var(--paper-soft);
}

.hero-product img {
  height: 74%;
  object-fit: cover;
}

.hero-product figcaption {
  height: 26%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
}

.hero-product figcaption strong {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 500;
}

.hero-product figcaption span {
  color: #c9c9c9;
  font-size: 10px;
  line-height: 1.3;
}

.proof-strip {
  border-top: 1px solid #333;
  background: var(--black);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px clamp(18px, 3vw, 42px);
  border-right: 1px solid #323232;
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  font-family: var(--head);
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.proof-grid span {
  margin-top: 8px;
  color: #ababab;
  font-size: 12px;
}

.story-intro {
  background: var(--paper-soft);
}

.story-intro .eyebrow {
  margin-bottom: 22px;
  color: var(--accent-dark);
}

.story-intro h2 {
  margin-bottom: 38px;
  font-size: clamp(42px, 5vw, 70px);
}

.story-intro .lead {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.48;
}

.story-intro .lead::first-letter {
  float: left;
  margin: 10px 10px 0 0;
  color: var(--accent-dark);
  font-family: var(--head);
  font-size: 78px;
  line-height: .65;
}

.story-intro p:not(.eyebrow):not(.lead) {
  font-size: 18px;
}

.reason-light {
  background: var(--white);
}

.reason-paper {
  background: var(--paper);
}

.reason-dark {
  background: var(--ink);
  color: var(--white);
}

.reason-heading {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  margin-bottom: clamp(58px, 7vw, 100px);
}

.reason-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--head);
  font-size: 13px;
}

.reason-number-light {
  border-color: #777;
}

.reason-heading .eyebrow {
  margin: 4px 0 22px;
  color: var(--accent-dark);
}

.reason-dark .reason-heading .eyebrow {
  color: #ff9a72;
}

.reason-heading h2 {
  font-size: clamp(42px, 4.85vw, 72px);
}

.reason-split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.reason-copy {
  max-width: 560px;
  justify-self: end;
}

.reason-copy p {
  margin-bottom: 22px;
}

.check-list {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--accent-dark);
  font-weight: 700;
}

.feature-image {
  margin: 0;
}

.feature-image img {
  height: 100%;
  object-fit: cover;
}

.feature-image.portrait {
  height: min(78vw, 850px);
}

.feature-image figcaption,
.material-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.compare-wrap {
  margin-top: clamp(64px, 8vw, 112px);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-soft);
  font-size: 14px;
}

.compare-table caption {
  padding: 0 0 16px;
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}

.compare-table th,
.compare-table td {
  padding: 17px 16px;
  border: 1px solid #d8d8d4;
  text-align: left;
}

.compare-table thead th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compare-table .is-focus {
  background: #e6e0da;
  color: var(--ink);
  font-weight: 700;
}

.compare-table thead .is-focus {
  background: var(--accent-dark);
  color: var(--white);
}

.compare-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.review-pull {
  position: relative;
  margin-top: clamp(64px, 8vw, 110px);
  margin-bottom: 0;
  padding: 34px 0 0 72px;
  border-top: 1px solid var(--ink);
}

.review-pull::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--accent-dark);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}

.review-pull blockquote {
  margin-bottom: 24px;
  font-family: var(--head);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

.review-pull figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.review-pull figcaption strong {
  color: var(--ink);
}

.motion-section {
  background: #0d0d0d;
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
  align-items: end;
  gap: 70px;
  margin-bottom: clamp(50px, 7vw, 92px);
}

.section-heading-single {
  grid-template-columns: minmax(0, 1fr);
}

.section-heading .eyebrow {
  margin-bottom: 20px;
  color: #ff9a72;
}

.section-heading h2 {
  max-width: 1000px;
  font-size: clamp(44px, 6vw, 84px);
}

.section-heading > p {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

.video-grid {
  display: grid;
  gap: 18px;
}

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

.video-grid-colours {
  width: min(100% - (var(--gutter) * 2), 980px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #202020;
  isolation: isolate;
}

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

.video-portrait {
  aspect-ratio: .85;
}

.video-toggle {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.video-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .44);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.video-toggle::after {
  content: "";
  position: absolute;
  top: calc(50% + 46px);
  left: 50%;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  transform: translate(-50%, -4px);
  background: rgba(0, 0, 0, .62);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.video-toggle:hover::before,
.video-toggle:focus-visible::before,
.video-card.is-paused .video-toggle::before,
.video-card.is-muted .video-toggle::before {
  opacity: 1;
}

.video-toggle:hover::before {
  transform: translate(-50%, -50%) scale(1.04);
}

.video-card.is-muted .video-toggle::after {
  content: none;
}

.video-card.is-muted .video-toggle::before {
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: none;
  background: rgba(0, 0, 0, .48);
}

.video-card.is-muted .video-toggle:hover::before {
  transform: scale(1.04);
}

.video-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 22px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
}

.video-icon::before,
.video-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 22px;
  border-radius: 1px;
  background: var(--white);
}

.video-icon::before {
  left: 1px;
}

.video-icon::after {
  right: 1px;
}

.video-toggle:hover .video-icon,
.video-toggle:focus-visible .video-icon,
.video-card.is-paused .video-icon,
.video-card.is-muted .video-icon {
  opacity: 1;
}

.video-card.is-paused .video-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.video-card.is-muted .video-icon {
  top: 34px;
  left: 34px;
  width: 19px;
  height: 19px;
  margin-left: 0;
  border: 0;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M3.5 9.5v5H7L11.5 18V6L7 9.5H3.5Z'/%3E%3Cpath fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' d='m15.5 9 5 6m0-6-5 6'/%3E%3C/svg%3E");
}

.video-card.is-paused .video-icon::before,
.video-card.is-paused .video-icon::after,
.video-card.is-muted .video-icon::before,
.video-card.is-muted .video-icon::after {
  display: none;
}

.video-card video::cue {
  color: #fff;
  background: rgba(0, 0, 0, .78);
  font-family: Arial, sans-serif;
  font-size: 82%;
  line-height: 1.35;
}

.video-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}

.video-label {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
  padding: 18px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .35));
  color: var(--white);
  pointer-events: none;
}

.video-label strong {
  font-family: var(--head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-label span {
  color: #ccc;
  font-size: 10px;
  white-space: nowrap;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 18px;
}

.editorial-card {
  margin: 0;
  background: var(--white);
}

.editorial-card img {
  aspect-ratio: .82;
  object-fit: cover;
}

.editorial-card figcaption {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.editorial-card figcaption strong {
  font-family: var(--head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editorial-card figcaption span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.reason-copy-centered {
  margin-top: 56px;
  font-size: 19px;
}

.secondary-image-pair {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 56px;
}

.secondary-image-pair figure {
  margin: 0;
  background: var(--white);
}

.secondary-image-pair img {
  height: min(66vw, 720px);
  object-fit: cover;
}

.secondary-image-pair figcaption {
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.secondary-image-pair figcaption strong {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.secondary-image-pair figcaption span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.mini-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 58px;
}

.mini-review {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mini-stars,
.score-stars {
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: .1em;
}

.mini-review blockquote {
  margin: auto 0 28px;
  font-family: var(--head);
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.23;
}

.mini-review figcaption {
  color: var(--muted);
  font-size: 12px;
}

.review-disclosure {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.cta-break {
  padding-block: clamp(78px, 9vw, 130px);
  background: var(--accent-dark);
  color: var(--white);
}

.cta-break-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
}

.cta-break .eyebrow {
  margin-bottom: 22px;
  color: #ffd6c7;
}

.cta-break h2 {
  font-size: clamp(48px, 7vw, 94px);
}

.cta-break-grid > div:last-child {
  padding-bottom: 5px;
}

.cta-break-grid > div:last-child p {
  margin-bottom: 24px;
  color: #f0c4b4;
}

.carry-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: clamp(42px, 7vw, 110px);
}

.feature-image.landscape img {
  aspect-ratio: 1.16;
  object-fit: cover;
}

.carry-copy {
  padding-top: 24px;
}

.carry-copy > p {
  font-size: 18px;
}

.carry-facts {
  margin: 38px 0 44px;
}

.carry-facts > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.carry-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}

.carry-facts strong {
  font-family: var(--head);
  font-size: 13px;
  font-weight: 500;
}

.carry-facts span {
  color: var(--muted);
  font-size: 13px;
}

.detail-inline {
  margin: 0;
}

.detail-inline img {
  aspect-ratio: 1.2;
  object-fit: cover;
}

.detail-inline figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.single-film {
  margin-top: clamp(60px, 8vw, 116px);
}

.video-feature {
  height: min(78vh, 850px);
}

.video-feature video {
  object-position: center 42%;
}

.reason-dark .reason-heading {
  color: var(--white);
}

.travel-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(46px, 8vw, 130px);
}

.travel-hero {
  margin: 0;
}

.travel-hero img {
  height: min(78vw, 820px);
  object-fit: cover;
}

.travel-hero figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: #aaa;
  font-size: 12px;
}

.travel-hero figcaption strong {
  color: var(--white);
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.travel-copy > p:first-child {
  font-size: 19px;
}

.check-list-dark li {
  border-color: #4a4a4a;
}

.check-list-dark li::before {
  color: #ff9a72;
}

.fine-print {
  margin-top: 22px;
  color: #aaa;
  font-size: 12px;
}

.supplied-films {
  margin-top: clamp(88px, 10vw, 150px);
  padding-top: clamp(60px, 7vw, 100px);
  border-top: 1px solid #444;
}

.supplied-heading {
  max-width: 900px;
  margin-bottom: 50px;
}

.supplied-heading .eyebrow {
  margin-bottom: 18px;
  color: #ff9a72;
}

.supplied-heading h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 62px);
  text-transform: uppercase;
}

.supplied-heading h3:last-child {
  margin-bottom: 0;
}

.supplied-heading p:last-child {
  color: #aaa;
  font-size: 14px;
}

.video-grid-two {
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  align-items: stretch;
}

.video-short {
  aspect-ratio: 9 / 16;
  max-height: 800px;
}

.video-deep {
  aspect-ratio: 16 / 9;
  align-self: center;
}

.film-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 26px;
  color: #aaa;
  font-size: 12px;
}

.film-summary strong {
  color: var(--white);
  font-family: var(--head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.film-summary span::before {
  content: "✓";
  margin-right: 8px;
  color: #ff9a72;
}

.material-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
}

.material-copy > p {
  font-size: 18px;
}

.material-list {
  margin: 42px 0 0;
}

.material-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.material-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.material-list dt {
  font-family: var(--head);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.material-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.material-image {
  margin: 0;
}

.material-image img {
  height: min(78vw, 850px);
  object-fit: cover;
}

.colour-heading {
  margin-top: clamp(84px, 11vw, 160px);
  margin-bottom: 40px;
}

.colour-heading .eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
}

.colour-heading h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
}

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

.colour-card {
  display: block;
  border: 1px solid transparent;
  background: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s var(--ease);
}

.colour-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.colour-card img {
  aspect-ratio: .91;
  object-fit: cover;
}

.colour-card > span {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 18px;
}

.swatch {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 50%;
}

.swatch-black { background: #161616; }
.swatch-green { background: #4e594d; }
.swatch-blue { background: #a7b5b9; }

.colour-card strong {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.colour-card small {
  color: var(--muted);
  font-size: 11px;
}

.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.lifestyle-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.lifestyle-strip img {
  aspect-ratio: .82;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.lifestyle-strip figure:hover img {
  transform: scale(1.025);
}

.lifestyle-strip figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, .7);
  color: var(--white);
  font-family: var(--head);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reviews-section {
  background: var(--white);
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.reviews-header .eyebrow {
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.reviews-header h2 {
  max-width: 950px;
  font-size: clamp(44px, 6vw, 82px);
}

.reviews-score {
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 5px;
}

.reviews-score > strong {
  font-family: var(--head);
  font-size: 86px;
  font-weight: 500;
  line-height: .8;
}

.reviews-score .score-stars {
  margin: 18px 0 6px;
}

.reviews-score .score-meta,
.reviews-score .score-incentive {
  color: var(--muted);
  font-size: 12px;
}

.reviews-score .score-incentive {
  margin-top: 3px;
  color: var(--accent-dark);
  font-size: 10px;
}

.review-context {
  padding: 24px 28px;
  border-left: 3px solid var(--accent-dark);
  background: var(--paper-soft);
}

.review-context p {
  margin: 0;
  font-size: 14px;
}

.rating-distribution {
  display: grid;
  gap: 8px;
  margin-top: 40px;
}

.rating-distribution > div {
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}

.rating-distribution i {
  height: 6px;
  display: block;
  overflow: hidden;
  background: #e5e5e2;
}

.rating-distribution b {
  height: 100%;
  display: block;
  background: var(--ink);
}

.rating-distribution strong {
  font-weight: 700;
  text-align: right;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.review-card blockquote {
  margin: auto 0 36px;
  font-family: var(--head);
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.22;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
}

.review-card figcaption strong {
  font-family: var(--head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.review-card figcaption span {
  color: var(--muted);
}

.review-card-critical {
  border-color: #a5a5a0;
  background: #ebe8e3;
}

.assurance-section {
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

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

.assurance-section .section-heading .eyebrow {
  color: var(--accent-dark);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.assurance-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
}

.assurance-grid article > span {
  color: var(--accent-dark);
  font-family: var(--head);
  font-size: 10px;
  letter-spacing: .1em;
}

.assurance-grid h3 {
  margin: 70px 0 20px;
  font-size: clamp(22px, 2.2vw, 31px);
  text-transform: uppercase;
}

.assurance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.offer-section {
  background: var(--paper);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-media {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #e9e9e6;
}

.offer-media img {
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease, transform .4s var(--ease);
}

.offer-media img.is-changing {
  opacity: .55;
  transform: scale(.985);
}

.new-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  background: var(--black);
  color: var(--white);
  font-family: var(--head);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 88px);
}

.offer-copy > .eyebrow {
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.offer-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 70px);
}

.offer-lede {
  color: var(--muted);
  font-size: 17px;
}

.offer-price {
  display: flex;
  flex-direction: column;
  margin: 14px 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-price strong {
  font-family: var(--head);
  font-size: 23px;
  font-weight: 500;
}

.offer-price span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.colour-picker {
  padding: 0;
  margin: 0 0 24px;
  border: 0;
}

.colour-picker legend {
  width: 100%;
  margin-bottom: 13px;
  font-size: 13px;
}

.colour-option {
  min-width: 106px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 6px 8px 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
}

.colour-option.is-active {
  border-color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
}

.colour-option span {
  font-size: 11px;
}

.offer-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  margin: 20px 0 0;
  color: var(--muted);
  list-style: none;
  font-size: 11px;
}

.offer-checks li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--accent-dark);
  font-weight: 700;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: clamp(60px, 10vw, 160px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading .eyebrow {
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.faq-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(44px, 5vw, 72px);
}

.faq-heading h2:last-child {
  margin-bottom: 0;
}

.faq-heading p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  font-family: var(--head);
  font-size: 15px;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-family: var(--body);
  font-size: 26px;
  font-weight: 400;
  transition: transform .25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 50px 28px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-section {
  background: var(--black);
  color: var(--white);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.final-image img {
  height: 100%;
  object-fit: cover;
}

.final-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 8vw, 120px);
}

.final-copy .eyebrow {
  margin-bottom: 22px;
  color: #ff9a72;
}

.final-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(48px, 6vw, 84px);
}

.final-copy p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 34px;
  color: #bdbdbd;
  font-size: 18px;
}

footer {
  padding: 68px 0 110px;
  border-top: 1px solid #333;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.footer-grid img {
  width: 90px;
  height: 63px;
  object-fit: contain;
  filter: invert(1);
}

.footer-grid p {
  margin: 10px 0 0;
  color: #888;
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.footer-grid nav a,
.footer-grid nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c4c4c4;
  font: inherit;
  font-size: 11px;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-grid nav a:hover,
.footer-grid nav button:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid #333;
}

.footer-legal p {
  margin: 0;
  color: #777;
  font-size: 10px;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 110;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: min(560px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  padding: 20px;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
}

.consent-banner h2 {
  margin: 0 0 5px;
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.consent-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.consent-actions button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: var(--head);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-decline {
  background: var(--white);
  color: var(--ink);
}

.consent-accept {
  background: var(--ink);
  color: var(--white);
}

.sticky-buy {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  transform: translateY(calc(100% + 24px));
  background: rgba(0, 0, 0, .94);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s ease;
}

.sticky-buy.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-buy > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-buy strong {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sticky-buy > div span {
  overflow: hidden;
  color: #aaa;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-buy a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 3px;
  background: var(--white);
  color: var(--black);
  font-family: var(--head);
  font-size: 9px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .hero-media {
    min-height: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 600px;
  }

  .editorial-grid {
    grid-template-columns: 1.2fr .8fr;
  }

  .editorial-wide {
    grid-row: span 2;
  }

  .review-wall {
    grid-template-columns: 1fr 1fr;
  }

  .offer-media {
    min-height: 660px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .nav {
    grid-template-columns: 100px 1fr auto;
  }

  .nav-links {
    gap: 22px;
  }

  .hero-grid,
  .reason-split,
  .carry-grid,
  .travel-grid,
  .material-grid,
  .offer-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    row-gap: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .story-meta,
  .hero-copy > .eyebrow,
  .hero-copy > h1 {
    order: 1;
  }

  .hero-copy > .hero-lede,
  .hero-copy > .hero-actions,
  .hero-copy > .hero-offer {
    order: 3;
  }

  .story-meta {
    margin-bottom: 42px;
  }

  .hero-media {
    min-height: min(72vw, 620px);
    order: 2;
    margin: 18px 0 34px;
  }

  .hero-video {
    inset: 0 22% 0 8%;
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #323232;
  }

  .reason-copy {
    max-width: 760px;
    justify-self: start;
  }

  .feature-image.portrait,
  .travel-hero img,
  .material-image img {
    height: min(105vw, 820px);
  }

  .cta-break-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .carry-copy {
    padding-top: 0;
  }

  .video-feature {
    height: min(110vw, 820px);
  }

  .material-copy {
    max-width: 760px;
  }

  .offer-media {
    min-height: min(100vw, 760px);
  }

  .faq-heading {
    position: static;
  }

  .faq-grid {
    gap: 54px;
  }

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

  .final-image {
    height: min(100vw, 760px);
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --section-space: 78px;
  }

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

  .site-header {
    height: 66px;
  }

  .nav {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .brand-mark,
  .brand-mark img {
    width: 72px;
    height: 52px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
    min-height: 39px;
    padding-inline: 14px;
    font-size: 9px;
  }

  .hero {
    padding-top: 34px;
  }

  .story-meta {
    gap: 6px 11px;
    margin-bottom: 24px;
    font-size: 8px;
  }

  .story-meta span + span::before {
    margin-right: 11px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

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

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-offer > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-media {
    min-height: 515px;
  }

  .hero-video {
    inset: 0 11% 7% 0;
  }

  .hero-product {
    width: 44%;
    height: 43%;
    border-width: 5px;
  }

  .hero-product figcaption {
    padding: 8px;
  }

  .hero-product figcaption strong {
    font-size: 18px;
  }

  .proof-grid > div {
    min-height: 100px;
    padding: 20px;
  }

  .proof-grid strong {
    font-size: 25px;
  }

  .story-intro h2,
  .reason-heading h2,
  .section-heading h2,
  .reviews-header h2,
  .offer-copy h2,
  .faq-heading h2 {
    font-size: clamp(38px, 11.2vw, 54px);
  }

  .reason-heading {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .reason-number {
    width: 44px;
    height: 44px;
  }

  .reason-heading .eyebrow {
    margin-top: 0;
    margin-bottom: 13px;
  }

  .feature-image.portrait,
  .travel-hero img,
  .material-image img {
    height: auto;
    aspect-ratio: .86;
  }

  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 610px;
  }

  .review-pull {
    padding-left: 48px;
  }

  .review-pull::before {
    font-size: 58px;
  }

  .video-grid-three,
  .video-grid-colours,
  .video-grid-two,
  .editorial-grid,
  .secondary-image-pair,
  .mini-review-grid,
  .colour-grid,
  .lifestyle-strip,
  .review-wall,
  .assurance-grid,
  .reviews-header,
  .footer-grid,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .video-grid-three,
  .video-grid-colours {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-grid-three::-webkit-scrollbar,
  .video-grid-colours::-webkit-scrollbar {
    display: none;
  }

  .video-grid-three .video-card,
  .video-grid-colours .video-card {
    width: 83vw;
    max-width: 390px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .video-toggle::before {
    width: 56px;
    height: 56px;
  }

  .video-toggle::after {
    top: calc(50% + 42px);
  }

  .video-label {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
  }

  .editorial-wide {
    grid-row: auto;
  }

  .editorial-card img {
    aspect-ratio: .9;
  }

  .secondary-image-pair img {
    height: auto;
    aspect-ratio: .88;
  }

  .mini-review {
    min-height: 220px;
  }

  .cta-break h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .carry-facts > div,
  .material-list > div {
    grid-template-columns: 105px 1fr;
  }

  .video-feature {
    height: auto;
    aspect-ratio: .85;
  }

  .travel-hero figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .video-grid-two {
    gap: 28px;
  }

  .video-short {
    width: min(100%, 360px);
    justify-self: center;
  }

  .video-deep {
    width: 100%;
  }

  .film-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .colour-card > span {
    grid-template-columns: 18px 1fr auto;
  }

  .lifestyle-strip {
    grid-template-columns: 1fr 1fr;
  }

  .lifestyle-strip figure:last-child {
    grid-column: 1 / -1;
  }

  .lifestyle-strip figure:last-child img {
    aspect-ratio: 1.25;
  }

  .reviews-score {
    align-items: flex-start;
  }

  .reviews-score > strong {
    font-size: 72px;
  }

  .assurance-grid {
    gap: 1px;
  }

  .assurance-grid article {
    min-height: 0;
  }

  .assurance-grid h3 {
    margin-top: 46px;
  }

  .offer-media {
    min-height: auto;
    aspect-ratio: .92;
  }

  .offer-copy {
    padding: 38px 22px 46px;
  }

  .colour-option {
    min-width: 0;
    padding-inline: 11px;
  }

  .colour-option span {
    font-size: 10px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 13px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-image {
    height: auto;
    aspect-ratio: .9;
  }

  .final-copy {
    padding: 70px 22px 82px;
  }

  .footer-grid {
    align-items: start;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .footer-legal {
    gap: 18px;
  }

  .consent-banner {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px;
  }

  .sticky-buy {
    display: grid;
  }
}

@media (max-width: 420px) {
  .nav-cta {
    gap: 8px;
    padding-inline: 11px;
  }

  .hero-media {
    min-height: 455px;
  }

  .proof-grid span {
    font-size: 10px;
  }

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

  .reason-heading h2 {
    margin-top: 8px;
  }

  .lifestyle-strip {
    grid-template-columns: 1fr;
  }

  .lifestyle-strip figure:last-child {
    grid-column: auto;
  }

  .lifestyle-strip figure:last-child img {
    aspect-ratio: .82;
  }

  .sticky-buy > div span {
    max-width: 155px;
  }
}

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

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