@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-VF.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
:root {
  --bg:          #F6F5FB;
  --bg-alt:      #EFECF8;
  --surface:     #FFFFFF;
  --ink:         #26223A;
  --ink-soft:    #4E4968;
  --lav:         #6C5CB8;
  --lav-deep:    #4F4199;
  --lav-ghost:   #E7E2F6;
  --mint:        #2FA487;
  --mint-deep:   #166B58;
  --mint-ghost:  #DCF1EA;
  --line:        #DFD9EF;
  --line-strong: #C7BFE3;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text-sm:   clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-md:   clamp(1.125rem, 1.06rem + 0.33vw, 1.3125rem);
  --text-lg:   clamp(1.35rem, 1.24rem + 0.54vw, 1.75rem);
  --text-xl:   clamp(1.7rem, 1.5rem + 1vw, 2.4rem);
  --text-2xl:  clamp(2.2rem, 1.85rem + 1.8vw, 3.4rem);
  --text-3xl:  clamp(2.7rem, 2.1rem + 3vw, 4.6rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px hsl(253 30% 40% / 0.06), 0 2px 6px hsl(253 30% 40% / 0.06);
  --shadow-m: 0 2px 4px hsl(253 30% 40% / 0.05), 0 6px 14px hsl(253 30% 40% / 0.07), 0 16px 32px hsl(253 30% 40% / 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 160ms;
  --dur: 300ms;
  --plus-field: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cpath d='M33 12h6v9h9v6h-9v9h-6v-9h-9v-6h9z' fill='%236C5CB8' fill-opacity='0.07'/%3E%3C/svg%3E");
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); letter-spacing: -0.01em; }
h4 { font-size: var(--text-md); letter-spacing: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--lav-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.2em; }
:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--lav-ghost); color: var(--ink); }
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -4rem;
  z-index: 900;
  background: var(--ink);
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: var(--radius-s);
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--space-4); color: #fff; }
.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}
main { display: block; }
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 620;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mint-deep);
  margin-bottom: var(--space-4);
}
.overline::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  background: currentColor;
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
  flex: none;
}
.lede {
  font-size: var(--text-md);
  color: var(--ink-soft);
  max-width: 58ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--lav-deep);
  color: #fff;
  box-shadow: var(--shadow-s);
}
.btn--primary:hover { background: var(--ink); color: #fff; box-shadow: var(--shadow-m); }
.btn--ghost {
  background: transparent;
  color: var(--lav-deep);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--lav-deep); color: var(--lav-deep); background: var(--surface); }
