:root {
  --ink: #25282d;
  --ink-soft: #3f464e;
  --muted: #727a83;
  --blue: #5391c8;
  --blue-strong: #3479b6;
  --aqua: #96bddc;
  --warm: #bd856b;
  --bg: #dedede;
  --surface: #e8e8e8;
  --surface-light: #f4f4f4;
  --line: rgba(80, 86, 92, 0.14);
  --shadow-raised: 18px 18px 42px rgba(139, 143, 146, 0.4), -18px -18px 42px rgba(255, 255, 255, 0.86);
  --shadow-soft: 10px 10px 24px rgba(139, 143, 146, 0.3), -10px -10px 24px rgba(255, 255, 255, 0.82);
  --shadow-inset: inset 8px 8px 18px rgba(139, 143, 146, 0.32), inset -8px -8px 18px rgba(255, 255, 255, 0.84);
  --radius-lg: 34px;
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ui: "Avenir Next", Avenir, "SF Pro Text", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "SF Pro Display", "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.62), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(83, 145, 200, 0.12), transparent 24%),
    linear-gradient(135deg, #ededed 0%, var(--bg) 46%, #d6d6d6 100%);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

svg {
  display: block;
}

main,
section,
article,
div,
form,
.hero-copy,
.section-heading > *,
.portfolio-intro > *,
.trust-grid > *,
.contact-intro,
.contact-form-heading {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid rgba(83, 145, 200, 0.34);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 70px)));
  min-height: var(--header-h);
  margin: 18px auto 0;
  padding: 0 clamp(18px, 2.6vw, 30px);
  background: rgba(229, 230, 230, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.site-header.is-scrolled {
  transform: translateY(-4px);
  box-shadow: 10px 10px 28px rgba(155, 163, 170, 0.4), -10px -10px 28px rgba(255, 255, 255, 0.9);
}

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

.brand-logo {
  width: clamp(120px, 10vw, 166px);
  height: auto;
  opacity: 0.9;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue-strong);
  background: var(--surface);
  box-shadow: var(--shadow-inset);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--blue), var(--blue-strong));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 8px 8px 18px rgba(66, 112, 154, 0.28), -8px -8px 18px rgba(255, 255, 255, 0.78);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-action:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 88px)));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  width: min(var(--max), calc(100% - clamp(28px, 5vw, 70px)));
  max-width: var(--max);
  min-height: clamp(560px, calc(100svh - var(--header-h) - 68px), 720px);
  margin: 24px auto clamp(42px, 5vw, 88px);
  padding:
    clamp(42px, 5vw, 76px)
    clamp(38px, 5vw, 76px)
    clamp(46px, 5.2vw, 82px);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.66), transparent 30%),
    linear-gradient(145deg, #eeeeee, #d8d8d8);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: clamp(34px, 3vw, 44px);
  box-shadow: var(--shadow-raised);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: none;
  width: auto;
  content: "";
  background:
    radial-gradient(ellipse at 38% 44%, rgba(255, 255, 255, 0.64), transparent 54%),
    radial-gradient(ellipse at 72% 48%, rgba(210, 211, 209, 0.58), transparent 62%),
    linear-gradient(90deg, rgba(244, 244, 242, 0.9) 0%, rgba(237, 237, 235, 0.7) 42%, rgba(220, 221, 219, 0.38) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(238, 238, 236, 0) 28%, rgba(220, 221, 219, 0.24) 100%),
    url("assets/hero-bottle-full-bleed-v4.jpg") center / cover no-repeat;
  filter: saturate(0.92) contrast(1.02);
  opacity: 0.98;
}

.hero::after {
  display: none;
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  text-align: left;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: clamp(-260px, -12vw, -120px);
  z-index: 1;
  width: min(52vw, 760px);
  pointer-events: none;
  transform: translateY(-46%);
}

.hero-visual img {
  width: 100%;
  max-width: none;
  height: auto;
  filter: saturate(1.02) contrast(1.02);
}

@media (min-width: 1800px) {
  .hero-visual {
    right: clamp(-260px, -7vw, -120px);
  }
}

.hero h1,
.section-heading h2,
.portfolio-intro h2,
.contact-form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(38px, 3.25vw, 58px);
  font-weight: 780;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero h1 em {
  color: inherit;
  font-style: normal;
}

