/* ══════════════════════════════════════════════════════════════════════
   Arvotähti — verkkosivuston tyylit.
   LÄHDE: ChatGPT Sites -projektin app/globals.css (siirretty sellaisenaan
   F225:ssä). Alkuperäinen nojasi Tailwindin preflight-nollaukseen, joka on
   korvattu alla vastaavalla vakioinnilla — muu CSS on muuttamaton.
   ══════════════════════════════════════════════════════════════════════ */
*, ::before, ::after { box-sizing: border-box; border: 0 solid; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; }
body { line-height: inherit; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: inherit; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, [type="button"], [type="submit"] { -webkit-appearance: button; background-color: transparent; background-image: none; cursor: pointer; }
fieldset, legend { margin: 0; padding: 0; }
img, svg, video, canvas { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
textarea { resize: vertical; }
::placeholder { opacity: 1; color: #9ca3af; }
summary { display: list-item; cursor: pointer; }


:root {
  --bg-app: #091411;
  --bg-inner: #0a1613;
  --bg-card: #10201b;
  --bg-modal: #12231d;
  --header: #0f2c21;
  --navy: #16382a;
  --nordic: #1f4a38;
  --gold-hi: #f0dfb6;
  --gold-base: #d7be8a;
  --gold: #c9a96a;
  --gold-deep: #8a6e3c;
  --gold-pale: #f3e7c9;
  --text-body: #f0ede4;
  --text-soft: #d3cfc5;
  --muted: #b9b4a9;
  --subtle: #837e74;
  --mint: #5fe3b0;
  --mint-hi: #8ef0c8;
  --teal: #2e8c60;
  --ink: #22302a;
  --font-brand: "Marcellus", Georgia, serif;
  --font-body: "Public Sans", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg-app);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

:focus-visible {
  outline: 2px solid var(--mint-hi);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(215, 190, 138, .14);
  background: rgba(2, 8, 6, .78);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.brand-lockup__mark {
  width: 52px;
  height: 52px;
}

.brand-lockup__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand-lockup__name {
  color: #f5f2ea;
  font-family: var(--font-brand);
  font-size: 18px;
  letter-spacing: .17em;
  margin-left: .17em;
}

.brand-lockup__descriptor {
  color: var(--gold-base);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .42em;
  margin-left: .42em;
}

.brand-lockup--compact .brand-lockup__mark {
  width: 42px;
  height: 42px;
}

.brand-lockup--compact .brand-lockup__name {
  font-size: 15px;
}

.brand-lockup--compact .brand-lockup__descriptor {
  font-size: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  color: var(--text-soft);
  font-size: 13px;
  transition: color .3s var(--ease);
}

.desktop-nav a:hover {
  color: var(--gold-hi);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--gold-hi);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.button--primary {
  border-color: var(--gold-base);
  background: var(--gold-base);
  color: var(--ink);
  box-shadow: 0 12px 38px rgba(201, 169, 106, .16);
}

.button--primary:hover {
  border-color: var(--gold-hi);
  background: var(--gold-hi);
}

.button--ghost {
  border-color: rgba(215, 190, 138, .44);
  background: rgba(9, 20, 17, .2);
}

.button--ghost:hover,
.button--ghost-light:hover {
  border-color: var(--gold-hi);
  background: rgba(215, 190, 138, .08);
}

.button--ghost-light {
  border-color: rgba(240, 223, 182, .52);
  flex-shrink: 0;
}

.aurora-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #020806 0%, #07140f 48%, #0f2c21 100%);
}

.aurora {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(42px);
  opacity: .34;
  transform: translate3d(0, 0, 0);
}

.aurora--one {
  width: 125vw;
  height: 160px;
  top: 24%;
  left: -13vw;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent 5%, rgba(95, 227, 176, .08) 24%, rgba(95, 227, 176, .72) 50%, rgba(46, 140, 96, .18) 74%, transparent 95%),
    linear-gradient(90deg, transparent, var(--teal) 18%, var(--mint) 52%, var(--teal) 82%, transparent);
  animation: aurora-drift 16s var(--ease) infinite alternate;
}

.aurora--two {
  width: 112vw;
  height: 110px;
  left: -7vw;
  top: 47%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent, rgba(142, 240, 200, .48) 48%, transparent),
    linear-gradient(90deg, transparent, var(--mint-hi) 28%, var(--teal) 66%, transparent);
  opacity: .22;
  animation: aurora-drift-two 20s var(--ease) infinite alternate;
}

.aurora--three {
  width: 130%;
  height: 24%;
  top: 30%;
  left: -15%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent, rgba(95, 227, 176, .5), transparent),
    linear-gradient(90deg, transparent, var(--mint), var(--teal), transparent);
  opacity: .32;
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .3;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(240, 223, 182, .8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 77% 22%, rgba(240, 223, 182, .55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 69%, rgba(142, 240, 200, .45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 42% 76%, rgba(240, 223, 182, .4) 0 1px, transparent 1.5px);
  background-size: 270px 260px, 320px 280px, 380px 360px, 290px 310px;
}

.hero {
  min-height: 800px;
  padding: 158px 0 100px;
  display: grid;
  align-items: center;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 6, .94) 0%, rgba(2, 8, 6, .77) 44%, rgba(2, 8, 6, .3) 72%, rgba(2, 8, 6, .56) 100%),
    linear-gradient(180deg, rgba(2, 8, 6, .48), transparent 42%, rgba(2, 8, 6, .7));
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  filter: saturate(.88) contrast(1.05);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--gold-base);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow__star {
  color: var(--mint);
  font-size: 12px;
}

