/* ==========================================================================
   KIRPPUTORIKESKUS HOPPU
   Koko ilme on johdettu toimitetusta kuvituksesta.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PALETTI — poimittu suoraan kuvituksen pikseleistä
   -------------------------------------------------------------------------- */
:root {
  --cream:      #F6F1E6;   /* lämmin luonnonvalkoinen — sivuston pohja */
  --cream-2:    #EFE6D4;   /* pehmeä hiekansävyinen pinta */
  --sand:       #CCB490;   /* kuvituksen vaalea hiekka */
  --kraft:      #B49C78;   /* kraft-paperin ruskea */
  --wood:       #B48460;   /* kuvituksen puu */
  --coral:      #F09060;   /* kuvituksen koralli — CTA ja korostukset */
  --mustard:    #FCB43C;   /* sinapinkeltainen — pienet yksityiskohdat */
  --blue:       #609CB4;   /* pölyinen sininen */
  --blue-deep:  #4A6E80;   /* syvempi sininen, kun päällä on vaaleaa tekstiä */
  --slate:      #546060;   /* siniharmaa */
  --olive:      #909C6C;   /* oliivinvihreä */
  --deep:       #783C30;   /* tumma punaruskea */
  --ink:        #2B2825;   /* hiilenharmaa pääteksti, ei täysin musta */
  --ink-soft:   #5A5550;

  --line:       rgba(43, 40, 37, .16);
  --line-soft:  rgba(43, 40, 37, .09);
  --cream-soft: rgba(246, 241, 230, .76);

  --display: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1380px;
  --nav-h: 72px;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. PERUSTA
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16.5px, 1.05vw, 18.5px);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .97;
  margin: 0;
  overflow-wrap: break-word;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

::selection { background: var(--mustard); color: var(--ink); }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.sec--contact :focus-visible { outline-color: var(--mustard); }

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 999;
  background: var(--ink); color: var(--cream);
  padding: 14px 22px; font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 9vw, 136px); position: relative; }
.section--tight { padding-block: clamp(46px, 6vw, 84px); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. TOISTUVAT OSAT
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--display);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 clamp(16px, 2.4vw, 26px);
}

.sec-title { font-size: clamp(2.5rem, 8.4vw, 5.8rem); margin: 0 0 clamp(20px, 2.6vw, 32px); }
.lede { font-size: clamp(1.06rem, 1.6vw, 1.34rem); line-height: 1.5; max-width: 38ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 60px; padding: 16px 30px;
  font-family: var(--display);
  font-size: 1.02rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  background: transparent; color: var(--ink);
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), transform .18s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--coral { background: var(--coral); border-color: var(--ink); }
.btn--coral:hover { background: var(--ink); color: var(--coral); }

.btn--light { border-color: var(--cream); color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--deep); }

/* --------------------------------------------------------------------------
   4. NAVIGAATIO
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 230, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 16px;
}

.brand { flex: none; display: block; line-height: 0; }
.brand img { height: 26px; width: auto; }

.nav-links { display: none; margin-left: auto; gap: clamp(20px, 2.2vw, 36px); }
.nav-links a {
  font-family: var(--display);
  font-size: 1rem; font-weight: 600;
  text-decoration: none; padding: 10px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 3px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .26s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-cta {
  margin-left: auto; min-height: 46px; padding: 11px 18px;
  font-size: .82rem; white-space: nowrap; border-width: 2px;
}
.cta-long { display: none; }
.cta-short { display: inline; }
@media (min-width: 480px) { .cta-long { display: inline; } .cta-short { display: none; } }

.nav-toggle {
  min-height: 46px; min-width: 46px;
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px;
  background: transparent; border: 2px solid var(--ink);
  font-family: var(--display); font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.nav-toggle .bars { display: grid; gap: 4px; }
.nav-toggle .bars i { display: block; width: 18px; height: 2px; background: currentColor; }
.toggle-text { display: none; }
@media (min-width: 560px) { .toggle-text { display: inline; } }

.nav-panel { display: none; border-top: 1px solid var(--line); background: var(--cream); }
.nav-panel.is-open { display: block; }
.nav-panel ul { list-style: none; margin: 0; padding: 6px var(--gutter) 22px; }
.nav-panel a {
  display: block; padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--display); font-size: 1.2rem; font-weight: 600;
  text-decoration: none;
}
html:not(.js) .nav-toggle { display: none; }
html:not(.js) .nav-panel { display: block; }

@media (min-width: 960px) {
  .nav-links { display: flex; align-items: center; }
  .nav-cta { margin-left: clamp(20px, 2.2vw, 36px); }
  .nav-toggle { display: none; }
  .nav-panel { display: none !important; }
}

/* ==========================================================================
   5. HERO — kaksi puolikasta → yksi kokonaisuus
   --------------------------------------------------------------------------
   Kuvitus on toimitettu valmiina. Se on leikattu kahtia reittiä pitkin,
   joka kiertää esineiden ääriviivoja, joten puolikkaat yhdistyvät
   täsmälleen alkuperäiseksi kompositioksi.
   ========================================================================== */
