:root {
  --orange: #fb710b;
  --orange-dark: #d95400;
  --ink: #171612;
  --charcoal: #22201b;
  --cream: #f5f0e8;
  --paper: #fffdf8;
  --muted: #6d695f;
  --line: rgba(23, 22, 18, 0.16);
  --white: #ffffff;
  --shell: min(1240px, calc(100vw - 48px));
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 30px 80px rgba(30, 21, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: #ffc08f;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.orange {
  color: var(--orange-dark);
}

.eyebrow.light {
  color: #ffd4b3;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-160%);
}

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

.announcement {
  position: relative;
  z-index: 30;
  color: #efece5;
  background: var(--ink);
}

.announcement-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement-inner p {
  margin: 0;
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement-inner svg {
  width: 13px;
}

.site-header {
  position: relative;
  z-index: 25;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 218px;
  height: 70px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.brand-mark svg {
  width: 100%;
  stroke-width: 1.3;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 1.52rem;
  letter-spacing: 0.02em;
}

.brand-name small {
  margin-top: 6px;
  font-size: 0.54rem;
  font-weight: 720;
  letter-spacing: 0.17em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.84rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-call) {
  position: relative;
  padding: 8px 0;
}

.main-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 17px;
  color: var(--white);
  background: var(--ink);
}

.nav-call svg {
  width: 17px;
  transition: transform 180ms ease;
}

.nav-call:hover svg {
  transform: translate(2px, -2px);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 34px);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 42px rgba(23, 22, 18, 0.24);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.floating-whatsapp svg {
  width: 22px;
}

.floating-whatsapp:hover {
  color: var(--ink);
  background: var(--orange);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  margin-right: 0;
  padding: clamp(78px, 9vw, 130px) 48px 90px 0;
}

.hero-copy::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(251, 113, 11, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateY(-56%) scale(0.82);
  animation: hero-orbit-in 1.4s 0.35s cubic-bezier(.2,.75,.2,1) both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-line {
  width: 0;
  height: 1px;
  background: var(--orange);
  animation: thread-draw 0.95s 0.28s cubic-bezier(.2,.75,.2,1) forwards;
}

.since {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.86rem;
  font-style: italic;
}

.hero-title {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(4.5rem, 7.2vw, 7.8rem);
}

.hero-title em,
.final-cta h2 em {
  color: var(--orange-dark);
  font-weight: 400;
}

.hero-title em {
  position: relative;
  display: inline-block;
}

.hero-title em::after {
  position: absolute;
  right: 0.04em;
  bottom: -0.01em;
  left: 0.03em;
  height: 0.035em;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: ink-stroke 0.85s 0.75s cubic-bezier(.2,.75,.2,1) forwards;
}

.hero-intro {
  max-width: 570px;
  margin: 34px 0 0;
  color: #514e47;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.hero-actions .button-primary {
  animation: cta-breathe 3.8s 1.35s ease-in-out infinite;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 0.83rem;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translate(3px, -3px);
}

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

.button-primary:hover {
  background: var(--ink);
}

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

.button-dark:hover {
  background: var(--orange-dark);
}

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

.button-light:hover {
  background: #ffe3cb;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0 4px;
  color: var(--orange-dark);
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 720;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.dark-link {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #2b2720;
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  top: -25%;
  bottom: -25%;
  left: -55%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-14deg);
  animation: hero-sheen 6.5s 1.5s ease-in-out infinite;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-color: #2b2720;
  background-image:
    linear-gradient(90deg, rgba(29, 25, 20, 0.42), rgba(29, 25, 20, 0.02) 45%),
    url("assets/images/aashiq-hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  will-change: background-position, transform;
  animation:
    hero-settle 1.2s cubic-bezier(.2,.7,.2,1) both,
    hero-pan 14s 1.2s ease-in-out infinite alternate;
}

.hero-stamp {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
  z-index: 2;
  animation: stamp-float 5.8s 1.1s ease-in-out infinite;
}

.hero-stamp::after {
  position: absolute;
  inset: 6px;
  border: 1px dotted rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  content: "";
}

.hero-stamp span {
  position: relative;
  z-index: 1;
  font-size: 0.54rem;
  font-weight: 760;
  letter-spacing: 0.2em;
}

.hero-stamp strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 1.1;
}

.material-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  color: #f7f1e7;
  background: rgba(18, 16, 13, 0.9);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.material-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(251, 113, 11, 0.2);
  animation: material-pulse 2.2s ease-out infinite;
}

.trust-rail {
  padding: 29px 0;
  color: #e9e4dc;
  background: var(--ink);
}

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

.trust-grid p {
  min-height: 50px;
  display: grid;
  align-content: center;
  gap: 2px;
  margin: 0;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-grid strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
}

.trust-grid span {
  color: #aaa59d;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 10vw, 150px) 0;
}

.section-heading h2 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 70px;
}

.video-banner {
  position: relative;
  min-height: clamp(520px, 54vw, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.video-banner-media,
.video-banner-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-banner-media {
  object-fit: cover;
  opacity: .82;
}

.video-banner-shade {
  background:
    linear-gradient(90deg, rgba(23, 22, 18, .84) 0%, rgba(23, 22, 18, .36) 58%, rgba(23, 22, 18, .18) 100%),
    linear-gradient(0deg, rgba(23, 22, 18, .78) 0%, transparent 58%);
}

.video-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
  padding-block: clamp(70px, 8vw, 115px);
}

.video-banner h2 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(3.6rem, 6.3vw, 7rem);
}

.video-banner h2 em {
  color: var(--orange);
}

.video-banner-actions {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.video-banner-actions > p {
  max-width: 430px;
  margin: 0;
  color: #e5ded4;
  line-height: 1.7;
}

.video-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-control span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: .68rem;
}

.video-control:hover span,
.video-control:focus-visible span {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(23, 22, 18, 0.18);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: #f8e4dc;
}

.product-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(23, 22, 18, 0.7));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.product-card-image > span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-card-image > span svg {
  width: 18px;
}

