/* components.css — UI components on the Foto Freisleben design system */

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  padding: .95em 1.5em;
  min-height: 48px;
  border-radius: var(--r-pill);
  border: var(--bw) solid transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn__ico { width: 1.05em; height: 1.05em; flex: none; }

/* primary — cobalt with a fill-sweep */
.btn--primary { background: var(--c-brand); color: #fff; box-shadow: var(--shadow-1); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--c-brand-600);
  transform: translateY(101%);
  transition: transform var(--dur-2) var(--ease-out);
}
.btn--primary:hover { box-shadow: var(--shadow-2); }
.btn--primary:hover::before { transform: translateY(0); }

/* accent — safelight amber */
.btn--accent { background: var(--c-accent); color: var(--c-dark); }
.btn--accent:hover { background: var(--c-accent-600); }

/* ghost / outline */
.btn--ghost { border-color: var(--c-ink); color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); }
.on-dark .btn--ghost { border-color: color-mix(in srgb, var(--c-cream) 55%, transparent); color: var(--c-cream); }
.on-dark .btn--ghost:hover { background: var(--c-cream); color: var(--c-dark); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1em 1.9em; font-size: var(--step-0); }

/* text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 600;
  color: var(--c-brand);
  font-size: var(--step--1);
}
.link-arrow svg { width: 1.1em; height: 1.1em; transition: transform var(--dur-2) var(--ease-spring); }
.link-arrow:hover svg { transform: translateX(4px); }
.on-dark .link-arrow { color: var(--c-accent); }

/* =========================================================
   Viewfinder frame — the signature device
   ========================================================= */
.vframe { position: relative; }
.vframe__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--c-surface-2);
}
.vframe__media img { width: 100%; height: 100%; object-fit: cover; }
/* corner brackets */
.vframe::before, .vframe::after,
.vframe__media::before, .vframe__media::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--vf-color, var(--c-accent));
  z-index: 3;
  pointer-events: none;
}
.vframe::before  { top: -7px; left: -7px;  border-right: 0; border-bottom: 0; }
.vframe::after   { top: -7px; right: -7px; border-left: 0;  border-bottom: 0; }
.vframe__media::before { bottom: -7px; left: -7px;  border-right: 0; border-top: 0; }
.vframe__media::after  { bottom: -7px; right: -7px; border-left: 0;  border-top: 0; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--c-dark);
  color: var(--c-cream);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding-block: calc(var(--header-h) + 2rem) var(--sp-2xl);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.02);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 38%, rgba(224,151,59,.16), transparent 55%),
    linear-gradient(180deg, rgba(22,19,15,.62) 0%, rgba(22,19,15,.42) 38%, rgba(22,19,15,.86) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 940px; }
.hero h1 {
  font-size: var(--step-6);
  letter-spacing: -0.022em;
  max-width: 16ch;
  margin-block: .35em .55em;
}
.hero h1 em { font-style: italic; color: var(--c-accent); }
.hero__lead {
  font-size: var(--step-1);
  max-width: 52ch;
  color: var(--c-cream);
  opacity: .92;
}
.hero__cta { margin-top: var(--sp-lg); }
.hero__meta {
  margin-top: var(--sp-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md) var(--sp-xl);
  align-items: center;
  font-size: var(--step--1);
}
.hero__rating { display: inline-flex; align-items: center; gap: .6rem; }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: var(--step--2);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-cream-soft);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(var(--c-accent), transparent); }

/* star row */
.stars { display: inline-flex; gap: 2px; color: var(--c-accent); }
.stars svg { width: 1.05em; height: 1.05em; }
.stars--ink { color: var(--c-accent-600); }

/* google chip */
.gchip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600;
}
.gchip__logo { width: 1.05em; height: 1.05em; }

/* =========================================================
   Section heading block
   ========================================================= */
.sec-head { max-width: 60ch; margin-bottom: var(--sp-xl); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: .4rem; }
.sec-head p { margin-top: .9rem; color: var(--c-muted); font-size: var(--step-1); }
.on-dark .sec-head p { color: var(--c-cream-soft); }

.sec-num {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  letter-spacing: .2em;
  color: var(--c-accent-600);
}

/* =========================================================
   Service cards
   ========================================================= */
.services { display: grid; gap: var(--sp-md); grid-template-columns: repeat(2, 1fr); }
.svc {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--sp-sm);
  padding: var(--sp-lg);
  background: var(--c-surface);
  border: var(--bw) solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: transparent; }