.hero h1,
.section-heading h2,
.home-visit h2,
.trust-section h2,
.points h2,
.booking-section h2 {
  font-family: var(--font-brand);
  font-weight: 400;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #f7f4ec;
  font-size: clamp(56px, 6.5vw, 92px);
  line-height: .99;
  letter-spacing: -.035em;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.promise {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.promise svg {
  color: var(--mint);
}

.hero__symbol {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.hero__symbol img {
  width: min(72%, 320px);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(215, 190, 138, .16));
  animation: symbol-float 7s var(--ease) infinite alternate;
}

.hero__orbit {
  position: absolute;
  border: 1px solid rgba(215, 190, 138, .14);
  border-radius: 50%;
}

.hero__orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 16%;
  right: 12%;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.hero__orbit--outer {
  width: 430px;
  height: 430px;
  animation: orbit 26s linear infinite;
}

.hero__orbit--inner {
  width: 330px;
  height: 330px;
  border-style: dashed;
  opacity: .48;
  animation: orbit 34s linear infinite reverse;
}

.hero__symbol-label {
  position: absolute;
  bottom: 2%;
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  margin-left: .4em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 190, 138, .22);
  border-radius: 50%;
  color: var(--gold);
  animation: symbol-float 2.5s var(--ease) infinite alternate;
}

.assurance-bar {
  border-block: 1px solid rgba(215, 190, 138, .14);
  background: #0c1b17;
}

.assurance-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.assurance {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(215, 190, 138, .12);
}

.assurance:first-child {
  border-left: 1px solid rgba(215, 190, 138, .12);
}

.assurance > svg {
  color: var(--gold);
  flex-shrink: 0;
}

.assurance h2 {
  margin: 0 0 6px;
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 400;
}

.assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding-block: 120px;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.home-visit h2,
.trust-section h2,
.points h2,
.booking-section h2 {
  margin: 0;
  color: #f5f2ea;
  font-size: clamp(39px, 4.6vw, 62px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.section-heading > p,
.section-heading--split > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 190, 138, .13);
  background: linear-gradient(145deg, rgba(16, 32, 27, .96), rgba(10, 22, 19, .96));
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 190, 138, .4);
  background: linear-gradient(145deg, rgba(18, 35, 29, .98), rgba(11, 27, 21, .98));
}

.service-card--featured {
  border-color: rgba(215, 190, 138, .34);
}

.service-card__index {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  min-width: 30px;
  padding: 7px 8px;
  border: 1px solid rgba(240, 223, 182, .2);
  background: rgba(2, 8, 6, .62);
  color: var(--gold-base);
  font-size: 10px;
  letter-spacing: .14em;
}

.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: #07110e;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(2, 8, 6, .75));
}