.hero {
  position: relative;
  /* Navigaatio on mukana normaalissa virrassa, joten hero + navi = 100svh */
  min-height: calc(100svh - var(--nav-h));
  /* Mobiilissa logo, kuvitus ja alarivi muodostavat yhden tiiviin ryhmän. */
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(18px, 4.5vw, 34px);
  padding-top: clamp(22px, 5vw, 44px);
  padding-bottom: clamp(18px, 3vw, 40px);
  overflow: hidden;
}

/* Kuvituksen kehys. Mitat ovat alkuperäisen 1200 × 600 -kankaan mukaiset,
   joten puolikkaiden sijainnit voidaan antaa prosentteina. */
.hero-art {
  position: relative;
  /* Kangas on rajattu referenssikomposition sisältöön. */
  aspect-ratio: 1006 / 545;
  /* Mobiilissa kuvitus on isompi kuin ruutu ja rajautuu hallitusti. */
  width: 145%; left: 50%; margin-left: -72.5%;
}
@media (min-width: 620px) { .hero-art { width: 118%; margin-left: -59%; } }
@media (min-width: 900px) {
  .hero { justify-content: flex-end; padding-top: 0; gap: 0; }
  .hero-foot { margin-top: clamp(14px, 2.4vw, 26px); }
  .hero-art {
    /* Leveys rajataan myös korkeuden mukaan, jotta alarivi mahtuu näkymään.
       170px = navigaatio + alarivi + alapehmuste. */
    width: min(1580px, 100%, calc((100svh - 170px) * 1.846));
    left: auto; margin-left: auto; margin-right: auto;
  }
}

.art-half { position: absolute; z-index: 2; height: auto; }
.art-left  { left: 0;       top: 12.110%; width: 48.410%; --from: -130%; }
.art-right { left: 48.410%; top: 12.661%; width: 51.590%; --from: 130%; }

