@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --dark: #161616;
  --graphite: #252525;
  --orange: #e65f1a;
  --orange-strong: #b9430f;
  --orange-rgb: 230, 95, 26;
  --orange-strong-rgb: 185, 67, 15;
  --paper: #f6f1e8;
  --white: #ffffff;
  --muted: #77736b;
  --line: #ded6c8;
  --navy-950: var(--dark);
  --navy-900: var(--dark);
  --navy-800: var(--graphite);
  --navy-700: #3b3b38;
  --steel-700: var(--muted);
  --steel-500: #9a948b;
  --line-strong: #bdb4a7;
  --offwhite: var(--paper);
  --mist: #e9e1d4;
  --signal: #b8b441;
  --success: #2d6c5c;
  --shadow-soft: 0 14px 34px rgba(22, 22, 22, 0.1);
  --shadow-strong: 0 28px 72px rgba(22, 22, 22, 0.22);
  --radius-xl: 18px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: "Space Grotesk", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Space Grotesk", "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--paper);
}

body.dialog-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--navy-950);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

button {
  cursor: pointer;
}

.site-main {
  overflow: clip;
}

.site-frame {
  position: relative;
}

.shell {
  width: min(1240px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.96);
  border-bottom: 1px solid rgba(22, 22, 22, 0.12);
}

.header-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.6rem;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  color: var(--dark);
}

.brand-logo {
  display: block;
  width: auto;
  height: 4rem;
  max-width: 4rem;
  object-fit: contain;
}

.brand-copy {
  display: inline-grid;
  gap: 0.1rem;
}

.brand-kicker {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.header-nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.4rem;
  min-width: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.1rem;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: var(--graphite);
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--orange);
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.header-cta {
  justify-content: flex-end;
  gap: 1.1rem;
  flex-wrap: nowrap;
}

.phone-link {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 850;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(var(--orange-rgb), 0.28);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 16px 36px rgba(16, 34, 53, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-strong);
  border-color: var(--orange-strong);
  box-shadow: 0 18px 36px rgba(var(--orange-rgb), 0.34);
}

.button-secondary {
  color: var(--dark);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-inline: 0;
}

.button.secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(16, 34, 53, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--orange);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button-secondary[href]::after {
  content: "  →";
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(16, 34, 53, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  background: var(--navy-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.nav-open .nav-toggle {
  background: rgba(16, 34, 53, 0.92);
  border-color: rgba(16, 34, 53, 0.92);
  box-shadow: 0 16px 34px rgba(10, 17, 26, 0.2);
}

.nav-open .nav-toggle span {
  background: #fff;
}

.hero {
  padding: 4.2rem 0 2.5rem;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-stage {
  min-width: 0;
}

.hero-copy {
  padding: 2.25rem 0 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 0 1.15rem;
  color: var(--navy-700);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  display: none;
}

.hero h1,
.section h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.04;
  color: var(--navy-950);
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  max-width: 12ch;
}

.hero-lead,
.section-lead,
.page-hero p,
.feature-card p,
.stat-card span,
.service-note p,
.machine-copy p,
.location-card p,
.site-footer p,
.contact-copy p,
.about-copy p,
.career-copy p {
  color: var(--steel-700);
}

.hero-lead {
  max-width: 44rem;
  font-size: 1.16rem;
  margin: 1.3rem 0 0;
}

.trust-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-bar span,
.info-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 34, 53, 0.1);
  font-weight: 650;
  color: var(--navy-900);
}

.hero-stage {
  display: grid;
  gap: 1rem;
}

.stage-media,
.media-card,
.contact-module,
.location-card,
.map-placeholder,
.feature-card,
.stat-card,
.machine-tabs,
.page-hero,
.page-panel,
.service-note {
  border-radius: var(--radius-lg);
}

.stage-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 53, 0.08);
  box-shadow: var(--shadow-strong);
}

.stage-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(11, 22, 34, 0), rgba(11, 22, 34, 0.68));
}

.stage-media img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 22, 34, 0.8);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.placeholder-tag[aria-hidden="true"] {
  pointer-events: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-facts article,
.service-note {
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 34, 53, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-facts strong,
.stat-card strong,
.service-note strong,
.location-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 1.08rem;
}

.hero-facts p {
  margin: 0.45rem 0 0;
  color: var(--steel-700);
}

.section {
  padding: 5.2rem 0;
}

.section-compact {
  padding-top: 3rem;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(11, 22, 34, 0.98), rgba(16, 34, 53, 0.98)),
    linear-gradient(120deg, rgba(var(--orange-rgb), 0.1), transparent 30%);
  color: #fff;
}

.section-dark h2,
.section-dark .eyebrow,
.section-dark .service-note strong {
  color: #fff;
}

.section-dark .eyebrow::before {
  background: rgba(255, 255, 255, 0.45);
}

.section-dark .section-lead,
.section-dark .service-note p {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .page-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .page-panel h2 {
  color: var(--navy-950);
}

.section-dark .page-list,
.section-dark .page-list li {
  color: var(--steel-700);
  border-color: rgba(16, 34, 53, 0.08);
}

.section-dark .service-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section-dark .service-note strong,
.section-dark .service-note p {
  color: #fff;
}

.section-muted {
  background: linear-gradient(180deg, rgba(236, 232, 223, 0.72), rgba(245, 241, 232, 0.2));
}

.section-accent {
  background: linear-gradient(180deg, rgba(184, 180, 65, 0.09), rgba(var(--orange-rgb), 0.05));
}

.section-head {
  max-width: 52rem;
  margin-bottom: 2.35rem;
}

.section h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 3.75vw, 3.85rem);
}