.product-card-image:hover::after,
.product-card-image:focus-visible::after,
.product-card-image:hover > span,
.product-card-image:focus-visible > span {
  opacity: 1;
}

.product-card-image:hover > span,
.product-card-image:focus-visible > span {
  transform: translateY(0);
}

.product-card-image:hover img {
  transform: scale(1.025);
}

.product-card-copy {
  min-height: 245px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 24px 22px;
}

.product-card-copy p {
  margin: 0 0 7px;
  color: var(--orange-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.product-card-copy > div > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.product-whatsapp {
  min-height: 49px;
  display: grid;
  grid-template-columns: 20px 1fr 17px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 0.71rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.product-whatsapp svg {
  width: 18px;
}

.product-whatsapp svg:last-child {
  justify-self: end;
}

.product-whatsapp:hover {
  color: var(--ink);
  background: var(--orange);
}

.products-page-gallery {
  background: var(--paper);
}

.products-page-gallery + .catalogue-section {
  padding-top: 0;
}

.product-lines {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.product-line {
  display: grid;
  grid-template-columns: 48px 60px minmax(220px, 0.75fr) 1fr 28px;
  align-items: center;
  gap: 22px;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
  transition: color 190ms ease, padding 190ms ease, background 190ms ease;
}

.product-line:hover {
  padding-inline: 20px;
  color: var(--paper);
  background: var(--ink);
}

.product-number {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.product-icon {
  width: 48px;
  color: var(--orange-dark);
}

.product-icon svg {
  width: 42px;
}

.product-name {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.product-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-line:hover .product-note {
  color: #bdb8ae;
}

.product-arrow svg {
  width: 22px;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.trade-section {
  color: var(--paper);
  background: var(--orange-dark);
}

.trade-grid {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
}

.trade-copy {
  align-self: center;
  max-width: 650px;
  padding: 100px 70px 100px 0;
}

.trade-copy h2 {
  margin-top: 18px;
  font-size: clamp(3.6rem, 5.8vw, 6.3rem);
}

.trade-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 30px 0 0;
  color: #ffe2cc;
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 31px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
}

.check-list svg {
  width: 19px;
}

.trade-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #282219;
  background:
    radial-gradient(circle at center, #ffd09f 0 2px, transparent 2px) 0 0/22px 22px,
    #f8c686;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.giant-button {
  position: relative;
  width: min(34vw, 440px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 25%;
  border: clamp(22px, 3vw, 46px) solid var(--ink);
  border-radius: 50%;
  box-shadow: 18px 25px 0 rgba(255, 255, 255, 0.35);
  transform: rotate(-12deg);
}

.giant-button::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(23, 22, 18, 0.55);
  border-radius: inherit;
  content: "";
}

.giant-button i {
  width: 42%;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
}

.trade-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  margin: 0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: right;
}

.heritage {
  background: var(--cream);
}

.heritage-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) 1.14fr;
  gap: 9vw;
  align-items: center;
}

.heritage-year {
  position: relative;
  display: grid;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 15rem);
  letter-spacing: -0.09em;
  line-height: 0.62;
}

.heritage-year::after {
  position: absolute;
  top: 45%;
  right: 0;
  width: 52%;
  height: 2px;
  background: var(--ink);
  content: "";
}

.heritage-year span:last-child {
  margin-left: 22%;
}

.heritage-copy h2 {
  margin: 18px 0 29px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.heritage-copy p {
  color: var(--muted);
}

.heritage-copy .large-copy {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.5;
}

.heritage-copy .text-link {
  margin-top: 15px;
}

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

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-block: 1px solid var(--line);
}

.principles article {
  min-height: 310px;
  padding: 42px 40px 35px;
  border-left: 1px solid var(--line);
}

.principles article:first-child {
  border-left: 0;
  padding-left: 0;
}

.principles article > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  border: 1px solid rgba(221, 83, 0, 0.35);
  border-radius: 50%;
}

.principles svg {
  width: 27px;
}

.principles h3 {
  margin: 52px 0 13px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.principles p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 10vw;
}

.faq-intro h2 {
  margin: 18px 0 25px;
  font-size: clamp(3rem, 4.6vw, 5rem);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 340px;
  color: #aaa59d;
}

.faq-intro .text-link {
  margin-top: 15px;
  color: var(--paper);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.3rem;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -7px 45px 28px 0;
  color: #bcb7ae;
  font-size: 0.9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.final-cta::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 85px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(90px, 9vw, 135px);
}

.final-cta h2 {
  max-width: 900px;
  margin-top: 22px;
  font-size: clamp(3.7rem, 6.8vw, 7rem);
}

.final-cta h2 em {
  color: var(--ink);
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.site-footer {
  padding-top: 78px;
  color: #e8e3da;
  background: #171612;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.85fr;
  gap: 9vw;
  padding-bottom: 70px;
}

.brand-light .brand-mark {
  color: var(--orange);
}

.brand-light .brand-logo {
  width: 245px;
  height: auto;
  padding: 9px 12px;
  background: var(--white);
}

.footer-brand > p {
  max-width: 420px;
  margin: 26px 0 15px;
  color: #9d988f;
}

.footer-since {
  color: #f5b078;
  font-family: var(--display);
  font-style: italic;
}

.footer-label {
  margin: 0 0 22px;
  color: #8d8880;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  width: max-content;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact > a,
.footer-contact > p:not(.footer-label) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 17px;
  margin-top: 4px;
  color: var(--orange);
}

.footer-contact p {
  margin: 16px 0 0;
  color: #c2bdb4;
  font-size: 0.88rem;
}

.footer-contact .hours {
  padding-left: 27px;
  color: #77736c;
  font-size: 0.75rem;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-socials a {
  color: #c2bdb4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  color: #716d66;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  animation: reveal-up 0.85s both cubic-bezier(.2,.75,.2,1);
}

.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 260ms; }
.delay-3 { animation-delay: 400ms; }

@keyframes reveal-up {
  from { opacity: 0; filter: blur(5px); transform: translateY(28px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes hero-settle {
  from { opacity: 0.7; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes hero-pan {
  from { background-position: 50% 50%; }
  to { background-position: 54% 47%; }
}

@keyframes hero-sheen {
  0%, 58% { opacity: 0; transform: translateX(0) skewX(-14deg); }
  68% { opacity: 0.8; }
  86%, 100% { opacity: 0; transform: translateX(510%) skewX(-14deg); }
}

@keyframes stamp-float {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50% { transform: translateY(-9px) rotate(4deg); }
}

@keyframes material-pulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 113, 11, 0.45); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(251, 113, 11, 0); }
}

@keyframes thread-draw {
  from { width: 0; }
  to { width: 52px; }
}

@keyframes ink-stroke {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes hero-orbit-in {
  from { opacity: 0; transform: translateY(-70%) scale(0.5) rotate(-28deg); }
  to { opacity: 1; transform: translateY(-56%) scale(0.82) rotate(0); }
}

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 113, 11, 0); }
  50% { box-shadow: 0 12px 34px rgba(213, 84, 0, 0.2); }
}

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

  .hero-copy {
    padding-right: 38px;
  }

  .hero-title {
    font-size: clamp(4rem, 7.9vw, 6.2rem);
  }

  .main-nav {
    gap: 24px;
  }

  .trade-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .announcement-inner p {
    display: none;
  }

  .announcement-inner {
    justify-content: center;
  }

  .nav-wrap {
    height: 76px;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px 18px 24px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-call) {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    margin-top: 16px;
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 72px 0 75px;
  }

  .hero-title {
    font-size: clamp(3.7rem, 13.3vw, 6.3rem);
  }

  .hero-visual {
    min-height: min(88vw, 650px);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .trust-grid p:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .split-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .video-banner-content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .video-banner-actions {
    max-width: 520px;
  }

  .product-grid {
    margin-top: 48px;
  }

  .product-line {
    grid-template-columns: 38px 50px 1fr 28px;
  }

  .product-note {
    grid-column: 3 / -1;
    margin-top: -28px;
    padding-bottom: 24px;
  }

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

  .trade-copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 90px 0;
  }

  .trade-art {
    min-height: 610px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .giant-button {
    width: min(68vw, 430px);
  }

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

  .heritage-year {
    width: min(500px, 82vw);
    font-size: clamp(8rem, 32vw, 14rem);
  }

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

  .principles article,
  .principles article:first-child {
    min-height: auto;
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles article:first-child {
    border-top: 0;
  }

  .principles h3 {
    margin-top: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 175px;
    height: 58px;
  }

  .brand-name strong {
    font-size: 1.3rem;
  }

  .hero-copy {
    padding-block: 56px 60px;
  }

  .hero-title {
    margin-top: 22px;
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    justify-content: space-between;
  }

  .text-link {
    width: max-content;
  }

  .hero-stamp {
    top: 24px;
    right: 24px;
    width: 96px;
    height: 96px;
  }

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

  .trust-grid p,
  .trust-grid p:nth-child(3) {
    min-height: 54px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .trust-grid p:first-child {
    border-top: 0;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading h2,
  .heritage-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

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

  .product-card-copy {
    min-height: 220px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    min-height: 49px;
  }

  .product-lines {
    margin-top: 45px;
  }

  .product-line {
    min-height: 104px;
    grid-template-columns: 30px 38px 1fr 20px;
    gap: 12px;
  }

  .product-line:hover {
    padding-inline: 8px;
  }

  .product-icon {
    width: 35px;
  }

  .product-icon svg {
    width: 33px;
  }

  .product-name {
    font-size: 1.35rem;
  }

  .product-note {
    grid-column: 3 / -1;
    margin-top: -19px;
    font-size: 0.72rem;
  }

  .section-action .button {
    width: 100%;
  }

  .trade-copy h2 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .trade-art {
    min-height: 440px;
  }

  .heritage-year::after {
    right: 6%;
  }

  .faq-list summary {
    font-size: 1.08rem;
  }

  .final-cta h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Inner pages */
.inner-hero {
  padding: clamp(90px, 10vw, 145px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: end;
  gap: 9vw;
}

.inner-hero h1 {
  margin-top: 25px;
  font-size: clamp(4.6rem, 8vw, 8.5rem);
}

.inner-hero h1 em {
  color: var(--orange-dark);
  font-weight: 400;
}

.inner-hero-aside {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.inner-hero-aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.inner-hero-aside .button {
  margin-top: 28px;
}

.history-mark {
  width: 84px;
  display: block;
  margin-bottom: 30px;
  color: var(--orange-dark);
}

.history-mark svg {
  width: 100%;
  stroke-width: 1.1;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
}

.story-quote {
  position: sticky;
  top: 50px;
  align-self: start;
  padding: 48px 38px 48px 56px;
  color: var(--paper);
  background: var(--ink);
}

.story-quote > span {
  position: absolute;
  top: 16px;
  left: 21px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.story-quote p {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
}

.story-copy h2 {
  margin: 18px 0 32px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.82;
}

.story-copy > p:nth-of-type(2) {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.3rem;
}

.legacy-section {
  padding: clamp(95px, 10vw, 150px) 0;
  color: var(--paper);
  background: var(--charcoal);
}

.legacy-section .split-heading > p {
  color: #a9a49b;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.timeline article {
  padding: 35px 36px 0;
  border-left: 1px solid rgba(255,255,255,.18);
}

.timeline article:first-child {
  padding-left: 0;
  border-left: 0;
}

.timeline article > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.timeline h3 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
}

.timeline p {
  max-width: 300px;
  margin: 0;
  color: #aaa59c;
  font-size: .86rem;
}

.values-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw;
}

.value-title h2 {
  margin-top: 18px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.value-list {
  border-top: 1px solid var(--line);
}

.value-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.value-list article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  border: 1px solid rgba(221,83,0,.35);
  border-radius: 50%;
}

.value-list svg {
  width: 25px;
}

.value-list h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.catalogue-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  justify-content: space-between;
  align-items: end;
}

.catalogue-intro h2 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.catalogue-intro > p:last-child {
  color: var(--muted);
  font-size: .84rem;
}

.catalogue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.catalogue-filters button {
  min-height: 43px;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.catalogue-filters button:hover,
.catalogue-filters button.active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.results-status {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalogue-browser .product-grid {
  margin-top: 28px;
}

.catalogue-list {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.catalogue-item {
  display: grid;
  grid-template-columns: 45px 70px 1.05fr .8fr 150px;
  gap: 24px;
  align-items: start;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 30px;
}

.catalogue-number {
  color: var(--orange-dark);
  font-family: var(--display);
  font-style: italic;
}

.catalogue-icon {
  width: 58px;
  color: var(--orange-dark);
}

.catalogue-icon svg {
  width: 100%;
}

.catalogue-main h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.catalogue-main p {
  max-width: 440px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.catalogue-item ul {
  display: grid;
  gap: 9px;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  color: #4e4b44;
  font-size: .82rem;
}

.catalogue-item li::before {
  margin-right: 9px;
  color: var(--orange-dark);
  content: "—";
}

.catalogue-item > a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7px;
  color: var(--orange-dark);
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 720;
}

.catalogue-item > a svg {
  width: 17px;
}

.buying-guide {
  padding: clamp(95px, 10vw, 145px) 0;
  color: var(--paper);
  background: var(--charcoal);
}

.buying-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 10vw;
}

.buying-grid h2 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
}

.buying-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
}

.buying-grid li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.buying-grid li > span {
  color: var(--orange);
  font-family: var(--display);
  font-style: italic;
}

.buying-grid strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.buying-grid li p {
  margin: 4px 0 0;
  color: #9f9a91;
  font-size: .82rem;
}

.b2b-note-inner {
  display: grid;
  grid-template-columns: 1.2fr .75fr auto;
  gap: 7vw;
  align-items: center;
  padding: 65px;
  background: var(--cream);
}

.b2b-note h2 {
  margin-top: 14px;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.b2b-note p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.dark-checks {
  margin: 0;
}

.dark-checks svg {
  color: var(--orange-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 9vw;
}

.contact-details h2,
.contact-form-wrap > h2 {
  margin: 18px 0 40px;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
}

.contact-methods {
  border-top: 1px solid var(--line);
}

.contact-methods article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-methods article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  border: 1px solid rgba(221,83,0,.35);
  border-radius: 50%;
}

.contact-methods svg {
  width: 23px;
}

.contact-methods p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-methods a,
.contact-methods address {
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: normal;
}

.hours-panel {
  margin-top: 36px;
  padding: 28px;
  background: var(--cream);
}

.hours-panel > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.contact-form-wrap {
  padding: 48px;
  background: var(--cream);
}

.contact-form-wrap > h2 {
  margin-bottom: 16px;
}

.form-intro {
  max-width: 550px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 21px;
  margin-top: 31px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(23,22,18,.24);
  border-radius: 0;
}

.contact-form input,
.contact-form select {
  min-height: 51px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange-dark);
  outline: 2px solid rgba(251,113,11,.22);
}

.contact-form .button {
  width: max-content;
  cursor: pointer;
}

.form-message {
  margin: 0;
  padding: 12px 14px;
  font-size: .82rem;
}

.form-message.success {
  color: #275d34;
  background: #e6f4e8;
}

.form-message.error {
  color: #862c1e;
  background: #fae6e1;
}

.form-message a {
  font-weight: 750;
  text-decoration: underline;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.location-band {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--orange-dark);
}

.location-pattern {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  color: rgba(255,255,255,.1);
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 11rem);
  font-style: italic;
  line-height: .72;
  white-space: nowrap;
  transform: rotate(-7deg) scale(1.15);
}

.location-content {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.location-content h2 {
  margin: 18px 0 24px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
}

.location-content > p:not(.eyebrow) {
  max-width: 570px;
  color: #ffe0ca;
}

.location-content .button {
  margin-top: 24px;
}

@media (max-width: 920px) {
  .inner-hero-grid,
  .story-grid,
  .values-grid,
  .buying-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-aside {
    max-width: 600px;
  }

  .story-quote {
    position: relative;
    top: 0;
  }

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

  .timeline article,
  .timeline article:first-child {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

  .timeline article:first-child {
    border-top: 0;
  }

  .timeline h3 {
    margin-top: 18px;
  }

  .catalogue-item {
    grid-template-columns: 40px 60px 1fr 1fr;
  }

  .catalogue-item > a {
    grid-column: 3 / -1;
    width: max-content;
  }

  .b2b-note-inner {
    grid-template-columns: 1fr 1fr;
  }

  .b2b-note-inner > div:first-child {
    grid-column: 1 / -1;
  }

  .b2b-note-inner > .button {
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .inner-hero {
    padding-block: 70px;
  }

  .inner-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .inner-hero-aside {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-quote {
    padding: 48px 28px 40px 42px;
  }

  .timeline {
    margin-top: 45px;
  }

  .catalogue-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: flex-start;
  }

  .video-banner {
    min-height: 650px;
  }

  .video-banner-media {
    object-position: center;
  }

  .video-banner h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .catalogue-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .catalogue-item {
    grid-template-columns: 34px 45px 1fr;
    gap: 15px;
    padding: 42px 0;
  }

  .catalogue-main {
    grid-column: 3;
  }

  .catalogue-item ul,
  .catalogue-item > a {
    grid-column: 3;
  }

  .catalogue-icon {
    width: 43px;
  }

  .b2b-note-inner {
    grid-template-columns: 1fr;
    padding: 34px 25px;
  }

  .b2b-note-inner > div:first-child {
    grid-column: auto;
  }

  .b2b-note-inner > .button {
    width: 100%;
    justify-self: stretch;
  }

  .contact-form-wrap {
    padding: 35px 22px;
  }

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

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

  .location-band {
    min-height: 540px;
  }
}
