/* ============================================================
   TAKSIPALVELU SALONEN — design system
   Tyyli: tyylikäs & rauhallinen, poltettu oranssi + kerma + hiili
   ============================================================ */

:root {
  /* Colors – overridable via Tweaks */
  --orange-h: 45;       /* hue */
  --orange-c: 0.19;     /* chroma */
  --orange-l: 0.7;     /* lightness */

  --c-orange:        oklch(var(--orange-l) var(--orange-c) var(--orange-h));
  --c-orange-hover:  oklch(calc(var(--orange-l) - 0.04) var(--orange-c) var(--orange-h));
  --c-orange-soft:   oklch(0.95 0.04 var(--orange-h));
  --c-orange-tint:   oklch(0.92 0.06 var(--orange-h));

  --c-cream:         oklch(0.975 0.012 75);
  --c-cream-2:       oklch(0.955 0.014 75);
  --c-paper:         oklch(0.99 0.008 75);
  --c-line:          oklch(0.88 0.012 60);
  --c-line-soft:     oklch(0.92 0.010 60);

  --c-ink:           oklch(0.20 0.015 50);
  --c-ink-2:         oklch(0.34 0.012 50);
  --c-muted:         oklch(0.50 0.010 50);
  --c-soft:          oklch(0.65 0.008 50);

  --c-charcoal:      oklch(0.18 0.012 50);
  --c-charcoal-2:    oklch(0.24 0.012 50);

  /* Type */
  --f-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --f-sans:    "Geist", "Inter", system-ui, sans-serif;
  --f-mono:    "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-card: 0 1px 0 oklch(0.85 0.012 60), 0 12px 40px -20px oklch(0.30 0.05 50 / 0.18);
  --shadow-pop:  0 30px 60px -30px oklch(0.20 0.05 50 / 0.35);
}

[data-theme="dark"] {
  --c-cream:    oklch(0.18 0.012 50);
  --c-cream-2:  oklch(0.22 0.014 50);
  --c-paper:    oklch(0.16 0.010 50);
  --c-line:     oklch(0.30 0.012 50);
  --c-line-soft:oklch(0.26 0.010 50);
  --c-ink:      oklch(0.96 0.008 75);
  --c-ink-2:    oklch(0.84 0.010 75);
  --c-muted:    oklch(0.68 0.010 60);
  --c-soft:     oklch(0.55 0.010 60);
  --c-charcoal: oklch(0.10 0.010 50);
  --c-charcoal-2: oklch(0.14 0.012 50);
  --c-orange-soft: oklch(0.30 0.07 var(--orange-h));
  --c-orange-tint: oklch(0.36 0.10 var(--orange-h));
  --shadow-card: 0 1px 0 oklch(0.30 0.012 60), 0 18px 50px -28px oklch(0 0 0 / 0.7);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
hr { border: none; border-top: 1px solid var(--c-line); margin: 0; }

/* Selection */
::selection { background: var(--c-orange); color: #fff; }

/* Typography */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--c-orange);
}

.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0;
}
.h-section {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}
.h-card {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--c-ink-2);
  max-width: 60ch;
  text-wrap: pretty;
}
.muted { color: var(--c-muted); }

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--tight { padding: clamp(56px, 6vw, 90px) 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-orange);
  color: #fff;
}
.btn--primary:hover { background: var(--c-orange-hover); }

.btn--dark {
  background: var(--c-charcoal);
  color: oklch(0.975 0.012 75);
}
.btn--dark:hover { background: var(--c-charcoal-2); color: oklch(0.99 0.008 75); }

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-ink); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover { background: #20bd5a; }

.btn .ico { width: 16px; height: 16px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--c-cream), transparent 8%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 0;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  position: relative;
  padding-bottom: 6px;
}
.brand::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-orange);
  transform-origin: left;
  transform: scaleX(0.18);
  transition: transform .35s ease;
}
.brand:hover::after { transform: scaleX(1); }
.brand__name { line-height: 1; white-space: nowrap; }
.brand__name em {
  font-style: italic;
  color: var(--c-orange);
  font-weight: 400;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 14.5px;
  color: var(--c-ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--c-ink); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--c-orange);
}

