@font-face {
  font-family: "Sora";
  src: url(../fonts/Sora-VF.woff2) format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VF.woff2) format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #14232E;
  --navy: #1D3E53;
  --navy-deep: #122733;
  --navy-soft: #2C5470;
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --on-dark: #FFFFFF;
  --line: #DEDCD2;
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #51687A;
  --muted-dark: #B9C6CE;
  --flame: #E0662E;
  --flame-dark: #B84E1F;
  --flame-darker: #A2440F;
  --flame-soft: #FBE4D8;
  --flame-tint: #F6B896;
  --font-display:
    "Sora",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --text-sm: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --text-base: clamp(1rem, 0.96rem + 0.22vw, 1.125rem);
  --text-md: clamp(1.125rem, 1.06rem + 0.33vw, 1.375rem);
  --text-lg: clamp(1.35rem, 1.24rem + 0.54vw, 1.75rem);
  --text-xl: clamp(1.6rem, 1.43rem + 0.87vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.74rem + 1.3vw, 2.75rem);
  --text-hero: clamp(2.4rem, 1.85rem + 3vw, 4.2rem);
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: clamp(2rem, 1.8rem + 0.9vw, 2.5rem);
  --space-xl: clamp(3rem, 2.7rem + 1.3vw, 3.75rem);
  --space-2xl: clamp(4rem, 3.6rem + 1.8vw, 5rem);
  --space-3xl: clamp(5.5rem, 4.8rem + 2.6vw, 7.5rem);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 35, 46, 0.08), 0 1px 3px rgba(20, 35, 46, 0.08);
  --shadow-md: 0 10px 26px rgba(20, 35, 46, 0.12), 0 2px 6px rgba(20, 35, 46, 0.08);
  --shadow-lg: 0 30px 60px rgba(20, 35, 46, 0.2), 0 10px 22px rgba(20, 35, 46, 0.1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 220ms;
  --container: 1180px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-s);
  font-family: var(--font-display);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
}
h1 {
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--text-2xl);
}
h3 {
  font-size: var(--text-md);
}
h4 {
  font-size: var(--text-base);
}
p {
  margin: 0 0 var(--space-s);
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--navy);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--flame-dark);
}
:focus-visible {
  outline: 3px solid var(--flame-dark);
  outline-offset: 2px;
  border-radius: 2px;
}
::selection {
  background: var(--flame-soft);
  color: var(--navy-deep);
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
section {
  padding-block: var(--space-3xl);
}
section.tight {
  padding-block: var(--space-xl);
}
.lead {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 62ch;
}
.flame {
  color: var(--flame);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-s);
  z-index: 800;
  padding: 0.6rem 1rem;
  background: var(--flame-dark);
  color: var(--on-dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  top: var(--space-s);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--flame-dark);
  border-left: 3px solid var(--flame);
  padding-left: 0.7rem;
  margin-bottom: var(--space-s);
}
.shk-hero .eyebrow,
.shk-service-bar .eyebrow,
.page-hero .eyebrow {
  color: var(--flame-tint);
}
.spec {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
}
.btn-flame {
  background: var(--flame-dark);
  color: var(--on-dark);
  border-color: var(--flame-dark);
  box-shadow: var(--shadow-sm);
}
.btn-flame:hover,
.btn-flame:focus-visible {
  background: var(--flame-darker);
  border-color: var(--flame-darker);
  color: var(--on-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-navy {
  background: var(--navy);
  color: var(--on-dark);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover,
.btn-navy:focus-visible {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--on-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--flame-dark);
  border-color: var(--flame-dark);
}
.btn-ghost-light {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--line-dark);
}
.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  color: var(--on-dark);
  border-color: var(--flame);
  background: rgba(255, 255, 255, 0.06);
}
.btn-sm {
  padding: 0.55rem 1.15rem;
}
.shk-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.shk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  min-height: 68px;
  flex-wrap: wrap;
}
.shk-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--on-dark);
}
.shk-brand:hover {
  color: var(--flame-tint);
}
.shk-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.shk-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.shk-brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.shk-nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--on-dark);
  padding: 0.6rem 0.7rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.shk-nav-toggle:hover {
  border-color: var(--flame);
  color: var(--flame);
}
.shk-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.shk-nav-list a:not(.btn) {
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--muted-dark);
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
}
.shk-nav-list a:not(.btn):hover,
.shk-nav-list a:not(.btn):focus-visible,
.shk-nav-list a:not(.btn)[aria-current=page] {
  color: var(--on-dark);
  border-bottom-color: var(--flame);
}
@media (max-width: 860px) {
  .shk-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .shk-nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-block: var(--space-s);
    gap: 0.25rem;
  }
  .shk-nav-list.open {
    display: flex;
  }
  .shk-nav-list a:not(.btn) {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding-block: 0.85rem;
  }
  .shk-nav-list .btn {
    min-height: 44px;
  }
}
.shk-hero {
  position: relative;
  padding-block: var(--space-3xl) var(--space-2xl);
  background: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
}
.shk-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      160deg,
      var(--navy-deep) 0%,
      var(--navy) 62%,
      var(--navy-soft) 100%);
}
@media (min-width: 900px) {
  .shk-hero-bg {
    background:
      linear-gradient(
        100deg,
        var(--navy-deep) 0%,
        var(--navy-deep) 63%,
        rgba(18, 39, 51, 0.88) 71%,
        rgba(29, 62, 83, 0.58) 84%,
        rgba(44, 84, 112, 0.28) 100%);
  }
}
@media (max-width: 899px) {
  .shk-hero-glow,
  .shk-hero-glow-warm {
    display: none;
  }
}
.shk-hero-glow {
  position: absolute;
  inset: -10% -10% -10% 45%;
  border-radius: 50%;
  filter: blur(60px);
  background:
    radial-gradient(
      circle at 65% 40%,
      rgba(70, 130, 160, 0.55),
      rgba(70, 130, 160, 0) 65%);
  opacity: 1;
}
.shk-hero-glow-warm {
  position: absolute;
  inset: -10% -10% -10% 45%;
  border-radius: 50%;
  filter: blur(60px);
  background:
    radial-gradient(
      circle at 65% 40%,
      rgba(224, 102, 46, 0.55),
      rgba(224, 102, 46, 0) 65%);
  opacity: 0;
  animation: shk-thermo-warm 4.5s var(--ease-out) 0.4s 1 forwards;
}
@keyframes shk-thermo-warm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.shk-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .shk-hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}
.shk-hero-text h1 {
  color: var(--on-dark);
  margin-bottom: var(--space-m);
}
.hero-underline {
  display: block;
  width: min(180px, 45%);
  height: 4px;
  margin-block: var(--space-m);
  background: var(--flame);
  border-radius: var(--radius-pill);
}
.shk-hero-text .lead {
  font-size: var(--text-md);
  color: var(--muted-dark);
  max-width: 52ch;
  margin-bottom: var(--space-l);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}
