﻿:root {
  --ink: #172331;
  --muted: #687381;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --line: #e1e8f0;
  --blue: #00458f;
  --blue-dark: #063766;
  --blue-soft: #eaf2fb;
  --gold: #d2a84d;
  --rose: #b85f55;
  --shadow: 0 14px 35px rgba(0, 69, 143, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top-line {
  padding: 10px 18px;
  color: #fff;
  background: var(--blue-dark);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 58px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand,
.main-nav,
.cart-button { display: flex; align-items: center; }
.brand { gap: 12px; color: var(--blue-dark); font-size: 20px; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 18px;
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.main-nav { justify-content: center; gap: clamp(14px, 2.4vw, 28px); color: var(--muted); font-size: 13px; font-weight: 700; }
.main-nav a:hover { color: var(--blue-dark); }
.main-nav .nav-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 69, 143, 0.22);
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 69, 143, 0.12);
}
.main-nav .nav-cta:hover { color: #fff; background: var(--blue-dark); }

.menu-button {
  display: none;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 69, 143, 0.18);
  border-radius: 6px;
  color: var(--blue-dark);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  min-height: 30px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.language-switcher a.active {
  color: #fff;
  background: var(--blue);
}
.cart-button,
.button,
.icon-button,
.remove-item,
.link-button {
  border: 0;
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}
.cart-button {
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 600;
}
.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}


.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background: #f3f7fb;
}
.hero-image,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 58% center; }
.hero-shade {
  background: linear-gradient(90deg, rgba(248, 250, 246, 0.97) 0%, rgba(248, 250, 246, 0.82) 34%, rgba(248, 250, 246, 0.08) 60%), linear-gradient(0deg, rgba(0, 69, 143, 0.08), rgba(0, 69, 143, 0.08));
}
.hero-content { position: relative; width: min(640px, 100%); }
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { overflow-wrap: anywhere; }
h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}
h1 {
  max-width: 14ch;
  color: var(--blue-dark);
  font-size: 60px;
}
.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); background: var(--blue-dark); }
.button.full { width: 100%; }
.link-button { color: var(--blue); background: transparent; font-weight: 700; }

.intro-block {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 112px) 18px;
  text-align: center;
}
.intro-block h2,
.section-heading h2,
.delivery-section h2,
.wide-image h2 {
  color: var(--blue-dark);
  font-size: 42px;
}
.intro-block p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.products-preview,
.kit-section,
.process-section,
.delivery-section {
  padding: clamp(68px, 8vw, 104px) clamp(18px, 5vw, 76px);
}
.products-preview { background: #fff; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-heading.centered { display: block; text-align: center; }

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.product-media {
  min-height: 540px;
  padding: 8px;
  background: #f5f8fc;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-media .product-image-fit {
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}
.product-info { padding: clamp(24px, 4vw, 44px); }
.stock {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 700;
}
.product-info h3 {
  color: var(--blue-dark);
  font-size: 34px;
}
.product-description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.size-picker { display: grid; gap: 10px; margin: 28px 0; padding: 0; border: 0; }
.size-picker legend { margin-bottom: 10px; font-weight: 700; }
.size-picker label {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.size-picker label:has(input:checked) { border-color: var(--blue); background: #f0f6fd; }
.size-picker input { width: 18px; height: 18px; accent-color: var(--blue); }
.product-purchase {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.product-total {
  padding-top: 4px;
}
.product-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.product-add-button { width: 100%; }
.quantity-control {
  display: inline-grid;
  grid-template-columns: 38px 54px 38px;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.quantity-control button {
  width: 38px;
  height: 44px;
  border: 0;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.quantity-control input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.quantity-control input {
  height: 44px;
  padding: 0 4px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.quantity-control input[type="number"]::-webkit-outer-spin-button,
.quantity-control input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}
.product-quantity { flex: 0 0 auto; }
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.cart-quantity {
  grid-template-columns: 34px 48px 34px;
  min-height: 38px;
}
.cart-quantity button,
.cart-quantity input { height: 38px; }
.cart-quantity button { width: 34px; }
.price-label { display: block; color: var(--muted); font-size: 13px; }
.price { color: var(--blue-dark); font-size: 26px; }

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 76px) clamp(68px, 8vw, 104px);
  background: #fff;
}
.benefit-row article {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}
.benefit-row img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; background: var(--paper); }
.benefit-row h3 { margin-top: 18px; color: var(--blue-dark); font-size: 21px; }
.benefit-row p { color: var(--muted); margin-bottom: 0; }

.kit-section { background: var(--paper); }
.kit-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: 34px;
}
.kit-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.kit-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}
.kit-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  max-height: none;
  object-fit: cover;
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.kit-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 69, 143, 0.04);
}
.kit-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kit-grid h3 {
  color: var(--blue-dark);
  font-size: 24px;
}
.kit-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.process-section { background: #fff; }
.process-grid,
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-grid article,
.delivery-cards article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}
.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}
.process-grid h3,
.delivery-cards h3 { margin-top: 18px; color: var(--blue-dark); font-size: 21px; }
.process-grid p,
.delivery-section p,
.delivery-cards p { color: var(--muted); }

