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

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/flow-satchel/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("/flow-satchel/assets/fonts/nunito-sans-700.woff2") format("woff2");
}

:root {
  --ink: #1c1c1c;
  --black: #000;
  --white: #fff;
  --paper: #efefef;
  --paper-light: #f7f7f4;
  --fog: #d9dcda;
  --muted: #666a67;
  --line: #cfcfcf;
  --line-dark: #343434;
  --accent: #f15a24;
  --olive: #68705b;
  --head: "Montserrat", Arial, sans-serif;
  --body: "Nunito Sans", Arial, sans-serif;
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(78px, 10vw, 152px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

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

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

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

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

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

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

.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.35;
  text-transform: uppercase;
}

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

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

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

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

h3 {
  line-height: 1.18;
}

.announcement {
  min-height: 29px;
  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, .96);
  backdrop-filter: blur(12px);
}

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

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

.brand-mark img {
  width: 78px;
  height: 55px;
  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: 5px;
  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: 10px 17px;
  border: 1px solid var(--black);
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  transition: background .25s ease, color .25s ease;
}

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

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

.hero-grid {
  min-height: min(840px, calc(100svh - 105px));
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.hero-copy {
  max-width: 610px;
  padding-block: 64px;
}

.hero-copy > .eyebrow {
  margin-bottom: 27px;
  color: var(--olive);
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 92px);
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 22px;
  color: #4f524f;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.48;
}

.rating-line {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #343634;
  font-size: 14px;
  text-decoration: none;
}

.rating-line:hover strong {
  text-decoration: underline;
}

.rating-line small {
  color: #70736f;
}

.stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .08em;
}

.hero-offer {
  display: flex;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-offer > p {
  flex: 0 0 auto;
  margin: 0;
}

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

.hero-offer > p strong {
  display: block;
  font-family: var(--head);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.localized-price {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hero-offer > span {
  max-width: 270px;
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: var(--head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

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

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

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-family: var(--head);
  font-size: 10px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.text-link-light {
  color: var(--white);
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: #656865;
  font-size: 12px;
  list-style: none;
}

.hero-reassurance li {
  position: relative;
  padding-left: 13px;
}

.hero-reassurance li::before {
  content: "";
  position: absolute;
  top: .6em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive);
}

.hero-reassurance sup {
  margin-left: 2px;
}

.hero-media {
  position: relative;
  width: 100%;
  height: min(74svh, 760px);
  min-height: 590px;
  overflow: hidden;
  background: #d7d8d5;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s var(--ease);
}

.hero-media:hover > img {
  transform: scale(1.035);
}

.media-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  background: rgba(0, 0, 0, .72);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.media-label strong {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 500;
}

.media-label span {
  font-size: 11px;
}

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

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

.proof-item {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line-dark);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: var(--head);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
}

.proof-item span {
  color: #bfc1bf;
  font-size: 12px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .52fr);
  gap: 28px 70px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.section-heading > .eyebrow {
  grid-column: 1 / -1;
  color: var(--olive);
}

.section-heading > p:last-child {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading-light {
  color: var(--white);
}

.section-heading-light > .eyebrow,
.section-heading-light > p:last-child {
  color: #b9bcb9;
}

.why-flow {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  min-height: 300px;
  padding: 34px clamp(24px, 4vw, 48px) 40px;
  border-right: 1px solid var(--line);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  border-right: 0;
}

.benefit-number {
  display: block;
  margin-bottom: 74px;
  color: var(--olive);
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: .15em;
}

.benefit h3 {
  max-width: 300px;
  margin-bottom: 16px;
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.benefit p {
  max-width: 345px;
  margin-bottom: 0;
  color: var(--muted);
}

.size-section {
  background: #0c0c0c;
  color: var(--white);
}

.size-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.size-tab {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 18px 22px;
  border: 1px solid #474747;
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}

.size-tab:hover {
  border-color: #999;
}

.size-tab.is-active {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.size-tab > span {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 500;
}

.size-tab small {
  color: currentColor;
  font-size: 12px;
  opacity: .72;
}

.size-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  min-height: 670px;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.size-image-wrap {
  position: relative;
  max-height: 700px;
  overflow: hidden;
  background: #d6d7d5;
}

.size-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 670px;
  object-fit: cover;
  object-position: center;
  transition: opacity .16s ease, transform .7s var(--ease);
}

.size-image-wrap img.is-changing {
  opacity: .25;
  transform: scale(1.01);
}

.size-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  min-width: 70px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-family: var(--head);
  font-size: 20px;
}

.size-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 74px);
}

.size-copy > .eyebrow {
  margin-bottom: 18px;
  color: var(--olive);
}

.size-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.size-title-row h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
}

.size-price {
  flex: 0 0 auto;
  margin: 7px 0 0;
  font-family: var(--head);
  font-size: 16px;
  white-space: nowrap;
}

.size-rating {
  margin-bottom: 20px;
  color: #785021;
  font-size: 13px;
  font-weight: 700;
}

.size-description {
  max-width: 610px;
  margin-bottom: 30px;
  color: #535653;
  font-size: 18px;
}

.size-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 23px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.size-facts h4 {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.size-facts ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #5e615e;
  font-size: 14px;
  list-style: none;
}

.size-facts li {
  position: relative;
  padding-left: 14px;
}

.size-facts li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive);
}