.section-lead {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  max-width: 44rem;
}

.machine-tabs,
.contact-module,
.page-panel {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 34, 53, 0.08);
  box-shadow: var(--shadow-soft);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tab-button {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(16, 34, 53, 0.12);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.7);
  color: var(--navy-900);
  font-weight: 700;
}

.tab-button.is-active {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.tab-button[aria-selected="true"] {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.machine-panel[hidden] {
  display: none;
}

.machine-card,
.section-split,
.about-layout,
.career-layout,
.service-layout,
.location-layout,
.page-grid,
.contact-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.machine-card {
  align-items: stretch;
}

.media-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: linear-gradient(135deg, #dfe6ec, #c6cfd7);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 22, 34, 0), rgba(11, 22, 34, 0.2));
  pointer-events: none;
}

.media-placeholder {
  border: 1px dashed rgba(16, 34, 53, 0.18);
}

.placeholder-surface {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(16, 34, 53, 0.1), rgba(var(--orange-rgb), 0.08)),
    linear-gradient(180deg, #e9ecef, #cfd6dc);
  color: var(--navy-900);
  text-align: center;
  font-weight: 700;
}

.machine-copy,
.service-copy,
.career-copy,
.about-copy {
  display: grid;
  gap: 1rem;
}

.machine-copy {
  padding: 1rem 0.5rem 1rem 0;
}

.machine-copy h3,
.feature-card h3,
.page-panel h2,
.page-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.meta-list,
.page-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--steel-700);
}

.meta-list li,
.page-list li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(16, 34, 53, 0.08);
}

.service-grid,
.career-points,
.feature-grid,
.page-card-grid {
  display: grid;
  gap: 1.35rem;
}

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

.service-grid article,
.career-points article,
.page-card,
.feature-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-top: 3px solid rgba(var(--orange-rgb), 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.section-dark .service-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-grid article,
.career-points article {
  border-radius: var(--radius-md);
  font-weight: 700;
}

.service-stage {
  display: grid;
  gap: 1rem;
}

.media-tall {
  min-height: 33rem;
}

.media-wide {
  min-height: 28rem;
}

.feature-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.stat-card,
.page-card,
.location-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 34, 53, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card h3,
.page-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.feature-card p,
.page-card p,
.contact-form,
.form-note {
  margin: 0;
}

.about-aside,
.career-stage {
  display: grid;
  gap: 1rem;
}

.career-callout {
  margin: 0;
  font-weight: 800;
  color: var(--navy-900);
}

.contact-module {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
}

.required-mark {
  color: var(--orange);
  font-weight: 800;
}

form {
  display: grid;
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 34, 53, 0.14);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--graphite);
}

input::placeholder,
textarea::placeholder {
  color: #677788;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.tab-button:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(var(--orange-rgb), 0.2);
  outline-offset: 2px;
}

textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--steel-700);
}

.privacy-note {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(16, 34, 53, 0.05);
  border: 1px solid rgba(16, 34, 53, 0.08);
}

.field-checkbox {
  gap: 0;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(16, 34, 53, 0.05);
  border: 1px solid rgba(16, 34, 53, 0.08);
  color: var(--steel-700);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

.checkbox-field input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  padding: 0;
  border-radius: 0.3rem;
  accent-color: var(--orange);
}

.checkbox-field a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.checkbox-field a:hover,
.checkbox-field a:focus-visible {
  color: var(--orange);
}

.field input[pattern="[0-9]*"]::placeholder {
  color: var(--steel-500);
  opacity: 1;
}

.location-map {
  display: grid;
  gap: 1rem;
}

.map-placeholder {
  min-height: 19rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(16, 34, 53, 0.12), rgba(var(--orange-rgb), 0.08)),
    linear-gradient(180deg, #dbdfdf, #c5cdcf);
  border: 1px dashed rgba(16, 34, 53, 0.24);
}

.site-footer {
  padding: 2rem 0 5.5rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 34, 53, 0.1);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  color: var(--steel-700);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  gap: 0.7rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(245, 241, 232, 0.94);
  border-top: 1px solid rgba(16, 34, 53, 0.1);
  backdrop-filter: blur(16px);
}

.mobile-cta .button-secondary {
  background: #fff;
}

.mobile-cta .button {
  flex: 1;
  min-width: 0;
}

.page-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(24rem, 44vh, 34rem);
  padding: clamp(2.8rem, 5vw, 5.6rem) 0 clamp(2.4rem, 4vw, 4.6rem);
  overflow: visible;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(22, 22, 22, 0.14);
  background: transparent;
  color: var(--dark);
  box-shadow: none;
}

.page-hero::before {
  content: "";
  width: 5.25rem;
  height: 0.32rem;
  margin-bottom: clamp(1.6rem, 2.5vw, 2.4rem);
  background: var(--orange);
}