.wide-image {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(68px, 8vw, 104px) clamp(18px, 5vw, 76px);
  background: var(--blue-soft);
}
.wide-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.wide-image p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.delivery-copy {
  padding: 28px;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.72);
}
.delivery-copy p:last-child {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
}
.delivery-cards {
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
}
.delivery-cards article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  background: #fff;
}
.delivery-cards span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.delivery-cards article::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  background: var(--blue-soft);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  background: rgba(23, 35, 49, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  width: min(540px, 100%);
  height: 100%;
  overflow: auto;
  padding: 28px;
  background: #fff;
  box-shadow: -18px 0 40px rgba(23, 35, 49, 0.14);
  transform: translateX(100%);
  transition: transform 180ms ease;
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cart-header h2 {
  color: var(--blue-dark);
  font-size: 34px;
  letter-spacing: 0;
}
.icon-button {
  width: 38px;
  height: 38px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 20px;
}
.cart-empty {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.7;
}
.cart-items { display: grid; gap: 12px; }
.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 56px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 69, 143, 0.04);
}
.cart-item strong {
  display: block;
  color: var(--blue-dark);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.cart-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.remove-item {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #b3261e;
  background: #fff1f0;
  border: 1px solid #ffd1cc;
  font-size: 20px;
  line-height: 1;
}
.remove-item:hover { background: #ffe3df; color: #8f1d17; }
.cart-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}
.cart-summary span {
  color: var(--muted);
  font-size: 14px;
}
.cart-summary strong {
  color: var(--blue-dark);
  font-size: 14px;
}
.cart-summary strong:last-child {
  font-size: 18px;
}
.checkout-form {
  display: grid;
  gap: 13px;
  padding-top: 4px;
}
.checkout-form h3 {
  color: var(--blue-dark);
  font-size: 28px;
  margin-top: 4px;
  margin-bottom: 2px;
}
.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 69, 143, 0.16);
  border-color: var(--blue);
}
textarea { resize: vertical; }
.map-open-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.map-open-button:hover { background: #dceaf8; }
.parcel-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.map-open-button.secondary {
  background: #fff;
}
.parcel-location-status {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.parcel-location-status.success {
  color: var(--blue-dark);
  font-weight: 600;
}
.parcel-location-status.error {
  color: #9b2f2f;
  font-weight: 600;
}
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 35, 49, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.map-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.map-dialog {
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr) auto;
  width: min(960px, 100%);
  height: min(760px, 92vh);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(23, 35, 49, 0.24);
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.map-header h2 {
  color: var(--blue-dark);
  font-size: 34px;
}
.parcel-map {
  min-height: 320px;
  overflow: hidden;
  background: var(--paper);
}
.map-note {
  margin: 0;
  padding: 13px 18px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}
.parcel-map .leaflet-control-attribution {
  font-size: 10px;
  pointer-events: none;
}
.parcel-map .leaflet-control-attribution a {
  pointer-events: none;
}
.parcel-map .leaflet-popup-content-wrapper,
.parcel-map .leaflet-popup-tip {
  box-shadow: 0 8px 22px rgba(0, 69, 143, 0.12);
}
.parcel-popup strong {
  display: block;
  color: var(--blue-dark);
  font-size: 13px;
  margin-bottom: 4px;
}
.parcel-popup span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.parcel-popup button {
  margin-top: 8px;
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  color: #fff;
  background: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.delivery-estimate,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.delivery-estimate {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(0, 69, 143, 0.18);
  border-radius: 6px;
  color: var(--blue-dark);
  background: linear-gradient(0deg, rgba(0, 69, 143, 0.06), rgba(0, 69, 143, 0.06)), #fff;
  font-size: 13px;
  font-weight: 600;
}
.delivery-estimate::before {
  content: "i";
  position: absolute;
  left: 14px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.form-note.success { color: var(--blue-dark); font-weight: 700; }


.site-footer {
  padding: 54px clamp(18px, 5vw, 76px) 24px;
  color: #d8e4f2;
  background: var(--blue-dark);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-logo {
  display: inline-flex;
  color: #fff;
}
.footer-logo .brand-mark {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.footer-brand p {
  max-width: 460px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.footer-email {
  color: #fff;
  font-weight: 700;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px 26px;
}
.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.footer-links a:hover,
.footer-links button:hover,
.footer-email:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}
.status-page section {
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.status-page .section-kicker {
  margin-bottom: 8px;
  font-size: 12px;
}
.status-page h1 {
  color: var(--blue-dark);
  font-size: 36px;
  line-height: 1.08;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.status-page p:not(.section-kicker) {
  max-width: 440px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.status-page .button {
  width: auto;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 20px;
  font-size: 14px;
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto auto; gap: 12px; }
  .main-nav { justify-content: flex-end; gap: 0; }
  .main-nav a:not(.nav-cta) { display: none; }
  .main-nav .nav-cta { min-height: 36px; padding: 0 13px; font-size: 12px; }
  .language-switcher a { min-width: 28px; font-size: 11px; }
  .product-card,
  .benefit-row,
  .wide-image,
  .delivery-section,
  .footer-main { grid-template-columns: 1fr; }
  .kit-story { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
  h1 { font-size: 48px; }
  .intro-block h2,
  .section-heading h2,
  .delivery-section h2,
  .wide-image h2 { font-size: 36px; }
  .hero-shade { background: linear-gradient(90deg, rgba(248, 250, 246, 0.97), rgba(248, 250, 246, 0.72)); }
}

@media (max-width: 560px) {
  .top-line { font-size: 12px; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 12px 14px;
  }
  .brand { min-width: 0; font-size: 18px; gap: 8px; }
  .brand span:not(.brand-mark) { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-mark { width: 34px; height: 34px; flex: 0 0 auto; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; justify-self: end; }
  .cart-button { justify-self: end; min-height: 34px; padding: 0 10px; font-size: 12px; }
  .main-nav,
  .language-switcher {
    display: none;
    grid-column: 1 / -1;
  }
  .site-header.menu-open .main-nav,
  .site-header.menu-open .language-switcher { display: flex; }
  .site-header.menu-open .main-nav {
    margin-top: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-header.menu-open .main-nav a:not(.nav-cta) {
    display: flex;
    min-height: 36px;
    align-items: center;
    padding: 0 8px;
  }
  .site-header.menu-open .main-nav .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
  .site-header.menu-open .language-switcher {
    justify-self: start;
    width: fit-content;
    gap: 3px;
    padding: 3px;
  }
  .language-switcher a { min-width: 30px; min-height: 28px; font-size: 11px; }
  .button { width: 100%; }
  h1 { font-size: 38px; }
  .intro-block h2,
  .section-heading h2,
  .delivery-section h2,
  .wide-image h2 { font-size: 31px; }
  .product-info h3 { font-size: 29px; }
  .product-media,
  .wide-image img { min-height: 320px; }
  .product-quantity-row { align-items: flex-start; flex-direction: column; }
  .product-quantity { width: 100%; grid-template-columns: 44px 1fr 44px; }
  .size-picker label { grid-template-columns: auto 1fr; }
  .size-picker strong { grid-column: 2; }
  .kit-grid,
  .delivery-cards { grid-template-columns: 1fr; }
  .kit-photo img { min-height: 0; }
  .cart-item { padding: 16px 52px 16px 14px; }
  .cart-item-actions { display: flex; align-items: center; justify-content: flex-start; }
  .cart-quantity { width: min(190px, 100%); grid-template-columns: 42px 1fr 42px; }
  .cart-quantity button { width: 42px; }
  .remove-item { width: 34px; height: 34px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .map-modal { align-items: end; padding: 0; }
  .map-dialog { width: 100%; height: 86vh; border-radius: 8px 8px 0 0; }
  .map-header { padding: 16px; }
  .map-header h2 { font-size: 28px; }
  .parcel-map { min-height: 300px; }
  .cart-panel { padding: 20px; }
  .cart-header h2 { font-size: 30px; }
  .checkout-form h3 { font-size: 25px; }
  .parcel-actions { grid-template-columns: 1fr; }
  .status-page h1 { font-size: 30px; }
  .status-page p:not(.section-kicker) { font-size: 14px; }
  .status-page .button { width: 100%; }
}

@media (max-width: 380px) {
  .site-header { padding-inline: 12px; }
  .site-header .brand span:not(.brand-mark) { display: none; }
  .language-switcher a { min-width: 25px; }
}