/* Molemmat lähtevät ja pysähtyvät täsmälleen samaan aikaan. */
.art-half { animation: liuku 1300ms var(--ease) both; }
@keyframes liuku {
  from { transform: translate3d(var(--from), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

/* Logo on esineiden TAKANA, jolloin osa tavaroista peittää sen reunoja
   täsmälleen kuten referenssikuvassa. Paikka ja koko on mitattu suoraan
   referenssistä: teksti on siellä 516 x 203 px kohdassa x=342, y=30. */
.hero-logo {
  position: absolute; z-index: 1;
  left: 22.763%; top: 0; width: 51.292%;
  animation: logoEsiin 520ms 1150ms var(--ease) both;
}
.hero-logo img { width: 100%; }
@keyframes logoEsiin {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* margin-inline:auto kutistaisi wrapin flex-sarakkeessa sisällön levyiseksi */
.hero > .wrap { width: 100%; }

.hero-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  animation: logoEsiin 520ms 1320ms var(--ease) both;
}
.hero-place {
  font-family: var(--display);
  font-size: clamp(.74rem, 2.2vw, .92rem);
  font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0;
}
.hero-scroll {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px;
  font-family: var(--display);
  font-size: clamp(.74rem, 2.2vw, .92rem);
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.hero-scroll:hover { color: var(--ink); gap: 16px; }

/* --------------------------------------------------------------------------
   6. MYYMÄÄN HOPPUUN
   -------------------------------------------------------------------------- */
.sell-grid {
  margin-top: clamp(30px, 4vw, 52px);
  display: grid; gap: clamp(30px, 4vw, 60px);
  border-top: 2px solid var(--ink);
  padding-top: clamp(26px, 3.4vw, 44px);
}
@media (min-width: 900px) { .sell-grid { grid-template-columns: 1.1fr 1fr; align-items: end; } }
.sell-side { padding-bottom: 6px; }

.price-label {
  font-family: var(--display);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 10px;
}
.price-big {
  font-family: var(--display);
  font-size: clamp(3.6rem, 12vw, 7rem);
  font-weight: 800; letter-spacing: -.045em; line-height: .9;
  margin: 0;
}
.price-big .per {
  display: block;
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  font-weight: 600; letter-spacing: -.005em;
  color: var(--ink-soft); margin-top: 10px;
}
.price-rule { height: 12px; background: var(--coral); max-width: 300px; margin-top: 22px; }
.price-extra {
  margin-top: clamp(20px, 2.6vw, 30px);
  font-size: 1.06rem; max-width: 34ch;
}
.sell-cta { margin-top: clamp(24px, 3vw, 34px); }

/* Myyntipaikkojen määrä "Hopun sisällä" -osiossa */
.inside-row { display: grid; gap: clamp(26px, 3.4vw, 48px); align-items: end; }
@media (min-width: 900px) {
  .inside-row { grid-template-columns: minmax(0, 1fr) auto; }
  .inside-row .count-big { text-align: right; }
}
.inside-row .count-big { font-size: clamp(2.8rem, 8vw, 4.6rem); }
.inside-row .count-big em { font-size: clamp(1rem, 2.6vw, 1.3rem); }

.count-big {
  font-family: var(--display);
  font-size: clamp(3.6rem, 12vw, 7rem);
  font-weight: 800; letter-spacing: -.045em; line-height: .88;
  margin: 0;
}
.count-big em {
  font-style: normal; display: block;
  font-size: clamp(1.05rem, 3vw, 1.6rem);
  letter-spacing: 0; margin-top: 12px;
}

/* --------------------------------------------------------------------------
   7. HUONEKALUT & VINTAGE
   -------------------------------------------------------------------------- */
.sec--furniture { background: var(--cream-2); }
.furniture-title .amp { color: var(--deep); }

.photo-pair { margin-top: clamp(32px, 4vw, 58px); display: grid; gap: clamp(14px, 2vw, 24px); }
@media (min-width: 820px) { .photo-pair { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); } }

.photo-slot {
  position: relative; overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  aspect-ratio: 4/3; padding: 26px;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 820px) {
  .photo-slot { aspect-ratio: auto; min-height: clamp(340px, 34vw, 480px); }
}
.slot-inner { text-align: center; max-width: 100%; }
.slot-label {
  font-family: var(--display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0;
}
.slot-name {
  display: block; margin-top: 10px;
  font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 700;
  letter-spacing: -.01em; text-transform: none; color: var(--ink);
}
.photo-slot--vintage { background: var(--deep); border-color: transparent; }
.photo-slot--vintage .slot-label { color: var(--cream-soft); }
.photo-slot--vintage .slot-name { color: var(--cream); }
.photo-caption { margin-top: 14px; font-size: .9rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   8. ROMPETORIT
   -------------------------------------------------------------------------- */
.rompe {
  display: grid; gap: clamp(18px, 3vw, 40px);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-block: clamp(32px, 4.2vw, 54px);
  align-items: center;
}
@media (min-width: 820px) { .rompe { grid-template-columns: 1.25fr 1fr auto; } }
.rompe h2 { font-size: clamp(1.85rem, 5.2vw, 3.2rem); line-height: .99; margin: 0; }
.rompe p { margin: 0; color: var(--ink-soft); font-size: 1.04rem; }
/* Päivämäärälaatta syntyy vasta, kun tapahtuma on julkaistu configissa. */
.rompe-date {
  font-family: var(--display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--mustard); border: 2px solid var(--ink);
  padding: 12px 18px; justify-self: start; margin: 0;
}
@media (min-width: 820px) { .rompe-date { grid-column: 1 / -1; } }

/* --------------------------------------------------------------------------
   8b. TAVARARIVI
   Oma toimitettu kuvitus koko leveydeltä, eri kuin herossa. Kapealla
   ruudulla kuva on ruutua leveämpi, jotta esineet pysyvät
   tunnistettavan kokoisina.
   -------------------------------------------------------------------------- */
.yard { overflow: hidden; line-height: 0; }
.yard img {
  display: block; height: auto; max-width: none;
  width: 150%; margin-left: -25%;
}
@media (min-width: 620px)  { .yard img { width: 120%; margin-left: -10%; } }
@media (min-width: 1000px) {
  .yard img { width: 100%; max-width: 1800px; margin-left: 0; margin-inline: auto; }
}
/* Tavararivin yläpuolinen osio saa kevyemmän alareunuksen. */
.section--yard { padding-bottom: clamp(24px, 3vw, 44px); }

/* --------------------------------------------------------------------------
   9. YHTEYSTIEDOT
   -------------------------------------------------------------------------- */
.sec--contact { background: var(--deep); color: var(--cream); }
.sec--contact .eyebrow { color: var(--cream-soft); }

.contact-grid { display: grid; gap: clamp(34px, 5vw, 70px); margin-top: clamp(22px, 3vw, 38px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; } }

.contact-label {
  font-family: var(--display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-soft); margin-bottom: 10px;
}
.contact-address {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.4vw, 2.2rem);
  font-weight: 700; line-height: 1.18; margin: 0;
}
.contact-phone {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2rem, 7.6vw, 3.6rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1;
  color: var(--mustard); text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: border-color .22s var(--ease);
}
.contact-phone:hover { border-bottom-color: var(--mustard); }
.contact-email {
  display: inline-block;
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  color: var(--cream); word-break: break-word;
  text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.contact-block + .contact-block { margin-top: clamp(26px, 3.4vw, 40px); }
.contact-actions { display: grid; gap: 10px; margin-top: clamp(24px, 3vw, 34px); }
@media (min-width: 520px) { .contact-actions { grid-template-columns: 1fr 1fr; } }

/* Aukiolotilanne — "Auki nyt" / "Suljettu".
   Teksti kertoo tilanteen sanoin, väri on vain lisävihje. */
.open-pill {
  display: inline-flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin: 0 0 20px; padding: 12px 20px;
  border: 2px solid currentColor; border-radius: 999px;
  font-family: var(--display); line-height: 1.25;
}
.open-pill[hidden] { display: none; }
.open-pill .pill-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: currentColor; flex: none;
}
.open-pill .pill-main { font-size: 1.06rem; font-weight: 800; letter-spacing: .01em; }
.open-pill .pill-sub  { font-size: .95rem; font-weight: 500; }

.sec--contact .open-pill { color: var(--cream-soft); }
.sec--contact .open-pill.is-open { color: var(--mustard); }

.hours-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(246,241,230,.28); }
.hours-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid rgba(246,241,230,.16);
}
.hours-list .days {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.4rem); letter-spacing: .04em;
}
.hours-list .time {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 1.9rem); letter-spacing: -.01em;
  color: var(--mustard);
}
/* Some-linkit omana keskitettynä rivinään yhteystietojen alla */
.social-row {
  margin-top: clamp(38px, 5vw, 62px);
  padding-top: clamp(26px, 3.2vw, 38px);
  border-top: 1px solid rgba(246, 241, 230, .24);
  text-align: center;
}
.social-row .contact-label { margin-bottom: 16px; }
.social-links {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.social-links .btn { min-width: 190px; }

/* Leipätekstin sisäinen linkki */
.inline-link {
  font-weight: 600;
  text-decoration-thickness: 2px; text-underline-offset: 3px;
  transition: color .2s var(--ease);
}
.inline-link:hover { color: var(--deep); }

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.foot {
  background: var(--ink); color: var(--cream-soft);
  padding-block: clamp(24px, 3.2vw, 38px);
}
.foot-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
}
/* Logo on musta, joten se käännetään vaaleaksi tummalle pohjalle */
.foot img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.foot p { margin: 0; font-size: .88rem; }
.foot a { color: var(--cream); }