.header-cta { display: flex; align-items: center; gap: 8px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 13.5px;
  color: var(--c-ink);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  white-space: nowrap;
}
.header-phone:hover { border-color: var(--c-orange); color: var(--c-orange); }
.header-phone .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.7 0.18 145);
  box-shadow: 0 0 0 4px oklch(0.7 0.18 145 / 0.18);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 16px; height: 1.5px; background: var(--c-ink);
  position: relative; transition: transform .2s, opacity .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--c-ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top:  5px; }

@media (max-width: 1180px) {
  .header-phone { display: none; }
}
@media (max-width: 1080px) {
  .nav { gap: 20px; }
  .nav a { font-size: 13.5px; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  .brand { font-size: 18px; padding-bottom: 4px; }
  .header-cta .btn { padding: 10px 14px; font-size: 13.5px; gap: 6px; }
  .header-cta .btn svg { display: none; }
  .site-header__inner { gap: 8px; }
}
@media (max-width: 380px) {
  .brand { font-size: 16px; }
  .header-cta .btn { padding: 9px 12px; font-size: 13px; }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__copy { padding-bottom: 8px; }
.hero h1 .accent { color: var(--c-orange); font-style: italic; }
.hero__lead { margin-top: 28px; max-width: 50ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-cream-2);
  box-shadow: var(--shadow-card);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--c-paper);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-pop);
  font-size: 13px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.7 0.18 145);
  box-shadow: 0 0 0 5px oklch(0.7 0.18 145 / 0.18);
}
.hero__badge strong { font-weight: 600; }

.hero__meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .hero__meta { grid-template-columns: repeat(2, 1fr); } }
.hero__meta-item { text-align: center; }
.hero__meta-item .k {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--c-ink);
}
.hero__meta-item .v {
  display: block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Section header */
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 820px) { .section__head { grid-template-columns: 1fr; } }
.section__head .lead { margin-top: 0; }

/* Service grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line-soft);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--c-paper);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  position: relative;
  transition: background .25s ease;
}
.svc:hover { background: var(--c-cream-2); }
.svc__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-muted);
}
.svc h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.svc p {
  margin: 0;
  color: var(--c-ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.svc__arrow {
  margin-top: auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s;
}
.svc:hover .svc__arrow { background: var(--c-orange); border-color: var(--c-orange); color: #fff; }

/* Highlight band — Kela */
.band {
  background: var(--c-charcoal);
  color: oklch(0.92 0.012 75);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 880px) { .band { grid-template-columns: 1fr; } }
.band h2 { color: oklch(0.97 0.012 75); }
.band .eyebrow { color: var(--c-orange); }
.band .lead { color: oklch(0.78 0.012 75); }
.band__num {
  display: inline-flex;
  font-family: var(--f-mono);
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.12);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: oklch(0.95 0.012 75);
}
.band__num strong { color: var(--c-orange); margin-left: 8px; font-weight: 600; }

.band__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.band__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.band__list .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-orange); color: #fff;
  display: grid; place-items: center;
  margin-top: 2px;
}

.band__visual {
  background: var(--c-charcoal-2);
  border-radius: var(--r-md);
  padding: 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: oklch(0.84 0.012 75);
  border: 1px solid oklch(1 0 0 / 0.08);
}
.band__visual h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin: 0 0 18px;
  font-weight: 500;
}
.band__visual .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid oklch(1 0 0 / 0.08); }
.band__visual .row:last-child { border-bottom: none; }
.band__visual .row span:last-child { color: oklch(0.97 0.012 75); }

/* Founder */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; } }

.founder__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.founder__sig {
  position: absolute;
  right: -18px; bottom: 24px;
  background: var(--c-paper);
  padding: 16px 22px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-pop);
}
.founder__sig small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}

.founder__quote {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 32px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--c-orange);
}

.timeline {
  margin-top: 36px;
  display: grid; gap: 18px;
}
.timeline__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--c-line-soft);
}
.timeline__row:last-child { border-bottom: 1px solid var(--c-line-soft); }
.timeline__year {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-orange);
  letter-spacing: 0.06em;
}
.timeline__what { font-size: 15.5px; color: var(--c-ink-2); }
.timeline__what strong { color: var(--c-ink); font-weight: 500; }