.hero p {
  max-width: 600px;
  margin: clamp(20px, 2vw, 30px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  margin-top: clamp(26px, 2.6vw, 40px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(145deg, var(--blue), var(--blue-strong));
  box-shadow: 10px 10px 22px rgba(66, 112, 154, 0.26), -10px -10px 22px rgba(255, 255, 255, 0.78);
}

.button-secondary {
  color: var(--ink-soft);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.button-secondary:hover {
  color: var(--blue-strong);
  box-shadow: var(--shadow-inset);
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 38px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink-soft);
  background: var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
}

.scroll-cue path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust,
.markets,
.portfolio,
.drivers,
.contact {
  padding: clamp(70px, 9vw, 116px) 0 0;
}

.section-heading {
  max-width: 790px;
  text-align: left;
}

.trust-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 0.75fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  text-align: left;
}

.section-label,
.contact-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.portfolio-intro h2,
.contact-form-heading h2 {
  font-size: clamp(32px, 4.3vw, 56px);
}

.section-heading > p:last-child,
.trust-heading > p:last-child,
.portfolio-intro > p,
.contact-lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.62;
}

.trust-grid,
.market-grid,
.portfolio-grid,
.driver-strip {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.trust-grid,
.market-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid,
.driver-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.market-card,
.product-card,
.driver-strip article,
.contact-form,
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ebeeee, #d9dddd);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-lg);
  box-shadow: 14px 14px 32px rgba(143, 149, 153, 0.34), -14px -14px 32px rgba(255, 255, 255, 0.72);
}

.trust-card {
  display: grid;
  min-height: 178px;
  padding: 26px 28px;
  align-content: start;
}

.trust-card::before,
.market-card::before,
.driver-strip article::before {
  display: none;
  content: none;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--blue-strong);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.line-icon svg {
  width: 36px;
  height: 36px;
}

.line-icon path,
.line-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card .line-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: 92px;
  height: 92px;
  opacity: 0.74;
}

.trust-card .line-icon svg {
  width: 44px;
  height: 44px;
}

.trust-card-icon {
  display: none;
}

.trust-card > span:not(.line-icon),
.trust-card p,
.market-card h3,
.market-card p,
.driver-strip h3,
.driver-strip p {
  position: relative;
  z-index: 2;
}

.trust-card > span:not(.line-icon) {
  display: flex;
  min-height: 50px;
  max-width: none;
  align-items: flex-start;
  color: var(--ink);
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.16;
}

.trust-card p {
  max-width: 100%;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

.trust-grid--three {
  counter-reset: execution-card;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust-grid--three .trust-card {
  counter-increment: execution-card;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 5px 20px;
  min-height: 108px;
  align-content: center;
  align-items: center;
  padding: 20px clamp(28px, 3vw, 42px) 20px 20px;
  border-radius: 999px;
}

.trust-grid--three .trust-card::before {
  content: counter(execution-card, decimal-leading-zero);
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #050505;
  background: linear-gradient(145deg, #d6d8d8, #f2f3f3);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  font-weight: 780;
  line-height: 1;
}

.trust-grid--three .trust-card > span:not(.line-icon) {
  min-height: 0;
  max-width: none;
  grid-column: 2;
  align-items: center;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 720;
  line-height: 1.12;
}

.trust-grid--three .trust-card p {
  grid-column: 2;
  max-width: 900px;
  margin: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.48;
}

.markets .section-heading {
  max-width: 850px;
}

.markets .section-heading h2 {
  max-width: none;
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.04;
}

.markets .section-heading > p:last-child {
  max-width: 700px;
  margin-top: 18px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}

.market-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: none;
  margin-top: 34px;
}

.market-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 5px 20px;
  align-items: center;
  min-height: 108px;
  padding: 20px clamp(28px, 3vw, 42px) 20px 20px;
  border-radius: 999px;
}

.market-copy {
  min-width: 0;
}

.market-toggle {
  position: relative;
  width: 64px;
  height: 36px;
  background: linear-gradient(145deg, #111213, #030303);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  box-shadow:
    inset 6px 6px 11px rgba(0, 0, 0, 0.38),
    inset -5px -5px 9px rgba(255, 255, 255, 0.08),
    8px 9px 17px rgba(139, 143, 146, 0.26);
}

.market-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, #f4f4f4, #d4d7d7);
  border-radius: 50%;
  box-shadow: 5px 6px 11px rgba(101, 106, 110, 0.26);
}

.market-toggle-soft {
  background: linear-gradient(145deg, #4c5357, #25292d);
}

.market-visual {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  width: 148px;
  height: 148px;
  max-width: 48%;
  opacity: 0.74;
}

.market-visual svg {
  width: 100%;
  height: 100%;
}

.market-visual .flag-outline,
.market-visual .icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-visual .flag-outline {
  stroke-width: 2.25;
  opacity: 0.72;
}

.market-visual .icon-stroke {
  stroke-width: 2.85;
}

.market-visual .icon-mark {
  opacity: 0.9;
}

.market-visual .icon-fill {
  fill: currentColor;
  stroke: none;
}

.market-visual .icon-soft {
  opacity: 0.34;
}

.market-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  font-family: var(--font-display);
  font-weight: 720;
  line-height: 1.12;
}

.market-card p {
  max-width: 900px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.48;
}

.portfolio {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 88px)));
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 32px);
  margin-top: 42px;
}