.page-hero h1,
.page-hero .section-lead,
.page-hero p,
.page-hero .eyebrow {
  color: inherit;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.page-hero .section-lead {
  max-width: 47rem;
  margin-top: 1.45rem;
  color: var(--graphite);
}

.page-hero .button-row {
  margin-top: 2.15rem;
  gap: 1.1rem 1.4rem;
}

.page-hero .button {
  border-radius: 999px;
}

.page-hero .button-primary {
  min-height: 3.35rem;
  padding-inline: 1.7rem;
  box-shadow: 0 10px 24px rgba(var(--orange-rgb), 0.2);
}

.page-hero .button-secondary {
  min-height: auto;
  color: var(--dark);
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.page-hero .button-secondary:hover,
.page-hero .button-secondary:focus-visible {
  color: var(--orange);
}

.page-hero .eyebrow {
  color: var(--orange);
}

.page-hero .eyebrow::before {
  background: var(--orange);
}

.page-stack {
  display: grid;
  gap: 1.5rem;
}

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

.page-card {
  border-radius: var(--radius-sm);
}

.photo-brief-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.photo-brief-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-brief {
  display: grid;
  margin: 0;
}

.photo-brief-large {
  grid-row: span 2;
}

.photo-brief-frame {
  position: relative;
  display: grid;
  min-height: 14rem;
  aspect-ratio: 4 / 3;
  align-content: end;
  justify-items: start;
  gap: 0.85rem;
  overflow: hidden;
  padding: clamp(1.35rem, 2vw, 2rem);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.66) 0,
      rgba(255, 255, 255, 0.66) 2rem,
      rgba(232, 232, 230, 0.72) 2rem,
      rgba(232, 232, 230, 0.72) 4rem
    ),
    linear-gradient(180deg, #f7f7f5, #e7e7e4);
  box-shadow: 0 22px 50px rgba(22, 22, 22, 0.08);
}

.photo-brief-large .photo-brief-frame {
  min-height: 29.25rem;
  aspect-ratio: auto;
}

.photo-brief-frame span {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-brief-frame strong {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 9ch;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.photo-brief-frame p {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.2rem);
  line-height: 1.35;
}

.contact-inline {
  display: grid;
  gap: 1rem;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-home,
  .contact-module,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 44;
    background: rgba(8, 16, 24, 0.42);
    backdrop-filter: blur(10px);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 52;
  }

  .header-row {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .header-nav-wrap {
    position: fixed;
    top: 5.35rem;
    left: 0.75rem;
    right: 0.75rem;
    z-index: 51;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: calc(100dvh - 5.75rem);
    padding: 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(246, 241, 232, 0.98);
    border: 1px solid rgba(22, 22, 22, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 70px rgba(22, 22, 22, 0.24);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.65rem) scale(0.985);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .nav-open .header-nav-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav {
    display: grid;
    gap: 0.2rem;
    justify-content: stretch;
  }

  .site-nav a {
    padding: 0.85rem 0.15rem;
    font-size: 1.32rem;
    line-height: 1.1;
    border-bottom: 1px solid rgba(16, 34, 53, 0.08);
  }

  .site-nav a::after {
    left: 0.15rem;
    right: auto;
    width: 3.2rem;
    bottom: 0.45rem;
  }

  .header-cta {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.35rem;
  }

  .header-cta .button {
    min-height: 3.9rem;
    border-radius: 999px;
    font-size: 1rem;
  }

  .phone-link {
    padding: 0.9rem 0.15rem;
    border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  }

  .machine-card,
  .section-split,
  .about-layout,
  .career-layout,
  .service-layout,
  .location-layout,
  .page-grid,
  .contact-split,
  .contact-module {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .field-grid,
  .page-card-grid,
  .photo-brief-grid,
  .photo-brief-grid-four,
  .hero-facts,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .photo-brief-large {
    grid-row: auto;
  }

  .photo-brief-large .photo-brief-frame,
  .photo-brief-frame {
    min-height: 14rem;
    aspect-ratio: 4 / 3;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .site-header {
    position: sticky;
  }

  .hero h1 {
    max-width: none;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 7rem;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw - 1rem, 1240px);
  }

  .section {
    padding: 4rem 0;
  }

  .machine-tabs,
  .contact-module,
  .page-panel,
  .page-hero {
    padding: 1rem;
  }

  .page-hero {
    min-height: auto;
    padding: 3.2rem 0 2.6rem;
  }

  .page-hero::before {
    margin-bottom: 1.45rem;
  }

  .button,
  .tab-button {
    width: 100%;
  }

  .page-hero .button-secondary {
    width: auto;
    justify-self: start;
  }

  .hero {
    padding-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
    line-height: 1;
  }

  .hero-lead,
  .section-lead {
    font-size: 1rem;
  }

  .media-card,
  .media-wide,
  .media-tall {
    min-height: 18rem;
  }

  .button-row {
    display: grid;
    width: 100%;
  }

  .footer-layout {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.page-home {
  background: var(--paper);
}

.page-home .site-frame::before {
  content: none;
}

.hero-kicker {
  margin: 0;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-full {
  position: relative;
  min-height: clamp(36rem, 80vh, 54rem);
  margin: 0 0 1.25rem;
  background: var(--dark);
}

.hero-full-track {
  position: relative;
  min-height: inherit;
}

.hero-full-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-full-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-full-media,
.hero-full-media img {
  width: 100%;
  height: 100%;
}

.hero-full-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-full-media img {
  object-fit: cover;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.9) 0%, rgba(22, 22, 22, 0.72) 38%, rgba(22, 22, 22, 0.34) 68%, rgba(22, 22, 22, 0.76) 100%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.14) 0%, rgba(22, 22, 22, 0.82) 100%);
}

.hero-full-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 9rem;
}

.hero-full-copy {
  display: grid;
  gap: 1.65rem;
  width: min(100%, 48rem);
  color: #fff;
}

.hero-full-copy h1,
.hero-full-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.55vw, 5.25rem);
  line-height: 1.01;
  letter-spacing: -0.043em;
  color: #fff;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-full-copy .hero-kicker {
  color: var(--orange);
  font-weight: 850;
}

.hero-full-lead {
  margin: 0;
  max-width: 44rem;
  font-size: 1.12rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.86);
}