/* Vehicle */
.vehicle {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
@media (max-width: 900px) { .vehicle { grid-template-columns: 1fr; } }
.vehicle__photo {
  aspect-ratio: 16/11;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-cream-2);
  box-shadow: var(--shadow-card);
}
.vehicle__photo img { width: 100%; height: 100%; object-fit: cover; }
.vehicle__photo--gallery { position: relative; }
.vehicle__photo--gallery .vehicle__photo__thumb {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  border: 3px solid var(--c-paper);
  box-shadow: 0 14px 30px -10px oklch(0 0 0 / 0.4);
  object-fit: cover;
}
@media (max-width: 640px) {
  .vehicle__photo--gallery .vehicle__photo__thumb { width: 44%; right: 10px; bottom: 10px; border-width: 2px; }
}
.vehicle__specs {
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 4px;
}
.vehicle__specs h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 4px 0 22px;
}
.spec {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--c-line-soft);
  font-size: 14.5px;
}
.spec:first-of-type { border-top: none; padding-top: 4px; }
.spec__k { color: var(--c-muted); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.spec__v { color: var(--c-ink); font-weight: 500; text-align: right; }
@media (max-width: 480px) {
  .spec { grid-template-columns: 1fr; gap: 4px; }
  .spec__v { text-align: left; }
}

/* Order — three ways */
.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line-soft);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 820px) { .order-grid { grid-template-columns: 1fr; } }
.order-card {
  background: var(--c-paper);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
}
.order-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-orange-soft);
  color: var(--c-orange);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
[data-theme="dark"] .order-card__icon { color: oklch(0.92 0.012 75); }
.order-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0;
}
.order-card p { color: var(--c-ink-2); font-size: 15px; margin: 0; }
.order-card .big {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--c-ink);
  letter-spacing: 0.02em;
}
.order-card a:not(.btn) { color: inherit; }
.order-card a:not(.btn):hover { color: var(--c-orange); }
.order-card__cta { margin-top: auto; padding-top: 8px; }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--c-line-soft); }
.faq__item { border-bottom: 1px solid var(--c-line-soft); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.faq__q:hover { color: var(--c-orange); }
.faq__sign {
  font-family: var(--f-mono);
  font-size: 13px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s, color .2s;
}
.faq__item[open] .faq__sign { background: var(--c-orange); color: #fff; border-color: var(--c-orange); transform: rotate(45deg); }
.faq__a {
  padding: 0 0 24px;
  max-width: 70ch;
  color: var(--c-ink-2);
  line-height: 1.6;
}

/* Coverage / area */
.area {
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .area { grid-template-columns: 1fr; } }
.area__list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px;
}
.area__list li {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-ink-2);
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-line-soft);
}
.area__list li.active { color: var(--c-orange); }

.map-art {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  background-image:
    linear-gradient(180deg, oklch(from var(--c-cream) l c h / 0.35), oklch(from var(--c-cream) l c h / 0.15)),
    url("map-karvia-c2.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--c-cream);
  position: relative;
  overflow: hidden;
  filter: saturate(0.85);
}
.map-art::before, .map-art::after {
  content: ""; position: absolute;
  border-radius: 50%;
}
.map-art::before {
  inset: 18%;
  border: 1.5px dashed oklch(from var(--c-orange) l c h / 0.45);
  background: radial-gradient(circle, oklch(from var(--c-orange) l c h / 0.1) 0%, transparent 70%);
}
.map-art::after {
  inset: 34%;
  border: 2px solid var(--c-orange);
  background: radial-gradient(circle, oklch(from var(--c-orange) l c h / 0.18) 0%, oklch(from var(--c-orange) l c h / 0.05) 70%);
  box-shadow: 0 0 40px oklch(from var(--c-orange) l c h / 0.25);
}
.map-art__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed oklch(from var(--c-orange) l c h / 0.28);
  background: radial-gradient(circle, oklch(from var(--c-orange) l c h / 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.map-art__pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-orange);
  border: 2.5px solid var(--c-paper);
  box-shadow:
    0 0 0 4px oklch(from var(--c-orange) l c h / 0.25),
    0 0 0 12px oklch(from var(--c-orange) l c h / 0.1),
    0 4px 12px oklch(0.2 0.05 50 / 0.3);
  z-index: 2;
}
.map-art__label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% - 32px));
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-ink);
  background: var(--c-paper);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  white-space: nowrap;
  box-shadow: 0 2px 8px oklch(0.2 0.05 50 / 0.12);
  z-index: 2;
}
.map-art__city {
  display: none;
}

