@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-ext-v20.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-v20.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #101922;
  --navy: #10273d;
  --navy-deep: #091a2a;
  --navy-soft: #27425a;
  --orange: #f06b37;
  --orange-dark: #d95525;
  --form-error: #a52a1f;
  --paper: #f3f0e8;
  --paper-deep: #e9e5db;
  --white: #fffdf8;
  --muted: #59636d;
  --muted-light: #adb8c3;
  --line: rgba(16, 39, 61, 0.17);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 1px 2px rgba(9, 26, 42, 0.07), 0 8px 22px rgba(9, 26, 42, 0.06);
  --shadow-lg: 0 2px 4px rgba(9, 26, 42, 0.08), 0 24px 58px rgba(9, 26, 42, 0.13);
  --shell: min(1420px, calc(100% - 64px));
  --radius-sm: 7px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --section-space: clamp(88px, 9vw, 150px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  background: var(--paper-deep);
}

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
strong {
  font-variation-settings: "wght" 750;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

address {
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--orange-dark);
}

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

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

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.utility-bar {
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-note,
.utility-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.utility-note,
.utility-actions {
  gap: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 107, 55, 0.14);
}

.utility-actions a {
  transition: color 160ms ease;
}

.utility-actions a:hover {
  color: var(--white);
}

.language-switch {
  margin-left: 10px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.language-switch button {
  min-width: 36px;
  min-height: 28px;
  padding: 4px 9px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 800;
  transition: color 160ms ease, background-color 160ms ease;
}

.language-switch button.is-active {
  color: var(--navy-deep);
  background: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(243, 240, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px 7px;
  align-content: space-between;
  overflow: hidden;
  background: var(--navy);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark::after {
  position: absolute;
  right: 5px;
  bottom: 6px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.brand-mark span {
  display: block;
  width: 100%;
  height: 5px;
  background: var(--orange);
  border-radius: 1px;
}

.brand-mark span:nth-child(2) {
  width: 72%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-current {
  color: var(--navy);
}

.header-call {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 760;
  box-shadow: var(--shadow-sm);
  transition: background-color 160ms ease, transform 120ms ease;
}

.header-call svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-call:hover {
  background: var(--navy-soft);
}

.header-call:active,
.button:active {
  transform: scale(0.96);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 13px 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 76px 0 auto;
  max-height: calc(100dvh - 76px);
  overflow-y: auto;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: var(--shadow-lg);
}

.mobile-menu nav,
.mobile-menu__contact {
  display: grid;
  width: min(100% - 40px, 600px);
  margin-inline: auto;
}

.mobile-menu nav {
  padding-block: 28px 20px;
}

.mobile-menu nav a {
  padding: 16px 2px;
  border-bottom: 1px solid var(--line-light);
  font-size: 1.16rem;
  font-weight: 720;
}

.mobile-menu nav a.is-current {
  color: #ff9a70;
}

.mobile-menu__contact {
  padding-block: 20px 32px;
  gap: 8px;
  color: var(--muted-light);
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(62px, 7vw, 112px) 0;
  background:
    linear-gradient(rgba(16, 39, 61, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 39, 61, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.hero::before {
  position: absolute;
  top: -30%;
  left: -18%;
  width: 50vw;
  height: 50vw;
  content: "";
  background: radial-gradient(circle, rgba(240, 107, 55, 0.13), transparent 67%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 3.5vw, 58px);
}

.hero__copy {
  z-index: 1;
  grid-column: 1 / span 5;
  padding-block: 30px 50px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #ff9a70;
}

.hero h1 {
  max-width: 790px;
  margin-top: 28px;
  font-size: clamp(3.2rem, 5.7vw, 6.7rem);
  letter-spacing: -0.065em;
}

.hero__lead {
  max-width: 640px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 120ms ease, box-shadow 170ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.button--primary:hover {
  background: var(--navy-soft);
  box-shadow: var(--shadow-lg);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.button--ghost:hover {
  background: var(--white);
  border-color: rgba(16, 39, 61, 0.34);
}

.button--light {
  color: var(--navy-deep);
  background: var(--white);
}

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

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

.button--orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(240, 107, 55, 0.24);
}

.hero__availability {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  grid-column: 6 / -1;
  padding: 20px 22px 22px 20px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 48px -12px -12px 48px;
  content: "";
  background: var(--orange);
  border-radius: 2px 22px 22px 2px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(16, 39, 61, 0.14);
  border-radius: 18px 2px 18px 2px;
  box-shadow: var(--shadow-lg);
}

.hero-visual figcaption {
  position: absolute;
  right: 40px;
  bottom: 38px;
  left: 38px;
  display: flex;
  padding: 12px 16px;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(9, 26, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measurement {
  position: absolute;
  color: var(--navy-soft);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.measurement::before,
.measurement::after {
  position: absolute;
  content: "";
  background: var(--navy-soft);
}

.measurement--top {
  top: 2px;
  right: 22px;
  left: 20px;
  height: 14px;
  border-top: 1px solid var(--navy-soft);
  text-align: center;
}

.measurement--top::before,
.measurement--top::after {
  top: -4px;
  width: 1px;
  height: 8px;
}

.measurement--top::before { left: 0; }
.measurement--top::after { right: 0; }
.measurement--top span { position: relative; top: -11px; padding-inline: 8px; background: var(--paper); }

.measurement--side {
  top: 20px;
  right: 2px;
  bottom: 22px;
  width: 14px;
  border-right: 1px solid var(--navy-soft);
}

.measurement--side::before,
.measurement--side::after {
  right: -4px;
  width: 8px;
  height: 1px;
}

.measurement--side::before { top: 0; }
.measurement--side::after { bottom: 0; }
.measurement--side span { position: absolute; top: 50%; right: -7px; padding-block: 6px; background: var(--paper); transform: rotate(90deg) translateY(-50%); }

.facts {
  position: relative;
  display: grid;
  margin-top: clamp(70px, 7vw, 118px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  box-shadow: var(--shadow-sm);
}

.facts article {
  display: flex;
  min-height: 128px;
  padding: 24px clamp(18px, 2vw, 34px);
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
}

.facts article:last-child {
  border-right: 0;
}

.facts strong {
  color: var(--navy);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 1;
}

.facts article:nth-child(2) strong,
.facts article:nth-child(4) strong {
  color: var(--orange-dark);
}

.facts span {
  max-width: 240px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(42px, 5vw, 76px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 120px);
}

.section-heading h2 {
  max-width: 900px;
  margin-top: 21px;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
}

.section-heading > p {
  max-width: 520px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.3vw, 1.12rem);
  line-height: 1.72;
}

.paths {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.path-card {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: clamp(32px, 4vw, 62px);
  grid-template-rows: auto auto auto 1fr auto;
  overflow: hidden;
  border-radius: 4px 32px 4px 32px;
}

.path-card::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 250px;
  height: 250px;
  content: "";
  border: 42px solid currentColor;
  border-radius: 50%;
  opacity: 0.045;
}

.path-card--buy {
  color: var(--white);
  background: var(--navy);
}

.path-card--sell {
  color: var(--ink);
  background: #e5a67f;
}

.path-card__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}

.path-card h3 {
  max-width: 620px;
  margin-top: 80px;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
}

.path-card > p {
  max-width: 610px;
  margin-top: 22px;
  color: currentColor;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.78;
}

.path-card ul {
  display: grid;
  margin-top: 34px;
  align-content: start;
  gap: 10px;
  list-style: none;
}

.path-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.82rem;
  font-weight: 640;
}

.path-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 2px;
  content: "";
  background: currentColor;
}

.text-link,
.product-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  margin-top: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 760;
}

.text-link span:last-child,
.product-link span:last-child {
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.text-link:hover span:last-child,
.product-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.offer {
  background: var(--paper);
}

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.product-card--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.product-card__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #d9dee2;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.product-card--wide .product-card__media {
  min-height: 520px;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.media-corner {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.product-card__body {
  display: flex;
  min-width: 0;
  padding: clamp(25px, 3vw, 42px);
  flex-direction: column;
}

.product-kind {
  color: var(--orange-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 16px;
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
}

.product-card__body > p:not(.product-kind) {
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.product-card dl {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.product-card dl div {
  display: grid;
  padding-block: 12px;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
}

.product-card dt {
  color: var(--muted);
  font-weight: 650;
}

.product-card dd {
  font-weight: 760;
}

.product-link {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy);
  border-bottom-color: var(--line);
}

.product-actions {
  display: grid;
  margin-top: auto;
  padding-top: 16px;
  gap: 2px;
}

.product-actions .product-link {
  margin-top: 0;
  padding-top: 0;
}

.product-card--dark {
  color: var(--white);
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.product-card--dark .product-kind,
.product-card--dark .product-link {
  color: #ff9a70;
}

.product-card--dark .product-card__body > p:not(.product-kind) {
  color: var(--muted-light);
}

.product-card--dark .product-link {
  border-color: var(--line-light);
}

.image-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.68rem;
}

.logistics {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px;
}

.logistics__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.logistics__copy h2 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
}

.logistics__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}

.logistics__copy .button {
  margin-top: 38px;
}

.process-list {
  position: relative;
  display: grid;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 18px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--orange), rgba(255, 255, 255, 0.15));
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 146px;
  padding: 30px 0 30px 62px;
  grid-template-columns: 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-mark {
  position: absolute;
  z-index: 1;
  left: 6px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--orange);
  background: var(--navy);
  border: 1px solid rgba(240, 107, 55, 0.65);
  border-radius: 50%;
  font-size: 0.52rem;
}

.process-list strong {
  font-size: 1.2rem;
}

.process-list p {
  max-width: 420px;
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 0.84rem;
}

.proof {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(50px, 10vw, 160px);
}

.proof__statement h2 {
  max-width: 870px;
  margin-top: 25px;
  font-size: clamp(2.8rem, 5.4vw, 6.2rem);
}

.proof__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof__content > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.proof__content > p + p {
  margin-top: 22px;
}

.proof-badge {
  display: flex;
  margin-top: 42px;
  padding-top: 26px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.proof-badge__ring {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  color: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.proof-badge div {
  display: flex;
  flex-direction: column;
}

.proof-badge strong {
  font-size: 0.92rem;
}

.proof-badge small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.projects {
  background: var(--paper);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 35vw));
  gap: 18px;
}

.project {
  position: relative;
  grid-column: 9 / -1;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 4px 20px 4px 20px;
  box-shadow: var(--shadow-sm);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.project--large {
  grid-row: 1 / -1;
  grid-column: 1 / span 8;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.project:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.025);
}

.project figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  padding: 16px 18px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: rgba(9, 26, 42, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.project figcaption strong {
  font-size: 0.9rem;
}

.project figcaption span {
  color: var(--muted-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote {
  color: var(--white);
  background: var(--navy-deep);
}

.quote__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
}

.quote__intro {
  position: sticky;
  top: 120px;
}

.quote__intro h2 {
  margin-top: 24px;
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
}

.quote__intro > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 28px;
  color: var(--muted-light);
  line-height: 1.75;
}

.quote-direct {
  display: flex;
  margin-top: 52px;
  padding-top: 24px;
  flex-direction: column;
  border-top: 1px solid var(--line-light);
}

.quote-direct span,
.quote-direct small {
  color: var(--muted-light);
  font-size: 0.7rem;
}

.quote-direct a {
  margin-block: 4px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 780;
  letter-spacing: -0.04em;
}

.quote-form {
  padding: clamp(26px, 4vw, 52px);
  color: var(--ink);
  background: var(--white);
  border-radius: 4px 26px 4px 26px;
  box-shadow: var(--shadow-lg);
}

.intent-fieldset {
  margin: 0;
  padding: 0 0 32px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.intent-fieldset legend {
  margin-bottom: 13px;
  font-size: 0.74rem;
  font-weight: 760;
}

.form-section {
  margin: 0;
  padding: 28px 0 0;
  border: 0;
}

.form-section + .form-section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.form-section legend {
  padding: 0;
  font-size: 0.74rem;
  font-weight: 760;
}

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

.intent-options label {
  position: relative;
  cursor: pointer;
}

.intent-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.intent-options span {
  display: grid;
  min-height: 52px;
  padding: 10px 14px;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 720;
  text-align: center;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.intent-options input:checked + span {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.intent-options input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 0.7rem;
  font-weight: 720;
}

.field > span small {
  color: var(--muted);
  font-weight: 520;
}

.field-error {
  color: var(--form-error);
}

.field > .field-error {
  display: block;
  min-height: 1.15em;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.field-error:empty {
  visibility: hidden;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  background: #faf8f2;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.84rem;
  outline: 0;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(16, 39, 61, 0.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a52a1f;
  box-shadow: 0 0 0 3px rgba(165, 42, 31, 0.1);
}

.form-submit {
  display: flex;
  margin-top: 26px;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.form-submit p {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-noscript {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-privacy-note::before {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 8px;
  place-items: center;
  color: var(--navy);
  background: var(--paper-deep);
  border-radius: 50%;
  content: "i";
  font-size: 0.64rem;
  font-weight: 800;
  vertical-align: -0.08rem;
}

.form-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-consent {
  display: grid;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
}

.form-check::before {
  display: none;
}

.form-check input {
  width: 22px;
  min-height: 22px;
  margin-top: 2px;
  accent-color: var(--orange-dark);
}

.form-consent input {
  margin-top: 0;
}

.form-check .field-error {
  grid-column: 2;
  min-height: 1.15em;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.form-submit .button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.5em;
  margin-top: 16px;
  color: var(--form-error);
  font-size: 0.73rem;
  font-weight: 700;
}

.locations {
  background: var(--paper);
}

.contact-inline {
  display: flex;
  padding-bottom: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.contact-inline a:first-child {
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  font-weight: 780;
  letter-spacing: -0.045em;
}

.contact-inline a:last-child {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.location-card {
  display: grid;
  min-height: 380px;
  padding: clamp(30px, 4vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px 24px 4px 24px;
  box-shadow: var(--shadow-sm);
}

.location-card--main {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.location-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card--main .location-card__top {
  color: #ff9a70;
}

.location-pin {
  position: relative;
  width: 17px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-pin::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 4px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.location-card address {
  margin-top: 48px;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.location-card p {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.72rem;
}

.location-card--main p {
  color: var(--muted-light);
}

.location-card p strong {
  color: inherit;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

:where(
  .measurement,
  .facts strong,
  .quote-direct a,
  .contact-inline a:first-child,
  .location-card p strong,
  #year
) {
  font-variant-numeric: tabular-nums;
}

.location-card > a {
  display: flex;
  min-height: 44px;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 760;
}

.location-card--main > a {
  border-color: var(--line-light);
}

.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(54px, 10vw, 160px);
}

.faq__heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__heading h2 {
  margin-top: 22px;
  font-size: clamp(2.7rem, 4.8vw, 5.4rem);
}

.faq__heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: grid;
  min-height: 92px;
  padding: 24px 0;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 740;
  list-style: none;
}

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

.faq-list summary span:last-child {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span:last-child::before,
.faq-list summary span:last-child::after {
  position: absolute;
  top: 15px;
  left: 9px;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq-list summary span:last-child::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span:last-child::after {
  transform: rotate(0deg);
}

.faq-list details > p {
  max-width: 760px;
  padding: 0 70px 30px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.site-footer {
  padding-block: 76px 24px;
  color: var(--white);
  background: var(--navy-deep);
}

.site-footer__top {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: 1.15fr 0.85fr 0.5fr;
  gap: 60px;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer .brand-mark {
  background: rgba(255, 255, 255, 0.08);
}

.brand--footer .brand-copy small {
  color: var(--muted-light);
}

.footer-brand > p {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 0.83rem;
}

.footer-contact,
.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-contact span {
  margin-bottom: 10px;
  color: var(--muted-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a:first-of-type {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 780;
  letter-spacing: -0.05em;
}

.footer-contact a:last-of-type {
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 0.8rem;
}

.footer-contact .footer-operator {
  max-width: 28ch;
  margin-top: 16px;
  color: rgba(246, 241, 232, 0.54);
  font-size: 0.68rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.footer-nav {
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 680;
}

.footer-nav a {
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: #ff9a70;
}

.footer-cookie-settings {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  color: var(--muted-light);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.site-footer__bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted-light);
  font-size: 0.66rem;
}

.site-footer__bottom a {
  color: var(--white);
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1100px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .menu-button {
    display: block;
  }

  .hero__grid {
    align-items: start;
  }

  .hero__copy {
    grid-column: 1 / span 6;
  }

  .hero-visual {
    grid-column: 7 / -1;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  }

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

  .product-card--wide {
    grid-column: 1 / -1;
  }

  .project-gallery {
    grid-template-rows: repeat(2, minmax(260px, 36vw));
  }
}

@media (max-width: 900px) {
  .utility-note {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .utility-actions > span,
  .utility-actions > a:first-child {
    display: none;
  }

  .hero__grid,
  .section-heading,
  .logistics__inner,
  .proof__inner,
  .quote__inner,
  .faq__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero-visual {
    grid-column: 1 / -1;
  }

  .hero__copy {
    max-width: 760px;
    padding-bottom: 20px;
  }

  .hero-visual {
    width: 100%;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .path-card {
    min-height: 480px;
  }

  .path-card h3 {
    margin-top: 54px;
  }

  .logistics__inner,
  .proof__inner {
    gap: 56px;
  }

  .process-list {
    max-width: 680px;
  }

  .proof__content {
    max-width: 760px;
  }

  .quote__inner,
  .faq__inner {
    gap: 50px;
  }

  .quote__intro,
  .faq__heading {
    position: static;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
    --section-space: 78px;
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .header-call {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 68px;
    max-height: calc(100dvh - 68px);
  }

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

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 42px;
    background-size: 42px 42px;
  }

  .hero__copy {
    padding-top: 10px;
  }

  .hero h1 {
    max-width: 10ch;
    margin-top: 22px;
    font-size: clamp(2.65rem, 12.4vw, 4.25rem);
    line-height: 0.98;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .hero__actions {
    margin-top: 30px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-visual {
    margin-top: 16px;
    padding: 14px 16px 16px 14px;
  }

  .hero-visual::before {
    inset: 35px -5px -5px 35px;
  }

  .hero-visual img {
    min-height: 420px;
    object-position: 60% center;
  }

  .hero-visual figcaption {
    right: 28px;
    bottom: 27px;
    left: 26px;
  }

  .measurement--top {
    right: 16px;
    left: 14px;
  }

  .measurement--side {
    top: 14px;
    right: -2px;
    bottom: 16px;
  }

  .facts {
    margin-top: 64px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts article {
    min-height: 118px;
  }

  .facts article:nth-child(2) {
    border-right: 0;
  }

  .facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading h2,
  .logistics__copy h2,
  .proof__statement h2,
  .quote__intro h2,
  .faq__heading h2 {
    font-size: clamp(2.45rem, 11vw, 4.2rem);
  }

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

  .path-card {
    min-height: 500px;
    border-radius: 3px 24px 3px 24px;
  }

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

  .product-card--wide .product-card__media,
  .product-card__media {
    min-height: 310px;
  }

  .product-card h3 {
    font-size: 1.9rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project,
  .project--large {
    min-height: 360px;
    grid-row: auto;
    grid-column: auto;
  }

  .project--large {
    min-height: 480px;
  }

  .form-grid,
  .intent-options {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

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

  .location-card {
    min-height: 350px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 120;
    right: 10px;
    bottom: 0;
    left: 10px;
    display: grid;
    min-height: 58px;
    padding: 5px 5px max(5px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    background: rgba(9, 26, 42, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(9, 26, 42, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 760;
  }

  .mobile-contact-bar a:last-child {
    color: var(--navy-deep);
    background: var(--orange);
  }

  .mobile-contact-bar svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .utility-bar__inner {
    width: calc(100% - 20px);
  }

  .measurement--side {
    display: none;
  }

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

  .site-header__inner {
    width: calc(100% - 24px);
  }

  .facts article {
    padding-inline: 16px;
  }

  .facts span {
    font-size: 0.66rem;
  }

  .path-card {
    padding: 28px 24px;
  }

  .path-card h3 {
    font-size: 2.3rem;
  }

  .quote-form {
    margin-inline: -4px;
    padding: 26px 20px;
  }

  .project figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --muted: #3f4850;
    --line: rgba(16, 39, 61, 0.36);
  }

  .button--ghost,
  .product-card,
  .location-card,
  .quote-form {
    border-width: 2px;
  }
}

.consent-banner,
.consent-dialog {
  z-index: 20;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  max-width: 920px;
  min-height: 44px;
  padding: 20px;
  margin-inline: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
}

.consent-banner strong,
.consent-dialog h2 {
  display: block;
  margin: 0 0 4px;
  font-size: 1rem;
}

.consent-banner p,
.consent-dialog p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.consent-button,
.consent-link,
.consent-close {
  min-height: 44px;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.consent-button {
  padding: 10px 16px;
}

.consent-button:hover,
.consent-button:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.consent-link {
  padding: 10px 8px;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.consent-dialog {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(620px, calc(100% - 40px));
  min-height: 44px;
  padding: 24px;
  margin-inline: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.consent-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.consent-close {
  display: grid;
  width: 44px;
  padding: 0;
  place-items: center;
  font-size: 1.4rem;
}

.consent-dialog .consent-actions {
  margin-top: 20px;
}

@media (max-width: 680px) {
  .consent-banner {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .consent-actions > * {
    flex: 1 1 100%;
  }
}

/* consent-hidden-fix-2026-08-04 */
[data-consent-banner][hidden],
[data-consent-dialog][hidden] {
  display: none !important;
}

/* Accessibility: poprawiony kontrast elementów pomaranczowych */
.eyebrow,
.product-kind,
.location-card span {
  color: #9a3412;
}

/* Pomaranczowe przyciski — kontrast tekstu co najmniej WCAG AA */
.button--orange {
  background-color: #b9380b;
  border-color: #b9380b;
  color: #ffffff;
}

.button--orange:hover,
.button--orange:focus-visible {
  background-color: #8f2f0b;
  border-color: #8f2f0b;
  color: #ffffff;
}

/* Tekst wewnatrz przycisku nie moze odziedziczyc jasniejszego koloru */
.button--orange span {
  color: inherit;
}
/* Accessibility: kontrast w ciemnych sekcjach */
.eyebrow--light {
  color: #ffd2c2;
}

/* Glówna karta lokalizacji */
.location-card--main span,
.location-card--main a,
.location-card--main .location-label {
  color: #ffffff;
}

/* Akcenty i linki w glównej karcie lokalizacji */
.location-card--main a:hover,
.location-card--main a:focus-visible {
  color: #ffd2c2;
}
.location-card--main .eyebrow,
.location-card--main .location-card__label {
  color: #ffd2c2;
}