.hero-full-actions {
  margin-top: 0.8rem;
  gap: 1rem 1.15rem;
}

.hero-full-actions .button {
  min-height: 3.35rem;
  padding: 0.95rem 1.65rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-full-actions .button-primary {
  padding-inline: 1.9rem;
}

.hero-full-actions .button-secondary[href]::after {
  content: "→";
  margin-left: 0.45rem;
}

.hero-button-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding-inline: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-button-light:hover,
.hero-button-light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-full-controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  transform: translateX(-50%);
}

.hero-full-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(100vw - 2rem, 62rem);
}

.hero-full-progress-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-full-progress {
  width: 100%;
  height: 0.18rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-full-progress-bar {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0%);
}

.hero-full-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-side-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 19, 30, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hero-side-arrow-left {
  left: 2rem;
}

.hero-side-arrow-right {
  right: 2rem;
}

.hero-side-arrow span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-0.06em);
}

.hero-side-arrow:hover,
.hero-side-arrow:focus-visible {
  outline: none;
  background-color: rgba(9, 19, 30, 0.56);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.02);
}

.section-tight {
  padding-top: 1rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(16, 34, 53, 0.08);
}

.signal-strip-item {
  display: grid;
  gap: 0.75rem;
  min-height: 8.5rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.82);
}

.signal-strip-item span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.signal-strip-item strong {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy-900);
}

.section-head-wide {
  max-width: none;
  margin-bottom: 2.55rem;
}

.section-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
}

.section-head-grid .section-lead {
  max-width: 38rem;
}

.section-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.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;
}

.word-scroll-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.word-scroll-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  gap: 2.4rem;
  align-items: start;
}

.word-scroll-intro {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  max-width: 36rem;
  padding-top: 0.15rem;
}

.word-scroll-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: none;
  color: var(--navy-950);
}

.word-scroll-intro .section-link {
  width: fit-content;
  margin-top: 0.1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 53, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(13, 24, 35, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.word-scroll-intro .section-link:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 34, 53, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.product-word-scroll {
  --start: 28;
  --end: 94;
  --step: calc((var(--end) - var(--start)) / max(var(--count) - 1, 1));
  position: relative;
  max-width: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(16, 34, 53, 0.08);
}

.word-scroll-inner {
  display: block;
  padding-bottom: var(--scroll-tail, clamp(14rem, 34vh, 22rem));
}

.product-word-scroll ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-word-scroll li {
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  min-height: 10vh;
  padding: 0.15rem 0;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 12ch;
  color: rgba(16, 34, 53, 0.14);
  text-wrap: balance;
  border-bottom: 1px solid rgba(16, 34, 53, 0.08);
  opacity: 0.34;
  transform: translateX(0);
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.product-word-scroll li + li {
  margin-top: 0;
}

.product-word-scroll li:not(:last-of-type) {
  color: oklch(
    38% 0.03 calc(var(--start) + (var(--step) * var(--i)))
  );
}

.product-word-scroll li:last-of-type {
  background: linear-gradient(180deg, var(--dark), rgba(var(--orange-rgb), 0.62));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-word-scroll li.is-active {
  color: var(--navy-950);
  opacity: 1;
  transform: translateX(-0.06em) scale(1.01);
}

.product-word-scroll li.is-active:last-of-type {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--navy-950);
}

.product-word-scroll li:focus-visible {
  outline: none;
  opacity: 0.82;
  transform: translateX(-0.04em);
}

.word-scroll-marketplace {
  display: grid;
  gap: 0.95rem;
  width: min(100%, 32rem);
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 241, 0.96)),
    radial-gradient(circle at top right, rgba(var(--orange-rgb), 0.08), transparent 16rem);
  border: 1px solid rgba(16, 34, 53, 0.08);
  box-shadow: 0 20px 48px rgba(13, 24, 35, 0.08);
}

.word-scroll-marketplace-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.word-scroll-marketplace strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy-950);
}

.word-scroll-marketplace p {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.58;
}

.word-scroll-marketplace .button {
  width: fit-content;
}

@media (min-width: 901px) {
  .product-word-scroll li:hover {
    opacity: 0.72;
    transform: translateX(-0.04em);
  }
}

.product-lightbox {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.product-lightbox-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 22, 22, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}

.product-lightbox-placeholder {
  display: grid;
  align-content: end;
  height: 100%;
  padding: 1.4rem;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.24s ease, transform 0.24s ease;
  background:
    linear-gradient(180deg, rgba(16, 34, 53, 0.02), rgba(16, 34, 53, 0.08)),
    repeating-linear-gradient(
      -45deg,
      rgba(16, 34, 53, 0.04) 0,
      rgba(16, 34, 53, 0.04) 16px,
      rgba(255, 255, 255, 0.12) 16px,
      rgba(255, 255, 255, 0.12) 32px
    );
}

.product-lightbox-placeholder.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.product-lightbox-kicker {
  margin-bottom: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.product-lightbox-placeholder strong {
  display: block;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--navy-950);
}

.product-lightbox-placeholder p {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  color: var(--steel-700);
}

.product-mobile-slider {
  display: none;
}

.product-mobile-slider-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.product-mobile-slider-track {
  display: flex;
  transition: transform 0.38s ease;
  will-change: transform;
}

.product-mobile-slide {
  min-width: 100%;
}

