/* ==========================================================================
   VIK Hudstudio — quiet luxury, ikke pastell-spa-klisjé
   Palett: sand / stein / varm blekk + dyp oliven som eneste aksent
   ========================================================================== */

:root {
  --sand: #f4efe6;
  --sand-deep: #ece3d4;
  --stone: #d9cebb;
  --ink: #2b2620;
  --ink-soft: #5c5346;
  --olive: #4a5240;
  --olive-deep: #363d2f;
  --line: rgba(43, 38, 32, 0.14);
  --line-soft: rgba(43, 38, 32, 0.08);

  --sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;

  --max: 1280px;
  --edge: clamp(1.5rem, 5vw, 5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
img { max-width: 100%; }

em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--olive);
}

.section-index {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.section-index--light { color: rgba(244, 239, 230, 0.55); }

/* ---- Knapper ---- */
.btn {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.7rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
}
.btn--solid { background: var(--olive); color: var(--sand); }
.btn--solid:hover:not(:disabled) { background: var(--olive-deep); }
.btn--solid:disabled { opacity: 0.35; cursor: not-allowed; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--sand); }
.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

/* ---- Reveal: subtilt, ikke "wow" ---- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Rail / nav
   ========================================================================== */

.rail {
  position: fixed;
  top: 0; left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem var(--edge);
}
.rail__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.rail__toggle {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.rail__toggle span {
  width: 12px; height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}
.rail__toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.rail__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.rail__menu {
  position: fixed;
  top: 0; right: 0;
  z-index: 59;
  height: 100vh;
  width: min(340px, 82vw);
  background: var(--olive-deep);
  color: var(--sand);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem var(--edge);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.rail__menu.is-open { transform: translateX(0); }
.rail__menu a {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-style: italic;
  text-decoration: none;
  color: var(--sand);
  opacity: 0.9;
}
.rail__menu a:hover { opacity: 1; }
.rail__menu-cta {
  margin-top: 1rem;
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.4);
  color: var(--sand);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.rail__menu-cta:hover { background: var(--sand); color: var(--olive-deep); }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  padding: 0.9rem var(--edge);
  background: rgba(244, 239, 230, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.topbar.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.topbar__mark {
  margin-right: auto;
  margin-left: 3.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.topbar__nav { display: flex; align-items: center; gap: 2rem; }
.topbar__nav a {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
}
.topbar__nav a:hover { color: var(--olive); }
.topbar__cta {
  background: var(--olive);
  color: var(--sand);
  border: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.3rem;
  border-radius: 2px;
  cursor: pointer;
}
.topbar__cta:hover { background: var(--olive-deep); }
@media (max-width: 700px) {
  .topbar__nav a { display: none; }
  .topbar__mark { margin-left: 3.5rem; }
}

/* ==========================================================================
   Hero — asymmetrisk, bildet fyller full høyde til høyre
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr clamp(320px, 38vw, 560px);
  align-items: stretch;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--edge) 2.5rem;
  max-width: 46rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.4rem;
}

.hero__title {
  font-weight: 300;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}

.hero__lede {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 29rem;
  margin: 0 0 2.4rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}
.hero__hours { font-size: 0.85rem; color: var(--ink-soft); }

.hero__foot {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll { position: relative; padding-left: 2.4rem; }
.hero__scroll::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.7rem; height: 1px;
  background: var(--ink-soft);
  animation: nudge 2.6s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: scaleX(1); transform-origin: left; opacity: 0.5; }
  50% { transform: scaleX(1.5); transform-origin: left; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll::before { animation: none; }
}

.hero__image {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__image figcaption {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  background: rgba(43, 38, 32, 0.5);
  backdrop-filter: blur(3px);
  color: var(--sand);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero__text { padding: 7.5rem var(--edge) 2.5rem; }
  .hero__foot { padding-top: 2.5rem; }
  .hero__image { aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   Behandlinger — sticky venstrekolonne + liste, ingen ikon-grid
   ========================================================================== */

.treatments {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--edge);
}

.treatments__inner {
  display: grid;
  grid-template-columns: minmax(240px, 22rem) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.treatments__aside-sticky {
  position: sticky;
  top: 6rem;
}
.treatments__aside h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  margin-bottom: 1.2rem;
}
.treatments__intro {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 22rem;
}
.treatments__aside-image {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.treatments__aside-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.treatments__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.treatments__list li { border-bottom: 1px solid var(--line); }

.treatments__row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.9rem 0;
  transition: opacity 0.3s ease;
}

.treatments__num {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  font-variant-numeric: tabular-nums;
}

.treatments__name {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 32rem;
}
.treatments__serif {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
}
.treatments__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.treatments__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.treatments__price { color: var(--ink); font-weight: 500; }

.treatments__book {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.15rem;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.treatments__list li:hover .treatments__book,
.treatments__book:focus-visible { opacity: 1; }
.treatments__book:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--sand);
}

@media (max-width: 900px) {
  .treatments__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .treatments__aside-sticky { position: static; }
  .treatments__aside-image { aspect-ratio: 16 / 9; }
  .treatments__intro { max-width: none; }
}

@media (max-width: 620px) {
  .treatments__row {
    grid-template-columns: 1fr auto;
    gap: 0.6rem 1rem;
    padding: 1.6rem 0;
  }
  .treatments__num { display: none; }
  .treatments__meta {
    flex-direction: row;
    align-items: baseline;
    gap: 0.9rem;
    grid-column: 1;
  }
  .treatments__book {
    opacity: 1;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }
}

/* ==========================================================================
   Bildebånd
   ========================================================================== */

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  align-items: start;
}
.band__item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.band__item--tall {
  aspect-ratio: 3 / 4;
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
}
.band__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.band__item:hover img { transform: scale(1.03); }

.band__note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink-soft);
}
.band__line {
  flex: 0 0 clamp(3rem, 12vw, 10rem);
  height: 1px;
  background: var(--line);
}