.product-card {
  min-height: clamp(430px, 42vw, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(28px, 3.6vw, 46px);
  isolation: isolate;
  color: #ffffff;
  background: #171b1f;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: clamp(30px, 3vw, 42px);
  box-shadow: 16px 18px 36px rgba(106, 113, 120, 0.28), -12px -12px 28px rgba(255, 255, 255, 0.58);
}

.product-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.08) 0%, rgba(5, 7, 10, 0.24) 42%, rgba(5, 7, 10, 0.88) 100%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
  pointer-events: none;
}

.product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 28%);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.product-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05) brightness(0.84);
  transform: scale(1.01);
  transition: transform 360ms var(--ease), filter 360ms var(--ease);
}

.product-card:hover .product-bg {
  filter: saturate(0.98) contrast(1.08) brightness(0.9);
  transform: scale(1.045);
}

.product-card-massage .product-bg {
  object-position: 50% 46%;
}

.product-card-water .product-bg {
  object-position: 52% 42%;
}

.product-card-power .product-bg {
  object-position: 50% 45%;
}

.product-card-batteries .product-bg {
  object-position: 50% 48%;
}

.product-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  width: min(100%, 500px);
  margin-top: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.56);
}

.product-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: none;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.product-card h3 {
  max-width: 500px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 56px);
  font-family: var(--font-display);
  font-weight: 780;
  line-height: 1;
}

.product-card p {
  max-width: 470px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.45;
}

.driver-strip {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 34px clamp(24px, 4vw, 48px) 34px clamp(80px, 7vw, 104px);
  background: linear-gradient(145deg, #ebeeee, #d9dddd);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-lg);
  box-shadow: 14px 14px 32px rgba(143, 149, 153, 0.34), -14px -14px 32px rgba(255, 255, 255, 0.72);
}

.driver-strip::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: clamp(38px, 4.2vw, 52px);
  width: 2px;
  background: rgba(37, 40, 45, 0.2);
  border-radius: 999px;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.72);
}

.driver-strip article {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0 0 28px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.driver-strip article:last-child {
  padding-bottom: 0;
}

.driver-strip article::before {
  content: "";
  position: absolute;
  top: 4px;
  left: clamp(-58px, -4.8vw, -50px);
  display: block;
  width: 17px;
  height: 17px;
  background: #050505;
  border-radius: 50%;
  box-shadow:
    0 0 0 9px var(--surface),
    var(--shadow-soft);
}

.driver-icon-slot {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 190px;
  place-items: center;
  margin-bottom: 22px;
  background: transparent;
  border-radius: 26px;
  box-shadow: none;
}

.driver-icon-slot .line-icon {
  width: 152px;
  height: 152px;
  border-radius: 28px;
}

.driver-icon-slot .line-icon svg {
  width: 86px;
  height: 86px;
}

.driver-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 29px);
  font-family: var(--font-display);
  font-weight: 720;
  line-height: 1.16;
}

.driver-strip p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.contact {
  padding-bottom: clamp(52px, 7vw, 88px);
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(380px, 1fr);
  gap: 30px;
  width: min(100%, var(--max));
  min-height: 0;
  padding: clamp(28px, 5vw, 68px);
  align-items: start;
  isolation: isolate;
}

.contact-intro {
  display: block;
  max-width: 470px;
}

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

.contact-fields[hidden],
.contact-success[hidden] {
  display: none;
}

.contact-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
  width: 100%;
  color: var(--ink);
  background: linear-gradient(145deg, #ebeeee, #d9dddd);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow:
    inset 10px 10px 20px rgba(139, 153, 174, 0.28),
    inset -10px -10px 20px rgba(255, 255, 255, 0.78),
    0 1px 0 rgba(255, 255, 255, 0.5);
  outline: 0;
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus {
  border-color: rgba(83, 145, 200, 0.34);
  background: linear-gradient(145deg, #ebeeee, #d9dddd);
  box-shadow:
    inset 8px 8px 18px rgba(139, 153, 174, 0.3),
    inset -8px -8px 18px rgba(255, 255, 255, 0.82),
    0 0 0 3px rgba(83, 145, 200, 0.12);
}

.contact-fields input,
.contact-fields select {
  min-height: 48px;
  padding: 0 18px;
}

.contact-fields textarea {
  min-height: 132px;
  padding: 16px 18px;
  border-radius: 24px;
  resize: vertical;
}

.form-status,
.contact-success p {
  margin: 0;
  color: var(--muted);
}

.contact-success {
  grid-column: 2;
  padding: 26px;
  background: rgba(246, 248, 249, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  box-shadow: none;
}

.contact-success span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-strong);
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 640;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 88px)));
  min-height: 132px;
  margin: 0 auto clamp(24px, 4vw, 44px);
  padding: 30px clamp(24px, 4vw, 44px);
}