.product-mobile-slide-surface {
  min-height: clamp(20rem, 68vw, 27rem);
  border-radius: 1.7rem;
  box-shadow:
    0 24px 52px rgba(9, 19, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-mobile-slider-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.product-mobile-slider-progress {
  position: relative;
  height: 0.3rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 34, 53, 0.1);
}

.product-mobile-slider-progress span {
  display: block;
  width: 7.1429%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-strong));
  transition: width 0.32s ease;
}

.product-mobile-slider-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-700);
}


.machine-pane-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.machine-pane-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.machine-pane-copy p {
  margin: 0;
  color: var(--steel-700);
}

.machine-pane-actions {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.machine-pane-actions p {
  font-size: 0.95rem;
}

.service-section-v2 {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 18, 29, 1), rgba(14, 29, 44, 0.98)),
    linear-gradient(130deg, rgba(var(--orange-rgb), 0.05), transparent 34%);
}

.service-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 5rem 5rem;
  opacity: 0.22;
  pointer-events: none;
}

.service-v2-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.service-v2-copy {
  display: grid;
  gap: 1.25rem;
}

.service-v2-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.service-v2-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.34);
}

.service-v2-copy h2,
.career-v2-copy h2 {
  color: #fff;
}

.service-v2-copy .section-lead {
  color: rgba(255, 255, 255, 0.84);
}

.service-summary-panel {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 241, 235, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 44px rgba(5, 14, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-summary-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-strong);
}

.service-summary-panel h2 {
  margin: 0;
  max-width: 12ch;
}

.service-summary-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--steel-700);
}

.service-checklist {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  align-items: start;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(16, 34, 53, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy-900);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.32;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-checklist li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--orange-strong));
  box-shadow: 0 0 0 0.32rem rgba(var(--orange-rgb), 0.12);
}

.service-grid-dark article {
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-card-trigger {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  min-height: 6.4rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.98);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.service-card-trigger span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.15;
}

.service-card-trigger small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-trigger:hover,
.service-card-trigger:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

.service-card-trigger:focus-visible {
  outline: 3px solid rgba(var(--orange-rgb), 0.28);
  outline-offset: 2px;
}

.service-v2-stage {
  display: grid;
  gap: 1rem;
}

.service-v2-media {
  position: relative;
  margin: 0;
  min-height: 34rem;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.service-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.service-v2-note {
  display: grid;
  gap: 0.8rem;
  max-width: 28rem;
  padding: 1.25rem 1.35rem;
  background: rgba(245, 241, 232, 0.96);
  border-radius: 1.5rem;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.service-v2-note span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.service-v2-note strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.05;
  color: var(--navy-900);
}

.service-v2-note p {
  margin: 0;
  color: var(--steel-700);
}

.oldtimer-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.99), rgba(37, 37, 37, 0.96));
  box-shadow: 0 30px 72px rgba(22, 22, 22, 0.2);
}

.oldtimer-v2-copy h2,
.oldtimer-v2-copy .section-lead,
.oldtimer-v2-copy .eyebrow {
  color: #fff;
}

.oldtimer-v2-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
}

.oldtimer-v2-copy .eyebrow,
.oldtimer-v2-copy h2,
.oldtimer-v2-copy .section-lead {
  margin: 0;
}

.oldtimer-v2-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.38);
}

.oldtimer-v2-copy .section-lead {
  color: rgba(255, 255, 255, 0.76);
  max-width: 42rem;
}

.oldtimer-v2-copy .button {
  margin-top: 0.35rem;
}

.oldtimer-v2-media {
  position: relative;
  margin: 0;
  min-height: 30rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

.oldtimer-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-chips-strong span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.3rem;
}

.reason-card {
  position: relative;
  min-height: 14.2rem;
  perspective: 1400px;
  border-radius: 1.4rem;
  cursor: pointer;
  outline: none;
}

.reason-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--orange-rgb), 0.18);
}

.reason-card-inner {
  position: relative;
  min-height: inherit;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.reason-card:hover .reason-card-inner,
.reason-card:focus-visible .reason-card-inner,
.reason-card.is-flipped .reason-card-inner {
  transform: rotateY(180deg);
}

.reason-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.4rem;
  min-height: 100%;
  border-radius: 1.4rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 24px 58px rgba(13, 24, 35, 0.08);
}

.reason-card-front {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.94)),
    radial-gradient(circle at top right, rgba(var(--orange-rgb), 0.05), transparent 18rem);
  border: 1px solid rgba(16, 34, 53, 0.08);
}

.reason-card-back {
  position: relative;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  text-align: left;
  background:
    linear-gradient(165deg, rgba(12, 24, 37, 0.98), rgba(27, 55, 82, 0.96) 62%, rgba(40, 77, 108, 0.94)),
    radial-gradient(circle at top right, rgba(var(--orange-rgb), 0.14), transparent 13rem),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 12rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateY(180deg);
  overflow: hidden;
}

.reason-card-back::before {
  content: "Ehrliche Einordnung";
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reason-card-back::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.15rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.reason-card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: rgba(var(--orange-rgb), 0.08);
  color: var(--orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.reason-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.08;
  color: var(--navy-900);
}

.reason-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
  max-width: 24ch;
  font-size: 1rem;
}

.reason-card-back p {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 22ch;
  padding-top: 0.6rem;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.reason-card-back p::before {
  content: "“";
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(var(--orange-rgb), 0.84);
  font-size: 2.5rem;
  line-height: 0.7;
}

.why-section .shell {
  display: grid;
}

.why-head .section-head-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.4rem;
  align-items: start;
}