.svc:hover::after { transform: scaleX(1); }
.svc__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--c-brand);
  background: color-mix(in srgb, var(--c-brand) 9%, transparent);
  border-radius: var(--r-md);
}
.svc__icon svg { width: 28px; height: 28px; }
.svc h3 { font-size: var(--step-1); }
.svc p { color: var(--c-muted); font-size: var(--step-0); }
.svc__price {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  color: var(--c-ink-soft);
  padding-top: .5rem;
}
.svc__price b { color: var(--c-ink); font-weight: 600; }

/* span first card wide on large screens for variety */
.services .svc--feature { grid-column: span 2; flex-direction: row; }
@media (min-width: 760px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .services .svc--feature { grid-column: span 1; }
}

/* =========================================================
   Editorial split (image + text)
   ========================================================= */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, var(--sp-2xl));
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-sm); }
.split__media--wide img { aspect-ratio: 4/3; }
.media-credit {
  position: absolute; right: .5rem; bottom: .5rem; z-index: 4;
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(22,19,15,.6);
  padding: .25rem .5rem;
  border-radius: var(--r-sm);
  max-width: none;
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* =========================================================
   Stat strip
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}
.stat__num {
  font-family: var(--ff-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--c-cream);
}
.stat__num .unit { color: var(--c-accent); }
.stat__label {
  margin-top: .6rem;
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-cream-soft);
}
@media (max-width: 620px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg) var(--sp-md); }
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 12px;
  gap: var(--sp-sm);
}
.gtile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--c-surface-2);
  grid-column: span 4;
  grid-row: span 18;
}
.gtile--tall { grid-row: span 26; }
.gtile--wide { grid-column: span 8; }
.gtile--full { grid-column: span 12; grid-row: span 22; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-4) var(--ease-out); }
.gtile:hover img { transform: scale(1.06); }
.gtile__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.4rem 1rem .9rem;
  background: linear-gradient(transparent, rgba(22,19,15,.82));
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(8px); opacity: 0;
  transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out);
}
.gtile:hover .gtile__cap, .gtile:focus-within .gtile__cap { transform: translateY(0); opacity: 1; }
.gtile__cap span { font-family: var(--ff-mono); font-size: var(--step--2); letter-spacing: .12em; text-transform: uppercase; }
.gtile__tag {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(22,19,15,.55); color: #fff; padding: .25rem .55rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.gtile__btn { position: absolute; inset: 0; width: 100%; height: 100%; cursor: zoom-in; background: none; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 8px; }
  .gtile { grid-column: span 1; grid-row: span 20; }
  .gtile--wide, .gtile--full { grid-column: span 2; }
}

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--sp-lg); }
.chip {
  font-family: var(--ff-mono);
  font-size: var(--step--1);
  letter-spacing: .06em;
  padding: .55em 1.1em;
  border-radius: var(--r-pill);
  border: var(--bw) solid var(--c-line);
  color: var(--c-ink-soft);
  background: var(--c-surface);
  transition: all var(--dur-1) var(--ease-out);
}
.chip:hover { border-color: var(--c-ink); }
.chip[aria-pressed="true"] { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: rgba(14,12,9,.92);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-2) var(--ease-out), visibility var(--dur-2);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: var(--r-sm); box-shadow: var(--shadow-3); }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: 1.4rem; text-align: center; color: var(--c-cream-soft); font-family: var(--ff-mono); font-size: var(--step--1); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-md) var(--sp-xl);
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
}
.rating-big { display: flex; align-items: center; gap: var(--sp-md); }
.rating-big__score { font-family: var(--ff-display); font-size: var(--step-5); line-height: .9; color: var(--c-ink); }
.on-dark .rating-big__score { color: var(--c-cream); }
.rating-big__meta { font-size: var(--step--1); color: var(--c-muted); }
.on-dark .rating-big__meta { color: var(--c-cream-soft); }

.reviews { columns: 3 260px; column-gap: var(--sp-md); }
.review {
  break-inside: avoid;
  margin-bottom: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--c-surface);
  border: var(--bw) solid var(--c-line);
  border-radius: var(--r-md);
}
.on-dark .review { background: var(--c-dark-2); border-color: var(--c-dark-line); color: var(--c-cream-soft); }
.review__head { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-weight: 700; color: #fff;
  background: var(--c-brand);
  font-family: var(--ff-text);
}
.review__name { font-weight: 600; color: var(--c-ink); line-height: 1.2; }
.on-dark .review__name { color: var(--c-cream); }
.review__date { font-size: var(--step--2); color: var(--c-muted); font-family: var(--ff-mono); }
.review__text { font-size: var(--step-0); line-height: 1.55; }
.review__stars { margin-bottom: .6rem; }
.review__lang {
  display: inline-block; margin-top: .8rem;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .08em;
  color: var(--c-muted); text-transform: uppercase;
}
@media (max-width: 540px) { .reviews { columns: 1; } }

/* =========================================================
   Process / timeline
   ========================================================= */
