@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-semibold.ttf') format('truetype');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fafbf9;
  --surface: #edf1f3;
  --navy: #102b4d;
  --ink: #192b3c;
  --muted: #52616c;
  --line: #cbd3da;
  --accent: #bdd4e6;
  --white: #ffffff;
  --body: 'Manrope', sans-serif;
  --display: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

button,
input,
select,
textarea {
  font-size: 1rem;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 5px;
}

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #3b78a3;
  outline-offset: 5px;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

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

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

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

h1 {
  font-size: clamp(3.1rem, 6.6vw, 6.8rem);
  line-height: 1.07;
  letter-spacing: -.06em;
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(2rem, 3.35vw, 3.6rem);
  line-height: 1.17;
  letter-spacing: -.05em;
  margin-bottom: 28px;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.3;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

p {
  margin-bottom: 22px;
}

.wrap {
  width: min(1320px, calc(100% - 112px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.surface {
  background: var(--surface);
}

.navy {
  background: var(--navy);
  color: var(--paper);
}

.navy p {
  color: #d4dfe8;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.65;
}

.small {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 30px;
}

.signal {
  display: inline-block;
  width: 23px;
  height: 18px;
  border: 1px solid currentColor;
  border-left-width: 4px;
  flex: 0 0 auto;
  position: relative;
}

.signal::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 4px;
  right: -3px;
  bottom: -3px;
  background: currentColor;
}

.skip {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--navy);
  color: white;
  padding: 15px;
  z-index: 1000;
}

.skip:focus {
  top: 15px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 249, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1440px, calc(100% - 80px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-dot {
  color: #557c9b;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

#main-nav a {
  font-size: .875rem;
  text-decoration: none;
  padding: 28px 0;
  position: relative;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

#main-nav a:hover::after,
#main-nav a[aria-current]::after {
  transform: scaleX(1);
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  font-size: .875rem;
}

.cart-link span {
  background: var(--navy);
  color: var(--white);
  min-width: 29px;
  text-align: center;
  padding: 1px 6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  padding: 12px;
}

.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
  transition: background .25s, color .25s, transform .25s;
}

.button:hover {
  background: #24466a;
  transform: translateY(-2px);
}

.button span {
  font-size: 1.2rem;
}

.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: #9cabb8;
}

.button.secondary:hover {
  background: var(--navy);
  color: white;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-block;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.media {
  position: relative;
  overflow: hidden;
  background: #d7dfe5;
  aspect-ratio: 16 / 10;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  color: transparent;
}

.media:hover img {
  transform: scale(1.025);
}

.media.asset-pending img,
.brand img.asset-pending {
  visibility: hidden;
}

.hero {
  min-height: 720px;
  height: calc(100svh - 84px);
  max-height: 980px;
  position: relative;
  color: white;
  background: #25394b;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  aspect-ratio: auto;
  background: #324b60;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 39, .85) 0%, rgba(5, 22, 39, .65) 42%, rgba(5, 22, 39, .06) 100%);
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 115px;
}

.hero-copy {
  max-width: 790px;
  animation: intro .8s ease both;
}

.hero h1 {
  font-size: clamp(3.9rem, 7.6vw, 8rem);
  margin-bottom: 28px;
}

.hero h1 span {
  color: #c2d6e6;
}

.hero-copy>p:not(.eyebrow) {
  max-width: 525px;
  font-size: 1.125rem;
  color: #e3ebf0;
  margin-bottom: 32px;
}

.hero .button {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.hero .button:hover {
  background: var(--accent);
}

.hero-link {
  color: white;
  font-size: .875rem;
  text-decoration: none;
  border-bottom: 1px solid #8e9baa;
  padding-bottom: 5px;
}

.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #778998;
  padding-top: 24px;
  font-size: .75rem;
  letter-spacing: .14em;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
}

.editorial-copy p:not(.lead) {
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.benefits-visual .media {
  aspect-ratio: 1.06;
}

.image-caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: .75rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  border-top: 1px solid #c0cbd4;
  padding: 24px 0 0;
}

.benefit-list article>span {
  font-family: var(--display);
  color: #536f88;
}

.benefit-list p {
  color: var(--muted);
}

.benefit-list h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}

.heading-row .section-heading {
  max-width: 760px;
}

.heading-row>a {
  flex-shrink: 0;
}

.section-heading>p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
}

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  scroll-margin-top: 110px;
}