.service-card__media img {
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.service-card__content {
  min-height: 154px;
  padding: 24px 20px 25px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.section-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(15, 44, 33, .32);
  color: var(--text-soft);
  font-size: 13px;
}

.section-note a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-hi);
  font-weight: 600;
}

.home-visit {
  padding-block: 120px;
  border-block: 1px solid rgba(215, 190, 138, .12);
  background: #0a1613;
}

.home-visit__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.home-visit__visual {
  min-height: 590px;
  border: 1px solid rgba(215, 190, 138, .22);
  background: linear-gradient(145deg, #07110e, #0f2c21);
}

.home-visit__maplines {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(31deg, transparent 47%, var(--gold) 48%, transparent 49%),
    linear-gradient(141deg, transparent 47%, var(--mint) 48%, transparent 49%);
  background-size: 120px 96px, 170px 140px;
  mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.home-visit__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -58%);
  border: 1px solid rgba(215, 190, 138, .22);
  border-radius: 50%;
  background: rgba(2, 8, 6, .3);
  box-shadow: 0 0 0 44px rgba(215, 190, 138, .025), 0 0 0 88px rgba(215, 190, 138, .018);
}

.home-visit__pin img {
  width: 105px;
}

.home-visit__caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-visit__caption strong {
  max-width: 230px;
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: normal;
  text-align: right;
  text-transform: none;
}