/* Footer */
.footer {
  background: var(--c-charcoal);
  color: oklch(0.85 0.012 75);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col { display: grid; gap: 10px; }
.footer__col a { color: oklch(0.85 0.012 75); font-size: 14.5px; }
.footer__col a:hover { color: oklch(0.97 0.012 75); }
.footer__brand {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
}
.footer__brand em { font-style: italic; color: var(--c-orange); font-weight: 400; }
.footer__sub { color: oklch(0.72 0.012 75); font-size: 14.5px; max-width: 32ch; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid oklch(1 0 0 / 0.08);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: oklch(0.65 0.012 75);
}

/* Floating CTA dock (mobile) */
.cta-dock {
  position: fixed;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: none;
  background: var(--c-charcoal);
  border-radius: var(--r-pill);
  padding: 6px;
  box-shadow: var(--shadow-pop);
  z-index: 40;
  gap: 4px;
}
.cta-dock a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: oklch(0.97 0.012 75);
  background: oklch(1 0 0 / 0.08);
}
.cta-dock a.primary { background: var(--c-orange); }
.cta-dock a.wa      { background: #25D366; }
.cta-dock a:hover { transform: scale(1.05); }

@media (max-width: 720px) {
  .cta-dock { display: inline-flex; }
}

/* Page hero (sub-pages) */
.page-hero {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--c-line-soft);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 820px) { .page-hero__grid { grid-template-columns: 1fr; } }
.crumbs {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 20px;
  display: flex; gap: 10px;
}
.crumbs a:hover { color: var(--c-orange); }
.crumbs span { color: var(--c-line); }

/* Pricing */
.price-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.price-table th, .price-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 15px;
}
.price-table th {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.price-table td.num {
  font-family: var(--f-mono);
  text-align: right;
  color: var(--c-ink);
}

/* Form */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: grid; gap: 8px; }
.form__field label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.form__field input,
.form__field textarea,
.form__field select {
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font: inherit;
  color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 4px oklch(from var(--c-orange) l c h / 0.15);
}
.form__field textarea { min-height: 110px; resize: vertical; }
.form__hint { font-size: 12.5px; color: var(--c-muted); }

/* Form band — form embedded inside section */
.form-band {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding-top: 56px;
  border-top: 1px solid var(--c-line-soft);
}
.form-band__intro { padding-top: 8px; }
.form-band__form {
  background: var(--c-paper);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-soft);
  box-shadow: 0 30px 60px -30px oklch(0 0 0 / 0.18);
}
@media (max-width: 880px) {
  .form-band { grid-template-columns: 1fr; gap: 32px; }
  .form-band__form { padding: 22px; }
}

/* Tilauksen onnistumiskuittaus */
.form-ok {
  background: var(--c-paper);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-soft);
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  animation: form-ok-in 420ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes form-ok-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-ok__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--c-orange-soft);
  color: var(--c-orange);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.form-ok__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--c-ink);
}
.form-ok__lead {
  margin: 0;
  max-width: 46ch;
  color: var(--c-ink-2);
  font-size: 15.5px;
  line-height: 1.55;
}
.form-ok__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
@media (max-width: 880px) {
  .form-ok { padding: 28px 20px; }
}

/* Inline icons */
.ico { width: 18px; height: 18px; flex-shrink: 0; }

/* Tweaks panel */
#tweaks-root { position: fixed; bottom: 24px; right: 24px; z-index: 100; }

/* Anim */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp .8s ease forwards; }
.reveal--1 { animation-delay: 0.05s; }
.reveal--2 { animation-delay: 0.15s; }
.reveal--3 { animation-delay: 0.25s; }
.reveal--4 { animation-delay: 0.35s; }

/* Util */
.u-mt-0 { margin-top: 0 !important; }
.u-center { text-align: center; }
.divider-soft { border-top: 1px solid var(--c-line-soft); margin: 0; }