.why-head h1,
.why-head h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.why-intro {
  display: grid;
  gap: 1rem;
  align-content: center;
  max-width: 38rem;
  padding-top: 0.45rem;
}

.why-intro .section-lead {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.why-intro-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid rgba(var(--orange-rgb), 0.76);
  background: rgba(16, 34, 53, 0.04);
  border-radius: 0 1rem 1rem 0;
  color: var(--navy-900);
  font-weight: 700;
}

.team-section {
  display: grid;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.team-section-head {
  display: grid;
  gap: 0.9rem;
}

.team-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.team-section-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--navy-950);
  max-width: 12ch;
}

.team-section-intro p {
  margin: 0;
  max-width: 42rem;
  color: var(--steel-700);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.team-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(16, 34, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.92)),
    radial-gradient(circle at top right, rgba(var(--orange-rgb), 0.045), transparent 18rem);
  box-shadow: 0 24px 58px rgba(13, 24, 35, 0.08);
}

.team-grid-people .team-card {
  align-items: start;
}

.team-card-profile {
  grid-template-columns: 4.9rem minmax(0, 1fr);
  gap: 1rem;
  align-content: start;
}

.team-card-body {
  display: grid;
  gap: 0.85rem;
}

.team-card-profile .team-card-body {
  gap: 0.65rem;
}

.team-card-profile-flag .team-card-body {
  position: relative;
}

.team-card-portrait {
  position: relative;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 1.45rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.44), transparent 28%),
    linear-gradient(145deg, rgba(231, 121, 31, 0.94), rgba(122, 69, 38, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.team-card-profile .team-card-portrait {
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 1.2rem;
}

.team-card-portrait::after {
  content: "";
  position: absolute;
  inset: auto -0.4rem -1.2rem;
  height: 3.8rem;
  border-radius: 50%;
  background: rgba(9, 19, 30, 0.22);
}

.team-card-portrait span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.team-card-portrait-dog {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(145deg, rgba(37, 37, 37, 0.92), rgba(22, 22, 22, 0.98));
}

.team-card-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.team-card-flag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(var(--orange-rgb), 0.1);
  color: var(--orange-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.team-card-profile h3 {
  font-size: 1.35rem;
}

.team-card-role,
.team-card-copy {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.55;
}

.team-card-role {
  font-weight: 700;
  color: var(--navy-900);
}

.team-card-focus {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(16, 34, 53, 0.05);
  border-left: 4px solid rgba(var(--orange-rgb), 0.76);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.5;
}

.team-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.team-card-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 53, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-900);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.team-card-links a:hover,
.team-card-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(231, 121, 31, 0.42);
  background: rgba(231, 121, 31, 0.08);
  outline: none;
}

.team-card-dog {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 232, 0.94));
}

.team-card-profile .team-card-links {
  padding-top: 0.15rem;
}

.team-card-lead .team-card-links {
  justify-content: flex-start;
}

.team-card-lead .team-card-links a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.team-card-lead .team-card-links a:hover,
.team-card-lead .team-card-links a:focus-visible {
  background: rgba(231, 121, 31, 0.16);
  border-color: rgba(231, 121, 31, 0.42);
}

.career-section-v2 {
  background:
    linear-gradient(180deg, rgba(184, 180, 65, 0.08), rgba(var(--orange-rgb), 0.065)),
    linear-gradient(120deg, rgba(16, 34, 53, 0.02), transparent 30%);
}

.career-v2-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.career-v2-media {
  min-height: 34rem;
  border-radius: 1.8rem;
  overflow: hidden;
}

.career-v2-copy {
  display: grid;
  gap: 1.15rem;
  padding: 2rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(16, 34, 53, 0.98), rgba(29, 59, 86, 0.96)),
    linear-gradient(120deg, rgba(var(--orange-rgb), 0.1), transparent 36%);
  box-shadow: 0 30px 80px rgba(13, 24, 35, 0.18);
}

.career-v2-copy .eyebrow,
.career-v2-copy .section-lead,
.career-v2-copy .career-prompt {
  color: #fff;
}

.career-v2-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.38);
}

.career-v2-copy .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.career-list {
  display: grid;
  gap: 0.8rem;
}

.career-card-trigger {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.career-card-trigger span {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.18;
}

.career-card-trigger small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-card-trigger:hover,
.career-card-trigger:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

.career-card-trigger:focus-visible {
  outline: 3px solid rgba(var(--orange-rgb), 0.28);
  outline-offset: 2px;
}

.career-prompt {
  margin: 0.2rem 0 0;
  font-weight: 800;
}

.contact-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.6rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 22, 22, 0.1);
  box-shadow: var(--shadow-soft);
}

.contact-v2-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-v2-note {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1.3rem;
  background: rgba(16, 34, 53, 0.05);
  border: 1px solid rgba(16, 34, 53, 0.08);
}

.contact-v2-note strong {
  color: var(--navy-900);
}

.contact-v2-note p {
  margin: 0;
  color: var(--steel-700);
}

.contact-form-strong {
  padding: 0.2rem;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer-contact-card,
.footer-map-card {
  display: grid;
  gap: 1rem;
}

.footer-contact-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.footer-contact-copy {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  max-width: 34rem;
}

.footer-contact-copy .section-lead {
  margin: 0;
}

.footer-contact-panel {
  display: grid;
  gap: 1rem;
}

.footer-contact-actions {
  margin-top: 0.2rem;
}

.location-card-strong,
.location-feature-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.location-feature-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 22rem;
  padding: 1.6rem;
  border: 1px solid rgba(16, 34, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 244, 237, 0.94)),
    radial-gradient(circle at top right, rgba(var(--orange-rgb), 0.1), transparent 16rem),
    linear-gradient(135deg, rgba(16, 34, 53, 0.06), rgba(255, 255, 255, 0) 48%);
}