.steps { display: grid; gap: var(--sp-lg); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding-top: var(--sp-md); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-mono);
  font-size: var(--step-2);
  color: var(--c-accent-600);
  display: block;
  margin-bottom: .5rem;
}
.step h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.step p { color: var(--c-muted); font-size: var(--step-0); }
.step__line { position: absolute; top: calc(var(--sp-md) + .7em); left: 2.6em; right: -1rem; height: 1px; background: var(--c-line); }
.step:last-child .step__line { display: none; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } .step__line { display: none; } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 6vw, 4.5rem);
  text-align: center;
  color: var(--c-cream);
  background: var(--c-dark);
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: var(--c-cream); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--c-cream-soft); max-width: 52ch; margin: 1rem auto 0; }
.cta-band .cluster { justify-content: center; margin-top: var(--sp-lg); }

/* =========================================================
   Contact info / hours
   ========================================================= */
.info-grid { display: grid; gap: var(--sp-xl); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th, .hours td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--c-line); font-weight: 400; }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today td { color: var(--c-ink); font-weight: 600; }
.hours tr.is-today td:first-child::after { content: " · heute"; color: var(--c-accent-600); font-weight: 600; font-size: var(--step--2); }
.hours .closed { color: var(--c-muted); }

.contact-line { display: flex; align-items: center; gap: .9rem; padding: .35rem 0; }
.contact-line svg { width: 1.2rem; height: 1.2rem; color: var(--c-brand); flex: none; }
.contact-line a { font-weight: 500; }

.map-frame { position: relative; border-radius: var(--r-md); overflow: hidden; border: var(--bw) solid var(--c-line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.02); }

/* =========================================================
   Forms
   ========================================================= */
.form { display: grid; gap: var(--sp-md); }
.field { display: grid; gap: .45rem; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--c-ink-soft); }
.field input, .field textarea, .field select {
  width: 100%;
  font-size: 16px; /* prevents iOS zoom */
  padding: .85rem 1rem;
  background: var(--c-surface);
  border: var(--bw) solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-brand) 18%, transparent);
}
.field-row { display: grid; gap: var(--sp-md); grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form__note { font-size: var(--step--1); color: var(--c-muted); }
.form__success {
  display: none;
  padding: var(--sp-lg);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--c-brand) 8%, var(--c-surface));
  border: var(--bw) solid var(--c-brand-300);
  text-align: center;
}
.form__success.is-visible { display: block; animation: pop var(--dur-3) var(--ease-spring) both; }
.form__success svg { width: 46px; height: 46px; color: var(--c-brand); margin: 0 auto .6rem; }
.form.is-submitted .form__fields { display: none; }
.demo-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ff-mono); font-size: var(--step--2); letter-spacing: .08em;
  color: var(--c-accent-600); text-transform: uppercase;
}

/* =========================================================
   Booking widget (demo)
   ========================================================= */
.booking {
  background: var(--c-surface);
  border: var(--bw) solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.booking__progress {
  display: flex;
  background: var(--c-surface-2);
  padding: 1rem var(--sp-lg);
  gap: .5rem;
  font-family: var(--ff-mono);
  font-size: var(--step--2);
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow-x: auto;
}
.booking__progress li {
  display: flex; align-items: center; gap: .5rem;
  color: var(--c-muted); white-space: nowrap;
}
.booking__progress li[data-state="active"] { color: var(--c-ink); font-weight: 600; }
.booking__progress li[data-state="done"] { color: var(--c-brand); }
.booking__progress li .dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid currentColor; font-size: 11px;
}
.booking__progress li[data-state="done"] .dot { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }
.booking__body { padding: var(--sp-lg); }
.booking__step { display: none; animation: fadeUp var(--dur-3) var(--ease-out) both; }
.booking__step.is-active { display: block; }
.booking__step h3 { font-size: var(--step-2); margin-bottom: 1.2rem; }

