:root {
  --ink: #11130f;
  --ink-soft: #242820;
  --paper: #f1eee5;
  --paper-bright: #fbfaf5;
  --paper-dark: #ded8ca;
  --acid: #d2f36b;
  --acid-dark: #a7ca3c;
  --acid-deep: #5d741b;
  --muted: #696d64;
  --line: rgba(17, 19, 15, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --white: #fff;
  --font-display: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1360px;
  --radius-sm: 10px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow: 0 30px 80px rgba(17, 19, 15, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--ink);
}

body.menu-open .brand-symbol {
  color: var(--acid);
  background: var(--ink);
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
.button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75em;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 7.3vw, 7rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
}

strong {
  font-weight: 720;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

/* Navigation */
.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
}

.site-header.header-solid {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
}

.brand-symbol svg {
  width: 14px;
  fill: currentColor;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 5px;
  opacity: 0.6;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-main,
.nav-list,
.nav-actions {
  display: flex;
  align-items: center;
}

.home-page .nav-actions {
  display: none;
}

.nav-main {
  flex: 1;
  justify-content: flex-end;
  gap: 32px;
}

.nav-list {
  margin: 0;
  padding: 0;
  gap: 4px;
  list-style: none;
}

.nav-list > li > a,
.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"],
.nav-dropdown > button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.header-solid .nav-list > li > a:hover,
.header-solid .nav-list > li > a[aria-current="page"],
.header-solid .nav-dropdown > button:hover {
  background: rgba(17, 19, 15, 0.07);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin: -3px 0 0 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-panel a {
  display: flex;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.dropdown-panel a:hover {
  color: var(--white);
  background: var(--ink);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu-toggle {
  display: none;
  min-width: 82px;
  height: 44px;
  padding: 0 14px;
  place-items: center;
  grid-auto-flow: column;
  gap: 10px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-solid .menu-toggle {
  background: rgba(17, 19, 15, 0.05);
  border-color: rgba(17, 19, 15, 0.16);
}

.menu-label {
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-lines {
  display: grid;
  gap: 5px;
}

.menu-lines i {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] {
  color: var(--paper-bright);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(17, 19, 15, 0.2);
}

.button:hover::after {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.button-green,
.button-acid {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.button-light {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.78rem;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  min-height: 860px;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, 0.97fr);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  max-width: 760px;
  padding: 190px 30px 92px 0;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 4.8vw, 5.3rem);
  hyphens: none;
}

.hero-copy h1 em {
  display: block;
  color: var(--acid);
  font-style: normal;
}

.hero-copy .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-proof {
  display: flex;
  margin-top: auto;
  padding-top: 52px;
  gap: 35px;
}

.hero-proof-item {
  display: grid;
  gap: 3px;
}

.hero-proof-item strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.hero-proof-item span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 0;
  margin: 126px 0 34px;
  overflow: hidden;
  background: var(--paper-bright);
  border-radius: var(--radius-lg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 68%;
  aspect-ratio: 1;
  top: 15%;
  left: 16%;
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(17, 19, 15, 0.025), 0 0 0 100px rgba(17, 19, 15, 0.018);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(17, 19, 15, 0.08));
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 700px;
  padding: 55px 28px 20px;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.05);
  mix-blend-mode: multiply;
}

.price-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 18px 50px rgba(17, 19, 15, 0.2);
}

.price-chip {
  right: 26px;
  bottom: 26px;
  min-width: 174px;
  min-height: 82px;
  padding: 15px 19px;
  justify-content: space-between;
  gap: 16px;
  background: var(--acid);
  border: 1px solid rgba(17, 19, 15, 0.2);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(17, 19, 15, 0.16);
}

.price-chip strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price-chip span {
  padding-left: 13px;
  border-left: 1px solid rgba(17, 19, 15, 0.22);
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.marquee {
  color: var(--ink);
  background: var(--acid);
  border-bottom: 1px solid rgba(17, 19, 15, 0.3);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  gap: 26px;
  animation: marquee 25s linear infinite;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "✦";
  margin-left: 26px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 120px 0;
}

.section-compact {
  padding: 80px 0;
}

.section-soft {
  background: var(--paper-bright);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-terra {
  color: var(--white);
  background: var(--ink-soft);
}

.section-heading {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  gap: 70px;
  align-items: end;
}

.section-heading > div:last-child,
.section-heading > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-heading > div:last-child,
.section-dark .section-heading > p,
.section-terra .section-heading > div:last-child,
.section-terra .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.section-index {
  color: var(--acid-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.14em;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: start;
}

.editorial-title {
  position: sticky;
  top: 30px;
}

.editorial-title h2 {
  max-width: 700px;
}

.editorial-copy {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.editorial-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.editorial-callout {
  display: flex;
  margin-top: 45px;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.editorial-callout span:last-child {
  color: var(--acid-deep);
}

.use-cases {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.925fr));
  grid-template-rows: minmax(430px, 1fr);
  gap: 14px;
}

.use-card {
  position: relative;
  display: flex;
  min-height: 270px;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 30px;
  text-decoration: none;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.use-card:hover {
  border-color: var(--ink);
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(17, 19, 15, 0.1);
}

.use-card-cave {
  min-height: 430px;
  color: var(--ink);
  background: var(--paper-dark);
  border-color: rgba(17, 19, 15, 0.16);
}

.use-card-emergency {
  color: var(--ink);
  background: var(--acid);
  border-color: rgba(17, 19, 15, 0.18);
}

.use-card-worksite {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.use-card-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-card-head i {
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.use-card:hover .use-card-head i {
  color: var(--paper-bright);
  background: var(--ink);
  transform: rotate(10deg);
}

.use-card-copy {
  position: relative;
  z-index: 3;
  max-width: 470px;
}

.use-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.68;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.use-card h3 {
  max-width: 470px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.use-card:not(.use-card-cave) h3 {
  max-width: 330px;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.use-card p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.use-card-cave p {
  color: rgba(17, 19, 15, 0.65);
}

.use-card-emergency p {
  color: rgba(17, 19, 15, 0.65);
}

.use-art {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.use-art-cave {
  width: 440px;
  height: 440px;
  right: -100px;
  bottom: -145px;
}

.use-art-cave span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: 50%;
}

.use-art-cave span:nth-child(2) {
  inset: 65px;
}

.use-art-rings {
  width: 245px;
  height: 245px;
  right: -78px;
  bottom: -92px;
}

.use-art-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 19, 15, 0.17);
  border-radius: 50%;
}

.use-art-rings span:nth-child(2) { inset: 42px; }
.use-art-rings span:nth-child(3) { inset: 84px; background: var(--ink); }

.use-art-build {
  right: 26px;
  bottom: 24px;
  display: flex;
  height: 95px;
  align-items: flex-end;
  gap: 6px;
}

.use-art-build span {
  display: block;
  width: 16px;
  background: rgba(210, 243, 107, 0.32);
  border-radius: 999px 999px 0 0;
}

.use-art-build span:nth-child(1) { height: 42px; }
.use-art-build span:nth-child(2) { height: 68px; }
.use-art-build span:nth-child(3) { height: 94px; background: var(--acid); }

.use-cases-footer {
  display: flex;
  margin-top: 18px;
  padding: 20px 3px 0;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.use-cases-footer a {
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

.use-cases-footer a span {
  margin-left: 8px;
  color: var(--acid-deep);
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.region-layout > div {
  max-width: 1080px;
}

.region-layout .lead {
  max-width: 800px;
}

.region-list {
  display: grid;
  margin: 45px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  list-style: none;
}

.region-list a {
  display: flex;
  padding: 17px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.region-list a::after {
  content: "→";
}

.pricing-rail {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.pricing-header {
  display: flex;
  padding: 35px 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.pricing-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.price-item {
  min-height: 300px;
  display: flex;
  padding: 38px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}

.price-item:last-child {
  border-right: 0;
  color: var(--ink);
  background: var(--acid);
}

.price-item .price-duration {
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--font-display);
}

.price-figure strong {
  font-size: clamp(4.5rem, 8vw, 8rem);
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.price-figure span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: trust;
}

.trust-list li {
  position: relative;
  padding: 22px 0 22px 50px;
  border-bottom: 1px solid var(--line);
  counter-increment: trust;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.trust-list li::before {
  content: "0" counter(trust);
  position: absolute;
  left: 0;
  color: var(--acid-deep);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.product-specs {
  display: grid;
  margin-top: 110px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.product-specs-visual {
  position: relative;
  display: grid;
  min-height: 700px;
  overflow: hidden;
  place-items: center;
  background: var(--paper-dark);
}

.product-specs-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 19, 15, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(17, 19, 15, 0.025), 0 0 0 120px rgba(17, 19, 15, 0.018);
}

.product-specs-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 58px 34px 24px;
  object-fit: contain;
  filter: contrast(1.06);
  mix-blend-mode: multiply;
}

.product-specs-content {
  padding: clamp(45px, 6vw, 86px);
}

.product-specs-content h3 {
  max-width: 780px;
  margin: 12px 0 22px;
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
}

.product-specs-content > p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
}

.spec-highlights {
  display: grid;
  margin: 42px 0 28px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-highlights div {
  display: grid;
  min-height: 145px;
  padding: 22px;
  align-content: center;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.spec-highlights dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-highlights dd {
  margin: 8px 0 2px;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1;
}

.spec-highlights small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.7rem;
}

.spec-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-details span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 0.73rem;
}

.spec-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 8px;
  color: var(--acid);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-section {
  padding: 86px 0;
}

.process-section .section-heading {
  margin-bottom: 34px;
}

.process-step {
  min-height: 210px;
  display: flex;
  padding: 23px 23px 23px 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}

.process-step:not(:first-child) {
  padding-left: 23px;
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.45rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: 90px;
}

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

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

.faq-item button {
  display: grid;
  width: 100%;
  padding: 25px 0;
  grid-template-columns: 1fr auto;
  gap: 25px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.faq-item button::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.faq-item button:focus-visible {
  outline: 2px solid var(--acid-deep);
  outline-offset: -2px;
  border-radius: 10px;
}

.faq-answer {
  display: none;
  max-width: 760px;
  padding: 0 70px 28px 0;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 480px;
  padding: 58px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.5fr);
  gap: 60px;
  align-items: end;
  color: var(--ink);
  background: var(--acid);
  border-radius: var(--radius-lg);
}

.cta-panel::after {
  content: "DV";
  position: absolute;
  top: -30px;
  right: -30px;
  color: rgba(17, 19, 15, 0.06);
  font-family: var(--font-display);
  font-size: 17rem;
  font-weight: 750;
  letter-spacing: -0.14em;
  line-height: 1;
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
}

.cta-panel .cta-content {
  position: relative;
  z-index: 1;
}

/* Generic grid compatibility */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.step,
.pricing-card {
  padding: 30px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-lift {
  box-shadow: var(--shadow);
}

.icon-tile,
.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 720;
}

.plain-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 31px;
}

.check-list li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--acid-deep);
  font-weight: 800;
}

/* Interior SEO pages */
.page-hero {
  position: relative;
  padding: 105px 0 90px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: attr(data-code);
  position: absolute;
  right: -10px;
  bottom: -75px;
  color: rgba(17, 19, 15, 0.045);
  font-family: var(--font-display);
  font-size: 17rem;
  font-weight: 750;
  letter-spacing: -0.12em;
  line-height: 1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 1100px;
  font-size: clamp(3.2rem, 7vw, 7rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
}

.page-hero-meta {
  display: flex;
  margin-top: 46px;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 9px 13px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 105px;
  align-items: start;
}

.prose {
  max-width: 900px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.prose > .lead:first-child {
  margin-bottom: 60px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.article-byline {
  margin: -36px 0 58px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prose h2 {
  margin: 82px 0 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.prose h3 {
  margin-top: 42px;
}

.prose p,
.prose ul,
.prose ol {
  max-width: 780px;
}

.prose ul,
.prose ol {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.prose li {
  margin: 7px 0;
}

.prose a {
  color: var(--ink);
  font-weight: 650;
}

.prose .note {
  margin: 38px 0;
  padding: 28px;
  color: var(--ink);
  background: var(--acid);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.related-links {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-links > .eyebrow {
  color: var(--acid-deep);
}

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

.prose .related-link {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 20px 52px 20px 20px;
  align-content: space-between;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.prose .related-link::after {
  content: "→";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1rem;
}

.related-link small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-link strong {
  max-width: 250px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.prose .related-link:hover {
  background: var(--acid);
  border-color: rgba(17, 19, 15, 0.25);
  transform: translateY(-2px);
}

.side-card {
  position: sticky;
  top: 24px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.about-card {
  overflow: hidden;
}

.about-card img {
  width: calc(100% + 56px);
  height: auto;
  max-width: none;
  margin: -28px -28px 28px;
  background: var(--paper-dark);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: screen;
}

.about-card h2 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: 2rem;
}

.about-card .button {
  width: 100%;
  margin-top: 12px;
}

.side-card .side-price {
  display: block;
  margin: 0 0 0.7em;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 2.7rem !important;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.side-card .plain-list {
  margin: 24px 0;
  border-top: 1px solid var(--line-light);
}

.side-card .plain-list li {
  display: flex;
  padding: 12px 0;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
}

.side-card .button {
  width: 100%;
  margin-top: 10px;
}

.side-card .button-outline {
  color: var(--white);
  border-color: var(--line-light);
}

.legal-meta,
.prototype-banner,
.status-box {
  padding: 18px 20px;
  border-radius: 15px;
}

.legal-meta,
.prototype-banner {
  color: #4c4000;
  background: #fff4b8;
  border: 1px solid #e5d169;
}

/* Booking */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
  align-items: start;
}

.booking-card,
.booking-summary {
  border-radius: var(--radius);
}

.booking-card {
  padding: 44px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.booking-summary {
  position: sticky;
  top: 20px;
  padding: 35px;
  color: var(--ink);
  background: var(--acid);
}

.booking-summary h2,
.booking-summary h3 {
  color: var(--ink);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label,
.field-label {
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pickup-notice {
  display: flex;
  min-height: 76px;
  padding: 16px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--paper-dark);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.pickup-notice strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.pickup-notice span {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.field input,
.field select,
.field textarea,
td select {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--acid-deep);
  box-shadow: 0 0 0 4px rgba(93, 116, 27, 0.14);
}

.checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.help-text {
  color: var(--muted);
  font-size: 0.78rem;
}

.status-box {
  margin: 24px 0;
  font-size: 0.88rem;
  font-weight: 650;
}

.status-box.info { color: #173a69; background: #e7ecff; }
.status-box.success { color: #0f5236; background: #dbf7e8; }
.status-box.error { color: #7b1723; background: #ffe2e6; }

.summary-row {
  display: flex;
  padding: 16px 0;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.2);
}

.summary-row.total {
  border-bottom: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 750;
}

.success-panel {
  padding: 42px;
  text-align: center;
  background: #e4f8ec;
  border-radius: var(--radius);
}

.success-mark {
  display: grid;
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: 1.8rem;
}

/* Admin */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.stat-card {
  min-height: 155px;
  display: flex;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: 2.3rem;
  letter-spacing: -0.06em;
}

.admin-toolbar {
  display: flex;
  margin-top: 55px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  background: var(--paper-dark);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
}
.badge-pending { color: #654900; background: #fff0a8; }
.badge-confirmed { color: #0b5437; background: #d5f5e5; }
.badge-cancelled { color: #76252e; background: #ffdce0; }

.empty-state {
  padding: 50px 20px;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  padding: 90px 0 60px;
}

.footer-kicker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line-light);
}

.footer-kicker .footer-title {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.footer-grid {
  display: grid;
  padding: 55px 0 45px;
  grid-template-columns: 1.05fr 0.65fr 0.65fr 1fr;
  gap: 55px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer a:hover {
  color: var(--acid);
}

.site-footer .button-acid,
.site-footer .button-acid:hover {
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.contact-mini {
  display: grid;
  gap: 9px;
}

.contact-mini input,
.contact-mini textarea {
  width: 100%;
  padding: 11px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  outline: none;
}

.contact-mini textarea {
  min-height: 76px;
  resize: vertical;
}

.footer-wordmark {
  overflow: visible;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 750;
  letter-spacing: -0.09em;
  line-height: 0.9;
  padding: 0.08em 0 0.12em;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  padding: 30px 0;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line-light);
  font-size: 0.76rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  width: min(440px, calc(100% - 40px));
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.cookie-banner .button-outline {
  color: var(--white);
  border-color: var(--line-light);
}

/* Responsive */
@media (max-width: 1120px) {
  .menu-toggle { display: grid; margin-left: auto; }
  .nav-main {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: none;
    padding: 110px 28px 35px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--acid);
  }
  .nav-main.is-open { display: block; z-index: -1; }
  .nav-list, .nav-actions { display: grid; gap: 6px; }
  .home-page .nav-actions { display: grid; }
  .nav-list > li > a, .nav-dropdown > button {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    text-align: left;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a:focus-visible,
  .nav-dropdown > button:hover,
  .nav-dropdown > button:focus-visible,
  .nav-dropdown > button[aria-expanded="true"],
  .header-solid .nav-list > li > a:hover,
  .header-solid .nav-list > li > a:focus-visible,
  .header-solid .nav-dropdown > button:hover,
  .header-solid .nav-dropdown > button:focus-visible,
  .header-solid .nav-dropdown > button[aria-expanded="true"] {
    color: var(--ink);
    background: rgba(17, 19, 15, 0.08);
  }
  .nav-list > li > a[aria-current="page"]:not(:hover):not(:focus-visible),
  .header-solid .nav-list > li > a[aria-current="page"]:not(:hover):not(:focus-visible) {
    background: transparent;
  }
  .dropdown-panel {
    position: static;
    display: none;
    padding: 4px 0 10px 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown.is-open .dropdown-panel { display: block; }
  .dropdown-panel a { font-size: 1rem; }
  .dropdown-panel a:hover,
  .dropdown-panel a:focus-visible {
    color: var(--ink);
    background: rgba(17, 19, 15, 0.08);
  }
  .nav-actions { margin-top: 18px; }
  .nav-actions .button { width: 100%; }
  .nav-actions .button-acid,
  .nav-actions .button-acid:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .hero-grid { grid-template-columns: 1fr 0.85fr; }
  .hero-copy h1 { font-size: clamp(3.4rem, 5vw, 4.8rem); }
  .product-specs { grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr); }
  .use-cases { grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr)); }
  .content-layout, .booking-layout { grid-template-columns: 1fr; }
  .side-card, .booking-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .nav-shell { min-height: 82px; }
  .home-hero { min-height: auto; }
  .hero-grid { display: flex; min-height: auto; flex-direction: column; }
  .hero-copy { max-width: none; min-height: 730px; padding: 150px 0 70px; }
  .hero-copy h1 { font-size: clamp(3rem, 8vw, 4.4rem); }
  .hero-proof { margin-top: 50px; }
  .hero-visual { min-height: 650px; margin: 0 0 48px; }
  .hero-visual img { min-height: 650px; }
  .section { padding: 90px 0; }
  .section-heading, .editorial-split, .region-layout, .trust-grid, .faq-layout, .cta-panel, .product-specs {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .product-specs { gap: 0; }
  .product-specs-visual { min-height: 620px; }
  .use-cases { grid-template-columns: 1fr; grid-template-rows: auto; }
  .use-card-cave { grid-row: auto; }
  .use-card,
  .use-card-cave,
  .use-card:not(.use-card-cave) { min-height: 390px; height: 390px; }
  .section-heading { margin-bottom: 45px; }
  .editorial-title { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-item { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .process-section { padding: 72px 0; }
  .cta-panel { min-height: 520px; align-content: end; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  h2 { font-size: clamp(2rem, 9vw, 2.85rem); line-height: 1.02; }
  .section { padding: 68px 0; }
  .section-heading,
  .editorial-split,
  .region-layout,
  .trust-grid,
  .faq-layout,
  .cta-panel { gap: 26px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .editorial-title h2 { margin-bottom: 0; }
  .editorial-copy { padding-top: 22px; }
  .editorial-callout {
    margin-top: 28px;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
  }
  .eyebrow { margin-bottom: 13px; }
  .brand-copy small { display: none; }
  .brand-symbol { width: 38px; height: 38px; }
  .hero-copy { min-height: auto; padding: 112px 0 34px; }
  .hero-copy h1 { font-size: clamp(2.3rem, 9.2vw, 3.1rem); line-height: 1.01; }
  .hero-copy h1 { margin-bottom: 20px; }
  .hero-copy .lead { font-size: 1.03rem; }
  .hero-actions { margin-top: 16px; }
  .hero-actions .button { min-height: 46px; padding-inline: 17px; font-size: 0.76rem; }
  .hero-proof { display: none; }
  .hero-visual, .hero-visual img { min-height: 390px; }
  .hero-visual img { padding: 18px 5px 2px; }
  .price-chip { right: 17px; bottom: 17px; min-width: 148px; min-height: 68px; padding: 12px 15px; border-radius: 15px; }
  .price-chip strong { font-size: 1.9rem; }
  .price-chip span { font-size: 0.57rem; }
  .use-card { padding: 26px; border-radius: 24px; }
  .use-card,
  .use-card-cave,
  .use-card:not(.use-card-cave) { min-height: 340px; height: 340px; }
  .use-card h3,
  .use-card:not(.use-card-cave) h3 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .use-art-cave { right: -165px; bottom: -165px; }
  .use-art-build { right: 18px; bottom: 18px; opacity: 0.6; }
  .use-cases-footer { margin-top: 14px; padding-top: 16px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .region-list { margin-top: 30px; grid-template-columns: 1fr; }
  .region-list a { padding: 14px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:not(:first-child) {
    display: grid;
    min-height: 0;
    padding: 20px 0;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    border-right: 0;
    border-top: 1px solid var(--line-light);
  }
  .process-step:first-child { border-top: 0; }
  .process-step h3 { font-size: 1.3rem; }
  .process-section { padding: 60px 0; }
  .process-section .section-heading { margin-bottom: 24px; }
  .pricing-header { padding: 24px; align-items: flex-start; flex-direction: column; }
  .price-item { min-height: 205px; padding: 24px; justify-content: flex-start; }
  .price-figure { margin: 18px 0 14px; }
  .price-figure strong { font-size: 5.25rem; line-height: 0.78; }
  .price-item p { margin: 0; }
  .page-hero { padding: 75px 0 65px; }
  .page-hero h1 { font-size: clamp(2.25rem, 9vw, 3rem); line-height: 1.02; }
  .trust-list li { padding: 18px 0 18px 44px; font-size: 1.2rem; }
  .product-specs { margin-top: 56px; border-radius: 24px; }
  .product-specs-visual { min-height: 420px; }
  .product-specs-visual img { padding: 34px 10px 6px; }
  .product-specs-content { padding: 32px 24px 36px; }
  .product-specs-content h3 { margin-bottom: 18px; font-size: clamp(2rem, 9vw, 2.75rem); }
  .spec-highlights { margin: 30px 0 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-highlights div { min-height: 110px; padding: 16px; }
  .spec-highlights dd { font-size: 1.75rem; }
  .spec-actions { margin-top: 26px; gap: 16px; }
  .content-layout { gap: 55px; }
  .prose h2 { margin-top: 60px; }
  .related-links { margin-top: 52px; padding-top: 24px; }
  .related-links-grid { grid-template-columns: 1fr; }
  .prose .related-link { min-height: 104px; }
  .booking-card, .booking-summary { padding: 25px; }
  .pickup-notice { min-height: 0; align-items: flex-start; flex-direction: column; gap: 4px; }
  .pickup-notice span { text-align: left; }
  .faq-item button { padding: 20px 0; font-size: 1.12rem; }
  .faq-answer { padding: 0 48px 22px 0; }
  .form-grid, .grid-2, .grid-3, .grid-4, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .admin-toolbar, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-kicker { grid-template-columns: 1fr; align-items: start; }
  .cta-panel { min-height: 420px; padding: 26px; }
  .footer-top { padding: 64px 0 40px; }
  .footer-kicker { padding-bottom: 36px; gap: 22px; }
  .footer-kicker .footer-title { font-size: clamp(2.5rem, 10vw, 3.4rem); }
  .footer-grid { padding: 40px 0 30px; gap: 34px; }
  .footer-bottom { padding: 24px 0; gap: 16px; }
  .footer-wordmark { font-size: 18vw; }
}

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