:root {
  --ink: #06182b;
  --muted: #5f6f7f;
  --line: #d8e3ec;
  --paper: #f5f8fb;
  --white: #ffffff;
  --teal: #063a6f;
  --teal-dark: #002b55;
  --gold: #9ebbd5;
  --blue: #0b477f;
  --panel: #ffffff;
  --panel-soft: #eaf1f7;
  --navy: #002b55;
  --navy-deep: #001a34;
  --ice: #edf5fb;
  --shadow: 0 22px 60px rgba(6, 24, 43, 0.14);
  --shadow-lift: 0 24px 54px rgba(6, 24, 43, 0.2);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-body: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Aptos Display", "Bahnschrift", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px clamp(14px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 43, 85, 0.98), rgba(0, 26, 52, 0.98)),
    var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 38px rgba(12, 22, 26, 0.22);
  backdrop-filter: blur(14px);
  transition: padding 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
}

.site-header.is-scrolled {
  padding-top: 7px;
  padding-bottom: 7px;
  background:
    linear-gradient(135deg, rgba(0, 43, 85, 0.99), rgba(0, 26, 52, 0.99)),
    var(--navy-deep);
  box-shadow: 0 18px 46px rgba(12, 22, 26, 0.32);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 5px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.brand:hover .brand-mark {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px) rotate(-2deg);
}

.brand-mark img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 150%;
  height: 150%;
  max-width: none;
  object-fit: cover;
  transform: translateX(-50%);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.nav a {
  position: relative;
  padding: 9px 12px;
  border-radius: 6px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--gold);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.hero {
  position: relative;
  min-height: calc(100svh - 73px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  animation: hero-image 14s var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 26, 52, 0.9) 0%, rgba(0, 43, 85, 0.72) 36%, rgba(0, 43, 85, 0.16) 74%),
    linear-gradient(180deg, rgba(0, 26, 52, 0.2) 0%, rgba(0, 26, 52, 0.66) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding: 74px 0 96px;
  color: var(--white);
  animation: hero-content 820ms var(--ease) 120ms both;
}

.hero-content::before {
  display: block;
  width: 94px;
  height: 4px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--white), var(--gold));
  border-radius: 99px;
  content: "";
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.hero-kicker span,
.hero-kicker strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
}

.hero-kicker span {
  color: var(--navy-deep);
  background: var(--gold);
}

.hero-kicker strong {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(0, 43, 85, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 18px 34px rgba(0, 43, 85, 0.34);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(25, 40, 46, 0.05);
}

.trust-strip div {
  min-height: 116px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
  transition: background 260ms var(--ease), transform 260ms var(--ease);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 1.04rem;
  line-height: 1.2;
}

.trust-strip div:hover {
  background: #f9fbfa;
  transform: translateY(-3px);
}

.trust-strip span,
.card p,
.steps span,
.seller-panel p,
.stock-copy p,
.stock-points,
.contact-copy p,
.contact-card p,
.intro > p {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) 0;
  scroll-margin-top: 96px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro > p {
  font-size: 1.18rem;
  line-height: 1.75;
}

.operations-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
  padding-top: 0;
}

.photo-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.photo-card-large {
  grid-row: span 2;
  min-height: 578px;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms var(--ease), filter 300ms var(--ease);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 26, 52, 0.04) 0%, rgba(0, 26, 52, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 43, 85, 0.3), rgba(0, 43, 85, 0.02));
  content: "";
  z-index: 1;
}

.photo-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.photo-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 11px;
  color: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: var(--gold);
  border-radius: 999px;
}

.photo-card h3 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: 1.42rem;
  line-height: 1.15;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.photo-card-large h3 {
  font-size: 2rem;
}

.photo-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-7px);
}

.photo-card:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.075);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.intro h2,
.stock-copy h2,
.contact-copy h2,
.seller-panel h2 {
  position: relative;
}

.section-heading h2::after,
.stock-copy h2::after,
.contact-copy h2::after {
  display: block;
  width: 62px;
  height: 4px;
  margin-top: 18px;
  background: var(--gold);
  border-radius: 99px;
  content: "";
}

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(25, 40, 46, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  content: "";
  opacity: 0;
  transition: opacity 260ms var(--ease);
}