.btn--mint {
  background: var(--mint-deep);
  color: #fff;
}
.btn--mint:hover { background: var(--ink); color: #fff; }
.rail {
  position: sticky;
  top: 0;
  z-index: 200;
  background: color-mix(in srgb, var(--bg) 97%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.rail-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 4rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 660;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  background: var(--lav-ghost);
  color: var(--lav-deep);
}
.rail-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.rail-phone {
  display: none;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink);
  text-decoration: none;
}
.rail-phone:hover { color: var(--lav-deep); }
.rail-status {
  display: none;
  align-items: center;
  gap: 0.45em;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  background: var(--surface);
}
.rail-status .dot {
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--line-strong);
}
.rail-status.is-open .dot { background: var(--mint); }
.rail-status.is-closed .dot { background: #C0576B; }
.rail-cta { padding: 0.7em 1.25em; font-size: var(--text-sm); }
.rail-toggle {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.rail-toggle:hover { border-color: var(--lav-deep); color: var(--lav-deep); }
@media (min-width: 700px) {
  .rail-phone { display: inline-flex; }
}
@media (min-width: 1024px) {
  .rail-status { display: inline-flex; }
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  background: hsl(253 30% 15% / 0.35);
}
.drawer[hidden] { display: none; }
.drawer-inner {
  width: min(22rem, 92vw);
  height: 100%;
  overflow-y: auto;
  background: var(--surface);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border-left: 1px solid var(--line);
}
html.js .drawer-inner { animation: drawer-in var(--dur) var(--ease); }
@keyframes drawer-in {
  from { transform: translateX(2rem); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.drawer-close {
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.drawer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-1);
}
.drawer nav a {
  display: block;
  padding: 0.65em 0.8em;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--ink);
  text-decoration: none;
}
.drawer nav a:hover,
.drawer nav a[aria-current="page"] { background: var(--lav-ghost); color: var(--lav-deep); }
.drawer nav .sub a { font-size: var(--text-base); font-weight: 500; padding-left: 1.6em; color: var(--ink-soft); }
.drawer-meta {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.drawer-meta a { font-weight: 600; }
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60rem 30rem at 110% -10%, var(--mint-ghost) 0%, transparent 60%),
    radial-gradient(55rem 32rem at -15% 110%, var(--lav-ghost) 0%, transparent 55%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-field);
  mask-image: linear-gradient(105deg, transparent 40%, #000 85%);
  -webkit-mask-image: linear-gradient(105deg, transparent 40%, #000 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: var(--space-12);
  padding-block: var(--section);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 7fr 5fr; }
}
.hero h1 { max-width: 16ch; }
.hero .lede { margin-bottom: var(--space-8); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.hero-facts svg { color: var(--mint-deep); flex: none; }
.sig-kreuz {
  position: relative;
  width: min(21rem, 74vw);
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  gap: clamp(0.5rem, 2vw, 0.85rem);
}
.sig-kreuz .tile {
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  display: grid;
  place-items: center;
  color: var(--lav-deep);
  animation: tile-breathe 7s var(--ease) infinite;
}
.sig-kreuz .t-n { grid-area: 1 / 2; animation-delay: 0s; }
.sig-kreuz .t-w { grid-area: 2 / 1; animation-delay: 0.9s; }
.sig-kreuz .t-c {
  grid-area: 2 / 2;
  background: var(--lav-deep);
  border-color: var(--lav-deep);
  color: #fff;
  animation: tile-turn 14s var(--ease) infinite;
}
.sig-kreuz .t-e { grid-area: 2 / 3; animation-delay: 1.8s; }
.sig-kreuz .t-s {
  grid-area: 3 / 2;
  background: var(--mint-ghost);
  border-color: transparent;
  color: var(--mint-deep);
  animation-delay: 2.7s;
}
.sig-kreuz .tile svg { width: 42%; height: auto; }
.sig-orbit {
  position: absolute;
  inset: -9%;
  animation: orbit-spin 36s linear infinite;
  pointer-events: none;
}
.sig-orbit span {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--mint);
  background: currentColor;
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
}
.sig-caption {
  margin-top: var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
@keyframes tile-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(0.955); }
}
@keyframes tile-turn {
  0%, 42%   { transform: rotate(0deg); }
  50%, 92%  { transform: rotate(90deg); }
  100%      { transform: rotate(90deg); }
}
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
.section { padding-block: var(--section); }
.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.section-head { max-width: 46rem; margin-bottom: var(--space-12); }
.svc-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 640px)  { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: var(--space-8) var(--space-6);
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur-fast) var(--ease);
}
.svc-card:hover,
.svc-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-strong);
  color: var(--ink);
}
.svc-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-m);
  background: var(--lav-ghost);
  color: var(--lav-deep);
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.svc-card:hover .svc-icon { background: var(--mint-ghost); color: var(--mint-deep); }
.svc-card h3 { margin: 0; font-size: var(--text-md); }
.svc-card p { color: var(--ink-soft); font-size: var(--text-sm); margin: 0; flex: 1; }
.svc-more {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: var(--text-sm);
  color: var(--lav-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.svc-card:hover .svc-more { gap: 0.7em; }
.svc-more { transition: gap var(--dur-fast) var(--ease); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  counter-reset: step;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: var(--space-8) var(--space-6);
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 680;
  font-size: var(--text-lg);
  color: var(--mint-deep);
  margin-bottom: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.steps h3 { font-size: var(--text-md); }
.steps p { color: var(--ink-soft); font-size: var(--text-sm); }
.split {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev > :first-child { order: 2; }
}
.panel-illu {
  position: relative;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  min-height: 16rem;
  display: grid;
  place-items: center;
  padding: var(--space-8);
}
.panel-illu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-field);
  opacity: 0.7;
}
.panel-illu > * { position: relative; }
.team-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 640px)  { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: var(--space-6);
  text-align: center;
}
.team-avatar {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 660;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  background: var(--lav-ghost);
  color: var(--lav-deep);
}
.team-card:nth-child(even) .team-avatar { background: var(--mint-ghost); color: var(--mint-deep); }
.team-card h3 { font-size: var(--text-md); margin-bottom: 0.2em; }
.team-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--mint-deep);
  margin-bottom: var(--space-3);
}
.team-card p { font-size: var(--text-sm); color: var(--ink-soft); }
.hours-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: var(--space-8);
  box-shadow: var(--shadow-s);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.55em 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { font-weight: 600; padding-right: var(--space-6); }