.size-note {
  margin-bottom: 20px;
  color: #5f625f;
  font-size: 13px;
}

.size-copy .button {
  align-self: flex-start;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.size-copy .button:hover {
  background: var(--white);
  color: var(--black);
}

.price-note {
  max-width: 560px;
  margin: 12px 0 0;
  color: #737673;
  font-size: 11px;
  line-height: 1.45;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-card-large {
  grid-column: 1 / -1;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: none;
}

.detail-media {
  position: relative;
  height: min(55svh, 570px);
  overflow: hidden;
  background: #d5d6d4;
}

.detail-card:not(.detail-card-large) .detail-media {
  aspect-ratio: 1 / .78;
  height: auto;
  max-height: 560px;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}

.detail-card:hover .detail-media img {
  transform: scale(1.035);
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 54px);
}

.detail-copy .eyebrow {
  margin-bottom: auto;
  padding-bottom: 70px;
  color: var(--olive);
}

.detail-copy h3 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.detail-copy p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
}

.motion-section {
  overflow: hidden;
  background: #dfe1dd;
}

.motion-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(34px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.motion-heading .eyebrow {
  margin-bottom: 28px;
  color: var(--olive);
}

.motion-heading h2 {
  max-width: 900px;
}

.motion-heading > p {
  max-width: 470px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.motion-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 24px);
}

.motion-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  border: 1px solid #2c2c2c;
  border-radius: 0;
  appearance: none;
  background: #101010;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color .25s ease, transform .25s var(--ease);
}

.motion-card:hover {
  transform: translateY(-3px);
  border-color: #555;
}

.motion-card:focus-visible {
  position: relative;
  z-index: 2;
  outline-offset: -6px;
}

.motion-card.is-playing {
  border-color: var(--accent);
}

.motion-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #090909;
}

.motion-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.motion-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .18));
  pointer-events: none;
  transition: opacity .25s ease;
}

.motion-play-disc {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(54px, 5vw, 68px);
  height: clamp(54px, 5vw, 68px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .5);
  color: var(--white);
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.motion-play-disc svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.motion-card:hover .motion-play-disc {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0, 0, 0, .68);
}

.motion-card.is-playing .motion-play-disc {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);
}

.motion-card.is-playing .motion-media::after {
  opacity: 0;
}

.motion-card-copy {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #303030;
}