.card:hover {
  border-color: rgba(0, 43, 85, 0.28);
  box-shadow: var(--shadow-lift);
  transform: translateY(-8px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 38px;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-weight: 900;
  border-bottom: 3px solid var(--gold);
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.card:hover .card-icon {
  color: var(--blue);
  transform: translateY(-3px);
}

.process {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 4vw, 52px);
  padding-left: clamp(18px, 4vw, 52px);
  background:
    linear-gradient(180deg, var(--ice), var(--paper));
}

.process .section-heading,
.steps {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 210px;
  padding: 76px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.steps li:hover {
  border-color: rgba(36, 79, 143, 0.24);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.steps li::before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
  counter-increment: step;
  content: "STEP " counter(step);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.sellers {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.seller-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seller-panel::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 92px;
  height: 4px;
  background: var(--gold);
  content: "";
}

.seller-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.seller-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.seller-list span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 16px 18px;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.seller-list span:hover {
  border-color: rgba(0, 43, 85, 0.26);
  box-shadow: 0 12px 28px rgba(18, 32, 38, 0.1);
  transform: translateX(6px);
}

.stock-request {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 4vw, 52px);
  padding-left: clamp(18px, 4vw, 52px);
  background:
    linear-gradient(135deg, var(--ice) 0%, #ffffff 100%);
}

.stock-copy,
.request-form {
  width: min(560px, 100%);
}

.stock-copy {
  justify-self: end;
}

.stock-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.stock-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.stock-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 16px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: box-shadow 260ms var(--ease), transform 260ms var(--ease);
}

.request-form:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  background: #f8fbfd;
  border: 1px solid #ccd7db;
  border-radius: 8px;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.request-form input:hover,
.request-form textarea:hover {
  background: var(--white);
  border-color: #aebdc3;
}

.request-form textarea {
  min-height: 118px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(0, 43, 85, 0.14);
  border-color: var(--teal);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-form .button {
  width: 100%;
  cursor: pointer;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.contact-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.contact-logo {
  display: block;
  width: min(190px, 64%);
  height: auto;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 24, 43, 0.1);
}

.contact-card a {
  display: block;
  padding: 12px 0;
  color: var(--teal-dark);
  font-size: 1.12rem;
  font-weight: 900;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.footer {
  padding: 28px 18px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  background: var(--navy-deep);
}

.footer p {
  margin: 0;
}

.form-result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 43, 85, 0.9), rgba(0, 26, 52, 0.96)),
    var(--navy-deep);
}

.form-result-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 54px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}

.form-result-card img {
  width: min(190px, 64%);
  height: auto;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-result-card h1 {
  max-width: none;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 3rem;
}

.form-result-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.js-enabled .reveal,
.js-enabled .photo-card,
.js-enabled .card,
.js-enabled .steps li,
.js-enabled .seller-list span,
.js-enabled .request-form label,
.js-enabled .contact-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible,
.js-enabled .photo-card.is-visible,
.js-enabled .card.is-visible,
.js-enabled .steps li.is-visible,
.js-enabled .seller-list span.is-visible,
.js-enabled .request-form label.is-visible,
.js-enabled .contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .photo-card.is-visible:hover {
  transform: translateY(-7px);
}

.js-enabled .card.is-visible:hover {
  transform: translateY(-8px);
}

.js-enabled .steps li.is-visible:hover {
  transform: translateY(-6px);
}

.js-enabled .seller-list span.is-visible:hover {
  transform: translateX(6px);
}

.js-enabled .contact-card.is-visible:hover {
  transform: translateY(-5px);
}

@keyframes hero-image {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes hero-content {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 920px) {
  .header-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 26, 52, 0.91) 0%, rgba(0, 43, 85, 0.62) 100%),
      linear-gradient(180deg, rgba(0, 26, 52, 0.22) 0%, rgba(0, 26, 52, 0.74) 100%);
  }

  .trust-strip,
  .operations-gallery,
  .cards,
  .steps,
  .intro,
  .sellers,
  .stock-request,
  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .cards .card {
    min-height: 230px;
  }

  .photo-card-large {
    grid-row: span 1;
    min-height: 360px;
  }

  .intro,
  .sellers,
  .contact {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .header-shell {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    overflow-x: auto;
    gap: 8px;
    font-size: 0.84rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
  }

  .hero-kicker span,
  .hero-kicker strong {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.08rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-copy,
  .intro > p {
    font-size: 1.02rem;
  }

  .hero-content {
    width: min(100% - 28px, 620px);
    margin: 0 auto;
    padding: 60px 0 82px;
  }

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

  .button {
    width: 100%;
  }

  .trust-strip,
  .operations-gallery,
  .cards,
  .steps,
  .intro,
  .sellers,
  .seller-list,
  .stock-request,
  .request-form,
  .contact {
    grid-template-columns: 1fr;
  }

  .stock-copy {
    justify-self: start;
  }

  .photo-card,
  .photo-card-large {
    min-height: 300px;
  }

  .photo-card h3,
  .photo-card-large h3 {
    font-size: 1.28rem;
  }

  .trust-strip div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .seller-panel,
  .contact-card,
  .request-form,
  .card,
  .steps li {
    padding: 22px;
  }

  .steps li {
    min-height: auto;
    padding: 72px 22px 22px;
  }

  .steps li::before {
    top: 22px;
    left: 22px;
  }

  .card-icon {
    margin-bottom: 28px;
  }
}

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

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

  .js-enabled .reveal,
  .js-enabled .photo-card,
  .js-enabled .card,
  .js-enabled .steps li,
  .js-enabled .seller-list span,
  .js-enabled .request-form label,
  .js-enabled .contact-card {
    opacity: 1;
    transform: none;
  }
}