.opts { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .opts { grid-template-columns: 1fr; } }
.opt {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; text-align: left;
  border: var(--bw) solid var(--c-line); border-radius: var(--r-md);
  background: var(--c-bg);
  transition: border-color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.opt:hover { border-color: var(--c-ink); transform: translateY(-2px); }
.opt[aria-pressed="true"] { border-color: var(--c-brand); background: color-mix(in srgb, var(--c-brand) 7%, var(--c-bg)); }
.opt__name { font-weight: 600; }
.opt__meta { font-family: var(--ff-mono); font-size: var(--step--2); color: var(--c-muted); display: block; margin-top: .2rem; }
.opt__price { font-family: var(--ff-mono); font-weight: 600; color: var(--c-brand); white-space: nowrap; }

.cal { }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__head button { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--c-line); }
.cal__head button:hover { background: var(--c-surface-2); }
.cal__month { font-family: var(--ff-display); font-size: var(--step-1); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { font-family: var(--ff-mono); font-size: var(--step--2); color: var(--c-muted); text-align: center; padding-bottom: .4rem; text-transform: uppercase; }
.cal__day {
  aspect-ratio: 1; min-height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  font-variant-numeric: tabular-nums;
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out);
}
.cal__day:not(:disabled):hover { background: var(--c-surface-2); }
.cal__day:disabled { color: var(--c-line); cursor: not-allowed; }
.cal__day.is-selected { background: var(--c-brand); color: #fff; font-weight: 600; }
.cal__day.is-empty { visibility: hidden; }

.slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: .6rem; margin-top: 1.2rem; }
.slot {
  padding: .7rem; border: 1px solid var(--c-line); border-radius: var(--r-md);
  font-variant-numeric: tabular-nums; font-family: var(--ff-mono); font-size: var(--step--1);
  transition: all var(--dur-1) var(--ease-out);
}
.slot:not(:disabled):hover { border-color: var(--c-ink); }
.slot:disabled { color: var(--c-line); text-decoration: line-through; cursor: not-allowed; }
.slot[aria-pressed="true"] { background: var(--c-brand); color: #fff; border-color: var(--c-brand); }

.booking__summary {
  background: var(--c-surface-2); border-radius: var(--r-md);
  padding: 1.2rem; margin-bottom: var(--sp-md);
  display: grid; gap: .5rem; font-size: var(--step-0);
}
.booking__summary div { display: flex; justify-content: space-between; gap: 1rem; }
.booking__summary dt { color: var(--c-muted); }
.booking__summary dd { font-weight: 600; text-align: right; }
.booking__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: var(--sp-lg); }
.booking__confirm { text-align: center; padding: var(--sp-md) 0; }
.booking__confirm svg { width: 56px; height: 56px; color: var(--c-brand); margin: 0 auto 1rem; }

/* =========================================================
   Misc
   ========================================================= */
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge {
  font-family: var(--ff-mono); font-size: var(--step--2); letter-spacing: .06em;
  padding: .4em .9em; border-radius: var(--r-pill);
  background: var(--c-surface-2); color: var(--c-ink-soft);
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent));
  transition: width .1s linear;
}

.marquee {
  overflow: hidden;
  border-block: var(--bw) solid var(--c-dark-line);
  padding-block: 1.1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--ff-display); font-size: var(--step-2); font-style: italic;
  color: var(--c-cream-soft); display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after { content: "✦"; color: var(--c-accent); font-style: normal; font-size: .7em; }

.note-callout {
  border-left: 3px solid var(--c-accent);
  padding: .4rem 0 .4rem 1.2rem;
  color: var(--c-muted);
  font-size: var(--step--1);
}

/* =========================================================
   Page hero (sub-pages)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--c-dark);
  color: var(--c-cream);
  overflow: hidden;
  padding-block: calc(var(--header-h) + var(--sp-xl)) var(--sp-2xl);
}
.page-hero.grain::after { opacity: .4; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,19,15,.55), rgba(22,19,15,.8)); }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { font-size: var(--step-5); margin-block: .3em .4em; }
.page-hero p { color: var(--c-cream); opacity: .9; font-size: var(--step-1); }
.crumbs { font-family: var(--ff-mono); font-size: var(--step--2); letter-spacing: .14em; text-transform: uppercase; color: var(--c-cream-soft); display: flex; gap: .6rem; }
.crumbs a:hover { color: var(--c-accent); }

/* =========================================================
   Price list
   ========================================================= */
.pricelist { display: grid; gap: 0; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--c-line);
}
.price-row__name { font-family: var(--ff-display); font-size: var(--step-1); }
.price-row__desc { color: var(--c-muted); font-size: var(--step--1); grid-column: 1; max-width: 52ch; }
.price-row__price { font-family: var(--ff-mono); font-weight: 600; color: var(--c-brand); white-space: nowrap; font-size: var(--step-0); }
.price-row__dots { }

.legal h2 { font-size: var(--step-2); margin-top: var(--sp-lg); }
.legal h3 { font-size: var(--step-1); margin-top: var(--sp-md); }
.legal p, .legal li { color: var(--c-ink-soft); }
.legal a { color: var(--c-brand); text-decoration: underline; text-underline-offset: 2px; }
.placeholder-flag {
  display: inline-block;
  background: color-mix(in srgb, var(--c-accent) 22%, transparent);
  color: var(--c-accent-600);
  font-family: var(--ff-mono); font-size: var(--step--2);
  padding: .1em .5em; border-radius: var(--r-sm);
}