.section-lead {
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list svg {
  color: var(--mint);
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  max-width: 580px;
  margin: 20px auto 0;
}

.process {
  position: relative;
}

.value-journey {
  position: relative;
  min-height: 520px;
  margin-bottom: 20px;
  border: 1px solid rgba(215, 190, 138, .24);
  background:
    radial-gradient(circle at 50% 110%, rgba(46, 140, 96, .16), transparent 42%),
    linear-gradient(135deg, #020806, #0b1e17 58%, #0f2c21);
}

.aurora--journey {
  width: 86%;
  height: 180px;
  top: 16%;
  left: 7%;
  border-radius: 50%;
  rotate: -9deg;
  opacity: .16;
  background: linear-gradient(90deg, transparent, var(--teal), var(--mint), transparent);
  animation: aurora-drift 16s var(--ease) infinite alternate;
}

.value-journey__stage {
  position: absolute;
  inset: 64px 70px 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-journey__stage--arrival {
  gap: 16px;
  animation: journey-arrival 10s var(--ease) infinite;
}

.journey-choice {
  width: 190px;
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 1px solid rgba(215, 190, 138, .22);
  background: rgba(9, 20, 17, .72);
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 16px;
}

.journey-choice svg {
  width: 26px;
  color: var(--mint);
  stroke-width: 1.4;
}

.value-journey__stage--items {
  animation: journey-items 10s var(--ease) infinite;
}

.journey-item {
  position: absolute;
  width: 170px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(215, 190, 138, .32);
  background: #07110e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.journey-item img {
  object-fit: cover;
}

.journey-item--1 {
  transform: translateX(-155px) rotate(-7deg);
}

.journey-item--2 {
  z-index: 2;
}

.journey-item--3 {
  transform: translateX(155px) rotate(7deg);
}

.journey-scan {
  position: absolute;
  right: 4%;
  bottom: 1%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(95, 227, 176, .3);
  background: rgba(2, 8, 6, .76);
  color: var(--gold-hi);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-scan svg {
  width: 19px;
  color: var(--mint);
}

.value-dust-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.value-journey__stage--offer {
  z-index: 2;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  animation: journey-offer 10s linear infinite;
}

.value-journey__forming-title {
  position: absolute;
  top: 0;
  color: var(--gold-base);
  font-family: var(--font-brand);
  font-size: clamp(20px, 2.4vw, 30px);
  animation: forming-title 10s var(--ease) infinite;
}

.value-journey__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #f7f4ec;
  font-family: var(--font-brand);
  font-size: clamp(62px, 9vw, 108px);
  font-weight: 400;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.value-journey__amount > span {
  display: inline-block;
  min-width: .52em;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(2px) scale(.96);
  animation: amount-digit 10s var(--ease) infinite;
}

.value-journey__amount .amount-space {
  min-width: .24em;
}

.value-journey__amount > span:nth-child(2) { animation-delay: .08s; }
.value-journey__amount > span:nth-child(3) { animation-delay: .16s; }
.value-journey__amount > span:nth-child(4) { animation-delay: .24s; }
.value-journey__amount > span:nth-child(5) { animation-delay: .32s; }
.value-journey__amount > span:nth-child(6) { animation-delay: .4s; }
.value-journey__amount > span:nth-child(7) { animation-delay: .48s; }
.value-journey__amount > span:nth-child(8) { animation-delay: .56s; }
.value-journey__amount > span:nth-child(9) { animation-delay: .64s; }
.value-journey__amount > span:nth-child(10) { animation-delay: .72s; }

.value-journey__amount > span:nth-child(3n) {
  text-shadow: 0 0 22px rgba(240, 223, 182, .35);
}

.value-journey__offer-note {
  color: var(--mint-hi);
  font-size: 13px;
  opacity: 0;
  animation: offer-note 10s var(--ease) infinite;
}

.value-journey__caption {
  position: absolute;
  inset: auto 28px 24px;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 190, 138, .14);
  color: var(--subtle);
  font-family: var(--font-brand);
  font-size: 13px;
}

.value-journey__caption strong {
  color: var(--gold-base);
  font-weight: 400;
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process__grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  min-height: 292px;
  padding: 30px 26px;
  border-top: 1px solid rgba(215, 190, 138, .4);
  background: linear-gradient(180deg, rgba(16, 32, 27, .82), rgba(10, 22, 19, .35));
}

.process-step--promise {
  border-color: rgba(95, 227, 176, .46);
}

.process-step__number {
  position: absolute;
  top: 31px;
  right: 31px;
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: .18em;
}

.process-step > svg {
  color: var(--mint);
  margin-bottom: 40px;
}

.process-step h3 {
  margin: 0 0 14px;
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 23px;
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.trust-section {
  padding-block: 110px;
  border-block: 1px solid rgba(215, 190, 138, .12);
  background:
    radial-gradient(circle at 78% 30%, rgba(46, 140, 96, .14), transparent 30%),
    linear-gradient(125deg, #0f2c21, #091411 68%);
}

.trust-section__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.trust-section__content > p {
  margin: 8px 0 42px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-metrics > div {
  min-height: 148px;
  padding: 22px 18px;
  border: 1px solid rgba(215, 190, 138, .14);
  background: rgba(2, 8, 6, .2);
}

.trust-metrics svg {
  width: 22px;
  color: var(--gold);
  margin-bottom: 28px;
}

.trust-metrics span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.trust-metrics strong {
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 400;
}

.points__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 260px;
  padding: 52px;
  border: 1px solid rgba(215, 190, 138, .25);
  background:
    radial-gradient(circle at 8% 50%, rgba(95, 227, 176, .1), transparent 17%),
    #10201b;
}

.points__marker {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 190, 138, .3);
  border-radius: 50%;
  color: var(--gold);
}

.points h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.points p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.booking-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-block: 120px;
  border-block: 1px solid rgba(215, 190, 138, .14);
  background: linear-gradient(145deg, #07110e 0%, #0f2c21 100%);
}

.aurora--booking {
  width: 72%;
  height: 380px;
  top: 5%;
  left: -20%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, var(--mint), var(--teal), transparent);
  rotate: -17deg;
  opacity: .17;
}

.booking-section__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.booking-section__intro {
  position: static;
}

.booking-section__intro > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 70px;
  padding: 15px 18px;
  border: 1px solid rgba(215, 190, 138, .16);
  background: rgba(2, 8, 6, .22);
  color: var(--gold-hi);
  font-size: 13px;
}

.contact-direct svg {
  color: var(--gold);
}

.contact-direct span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-direct small {
  color: var(--subtle);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.booking-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(215, 190, 138, .25);
  background: rgba(9, 20, 17, .92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.booking-form fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.booking-form legend,
.booking-form > label,
.form-grid > label {
  display: grid;
  gap: 9px;
  width: 100%;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.booking-form legend {
  margin-bottom: 12px;
}

.service-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-toggle label {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(215, 190, 138, .13);
  background: var(--bg-inner);
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.service-toggle label.is-selected {
  border-color: var(--gold);
  background: rgba(31, 74, 56, .42);
}

.service-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-toggle svg {
  flex-shrink: 0;
  color: var(--gold);
}

.service-toggle span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-toggle strong {
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 400;
}

.service-toggle small {
  color: var(--subtle);
  font-size: 10px;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(215, 190, 138, .17);
  border-radius: 0;
  outline: 0;
  background: #0a1613;
  color: var(--text-body);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.booking-form input {
  height: 50px;
  padding: 0 14px;
}

.booking-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--subtle);
  font-size: 12px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 106, .08);
}

.booking-form__submit {
  width: 100%;
  margin-top: 24px;
}

.booking-form__note {
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.faq {
  padding-bottom: 150px;
}

.faq__list {
  border-top: 1px solid rgba(215, 190, 138, .18);
}

.faq details {
  border-bottom: 1px solid rgba(215, 190, 138, .18);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 86px;
  color: var(--gold-hi);
  font-family: var(--font-brand);
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary > span:first-child {
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .14em;
}

.faq__plus {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  transition: transform .3s var(--ease);
}

.faq details[open] .faq__plus {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 780px;
  margin: -4px 0 30px 65px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(215, 190, 138, .18);
  background:
    radial-gradient(circle at 50% 110%, rgba(46, 140, 96, .16), transparent 38%),
    #020806;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 70px;
}

.site-footer__tagline {
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--font-brand);
  font-size: 15px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.site-footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer__links a {
  width: fit-content;
  color: var(--text-soft);
  font-size: 12px;
  transition: color .3s var(--ease);
}

.site-footer__links a:hover {
  color: var(--gold-hi);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(215, 190, 138, .12);
  color: var(--subtle);
  font-size: 9px;
  letter-spacing: .08em;
}

.mobile-actions {
  display: none;
}

@keyframes aurora-drift {
  from { transform: translate3d(-2%, -8%, 0) scale(1); opacity: .2; }
  to { transform: translate3d(3%, 9%, 0) scale(1.08); opacity: .34; }
}

@keyframes aurora-drift-two {
  from { transform: translate3d(3%, 5%, 0) scale(1.04); }
  to { transform: translate3d(-4%, -8%, 0) scale(.96); }
}

@keyframes symbol-float {
  from { transform: translate3d(0, -5px, 0); }
  to { transform: translate3d(0, 7px, 0); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes journey-arrival {
  0%, 4% { opacity: 0; transform: translateY(12px); }
  9%, 22% { opacity: 1; transform: translateY(0); }
  28%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes journey-items {
  0%, 23% { opacity: 0; transform: scale(.94); }
  28%, 43% { opacity: 1; transform: scale(1); filter: blur(0); }
  50%, 100% { opacity: 0; transform: scale(1.06); filter: blur(5px); }
}

@keyframes journey-offer {
  0%, 46% { opacity: 0; }
  50%, 97% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes forming-title {
  0%, 48% { opacity: 0; transform: translateY(8px); }
  54%, 69% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-5px); }
}

@keyframes amount-digit {
  0%, 54% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(2px) scale(.95);
  }
  62% {
    opacity: .18;
    filter: blur(10px);
  }
  76%, 96% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(2px);
  }
}

@keyframes offer-note {
  0%, 80% { opacity: 0; transform: translateY(5px); }
  86%, 96% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero__inner,
  .home-visit__grid,
  .trust-section__grid,
  .booking-section__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 155px;
  }

  .hero__symbol {
    min-height: 400px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card:last-child .service-card__media {
    aspect-ratio: 2 / 1;
  }

  .process__grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-visit__visual {
    min-height: 480px;
  }

  .trust-section__grid {
    gap: 44px;
  }

  .points__card {
    grid-template-columns: auto 1fr;
  }

  .points__card .button {
    grid-column: 2;
    justify-self: start;
  }

  .booking-section__grid {
    gap: 48px;
  }

  .booking-section__intro {
    position: static;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 66px;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .site-header .button {
    display: none;
  }

  .brand-lockup--compact .brand-lockup__mark {
    width: 38px;
    height: 38px;
  }

  .brand-lockup--compact .brand-lockup__name {
    font-size: 14px;
  }

  .hero {
    padding: 128px 0 70px;
  }

  .hero__inner {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .promise {
    align-items: flex-start;
    line-height: 1.55;
  }

  .hero__symbol {
    min-height: 310px;
  }

  .hero__symbol img {
    width: 210px;
  }

  .hero__orbit--outer {
    width: 300px;
    height: 300px;
  }

  .hero__orbit--inner {
    width: 235px;
    height: 235px;
  }

  .scroll-cue {
    display: none;
  }

  .assurance-bar__grid {
    grid-template-columns: 1fr;
  }

  .assurance {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 190, 138, .12);
  }

  .assurance:first-child {
    border-left: 0;
  }

  .section,
  .home-visit,
  .trust-section,
  .booking-section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .home-visit h2,
  .trust-section h2,
  .points h2,
  .booking-section h2 {
    font-size: 40px;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:last-child {
    grid-column: auto;
  }

  .service-card:last-child .service-card__media {
    aspect-ratio: 1 / 1.08;
  }

  .section-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-visit__grid {
    gap: 46px;
  }

  .home-visit__visual {
    min-height: 430px;
  }

  .home-visit__caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-visit__caption strong {
    text-align: left;
  }

  .process__grid,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .value-journey {
    min-height: 450px;
  }

  .value-journey__stage {
    inset: 50px 18px 82px;
  }

  .value-journey__stage--arrival {
    gap: 8px;
  }

  .journey-choice {
    width: 31%;
    min-height: 104px;
    padding: 12px 7px;
    font-size: 12px;
    text-align: center;
  }

  .journey-item {
    width: 120px;
  }

  .journey-item--1 {
    transform: translateX(-96px) rotate(-7deg);
  }

  .journey-item--3 {
    transform: translateX(96px) rotate(7deg);
  }

  .journey-scan {
    right: 0;
    bottom: 0;
  }

  .value-journey__amount {
    font-size: clamp(42px, 12vw, 58px);
  }

  .value-journey__forming-title {
    top: 8px;
  }

  .value-journey__caption {
    inset-inline: 18px;
  }

  .process-step {
    min-height: 300px;
  }

  .trust-metrics > div {
    min-height: 126px;
  }

  .points__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .points__card .button {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .points__marker {
    width: 70px;
    height: 70px;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .service-toggle,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .faq summary {
    grid-template-columns: 34px 1fr auto;
    min-height: 78px;
    font-size: 17px;
  }

  .faq details p {
    margin-left: 49px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .site-footer__top,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    gap: 52px;
  }

  .site-footer__links {
    gap: 34px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 60;
    inset: auto 0 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    border-top: 1px solid rgba(215, 190, 138, .26);
    background: rgba(2, 8, 6, .94);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold-hi);
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-actions a:last-child {
    background: var(--gold-base);
    color: var(--ink);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .value-journey__stage--arrival,
  .value-journey__stage--items,
  .value-dust-canvas {
    display: none;
  }

  .value-journey__stage--offer {
    opacity: 1;
    transform: none;
  }

  .value-journey__forming-title {
    display: none;
  }

  .value-journey__amount > span,
  .value-journey__offer-note {
    opacity: 1;
    filter: none;
    transform: none;
  }
}


/* ══════════════════════════════════════════════════════════════════════
   Staattisen siirron yhteensopivuus: Next.js:n <Image fill> tuotti nämä
   sijoittelutyylit ajonaikaisesti. Tavallinen <img> tarvitsee ne CSS:stä.
   ══════════════════════════════════════════════════════════════════════ */
.hero__backdrop img { position: absolute; inset: 0; }
.service-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey-item img { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Lomakkeen tilaviestit (staattinen versio lähettää suoraan järjestelmään). */
.booking-form__error { display: none; margin-top: 14px; padding: 13px 15px; border: 1px solid rgba(239,68,68,.4); background: rgba(239,68,68,.1); color: #fca5a5; font-size: 14.5px; }
.booking-form__error.on { display: block; }
.booking-thanks { display: none; text-align: center; padding: 28px 10px; }
.booking-thanks.on { display: block; }
.booking-thanks img { width: 62px; height: 62px; margin: 0 auto 14px; }
.booking-thanks h3 { font-family: var(--font-brand); font-size: 25px; color: #fff; margin-bottom: 10px; }
.booking-thanks p { color: var(--muted); font-size: 15.5px; max-width: 44ch; margin: 0 auto; }