.footer-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(280px, 40%);
}

.footer-logo {
  width: clamp(150px, 16vw, 230px);
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.78;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 41;
    grid-column: 3;
    grid-row: 1;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    background: var(--surface);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms var(--ease);
  }

  .nav-toggle span + span {
    margin-top: -14px;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    background: rgba(222, 222, 222, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-width: 220px;
    justify-content: center;
    font-size: 24px;
  }

  .header-action {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: clamp(680px, calc(100svh - var(--header-h) - 28px), 840px);
    padding-bottom: clamp(300px, 40vw, 430px);
  }

  .hero-visual {
    top: auto;
    right: clamp(-220px, -18vw, -110px);
    bottom: clamp(-170px, -14vw, -84px);
    left: auto;
    width: min(108vw, 820px);
    transform: none;
  }

  .hero::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    background:
      radial-gradient(ellipse at 42% 44%, rgba(255, 255, 255, 0.66), transparent 58%),
      radial-gradient(ellipse at 70% 48%, rgba(210, 211, 209, 0.48), transparent 66%),
      linear-gradient(90deg, rgba(244, 244, 242, 0.92) 0%, rgba(235, 235, 233, 0.68) 52%, rgba(214, 215, 213, 0.36) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(226, 226, 224, 0.16) 100%),
      url("assets/hero-bottle-full-bleed-v4.jpg") center / cover no-repeat;
    border-radius: inherit;
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0.94;
  }

  .hero::after {
    display: none;
    content: none;
  }

  .trust-grid,
  .market-grid,
  .portfolio-grid,
  .driver-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact-intro,
  .portfolio-intro {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    top: 10px;
    width: min(100% - 24px, var(--max));
    min-height: var(--header-h);
    padding: 0 12px 0 16px;
  }

  .brand-logo {
    width: clamp(106px, 34vw, 138px);
  }

  .section-shell,
  .portfolio,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    width: min(100% - 24px, var(--max));
    min-height: 700px;
    margin-top: 16px;
    padding: 28px 22px clamp(310px, 76vw, 400px);
    border-radius: 32px;
  }

  .hero-visual {
    right: clamp(-330px, -70vw, -220px);
    bottom: -280px;
    width: min(196vw, 720px);
  }

  .hero::before {
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    border-radius: 28px;
    background:
      radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.72), transparent 56%),
      linear-gradient(180deg, rgba(240, 240, 238, 0.96) 0%, rgba(225, 226, 224, 0.84) 50%, rgba(212, 213, 211, 0.72) 100%),
      url("assets/hero-bottle-full-bleed-v4.jpg") 67% 50% / cover no-repeat;
    opacity: 0.9;
  }

  .hero h1 {
    font-size: clamp(29px, 8.4vw, 40px);
    line-height: 1.04;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .hero .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .trust,
  .markets,
  .portfolio,
  .drivers,
  .contact {
    padding-top: 58px;
  }

  .section-heading h2,
  .portfolio-intro h2,
  .contact-form-heading h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .trust-grid,
  .market-grid,
  .portfolio-grid,
  .driver-strip,
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .trust-grid--three .trust-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 5px 16px;
    min-height: 0;
    padding: 18px;
    border-radius: 30px;
  }

  .trust-grid--three .trust-card::before {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }

  .trust-grid--three .trust-card > span:not(.line-icon) {
    font-size: clamp(22px, 7vw, 30px);
  }

  .trust-grid--three .trust-card p {
    font-size: 16px;
  }

  .trust-card,
  .market-card,
  .product-card,
  .driver-strip article {
    min-height: auto;
    border-radius: 28px;
  }

  .market-card {
    min-height: auto;
  }

  .markets .section-heading h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .markets .section-heading > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .market-grid {
    gap: 14px;
    margin-top: 30px;
  }

  .market-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 5px 16px;
    padding: 18px;
    border-radius: 30px;
  }

  .market-toggle {
    width: 58px;
    height: 32px;
  }

  .market-toggle::before {
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
  }

  .market-card h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .market-card p {
    font-size: 16px;
  }

  .market-card p,
  .trust-card p {
    max-width: 100%;
  }

  .trust-card > span:not(.line-icon) {
    min-height: 0;
  }

  .product-card {
    min-height: min(520px, 118vw);
  }

  .product-copy {
    padding: 0;
  }

  .contact-form {
    padding: 20px;
    border-radius: 30px;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    min-height: 0;
    margin-bottom: 18px;
    padding: 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    width: min(220px, 62vw);
    max-height: 64px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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