.product-visual {
  position: relative;
  padding-top: 42px;
  background: #e5eaee;
}

.product-visual .media {
  aspect-ratio: 16 / 10;
  background: #e5eaee;
}

.product-number {
  position: absolute;
  left: 22px;
  top: 14px;
  font-size: .75rem;
  letter-spacing: .12em;
}

.product-category {
  display: block;
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  font-size: .8125rem;
}

.product-body {
  padding: 28px;
}

.product-body .eyebrow {
  font-size: .75rem;
  margin-bottom: 12px;
  color: #596d7f;
}

.product-body h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-subtitle {
  font-size: 1rem;
  font-weight: 600;
}

.featured-grid .button {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #577087;
  margin-top: 50px;
}

.stats>div {
  padding: 40px 0 0 40px;
  border-left: 1px solid #577087;
}

.stats>div:first-child {
  border-left: 0;
  padding-left: 0;
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.08em;
  color: #c7dceb;
}

.stats span {
  display: block;
  font-size: .875rem;
  margin-top: 14px;
}

.story-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.story-word {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.25;
  letter-spacing: -.055em;
  color: #596f84;
}

.story article {
  border-left: 1px solid var(--line);
  padding-left: 65px;
}

.story article p:not(.lead) {
  color: var(--muted);
}

.split-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.large-image {
  aspect-ratio: 1 / 1.05;
}

.inline-note {
  display: flex;
  gap: 20px;
  border-top: 1px solid #bdcbd5;
  padding-top: 24px;
  margin-top: 28px;
}

.inline-note .signal {
  margin-top: 6px;
}

.inline-note p {
  font-size: .9375rem;
}

.purchase-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.purchase-panel>div:first-child>p:not(.eyebrow) {
  max-width: 500px;
}

.purchase-steps {
  border: 1px solid var(--line);
}

.purchase-steps article {
  padding: 28px 34px;
  border-bottom: 1px solid var(--line);
}

.purchase-steps article:last-child {
  border: 0;
}

.purchase-steps article>span {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  margin-bottom: 15px;
  color: var(--muted);
}

.purchase-steps p {
  margin-bottom: 0;
  font-size: .9375rem;
}

.purchase-steps a {
  margin-top: 18px;
}

.contact-section {
  background: #e7edf1;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
}

.contact-details {
  border-top: 1px solid #bdc9d2;
  margin: 30px 0;
  padding-top: 25px;
}

.contact-details span {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
}

.contact-details p {
  font-family: var(--display);
  font-size: 1.35rem;
}

.enquiry-form {
  background: var(--paper);
  padding: 38px;
  border: 1px solid #c2cfd8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #afbeca;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  margin-bottom: 24px;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input::placeholder,
textarea::placeholder {
  color: #64727c;
  opacity: 1;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  margin-bottom: 22px;
}

.check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 5px 0 0;
  accent-color: var(--navy);
}

.enquiry-form .button {
  width: 100%;
}

.enquiry-form .small {
  margin: 18px 0 0;
}

.form-status:empty {
  display: none;
}

.site-footer {
  padding: 64px 0 20px;
  background: var(--navy);
  color: #e0e7ed;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr .65fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 40px;
}

.footer-top>div>a:not(.brand),
.footer-top .text-button {
  display: block;
  font-size: .8125rem;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-top>div>a:hover {
  text-decoration: underline;
}

.footer-top p {
  font-size: .8125rem;
  margin-bottom: 15px;
}

.footer-top .brand {
  margin-bottom: 20px;
  color: white;
}

.footer-top .footer-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #b5c8d9;
  margin-bottom: 24px;
}

.text-button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  text-align: left;
  text-decoration: underline;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  border-top: 1px solid #4c647b;
  padding-top: 30px;
}

.footer-disclaimer p {
  font-size: .8125rem;
  max-width: 1040px;
  color: #becdd9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #4c647b;
  padding-top: 20px;
  font-size: .75rem;
}

.page-head {
  padding: 82px 0 0;
  background: var(--surface);
}

.page-head h1 {
  max-width: 1000px;
}

.page-head .lead {
  max-width: 780px;
  color: #475d70;
}

.head-rule {
  height: 34px;
  margin-top: 45px;
  border-top: 1px solid #adbdc9;
  border-right: 5px solid var(--navy);
}

