:root {
  --bg: #f2f1ec;
  --bg-soft: #f7f6f1;
  --surface: #ffffff;
  --surface-alt: #f5f3ed;
  --surface-dark: #101010;
  --surface-ink: #151515;
  --surface-muted: #666055;
  --surface-accent: #0e3d93;
  --line: rgba(21, 21, 21, 0.1);
  --line-strong: rgba(21, 21, 21, 0.18);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Bahnschrift", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  color: var(--surface-ink);
  background:
    radial-gradient(circle at top left, rgba(14, 61, 147, 0.05), transparent 24%),
    linear-gradient(180deg, #faf9f5 0%, #f0eee8 100%);
}

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

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

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

.page-shell,
.site-footer {
  width: min(calc(100% - 28px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 28px), var(--content-width));
  margin: 0 auto;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  z-index: -1;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 18px;
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 6px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong,
.site-footer strong {
  display: block;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.header-nav a,
.footer-links a {
  transition: color 160ms ease, opacity 160ms ease;
}

.header-nav a:hover,
.footer-links a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.locale-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.locale-switch button,
.ghost-button,
.button-primary,
.button-secondary,
.drawer-close,
.filter-pill {
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.locale-switch button {
  border: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.locale-switch button.is-active {
  background: #fff;
  color: #101010;
}

.ghost-button,
.button-secondary,
.filter-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--surface-ink);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
}

.ghost-button strong {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #101010;
  color: #fff;
  font-size: 0.86rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
}

.button-primary {
  border: 0;
  background: #101010;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.button-block {
  width: 100%;
}

.button-primary:hover,
.button-secondary:hover,
.ghost-button:hover,
.filter-pill:hover,
.drawer-close:hover,
.locale-switch button:hover {
  transform: translateY(-1px);
}

.section-tag,
.hero-announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--surface-accent);
}

.section-tag::before,
.hero-announcement::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero-stage,
.section-shell,
.editorial-band,
.catalog-hero,
.contact-card,
.site-footer,
.modal-card {
  border-radius: var(--radius-xl);
}

.hero-stage,
.section-shell,
.editorial-band,
.catalog-hero,
.contact-card,
.site-footer {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.26fr);
  gap: 28px;
  min-height: 760px;
  margin-top: 10px;
  padding: 42px;
  align-items: end;
  background: #101010;
  color: #fff;
}

.hero-backdrop {
  position: absolute;
  top: 28px;
  right: 28px;
  bottom: 28px;
  width: 54%;
  border-radius: 32px;
  overflow: hidden;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  transform: scale(1.12);
}

.hero-content,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
  padding-right: 40px;
}

.hero-content h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 470px;
}

.hero-subheadline,
.section-heading p,
.editorial-copy p,
.catalog-copy p,
.product-copy p,
.contact-card p,
.workflow-list,
.contact-details dd,
.drawer-scroll small,
.checkout-note {
  color: var(--surface-muted);
  line-height: 1.75;
}