.motion-card-copy strong {
  font-family: var(--head);
  font-size: clamp(10px, .9vw, 12px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.motion-card-copy > span {
  color: #aeb0ae;
  font-size: 12px;
  line-height: 1;
}

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

.film-grid {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1.42fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.film-copy {
  max-width: 500px;
}

.film-copy .eyebrow {
  margin-bottom: 27px;
  color: #aeb0ae;
}

.film-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(40px, 5vw, 68px);
}

.film-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #bdbfbd;
}

.film-card {
  position: relative;
  width: 100%;
  max-height: 65svh;
  overflow: hidden;
  border: 1px solid #303030;
  background: #121212;
  aspect-ratio: 16 / 9;
}

.film-player,
.film-player iframe,
.film-poster,
.film-control {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-player iframe {
  border: 0;
  pointer-events: none;
}

.film-poster {
  object-fit: cover;
  transition: opacity .35s ease;
}

.film-control {
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .13);
  color: var(--white);
  cursor: pointer;
}

.film-control:focus-visible {
  outline-offset: -7px;
}

.play-disc {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(0, 0, 0, .48);
  backdrop-filter: blur(8px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.play-disc svg {
  width: 36px;
  height: 36px;
  margin-left: 3px;
}

.film-control:hover .play-disc {
  transform: scale(1.06);
  background: rgba(0, 0, 0, .7);
}

.film-card.is-playing .film-poster {
  opacity: 0;
}

.film-card.is-playing .play-disc {
  opacity: 0;
  transform: scale(.9);
}

.film-card.is-paused .film-poster,
.film-card.has-started.is-paused .film-poster {
  opacity: 0;
}

.film-card.is-paused .play-disc {
  opacity: 1;
}

.film-status,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.compare-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 24px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

thead th {
  padding-top: 17px;
  padding-bottom: 17px;
  color: var(--muted);
  font-family: var(--head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  min-width: 130px;
}

tbody th strong {
  display: block;
  font-family: var(--head);
  font-size: 26px;
  font-weight: 500;
}

tbody th span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

tbody td {
  color: #565956;
  font-size: 14px;
}

tbody tr.is-featured {
  background: #e2e4df;
}

.table-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.table-note {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.rating-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.rating-grid article:last-child {
  border-right: 0;
}

.rating-grid article.rating-featured {
  background: var(--ink);
  color: var(--white);
}

.rating-size {
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rating-featured .rating-size,
.rating-featured > p:last-child {
  color: #b9bcb9;
}

.rating-grid article > strong {
  margin-bottom: 0;
  font-family: var(--head);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.rating-grid article .stars {
  margin-block: 8px 12px;
}

.rating-grid article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-grid figure {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-grid blockquote {
  max-width: 530px;
  margin: 0 0 45px;
  font-family: var(--head);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.22;
  text-transform: uppercase;
}

.quote-grid figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.quote-grid figcaption strong {
  font-size: 13px;
}

.quote-grid figcaption span {
  color: var(--muted);
  font-size: 11px;
}

.review-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.reassurance-section {
  padding-block: 64px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--white);
}

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

.reassurance-grid article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  padding-inline: clamp(24px, 3vw, 45px);
  border-right: 1px solid var(--line-dark);
}

.reassurance-grid article:first-child {
  padding-left: 0;
}

.reassurance-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.reassurance-grid article > span {
  color: #d6d7d6;
  font-family: var(--head);
  font-size: 24px;
}

.reassurance-grid h3 {
  margin-bottom: 9px;
  font-size: 16px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.reassurance-grid p {
  margin: 0;
  color: #aeb0ae;
  font-size: 13px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro .eyebrow {
  margin-bottom: 25px;
  color: var(--olive);
}

.faq-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.8vw, 64px);
}

.faq-intro > p:last-child {
  max-width: 390px;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 44px 24px 0;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: .05em;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  font-family: var(--body);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: 0 0 27px;
  padding-right: 44px;
  color: var(--muted);
}

.faq-list details a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.final-section {
  position: relative;
  min-height: min(76svh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #131313;
  color: var(--white);
}

.final-section > img,
.final-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-section > img {
  object-fit: cover;
  object-position: center 45%;
}

.final-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 45%, rgba(0, 0, 0, .2) 100%);
}

.final-copy {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--gutter) * 2), 1260px);
  margin-inline: auto;
}

.final-copy .eyebrow {
  margin-bottom: 27px;
  color: #d2d3d2;
}

.final-copy h2 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(54px, 7vw, 96px);
}

.final-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: #dedfde;
  font-size: 18px;
}