.catalog-section {
  padding-top: 55px;
}

.catalog-intro {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  font-size: .8125rem;
}

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

.catalog-grid .product-card {
  display: flex;
  flex-direction: column;
}

.catalog-grid .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px;
}

.catalog-grid .product-body>p:not(.product-subtitle):not(.eyebrow):not(.price) {
  color: var(--muted);
}

.specs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 8px 0 24px;
}

.specs summary {
  padding: 14px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .9375rem;
}

dl {
  margin: 0;
}

.specs dl>div,
.cart-summary dl>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #dde3e8;
  padding: 10px 0;
  font-size: .875rem;
}

dd {
  margin: 0;
}

.specs dd {
  text-align: right;
}

.specs dt {
  color: var(--muted);
}

.product-note {
  background: var(--surface);
  border-left: 3px solid #7b96ad;
  padding: 18px 20px;
  font-size: .875rem;
  margin-bottom: 25px;
}

.product-note p {
  margin: 8px 0 0;
}

.price {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

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

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid #63788b;
}

.principle-grid article {
  padding: 35px 36px 0;
  border-right: 1px solid #63788b;
}

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

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

.principle-grid article>span {
  display: block;
  font-family: var(--display);
  font-size: 2.7rem;
  margin-bottom: 25px;
  color: #bad0e1;
}

.principle-grid.light {
  margin-top: 0;
}

.principle-grid.light article>span {
  color: #4a6881;
}

.principle-grid.light h2 {
  font-size: 1.65rem;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.company-record {
  border-top: 3px solid var(--navy);
}

.company-record>div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-record dt {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 5px;
}

.company-record dd {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.faq-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 75px;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 125px;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.4;
}

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

.faq-number {
  font-size: .8125rem;
  color: #577189;
}

.faq-plus {
  margin-left: auto;
  font-size: 1.7rem;
  transition: transform .2s;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 36px 8px;
  color: var(--muted);
}

.legal-links {
  display: grid;
  grid-template-columns: 1fr;
}

.legal-links a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 65px;
  align-items: start;
}