@media (max-width: 700px) {
  .band { grid-template-columns: 1fr 1fr; }
  .band__item--tall { grid-row: span 2; aspect-ratio: 3 / 5; margin-top: 0; }
}

/* ==========================================================================
   Statement — helsides tekst på oliven
   ========================================================================== */

.statement {
  background: var(--olive-deep);
  color: var(--sand);
  padding: clamp(5rem, 10vw, 9rem) var(--edge);
}
.statement__inner {
  max-width: 62rem;
  margin: 0 auto;
}
.statement__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.38;
  max-width: 40rem;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.statement__content {
  display: grid;
  grid-template-columns: minmax(200px, 20rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.statement__image {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.16);
}
.statement__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94);
}
.statement__image figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(30, 34, 26, 0.85), transparent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--sand);
}
.statement__body { max-width: 32rem; }
.statement__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 239, 230, 0.82);
  margin: 0 0 1.4rem;
}

.statement__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 2.5rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
}
.statement__facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 0.35rem;
}
.statement__facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

@media (max-width: 760px) {
  .statement__content { grid-template-columns: 1fr; }
  .statement__image { aspect-ratio: 4 / 3; }
  .statement__facts { gap: 1.75rem; }
}

/* ==========================================================================
   Praktisk
   ========================================================================== */

.practical {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--edge) clamp(3rem, 6vw, 5rem);
}
.practical__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.practical__head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.practical__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.practical__col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.2rem;
}
.practical__h3-spaced { margin-top: 2.5rem; }

.practical__hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.93rem;
}
.practical__hours dt { color: var(--ink-soft); }
.practical__hours dd { margin: 0; font-weight: 500; font-variant-numeric: tabular-nums; }
.practical__hours .is-closed { color: var(--stone); font-weight: 400; }

address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.practical__note {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 22rem;
  margin: 0.6rem 0 0;
}
.practical__contact { margin: 0 0 0.4rem; }
.practical__contact a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.practical__contact a:hover { border-color: var(--olive); color: var(--olive); }

.practical__col--visual { display: flex; flex-direction: column; gap: 1.5rem; }
.practical__image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.practical__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.practical__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.practical__cta p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .practical__grid { grid-template-columns: 1fr 1fr; }
  .practical__col--visual { grid-column: 1 / -1; }
  .practical__image { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .practical__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem var(--edge) 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Booking — demo-UI
   ========================================================================== */

.booking {
  position: fixed;
  inset: 0;
  z-index: 80;
}
.booking[hidden] { display: none; }

.booking__scrim {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 22, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.booking.is-open .booking__scrim { opacity: 1; }

.booking__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(680px, 100%);
  background: var(--sand);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(43, 38, 32, 0.12);
}
.booking.is-open .booking__panel { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .booking__scrim, .booking__panel { transition: none; }
}

.booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem clamp(1.5rem, 4vw, 2.75rem) 1.25rem;
  border-bottom: 1px solid var(--line);
}
.booking__demo {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}
.booking__head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
}
.booking__close {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.booking__close:hover { background: var(--ink); color: var(--sand); }

.booking__steps {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 1rem clamp(1.5rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--stone);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.booking__steps::-webkit-scrollbar { display: none; }
.booking__steps li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  padding-right: 0.6rem;
}
.booking__steps li span {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.64rem;
}
.booking__steps li.is-active { color: var(--ink); }
.booking__steps li.is-done { color: var(--olive); }
.booking__steps li.is-done span {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--sand);
}