.hero-meta {
  margin-top: var(--space-l);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s) var(--space-l);
}
.hero-meta .spec {
  color: var(--muted-dark);
}
.shk-hero-dial-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
}
.shk-dial-face {
  width: min(220px, 60vw);
  height: min(220px, 60vw);
}
.shk-dial-group {
  transform-origin: 100px 100px;
  animation: shk-dial-turn 4.5s var(--ease-out) 0.4s 1 forwards;
}
@keyframes shk-dial-turn {
  0% {
    transform: rotate(-58deg);
  }
  100% {
    transform: rotate(46deg);
  }
}
.shk-dial-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}
.shk-dial-body {
  fill: var(--navy-soft);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1.5;
}
.shk-dial-pointer {
  stroke: var(--flame);
  stroke-width: 6;
  stroke-linecap: round;
}
.shk-dial-hub {
  fill: var(--navy-deep);
  stroke: var(--flame);
  stroke-width: 2;
}
.shk-dial-labels {
  display: flex;
  justify-content: space-between;
  width: min(220px, 60vw);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.shk-dial-labels span:last-child {
  color: var(--flame-tint);
}
.shk-service-bar {
  background: var(--navy-deep);
}
.shk-service-bar-inner {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 720px) {
  .shk-service-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.shk-service-seg {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-m) var(--space-l);
  text-decoration: none;
  background: var(--navy-deep);
  transition: background-color var(--dur) var(--ease-out);
}
.shk-service-seg:hover,
.shk-service-seg:focus-visible {
  background: var(--navy);
}
.shk-service-tag {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.shk-service-seg-notdienst .shk-service-tag {
  background: var(--flame-dark);
  color: var(--on-dark);
}
.shk-service-seg-wartung .shk-service-tag {
  background: var(--navy-soft);
  color: var(--on-dark);
}
.shk-service-text {
  color: var(--on-dark);
  font-size: var(--text-sm);
  font-weight: 500;
}
.shk-service-text strong {
  font-variant-numeric: tabular-nums;
}
.shk-notdienst-band {
  background: var(--flame-dark);
  padding-block: var(--space-2xl);
}
.shk-notdienst-band .eyebrow {
  color: var(--on-dark);
  border-left-color: var(--on-dark);
}
.shk-notdienst-band h2 {
  color: var(--on-dark);
}
.shk-notdienst-band .lead {
  color: var(--on-dark);
}
.shk-notdienst-phone {
  display: inline-block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--on-dark);
  text-decoration: none;
  border-bottom: 4px solid var(--on-dark);
  margin-block: var(--space-s) var(--space-m);
  font-variant-numeric: tabular-nums;
}
.grid {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 680px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-l) var(--space-m) var(--space-m);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--line);
  transition: background-color var(--dur) var(--ease-out);
}
.card:hover,
.card:focus-within {
  border-color: var(--navy-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card:hover::before,
.card:focus-within::before {
  background: var(--flame);
}
.card h3 {
  margin-top: var(--space-xs);
}
.card-num {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--flame-dark);
}
.card p {
  color: var(--muted);
  font-size: var(--text-base);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.card-link::after {
  content: "→";
  transition: transform var(--dur) var(--ease-out);
}
.card-link:hover::after {
  transform: translateX(4px);
}
.card ul {
  margin: 0 0 var(--space-s);
  padding-left: 1.1rem;
  color: var(--muted);
}
.card ul li {
  margin-bottom: 0.35rem;
}
.card ul li::marker {
  color: var(--flame);
}
.stats {
  display: grid;
  gap: var(--space-m);
  border-block: 1px solid var(--line);
  padding-block: var(--space-l);
}
@media (min-width: 680px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 0.4rem;
  font-size: var(--text-sm);
  color: var(--muted);
}
.shk-konfigurator {
  background: var(--surface);
}
.shk-konfigurator-inner {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 900px) {
  .shk-konfigurator-inner {
    grid-template-columns: 5fr 7fr;
  }
}
.shk-konfig-steps {
  margin: var(--space-m) 0 var(--space-l);
  padding-left: 1.1rem;
  color: var(--muted);
}
.shk-konfig-steps li {
  margin-bottom: 0.5rem;
}
.shk-konfig-steps li::marker {
  color: var(--flame);
}
.shk-konfig-preview {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-l);
}
.shk-konfig-note {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--space-m);
}
.shk-vn-caption {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--space-m);
}
.shk-vorher-nachher {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}
@media (min-width: 700px) {
  .shk-vorher-nachher {
    grid-template-columns: 1fr 1fr;
  }
}
.shk-vn-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.shk-vn-item img {
  display: block;
  width: 100%;
  height: auto;
}
.shk-vn-tag {
  position: absolute;
  top: var(--space-s);
  left: var(--space-s);
  background: var(--navy-deep);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.shk-vn-tag-after {
  background: var(--flame-dark);
}
.shk-swatch-group {
  margin-bottom: var(--space-m);
}
.shk-swatch-group:last-child {
  margin-bottom: 0;
}
.shk-swatch-group-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.shk-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.shk-swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
}
.shk-swatch::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--swatch, var(--line));
  border: 1px solid rgba(20, 35, 46, 0.15);
}
.shk-swatch-active {
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 700;
}
.shk-swatch-active::after {
  content: "✓";
  color: var(--flame-dark);
  font-weight: 700;
}
.team-card {
  text-align: left;
}
.avatar {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-s);
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.avatar-photo {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-s);
  border-radius: 50%;
  border: 2px solid var(--navy);
  object-fit: cover;
}
.team-role {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--flame-dark);
  margin-bottom: var(--space-xs);
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
  counter-reset: step;
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}
.timeline li {
  counter-increment: step;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-l) var(--space-m) var(--space-m);
}
.timeline li::before {
  content: "0" counter(step);
  position: absolute;
  top: calc(-1 * var(--space-s));
  left: var(--space-m);
  padding: 0.15rem 0.6rem;
  background: var(--navy);
  color: var(--on-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}
.timeline h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}
.timeline p {
  color: var(--muted);
  font-size: var(--text-sm);
  margin: 0;
}
.faq {
  max-width: 760px;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: var(--space-xs);
}
.faq details[open] {
  border-color: var(--navy-soft);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-s) var(--space-m);
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--flame);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-out);
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details > div {
  padding: 0 var(--space-m) var(--space-s);
  color: var(--muted);
}
.cta-banner {
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-l);
  text-align: center;
  position: relative;
  background: var(--navy);
  color: var(--on-dark);
}
.cta-banner h2 {
  color: var(--on-dark);
}
.cta-banner .lead {
  color: var(--muted-dark);
  margin-inline: auto;
}
.cta-banner .hero-actions {
  justify-content: center;
  margin-top: var(--space-m);
}
.page-hero {
  background: var(--navy);
  padding-block: var(--space-2xl);
}
.page-hero h1 {
  color: var(--on-dark);
}
.page-hero .lead {
  margin-top: var(--space-s);
  color: var(--muted-dark);
}
.breadcrumb {
  font-size: var(--text-sm);
  margin-bottom: var(--space-m);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumb li + li::before {
  content: "/";
  color: var(--muted-dark);
  margin-right: 0.5rem;
}
.breadcrumb a {
  color: var(--muted-dark);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--flame-tint);
}
.breadcrumb [aria-current=page] {
  color: var(--on-dark);
}
.prose {
  max-width: 72ch;
}
.prose h2 {
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
}
.prose h3 {
  font-size: var(--text-base);
  margin-top: var(--space-l);
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose ul {
  padding-left: 1.2rem;
}
.form-grid {
  display: grid;
  gap: var(--space-s);
  max-width: 640px;
}
@media (min-width: 680px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
}
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--flame-dark);
  outline-offset: 1px;
  border-color: var(--flame-dark);
}
.form-note {
  font-size: var(--text-sm);
  color: var(--muted);
}
.form-success {
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: var(--space-l);
  max-width: 640px;
}
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}
.info-block {
  border-left: 3px solid var(--flame);
  padding-left: var(--space-s);
  margin-bottom: var(--space-l);
}
.info-block h3 {
  font-size: var(--text-base);
  margin-bottom: 0.3rem;
}
.info-block p {
  color: var(--muted);
  margin: 0;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}
.spec-table caption {
  text-align: left;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--flame-dark);
  padding-bottom: var(--space-xs);
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.spec-table th {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
}
.spec-table td:last-child {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}
.site-footer {
  background: var(--navy-deep);
  padding-block: var(--space-2xl) var(--space-l);
  margin-top: var(--space-xl);
}
.footer-grid {
  display: grid;
  gap: var(--space-l);
  margin-bottom: var(--space-l);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.site-footer h3 {
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  color: var(--flame-tint);
}
.site-footer p,
.site-footer li {
  color: var(--muted-dark);
  font-size: var(--text-sm);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.4rem;
}
.site-footer a {
  color: var(--muted-dark);
}
.site-footer a:hover {
  color: var(--flame-tint);
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-s);
  font-size: var(--text-sm);
  color: var(--muted-dark);
}
.footer-legal p {
  margin-bottom: 0.4rem;
}
.footer-legal a {
  color: var(--muted-dark);
}
.footer-legal a:hover {
  color: var(--flame-tint);
}
.error-page {
  min-height: 55vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding-block: var(--space-3xl);
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--flame);
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .shk-hero-glow-warm {
    animation: none;
    opacity: 1;
  }
  .shk-dial-group {
    animation: none;
    transform: rotate(46deg);
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