.cart-summary {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.cart-summary h2 {
  font-size: 2rem;
}

.cart-summary dl {
  margin-bottom: 25px;
}

.cart-summary .total {
  border-top: 2px solid var(--navy);
  font-weight: 600;
  margin-top: 10px;
  padding-top: 20px;
}

.cart-summary>p:not(.eyebrow) {
  font-size: .875rem;
}

.cart-summary .button {
  width: 100%;
  margin-bottom: 18px;
}

.empty-cart {
  padding: 45px;
  border: 1px solid var(--line);
  margin-bottom: 30px;
}

.empty-cart h2 {
  font-size: 2rem;
}

.cart-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.cart-item h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.cart-item p {
  font-size: .875rem;
}

.qty {
  display: flex;
  border: 1px solid #98acbb;
  align-items: center;
  height: 44px;
}

.qty button {
  background: transparent;
  border: 0;
  width: 42px;
  min-height: 42px;
  color: var(--ink);
}

.qty span {
  padding: 0 10px;
}

.remove-item {
  padding: 8px 0;
  margin-top: 15px;
  margin-left: auto;
  font-size: .8125rem;
}

.cart-item:last-child {
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.thanks-contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  margin: 70px 0 45px;
  padding: 40px;
  background: var(--surface);
}

.thanks-contact h2 {
  font-size: 2rem;
}

.thanks-contact .button {
  display: flex;
  margin-bottom: 15px;
}

.document-head {
  padding: 65px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.document-head h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.document-date {
  font-size: .875rem;
  color: var(--muted);
}

.document-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.document-nav {
  position: sticky;
  top: 115px;
  border-top: 3px solid var(--navy);
  padding-top: 20px;
}

.document-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .875rem;
  text-decoration: none;
}

.document-body {
  max-width: 850px;
}

.document-body section {
  margin-bottom: 42px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.document-body h2 {
  font-size: 1.7rem;
  letter-spacing: -.03em;
}

.document-body p {
  color: #3f5060;
}

.document-body a {
  overflow-wrap: anywhere;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: white;
  padding: 15px 24px;
  box-shadow: 0 5px 24px #102b4d33;
  z-index: 80;
  opacity: 0;
  transform: translateY(16px);
  transition: .25s;
  pointer-events: none;
  max-width: calc(100% - 48px);
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-pending {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-ready {
  transition: opacity .65s ease, transform .65s ease;
  opacity: 1;
  transform: translateY(0);
}

@keyframes intro {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1600px) {
  .hero h1 {
    font-size: 8.2rem;
  }
}

@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }

  .editorial-grid,
  .benefits-grid,
  .split-large,
  .purchase-panel,
  .contact-grid,
  .company-grid {
    gap: 40px;
  }

  .story-layout {
    gap: 35px;
  }

  .story article {
    padding-left: 35px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .featured-grid {
    gap: 15px;
  }

  .product-body,
  .catalog-grid .product-body {
    padding: 24px;
  }

  .heading-row {
    align-items: flex-start;
  }

  .enquiry-form {
    padding: 26px;
  }

  .document-layout {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .cart-layout {
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 70px 0;
  }

  .header-inner {
    width: calc(100% - 40px);
    min-height: 74px;
    gap: 15px;
  }

  .brand {
    font-size: 1.8rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    font-size: .875rem;
  }

  #main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 15px 30px 25px;
    box-shadow: 0 15px 25px #102b4d10;
  }

  #main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  #main-nav a {
    padding: 14px 0;
  }

  #main-nav a::after {
    bottom: 8px;
  }

  .cart-link {
    padding-left: 15px;
    gap: 8px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 74px);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 9vw, 5.5rem);
  }

  .hero-copy {
    max-width: 620px;
  }

  .editorial-grid,
  .benefits-grid,
  .split-large,
  .purchase-panel,
  .contact-grid,
  .company-grid,
  .story-layout,
  .faq-layout,
  .cart-layout,
  .thanks-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-visual .media,
  .large-image {
    aspect-ratio: 16 / 10;
  }

  .benefits-visual {
    order: 2;
  }

  .heading-row {
    display: block;
  }

  .heading-row>a {
    margin-top: 5px;
  }

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

  .featured-grid .product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .featured-grid .product-visual {
    display: flex;
    flex-direction: column;
  }

  .featured-grid .product-visual .media {
    flex: 1;
  }

  .featured-grid .product-category {
    font-size: .75rem;
  }

  .story-word {
    display: none;
  }

  .story article {
    padding-left: 30px;
  }

  .catalog-grid {
    gap: 20px;
  }

  .catalog-grid .product-body {
    padding: 22px;
  }

  .catalog-grid .button {
    padding: 14px;
    gap: 10px;
  }

  .catalog-grid .product-body h3 {
    font-size: 1.7rem;
  }

  .specs dl>div {
    flex-direction: column;
    gap: 0;
  }

  .specs dd {
    text-align: left;
  }

  .principle-grid article {
    padding: 25px 22px 0;
  }

  .faq-aside {
    position: static;
  }

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

  .document-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .document-nav .eyebrow {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    width: calc(100% - 28px);
    gap: 6px;
  }

  .brand {
    font-size: 1.65rem;
    gap: 5px;
  }

  .brand img {
    width: 26px;
    height: 26px;
  }

  .menu-toggle {
    padding: 12px 6px;
  }

  .menu-toggle span {
    display: none;
  }

  .cart-link {
    font-size: .8125rem;
    padding-left: 10px;
  }

  .hero {
    min-height: 630px;
    max-height: 800px;
  }

  .hero-inner {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 12vw, 4.5rem);
  }

  .hero .eyebrow {
    font-size: .75rem;
    letter-spacing: .05em;
  }

  .hero-copy>p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-bottom {
    font-size: .75rem;
    letter-spacing: .05em;
    bottom: 22px;
  }

  .hero-coordinate {
    display: none;
  }

  .hero .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .lead {
    font-size: 1.125rem;
  }

  .eyebrow {
    font-size: .75rem;
    letter-spacing: .07em;
    margin-bottom: 23px;
  }

  .featured-grid .product-card {
    display: block;
  }

  .featured-grid .product-visual .media {
    flex: auto;
  }

  .product-body {
    padding: 24px;
  }

  .stats>div {
    padding: 25px 10px 0 15px;
  }

  .stats strong {
    font-size: 3.5rem;
  }

  .stats span {
    font-size: .75rem;
  }

  .story article {
    padding-left: 22px;
  }

  .purchase-steps article {
    padding: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enquiry-form {
    padding: 22px;
  }

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

  .footer-top>div:first-child,
  .footer-top>div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-disclaimer {
    gap: 15px;
  }

  .page-head {
    padding-top: 52px;
  }

  .catalog-intro {
    display: block;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .specs dl>div {
    flex-direction: row;
    gap: 12px;
  }

  .specs dd {
    text-align: right;
  }

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

  .principle-grid article,
  .principle-grid article:first-child,
  .principle-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid #63788b;
    padding: 28px 0 12px;
  }

  .principle-grid article>span {
    margin-bottom: 10px;
  }

  .faq-item summary {
    font-size: 1.125rem;
    gap: 12px;
    padding: 24px 0;
  }

  .faq-answer {
    padding-left: 28px;
    padding-right: 0;
  }

  .empty-cart,
  .cart-summary {
    padding: 26px;
  }

  .cart-item {
    gap: 15px;
  }

  .thanks-contact {
    padding: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

.hero-inner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 68px;
  width: 76px;
  height: 76px;
  border-top: 1px solid #b9cbd9;
  border-right: 5px solid #b9cbd9;
  pointer-events: none;
}

.purchase-panel>div:first-child {
  border-top: 3px solid var(--navy);
  padding-top: 30px;
}

.catalog-grid .product-number {
  border-left: 3px solid var(--navy);
  padding-left: 10px;
}

@media (max-width: 560px) {
  .hero-inner::after {
    width: 28px;
    height: 28px;
    top: 25px;
    border-right-width: 3px;
  }
}

.checkout-fieldset {
  min-width: 0;
  margin: 14px 0 26px;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.checkout-fieldset legend {
  padding: 0 14px 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  margin: 0;
  padding: 15px 18px;
  border: 1px solid #afbeca;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.payment-option:has(input:checked) {
  background: var(--surface);
  border-color: var(--navy);
}

.payment-option input {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin: 0;
  accent-color: var(--navy);
}

.line-total {
  color: var(--navy);
  font-weight: 600;
}

.product-body .price {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.cart-summary dd {
  text-align: right;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 50px));
  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .4s cubic-bezier(.4, 0, .2, 1)
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0)
}