.map-placeholder-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.location-feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy-950);
}

.location-feature-card p {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.58;
  max-width: 32rem;
}

.map-placeholder-points {
  display: grid;
  gap: 0.55rem;
}

.map-placeholder-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy-900);
  font-weight: 650;
}

.map-placeholder-points span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 0.28rem rgba(var(--orange-rgb), 0.12);
}

.site-footer-v2 {
  padding-top: 1rem;
}

.positioning-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: stretch;
  padding: 2.2rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(9, 19, 30, 0.98), rgba(18, 38, 58, 0.95)),
    linear-gradient(120deg, rgba(231, 121, 31, 0.1), transparent 34%);
  box-shadow: 0 28px 70px rgba(9, 19, 30, 0.2);
}

.positioning-band-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.positioning-band-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.1vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 9ch;
}

.positioning-band-copy .eyebrow,
.positioning-band-copy h2,
.positioning-band-copy p {
  color: #fff;
}

.positioning-band-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.38);
}

.positioning-band-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.5;
  max-width: 33rem;
}

.positioning-band-note {
  padding-top: 0.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.positioning-band-slider {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  min-width: 0;
  position: relative;
}

.positioning-slider-viewport {
  overflow: hidden;
  border-radius: 1.4rem;
  touch-action: pan-y;
  cursor: grab;
}

.positioning-slider-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.positioning-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(15rem, 0.96fr) minmax(0, 1.04fr);
  gap: 1rem;
  align-items: stretch;
}

.positioning-slide-media {
  margin: 0;
  min-height: 20rem;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.positioning-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.positioning-slide-copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.25rem 1.3rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.positioning-slide-copy span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.positioning-slide-copy strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 0.98;
}

.positioning-slide-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.positioning-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.15rem;
}

.positioning-slider-progress-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.positioning-slider-control-side {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.positioning-slider-progress {
  width: 100%;
  height: 0.18rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.positioning-slider-progress-bar {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0%);
}

.positioning-slider-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.positioning-slider-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.positioning-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.positioning-slider-arrow span {
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-0.06em);
}

.positioning-slider-arrow:hover,
.positioning-slider-arrow:focus-visible {
  outline: none;
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.02);
}

.service-feature-shell {
  padding: 1.1rem 0 0;
}

.service-feature-band {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.99), rgba(37, 37, 37, 0.96));
  box-shadow: 0 30px 72px rgba(22, 22, 22, 0.2);
}

.marketplace-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 16, 24, 0.68);
  backdrop-filter: blur(10px);
}

.marketplace-dialog[hidden] {
  display: none !important;
}

.service-detail-dialog {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 16, 24, 0.64);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-detail-dialog[hidden] {
  display: none !important;
}

.service-detail-dialog.is-open {
  opacity: 1;
}

.career-detail-dialog {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 16, 24, 0.64);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.career-detail-dialog[hidden] {
  display: none !important;
}

.career-detail-dialog.is-open {
  opacity: 1;
}

.marketplace-dialog-panel {
  width: min(100%, 34rem);
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(247, 242, 233, 0.98);
  border: 1px solid rgba(16, 34, 53, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.service-detail-panel {
  width: min(100%, 38rem);
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(247, 242, 233, 0.98), rgba(242, 237, 227, 0.98)),
    linear-gradient(120deg, rgba(var(--orange-rgb), 0.05), transparent 34%);
  border: 1px solid rgba(16, 34, 53, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.service-detail-dialog.is-open .service-detail-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.career-detail-dialog.is-open .service-detail-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.marketplace-dialog-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--navy-950);
}

.marketplace-dialog-panel p {
  margin: 0;
  color: var(--steel-700);
}

.service-detail-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 2.7rem);
  line-height: 0.98;
  color: var(--navy-950);
}

.service-detail-panel > p {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.6;
}

.service-detail-focus {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(16, 34, 53, 0.05);
  border-left: 4px solid rgba(var(--orange-rgb), 0.8);
}