/* --------------------------------------------------------------------------
   11. VARAUSSIVU
   -------------------------------------------------------------------------- */
.page-head { padding-bottom: 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
  font-family: var(--display); font-size: .9rem; font-weight: 600;
  text-decoration: none; color: var(--ink-soft);
  margin-bottom: clamp(8px, 1.4vw, 16px);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.back-link:hover { color: var(--ink); gap: 14px; }

.booking { margin-top: clamp(28px, 3.6vw, 50px); }
@media (min-width: 1040px) {
  .booking { display: grid; grid-template-columns: minmax(0,1fr) 380px; gap: clamp(32px, 4vw, 64px); align-items: start; }
  .booking-summary { position: sticky; top: calc(var(--nav-h) + 24px); }
}

.step { border-top: 1px solid var(--line); padding-block: clamp(26px, 3.4vw, 42px); }
.step:first-of-type { border-top: 2px solid var(--ink); }
.step-head { display: flex; gap: 15px; align-items: baseline; margin-bottom: clamp(16px, 2.2vw, 24px); }
.step-num {
  font-family: var(--display); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; font-variant-numeric: tabular-nums;
  color: var(--ink-soft); border: 1.5px solid var(--line);
  padding: 5px 10px; flex: none;
}
.step h2 {
  font-family: var(--display);
  font-size: clamp(1.16rem, 2.4vw, 1.55rem);
  font-weight: 700; letter-spacing: .01em; text-transform: uppercase; margin: 0;
}
.step-hint { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 0; }

.spot-types { display: grid; gap: 12px; }
@media (min-width: 720px) { .spot-types { grid-template-columns: repeat(3, 1fr); } }
.spot-type {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  min-height: 108px; padding: 20px;
  border: 2px solid var(--ink); background: transparent;
  text-align: left; cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.spot-type:hover { background: rgba(240,144,96,.34); transform: translateY(-2px); }
.spot-type[aria-pressed="true"] { background: var(--coral); transform: none; }
.spot-type .st-name { font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.spot-type .st-price { font-family: var(--display); font-size: 1.04rem; font-weight: 600; }
.spot-type .st-note { font-size: .88rem; color: var(--ink-soft); }
.spot-type[aria-pressed="true"] .st-note { color: rgba(43,40,37,.8); }

.cal { max-width: 430px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.cal-head strong { font-family: var(--display); font-size: 1.18rem; font-weight: 700; }
.cal-nav {
  min-width: 48px; min-height: 48px;
  border: 1.5px solid var(--ink); background: transparent;
  font-size: 1.15rem; cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.cal-nav:hover:not(:disabled) { background: var(--ink); color: var(--cream); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: .74rem; font-weight: 700; letter-spacing: .08em; color: var(--ink-soft); padding-bottom: 6px; }
.cal-day {
  min-height: 48px; border: 1px solid var(--line-soft); background: transparent;
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  font-variant-numeric: tabular-nums; cursor: pointer;
  transition: background .16s var(--ease), border-color .16s var(--ease);
}
.cal-day:hover:not(:disabled) { background: rgba(240,144,96,.34); border-color: var(--ink); }
.cal-day:disabled { color: rgba(43,40,37,.28); cursor: not-allowed; border-color: transparent; }
.cal-day.is-empty { border: 0; cursor: default; }
.cal-day[aria-pressed="true"] { background: var(--coral); border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }

.durations { display: flex; flex-wrap: wrap; gap: 10px; }
.dur-btn {
  min-height: 60px; padding: 14px 24px;
  border: 1.5px solid var(--ink); background: transparent;
  font-family: var(--display); font-size: 1.02rem; font-weight: 700;
  cursor: pointer; transition: background .18s var(--ease);
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.dur-btn:hover { background: rgba(240,144,96,.34); }
.dur-btn[aria-pressed="true"] { background: var(--coral); box-shadow: inset 0 0 0 2px var(--ink); }
.dur-btn .dur-price { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.dur-btn[aria-pressed="true"] .dur-price { color: rgba(43,40,37,.8); }

.fields { display: grid; gap: 18px; max-width: 640px; }
@media (min-width: 720px) { .fields { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-size: .84rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input {
  min-height: 60px; padding: 12px 16px;
  border: 1.5px solid var(--line); background: var(--cream);
  font-family: var(--body); font-size: 1.06rem; color: var(--ink);
  border-radius: 0;
}
.field input:focus { border-color: var(--ink); }

.summary { border: 2px solid var(--ink); background: var(--cream); padding: clamp(22px, 3vw, 32px); }
.summary h2 {
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px;
}
.summary dl { margin: 0; }
.summary .row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.summary .row:first-child { border-top: 0; }
.summary .row--total { border-top: 2px solid var(--ink); margin-top: 6px; padding-top: 16px; }
.summary dt { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.summary dd { margin: 0; font-family: var(--display); font-size: 1.12rem; font-weight: 700; text-align: right; }
.summary .row--total dd { font-size: 1.7rem; }
.summary dd.is-empty { color: rgba(43,40,37,.38); font-weight: 500; }
.summary .btn { width: 100%; margin-top: 22px; }

.booking-status:empty { display: none; }
.booking-status { margin-top: 18px; padding: 20px 22px; border: 2px solid var(--ink); background: var(--mustard); }
.booking-status strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: 6px; }
.booking-status ul { margin: 8px 0 0; padding-left: 20px; }
.demo-note {
  margin-top: 16px; padding: 14px 18px;
  border-left: 4px solid var(--coral);
  background: rgba(43,40,37,.05); font-size: .94rem; line-height: 1.5;
}

.help-grid {
  display: grid; gap: clamp(28px, 4vw, 54px);
  padding-top: clamp(26px, 3.4vw, 42px);
  border-top: 1px solid var(--line);
}
@media (min-width: 820px) { .help-grid { grid-template-columns: 1fr 1fr; } }
.contact-phone--dark { color: var(--ink); }
.contact-phone--dark:hover { border-bottom-color: var(--coral); }
.hours-list--light { border-top: 2px solid var(--ink); }
.hours-list--light li { border-bottom-color: var(--line-soft); }
.hours-list--light .time { color: var(--ink); }

/* --------------------------------------------------------------------------
   12. KEVYT ESIINTULO
   -------------------------------------------------------------------------- */
html.js .reveal.is-pending { opacity: 0; transform: translateY(12px); }
html.js .reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }

/* --------------------------------------------------------------------------
   13. PREFERS-REDUCED-MOTION — valmis lopputila heti
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    transition-duration: .001ms !important;
  }
  .art-half { transform: none !important; }
  .hero-logo, .hero-foot { opacity: 1 !important; transform: none !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   14. TULOSTUS
   -------------------------------------------------------------------------- */
@media print {
  .nav, .btn, .booking, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
}