.hero-subheadline {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.hero-stage .hero-announcement {
  color: rgba(255, 255, 255, 0.68);
}

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

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.metric-chip {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.metric-chip strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.metric-chip span {
  display: block;
  margin-top: 4px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-side {
  display: grid;
  gap: 14px;
  align-content: end;
}

.hero-side-card {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-side-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero-side-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 0.92rem;
}

.hero-slide-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.section-shell,
.catalog-stage,
.editorial-band,
.contact-stage,
.site-footer {
  margin-top: 24px;
}

.section-shell {
  padding: 32px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.section-shell--compact {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading--compact {
  margin-bottom: 18px;
}

.section-heading h2,
.editorial-copy h2,
.catalog-copy h2,
.contact-card h2,
.drawer-header h3 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 470px;
  margin: 0;
  font-size: 0.95rem;
}

.media-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.media-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.media-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-card h3,
.product-card h3,
.directory-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.media-card p {
  margin: 0;
  color: var(--surface-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

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

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  background: #fff;
}

.editorial-visual {
  min-height: 640px;
  background: #ebe7de;
}

.editorial-visual img {
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 48px;
}

.story-points {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.story-point {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-alt);
  color: var(--surface-ink);
  line-height: 1.55;
  font-size: 0.92rem;
}

.catalog-stage {
  display: grid;
  gap: 16px;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  padding: 30px;
  background: #111111;
  color: #fff;
}

.catalog-copy {
  display: grid;
  align-content: center;
}

.catalog-copy .section-tag,
.contact-card--dark .section-tag {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-preview {
  display: grid;
  align-items: center;
  min-height: 420px;
}

.catalog-stack {
  position: relative;
  min-height: 420px;
}

.catalog-stack-card {
  position: absolute;
  width: min(100%, 380px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.catalog-stack-card img {
  aspect-ratio: 0.71;
  object-fit: cover;
}

.catalog-stack-card--back {
  top: 18px;
  left: 22px;
  opacity: 0.64;
  transform: rotate(-6deg);
}

.catalog-stack-card--mid {
  top: 34px;
  right: 40px;
  opacity: 0.8;
  transform: rotate(6deg);
}

.catalog-stack-card--front {
  right: 0;
  bottom: 0;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.directory-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.directory-card img {
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
}

.directory-card p {
  margin: 0;
  color: var(--surface-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.directory-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--surface-muted);
  font-size: 0.82rem;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  padding: 11px 16px;
  border-radius: 999px;
}

.filter-pill.is-active {
  background: #101010;
  color: #fff;
  border-color: transparent;
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

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

.product-media {
  position: relative;
  min-height: 340px;
  background: linear-gradient(180deg, #f9f7f0, #ebe7dc);
  overflow: hidden;
}

.product-card--featured .product-media {
  min-height: 430px;
}

.product-media-track {
  --gallery-count: 1;
  --gallery-index: 0;
  display: grid;
  grid-template-columns: repeat(var(--gallery-count), minmax(100%, 100%));
  width: calc(var(--gallery-count) * 100%);
  height: 100%;
  transform: translateX(calc(var(--gallery-index) * -100% / var(--gallery-count)));
  transition: transform 540ms ease;
}

.product-media-track img {
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.88);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-dots {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 6px;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.product-dot.is-active {
  width: 24px;
  background: #fff;
}

.product-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.product-copy p {
  margin: 0;
  font-size: 0.9rem;
}

.product-price {
  text-align: right;
  white-space: nowrap;
}

.product-price small {
  display: block;
  color: var(--surface-muted);
  font-size: 0.78rem;
}

.product-price strong {
  display: block;
  margin-top: 4px;
  font-size: 1.28rem;
  color: var(--surface-ink);
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.meta-box {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid rgba(21, 21, 21, 0.06);
}

.meta-box span {
  display: block;
  color: var(--surface-muted);
  font-size: 0.78rem;
}

.meta-box strong {
  display: block;
  margin-top: 6px;
}

.product-specs {
  margin: 0;
  padding-left: 18px;
  color: var(--surface-muted);
  line-height: 1.6;
  font-size: 0.88rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.contact-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 32px;
  background: #fff;
}

.contact-card--dark {
  background: #111111;
  color: #fff;
}

.contact-card--dark p,
.contact-card--dark .workflow-list,
.contact-card--dark .contact-details dt,
.contact-card--dark .contact-details dd {
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px 16px;
  margin: 24px 0 0;
}

.contact-details dt {
  color: var(--surface-muted);
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.workflow-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding: 26px 30px;
  background: #111111;
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.empty-state {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px dashed var(--line-strong);
  color: var(--surface-muted);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(420px, 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 260ms ease;
  background: rgba(250, 249, 245, 0.96);
  box-shadow: -26px 0 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding: 22px 22px 12px;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--surface-ink);
  font-size: 1.4rem;
}

.drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 22px 22px;
}

.drawer-footer {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.summary-row,
.cart-row,
.cart-item-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.cart-item + .cart-item {
  margin-top: 12px;
}

.cart-item img {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-stepper button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f5f4ef;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.modal-shell.is-open {
  display: flex;
}

.modal-card {
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow-y: auto;
  background: rgba(249, 248, 243, 0.98);
}

.checkout-body {
  padding: 0 22px 22px;
}

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

.checkout-grid label,
.checkout-body > label {
  display: grid;
  gap: 8px;
}

.checkout-grid input,
.checkout-grid textarea,
.checkout-grid select,
.checkout-body textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.span-2 {
  grid-column: span 2;
}

.checkout-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.checkout-options fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.checkout-options legend {
  padding: 0 8px;
  font-weight: 700;
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-list label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.option-list span {
  color: var(--surface-muted);
  line-height: 1.6;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.checkout-actions {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-top: 18px;
}

.checkout-result {
  display: grid;
  gap: 16px;
}

.checkout-result-lead {
  margin: 0;
  color: var(--surface-muted);
  line-height: 1.7;
}

.checkout-result-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.checkout-result-card h4 {
  margin: 0;
  font-size: 1rem;
}

.checkout-result-list {
  margin: 0;
  padding-left: 18px;
  color: var(--surface-muted);
  line-height: 1.7;
}

.checkout-result-fields {
  display: grid;
  gap: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
  color: #fff;
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  .hero-stage,
  .editorial-band,
  .catalog-hero,
  .contact-stage,
  .product-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stage {
    min-height: 680px;
  }

  .hero-backdrop {
    top: 260px;
    right: 22px;
    bottom: 22px;
    left: 22px;
    width: auto;
    border-radius: 28px;
  }

  .hero-content {
    padding-right: 0;
  }

  .editorial-visual {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }

  .site-header::before {
    inset: 0;
    border-radius: 30px;
  }

  .brand,
  .header-actions {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-nav {
    justify-content: start;
    overflow-x: auto;
    padding: 0 14px 10px;
    white-space: nowrap;
  }

  .section-heading,
  .product-toolbar,
  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .media-rail,
  .directory-grid,
  .checkout-grid,
  .checkout-options {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .page-shell,
  .site-footer {
    width: min(calc(100% - 16px), var(--content-width));
  }

  .site-header {
    width: min(calc(100% - 16px), var(--content-width));
  }

  .hero-stage,
  .section-shell,
  .catalog-hero,
  .contact-card,
  .editorial-copy,
  .site-footer {
    padding: 22px;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-backdrop {
    top: 360px;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

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

  .product-media,
  .product-card--featured .product-media {
    min-height: 260px;
  }
}