.service-detail-focus strong {
  color: var(--navy-900);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-focus p {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.55;
}

.marketplace-dialog-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .section-head-grid,
  .word-scroll-section,
  .service-v2-layout,
  .oldtimer-v2,
  .career-v2-layout,
  .footer-contact,
  .positioning-band {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .positioning-slide {
    grid-template-columns: 1fr;
  }

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

  .why-head h2,
  .why-intro {
    max-width: none;
  }

  .team-section-intro {
    grid-template-columns: 1fr;
  }

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

  .team-card-profile {
    grid-template-columns: 4.6rem minmax(0, 1fr);
  }

}

@media (max-width: 900px) {
  .contact-v2,
  .oldtimer-v2,
  .career-v2-layout,
  .footer-contact,
  .service-v2-layout {
    grid-template-columns: 1fr;
  }

  .service-v2-media,
  .oldtimer-v2-media,
  .career-v2-media {
    min-height: 22rem;
  }

  .hero-full {
    min-height: 33rem;
  }

  .hero-full-inner {
    align-items: end;
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }

  .hero-full-copy {
    width: 100%;
  }

  .hero-full-copy h1,
  .hero-full-copy h2 {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }

  .hero-full-controls {
    bottom: 1rem;
  }

  .hero-full-control-row {
    width: 100%;
  }

  .hero-side-arrow {
    width: 3.35rem;
    height: 3.35rem;
  }

  .hero-side-arrow-left {
    left: 1rem;
  }

  .hero-side-arrow-right {
    right: 1rem;
  }

  .why-head .section-head-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .why-head {
    gap: 1.25rem;
  }

  .why-head h1,
  .why-head h2 {
    font-size: clamp(2.25rem, 8vw, 3.4rem);
    line-height: 0.98;
    max-width: 13ch;
  }

  .why-intro {
    padding-top: 0;
  }

  .positioning-band {
    gap: 1.4rem;
    padding: 1.35rem;
  }

  .positioning-band-copy h2 {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
    max-width: 12ch;
  }

  .positioning-band-copy p {
    font-size: 1rem;
    max-width: none;
  }

  .positioning-slide-media {
    min-height: 15rem;
  }

  .positioning-slide-copy strong {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .positioning-slider-controls {
    justify-content: space-between;
  }

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

  .word-scroll-intro h2 {
    font-size: clamp(1.95rem, 6.2vw, 3rem);
  }

  .product-mobile-slider {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 34, 53, 0.08);
  }

  .word-scroll-body,
  .product-word-scroll,
  .product-lightbox {
    display: none;
  }

  .word-scroll-marketplace {
    display: none;
  }

  .service-summary-panel h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    height: 2.65rem;
    max-width: 2.65rem;
  }

  .service-summary-panel {
    padding: 1rem;
  }

  .service-checklist li {
    grid-template-columns: 0.95rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.9rem;
    font-size: 0.98rem;
  }

  .service-checklist li::before {
    width: 0.62rem;
    height: 0.62rem;
  }

  .brand-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .hero-full {
    min-height: 37rem;
  }

  .hero-full-inner {
    align-items: start;
    padding-top: 6.4rem;
    padding-bottom: 10.4rem;
  }

  .hero-full-copy h1,
  .hero-full-copy h2 {
    font-size: clamp(2rem, 8.8vw, 2.8rem);
    line-height: 1.04;
  }

  .hero-full-lead {
    max-width: 22rem;
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .hero-full-copy {
    gap: 1.05rem;
    max-width: 20.5rem;
    padding-inline: 0.85rem;
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .hero-full-actions {
    margin-top: 0.35rem;
  }

  .hero-full-actions .button {
    width: 100%;
    min-height: 3.05rem;
  }

  .hero-full-actions .button-secondary {
    display: none;
  }

  .service-v2-media,
  .oldtimer-v2-media,
  .career-v2-media,
.map-placeholder-strong {
  min-height: 18rem;
}

  .oldtimer-v2,
  .product-word-scroll,
  .career-v2-copy,
  .contact-v2,
  .positioning-band,
  .marketplace-dialog-panel {
    padding: 1rem;
  }

  .hero-full-controls {
    width: min(100%, calc(100vw - 2.2rem));
    bottom: 1.65rem;
  }

  .hero-full-progress {
    width: calc(100% - 1.7rem);
    margin: 0 auto;
    opacity: 0.92;
  }

  .hero-full-progress-wrap {
    gap: 0;
  }

  .hero-full-control-row {
    display: block;
    width: 100%;
  }

  .hero-full-meta,
  .hero-side-arrow {
    display: none;
  }

  .positioning-band-copy {
    gap: 0.9rem;
  }

  .positioning-band-copy h2 {
    max-width: 10ch;
  }

  .positioning-slide-copy {
    padding: 1.05rem;
  }

  .positioning-slider-nav {
    display: none;
  }

  .service-feature-band {
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .why-intro .section-lead {
    font-size: 1.05rem;
  }

  .why-intro-note {
    padding: 0.85rem 0.95rem;
  }

  .reason-card {
    min-height: auto;
  }
  .signal-strip,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .team-section {
    margin-top: 1.9rem;
  }

  .team-section-intro h2 {
    max-width: none;
    font-size: clamp(1.85rem, 8.2vw, 2.5rem);
  }

  .team-card {
    padding: 1.1rem;
  }

  .team-card-portrait {
    width: 5rem;
    height: 5rem;
  }

  .team-card-profile {
    grid-template-columns: 4.1rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .team-card-profile .team-card-portrait {
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 1rem;
  }

  .team-card-profile .team-card-body {
    gap: 0.55rem;
  }

  .team-card-profile h3 {
    font-size: 1.15rem;
    line-height: 1.02;
  }

  .team-card-profile .team-card-role,
  .team-card-profile .team-card-copy,
  .team-card-profile .team-card-focus {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .team-card-profile .team-card-focus {
    padding: 0.8rem 0.9rem;
  }

  .team-card-links {
    display: flex;
    flex-wrap: wrap;
  }

  .positioning-band-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: none;
  }

  .hero-fact,
  .signal-strip-item,
  .reason-card {
    min-height: auto;
  }

  .reason-card {
    min-height: 12.6rem;
  }

  .reason-card-face {
    padding: 1.15rem;
  }

  .reason-card h3 {
    font-size: 1.18rem;
  }

  .word-scroll-intro {
    gap: 0.7rem;
  }

  .word-scroll-intro h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.45rem);
  }

  .product-mobile-slider {
    gap: 0.75rem;
  }

  .product-mobile-slide-surface {
    min-height: 18.5rem;
    border-radius: 1.5rem;
  }

  .word-scroll-intro .section-link {
    width: 100%;
    justify-content: center;
  }

  .marketplace-dialog-actions {
    display: grid;
  }
}