.cookie-banner__inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  background: rgba(250, 251, 249, .98);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  box-shadow: 0 18px 50px rgba(16, 43, 77, .14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px)
}

.cookie-banner__content {
  max-width: 720px
}

.cookie-banner__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  color: #536f88;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase
}

.cookie-banner__signal {
  width: 18px;
  height: 14px;
  border: 1px solid currentColor;
  border-left-width: 3px;
  position: relative;
  flex: 0 0 auto
}

.cookie-banner__signal::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 3px;
  right: -3px;
  bottom: -3px;
  background: currentColor
}

.cookie-banner__content h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.04em
}

.cookie-banner__content p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65
}

.cookie-banner__link {
  display: inline-block;
  margin-top: 11px;
  padding-bottom: 3px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #9cabb8;
  transition:
    color .2s ease,
    border-color .2s ease
}

.cookie-banner__link:hover {
  color: #24466a;
  border-color: #24466a
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.cookie-banner__btn {
  min-height: 52px;
  padding: 14px 19px;
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease
}

.cookie-banner__btn--primary {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white)
}

.cookie-banner__btn--primary:hover {
  background: #24466a;
  border-color: #24466a;
  transform: translateY(-2px)
}

.cookie-banner__btn--secondary {
  border: 1px solid #9cabb8;
  background: transparent;
  color: var(--navy)
}

.cookie-banner__btn--secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px)
}

.cookie-banner__btn:focus-visible,
.cookie-banner__link:focus-visible {
  outline: 3px solid #3b78a3;
  outline-offset: 5px
}

@media (max-width: 820px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 25px
  }

  .cookie-banner__actions {
    width: 100%
  }

  .cookie-banner__btn {
    flex: 1
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px
  }

  .cookie-banner__inner {
    gap: 19px;
    padding: 22px 18px 18px
  }

  .cookie-banner__content h2 {
    font-size: 1.65rem
  }

  .cookie-banner__content p {
    font-size: .8rem;
    line-height: 1.55
  }

  .cookie-banner__actions {
    flex-direction: column-reverse
  }

  .cookie-banner__btn {
    width: 100%
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-banner__btn {
    transition: none
  }
}