.booking__body {
  flex: 1;
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.75rem);
}

.booking__panel-step {
  border: none;
  margin: 0;
  padding: 0;
  display: none;
}
.booking__panel-step.is-active { display: block; }

.booking__legend {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding: 0;
  color: var(--ink);
}

/* ---- Steg 1: behandlingsvalg ---- */
.booking__choices {
  border-top: 1px solid var(--line-soft);
}
.choice {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.1rem 0.6rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s ease, padding-left 0.25s ease;
}
.choice:hover { background: rgba(217, 206, 187, 0.22); padding-left: 1rem; }
.choice.is-selected { background: rgba(74, 82, 64, 0.09); padding-left: 1rem; }
.choice__dot {
  flex: 0 0 auto;
  width: 13px; height: 13px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  position: relative;
  top: 4px;
}
.choice.is-selected .choice__dot {
  border-color: var(--olive);
  background:
    radial-gradient(circle, var(--olive) 0 45%, transparent 46%);
}
.choice__text { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.choice__name { font-family: var(--serif); font-size: 1.3rem; line-height: 1.2; }
.choice__desc { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }
.choice__meta {
  flex: 0 0 auto;
  text-align: right;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.choice__meta strong { display: block; color: var(--ink); font-weight: 500; }

/* ---- Steg 2: kalender + tider ---- */
.booking__when {
  display: grid;
  grid-template-columns: 1fr minmax(140px, 190px);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}
@media (max-width: 560px) {
  .booking__when { grid-template-columns: 1fr; }
}

.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal__month {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}
.cal__nav {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1;
}
.cal__nav:hover:not(:disabled) { background: var(--ink); color: var(--sand); }
.cal__nav:disabled { opacity: 0.25; cursor: not-allowed; }

.cal__weekdays, .cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal__weekdays {
  margin-bottom: 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
}
.cal__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cal__day:hover:not(:disabled) { border-color: var(--olive); }
.cal__day:disabled { color: var(--stone); cursor: not-allowed; }
.cal__day.is-empty { pointer-events: none; }
.cal__day.is-today { border-color: var(--line); font-weight: 600; }
.cal__day.is-selected {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--sand);
}
.cal__legend {
  margin: 0.9rem 0 0;
  font-size: 0.76rem;
  color: var(--ink-soft);
  font-style: italic;
}

.slots__label {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
}
.slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.4rem;
}
.slot {
  padding: 0.6rem 0.3rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.slot:hover:not(:disabled) { border-color: var(--olive); }
.slot.is-selected { background: var(--olive); border-color: var(--olive); color: var(--sand); }
.slot:disabled {
  color: var(--stone);
  border-color: var(--line-soft);
  cursor: not-allowed;
  text-decoration: line-through;
}
.slots__empty {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---- Steg 3: skjema ---- */
.booking__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field span em {
  font-family: var(--sans);
  font-style: normal;
  color: var(--stone);
  text-transform: none;
  letter-spacing: 0.02em;
}
.field input, .field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--olive);
}
.field.is-invalid input { border-bottom-color: #a8543c; }

.booking__privacy {
  margin: 1.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 560px) {
  .booking__fields { grid-template-columns: 1fr; }
}

/* ---- Steg 4: oppsummering ---- */
.booking__summary { margin: 0; border-top: 1px solid var(--line-soft); }
.booking__summary div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.booking__summary dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex: 0 0 auto;
}
.booking__summary dd {
  margin: 0;
  text-align: right;
  font-family: var(--serif);
  font-size: 1.15rem;
}
.booking__summary .is-total dd { color: var(--olive); }

.booking__done {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(74, 82, 64, 0.07);
  text-align: center;
}
.booking__done-mark {
  margin: 0 auto 0.9rem;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-size: 1.1rem;
}
.booking__done-title {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
}
.booking__done-text {
  margin: 0 auto;
  max-width: 26rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- Bunn ---- */
.booking__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.5rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
  background: var(--sand-deep);
}
.booking__running {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.booking__running strong { color: var(--ink); font-weight: 500; }
.booking__actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.booking__actions .btn { padding: 0.7rem 1.4rem; }

@media (max-width: 520px) {
  .booking__running { display: none; }
  .booking__actions { width: 100%; }
  .booking__actions .btn { flex: 1; }
}