.hours-table td { text-align: right; color: var(--ink-soft); }
.hours-table tr.is-today th,
.hours-table tr.is-today td { color: var(--mint-deep); font-weight: 600; }
.hours-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.faq { max-width: 46rem; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: var(--text-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--lav-deep);
  clip-path: polygon(38% 0, 62% 0, 62% 38%, 100% 38%, 100% 62%, 62% 62%, 62% 100%, 38% 100%, 38% 62%, 0 62%, 0 38%, 38% 38%);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--mint-deep); }
.faq details > div {
  padding: 0 0 var(--space-6);
  color: var(--ink-soft);
  max-width: 60ch;
}
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cpath d='M33 12h6v9h9v6h-9v9h-6v-9h-9v-6h9z' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: hsl(253 25% 82%); max-width: 48ch; margin-inline: auto; }
.cta-band .btn--primary { background: var(--mint); color: var(--ink); }
.cta-band .btn--primary:hover { background: #fff; color: var(--ink); }
.cta-band .btn--ghost { color: #fff; border-color: hsl(253 20% 45%); }
.cta-band .btn--ghost:hover { background: transparent; border-color: #fff; color: #fff; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; margin-top: var(--space-8); }
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(45rem 22rem at 105% 0%, var(--lav-ghost) 0%, transparent 60%),
    var(--bg);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--plus-field);
  mask-image: linear-gradient(100deg, transparent 55%, #000 95%);
  -webkit-mask-image: linear-gradient(100deg, transparent 55%, #000 95%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 20ch; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.crumbs a { color: inherit; }
.crumbs li + li::before { content: "/"; margin-right: 0.4em; color: var(--line-strong); }
.prose { max-width: 65ch; }
.prose h2 { font-size: var(--text-lg); margin-top: 2em; }
.prose h3 { font-size: var(--text-md); margin-top: 1.6em; }
.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: var(--mint-deep); }
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--mint);
  border-radius: var(--radius-m);
  padding: var(--space-6);
  margin-block: var(--space-8);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.info-card strong { color: var(--ink); }
.form-grid { display: grid; gap: var(--space-4); }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  padding: 0.75em 0.9em;
  transition: border-color var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--lav-deep);
  outline: 3px solid var(--lav-ghost);
  outline-offset: 0;
}
.field textarea { resize: vertical; min-height: 8rem; }
.form-hint { font-size: var(--text-sm); color: var(--ink-soft); }
.form-status {
  border-radius: var(--radius-s);
  padding: var(--space-4);
  background: var(--mint-ghost);
  color: var(--mint-deep);
  font-weight: 600;
}
.form-status[hidden] { display: none; }
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}
.contact-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.contact-list svg { flex: none; color: var(--lav-deep); margin-top: 0.2em; }
.contact-list strong { display: block; font-family: var(--font-display); }
.contact-list span, .contact-list a { color: var(--ink-soft); }
.footer {
  background: var(--ink);
  color: hsl(253 25% 80%);
  padding-block: var(--space-16) var(--space-8);
  margin-top: var(--section);
  font-size: var(--text-sm);
}
.section:last-of-type + .footer, .cta-wrap + .footer { margin-top: 0; }
.footer-grid {
  display: grid;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid hsl(253 20% 30%);
}
@media (min-width: 820px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer h2 {
  font-size: var(--text-base);
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.footer a { color: hsl(253 25% 80%); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .brand { color: #fff; margin-bottom: var(--space-4); }
.footer .brand-mark { background: hsl(253 20% 28%); color: var(--mint); }
.footer-legal {
  padding-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
  color: hsl(253 18% 65%);
}
.footer-legal .demo-note {
  font-size: 0.78rem;
  max-width: 72ch;
}
.footer-legal a { color: hsl(253 25% 78%); text-decoration: underline; }
html.js .reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.error-hero {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--section);
}
.error-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem);
  letter-spacing: -0.04em;
  color: var(--lav-ghost);
  -webkit-text-stroke: 2px var(--lav-deep);
  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;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .sig-orbit { display: none; }
}
@media print {
  .rail, .drawer, .footer-grid, .cta-band, .skip-link { display: none; }
  body { background: #fff; color: #000; }
}