.site-footer {
  padding-block: 58px 95px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 55px;
  align-items: start;
}

.footer-logo {
  width: 92px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--white);
}

.footer-logo img {
  width: 78px;
  height: 58px;
  object-fit: contain;
}

.footer-copy {
  max-width: 720px;
  color: #b9bcb9;
  font-size: 13px;
}

.footer-copy p {
  margin-bottom: 12px;
}

.footer-copy .footnotes {
  margin-bottom: 0;
  color: #858885;
  font-size: 11px;
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-links a,
.footer-links .cookie-link {
  color: #d1d3d1;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 12px;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links .cookie-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.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 {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.5vw, 74px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .size-panel {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  }

  .size-copy {
    padding: 44px;
  }

  .reassurance-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

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

  .announcement {
    min-height: 28px;
  }

  .announcement p {
    font-size: 8px;
  }

  .site-header {
    height: 64px;
  }

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

  .brand-mark,
  .brand-mark img {
    width: 69px;
    height: 51px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 9px;
  }

  .hero-grid {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    width: min(100% - 40px, 640px);
    max-width: none;
    margin-inline: auto;
    padding-block: 52px 38px;
  }

  .hero-copy > .eyebrow {
    margin-bottom: 21px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(48px, 13.5vw, 72px);
  }

  .hero-lede {
    font-size: 18px;
  }

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

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .hero-actions .button {
    flex: 1;
    gap: 10px;
    padding-inline: 15px;
  }

  .hero-actions .text-link {
    flex: 0 0 auto;
    font-size: 9px;
  }

  .hero-reassurance {
    gap: 7px 16px;
    margin-top: 23px;
  }

  .hero-media {
    width: 100%;
    height: 62svh;
    min-height: 450px;
    max-height: 590px;
  }

  .hero-media > img {
    object-position: center 46%;
  }

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

  .proof-item,
  .proof-item:first-child {
    min-height: 100px;
    padding: 18px 20px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-item strong {
    font-size: 21px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  .section-heading > .eyebrow {
    grid-column: auto;
  }

  h2 {
    font-size: clamp(40px, 11vw, 62px);
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

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

  .benefit,
  .benefit:first-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit-number {
    margin-bottom: 45px;
  }

  .size-tabs {
    width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .size-tabs::-webkit-scrollbar {
    display: none;
  }

  .size-tab {
    flex: 0 0 min(76vw, 320px);
    scroll-snap-align: start;
  }

  .size-panel {
    width: calc(100% - 40px);
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .size-image-wrap {
    height: min(64svh, 560px);
    max-height: 560px;
  }

  .size-image-wrap img {
    min-height: 0;
    object-position: center 38%;
  }

  .size-copy {
    padding: 38px 24px 42px;
  }

  .size-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .size-price {
    margin-top: 0;
  }

  .size-facts {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .size-copy .button {
    width: 100%;
    gap: 12px;
  }

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

  .detail-card-large {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .detail-card .detail-media,
  .detail-card:not(.detail-card-large) .detail-media {
    height: min(62svh, 540px);
    max-height: 540px;
    aspect-ratio: auto;
  }

  .detail-copy .eyebrow {
    margin-bottom: 50px;
    padding-bottom: 0;
  }

  .detail-copy {
    min-height: 310px;
  }

  .motion-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .motion-heading > p {
    max-width: 650px;
    margin-bottom: 0;
  }

  .motion-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(72vw, 36.5625svh, 290px);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 17px;
    scroll-padding-inline: 1px;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--olive) rgba(0, 0, 0, .12);
    scrollbar-width: thin;
  }

  .motion-rail::-webkit-scrollbar {
    height: 4px;
  }

  .motion-rail::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .12);
  }

  .motion-rail::-webkit-scrollbar-thumb {
    background: var(--olive);
  }

  .motion-card {
    scroll-snap-align: start;
  }

  .motion-card:hover {
    transform: none;
  }

  .motion-card-copy {
    min-height: 78px;
  }

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

  .film-copy {
    max-width: 660px;
  }

  .film-card {
    max-height: none;
  }

  .play-disc {
    width: 64px;
    height: 64px;
  }

  .compare-wrap {
    overflow: visible;
    border: 0;
  }

  table,
  tbody {
    display: block;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 12px;
  }

  tbody tr,
  tbody tr.is-featured {
    display: block;
    padding: 9px 18px;
    border: 1px solid var(--line);
    background: transparent;
  }

  tbody tr.is-featured {
    background: #e2e4df;
  }

  tbody th,
  tbody td,
  tbody tr:last-child th,
  tbody tr:last-child td {
    display: grid;
    grid-template-columns: minmax(96px, .46fr) 1fr;
    gap: 14px;
    min-width: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  tbody tr > :last-child {
    border-bottom: 0;
  }

  tbody th::before,
  tbody td::before {
    content: attr(data-label);
    color: var(--muted);
    font-family: var(--head);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  tbody th strong {
    display: inline;
    font-size: 23px;
  }

  tbody th span {
    grid-column: 2;
  }

  .rating-grid {
    width: 100%;
    display: flex;
    overflow-x: auto;
    margin-inline: 0;
    padding-inline: 20px;
    border: 0;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rating-grid::-webkit-scrollbar {
    display: none;
  }

  .rating-grid article,
  .rating-grid article:last-child {
    flex: 0 0 min(76vw, 320px);
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .rating-grid article + article {
    border-left: 0;
  }

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

  .quote-grid figure {
    min-height: 280px;
  }

  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reassurance-grid article,
  .reassurance-grid article:first-child,
  .reassurance-grid article:last-child {
    grid-template-columns: 58px 1fr;
    gap: 15px;
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .reassurance-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .final-section {
    min-height: 690px;
    place-items: end center;
  }

  .final-section > img {
    object-position: 60% center;
  }

  .final-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .18) 90%);
  }

  .final-copy {
    padding-bottom: 62px;
  }

  .final-copy h2 {
    font-size: clamp(50px, 14vw, 74px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
    gap: 9px 28px;
    text-align: left;
  }

  .footer-links .cookie-link {
    text-align: left;
  }

  .site-footer {
    padding-bottom: 130px;
  }

  .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 {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 8px 8px 15px;
    border: 1px solid #3d3d3d;
    border-radius: 5px;
    transform: translateY(calc(100% + 32px));
    background: rgba(8, 8, 8, .96);
    color: var(--white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(12px);
    transition: transform .3s var(--ease), opacity .3s ease, visibility 0s linear .3s;
  }

  .sticky-buy.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

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

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

  .sticky-buy > div strong {
    font-family: var(--head);
    font-size: 12px;
    font-weight: 500;
  }

  .sticky-buy .button {
    min-height: 45px;
    flex: 0 0 auto;
    gap: 10px;
    padding: 10px 14px;
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .hero-reassurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .media-label {
    right: 12px;
    bottom: 12px;
  }

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

  .size-copy {
    padding-inline: 20px;
  }

  .size-description {
    font-size: 16px;
  }

  .detail-copy h3 {
    font-size: 28px;
  }

  .faq-list summary {
    font-size: 12px;
  }

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

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

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