/* ==========================================================================
   LUMA Design — sales page for photographers
   Light gallery base, prism gradient accents (Licht), EXIF-label system.
   ========================================================================== */

/* Self-hosted fonts (GDPR: no external font requests) -------------------- */

@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cabinet-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/cabinet-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/cabinet-grotesk-800.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrument-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/instrument-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/instrument-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/instrument-serif-400-italic.woff2') format('woff2');
}

:root {
  --paper: oklch(97.5% 0.008 85);
  --ink: oklch(17% 0.015 280);
  --ink-soft: oklch(38% 0.015 280);
  --line: oklch(88% 0.01 85);
  --card: oklch(99% 0.004 85);

  /* prism: light split into warm-to-cool (LUMA = Licht) */
  --sun: oklch(70% 0.18 55);
  --rose: oklch(60% 0.22 15);
  --violet: oklch(50% 0.2 300);
  --sun-deep: oklch(56% 0.16 50);
  --grad: linear-gradient(100deg, var(--sun) 0%, var(--rose) 55%, var(--violet) 100%);

  --font-display: 'Cabinet Grotesk', -apple-system, sans-serif;
  --font-body: 'Instrument Sans', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-accent: 'Instrument Serif', Georgia, serif;

  --space-section: clamp(5rem, 10vw, 8rem);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --measure: 40rem;
}

/* Base ------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 24ch; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 700; }

h1 em, h2 em { font-style: italic; font-family: var(--font-accent); font-weight: 400; letter-spacing: 0; }

p { margin: 0 0 1rem; max-width: var(--measure); }

a { color: var(--sun-deep); }

::selection { background: var(--violet); color: var(--paper); }

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

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

/* Prism helpers ------------------------------------------------------------ */

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ambient mesh + grain behind everything */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42rem 30rem at 12% 4%, oklch(70% 0.18 55 / 0.13), transparent 65%),
    radial-gradient(40rem 32rem at 92% 22%, oklch(50% 0.2 300 / 0.1), transparent 65%),
    radial-gradient(46rem 36rem at 55% 105%, oklch(60% 0.22 15 / 0.08), transparent 60%);
}
.bg-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* EXIF label system ------------------------------------------------------ */

.exif {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sun-deep);
  margin: 0 0 1.5rem;
  max-width: none;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.btn-primary {
  background: var(--grad);
  color: oklch(99% 0.003 90);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px oklch(60% 0.22 15 / 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-small { min-height: 44px; padding: 0.45rem 1.2rem; font-size: 0.9rem; }
.btn-wide { width: 100%; }

/* Header: floating pill nav ----------------------------------------------- */

.site-header {
  position: fixed;
  top: 0.9rem;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
  width: min(72rem, calc(100% - 2 * var(--gutter)));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1px solid oklch(100% 0 0 / 0.6);
  background: color-mix(in oklch, var(--paper) 72%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px oklch(17% 0.015 280 / 0.35);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark-dot {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 1.3rem; }
.nav-links > a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links > a:not(.btn):hover { color: var(--ink); }

@media (max-width: 560px) {
  .nav-links > a:not(.btn) { display: none; }
}

/* Layout ----------------------------------------------------------------- */

.section {
  padding: var(--space-section) var(--gutter);
  max-width: 76rem;
  margin-inline: auto;
}

/* HERO: editorial split ---------------------------------------------------- */

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-content: center;
  padding: 7rem var(--gutter) 5rem;
  max-width: 82rem;
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 920px) {
  .hero-inner { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); }
}

.hero-h1 {
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
  line-height: 1.0;
  margin-bottom: 1.6rem;
  max-width: none;
}

.hero-break { display: block; }

.h1-pill {
  display: inline-block;
  vertical-align: middle;
  width: clamp(4rem, 8vw, 7rem);
  height: clamp(2rem, 3.8vw, 3.3rem);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0.15em;
  transform: rotate(-4deg);
  border: 3px solid oklch(99% 0.004 85);
  box-shadow: 0 8px 20px -10px oklch(17% 0.015 280 / 0.4);
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.h1-pill img { width: 100%; height: 100%; object-fit: cover; }
.hero-h1:hover .h1-pill { transform: rotate(3deg) scale(1.08); }

/* mask wrappers for the line reveal */
.hero .line { display: block; overflow: clip; padding-block: 0.06em; }
.hero .line > span { display: block; }
.exif[data-hero-line],
.hero-sub[data-hero-line],
.hero-ctas[data-hero-line] { overflow: clip; }
.exif[data-hero-line] > span,
.hero-sub[data-hero-line] > span,
.hero-ctas[data-hero-line] > span { display: block; }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 2.2rem;
}

.hero-ctas > span {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* rotated photo stack -- mobile: normal-flow row with overlap (kein absolute
   Prozent-Layout, das bei schmalen Viewports bricht), Desktop ab 920px: freier
   rotierter Stack wie zuvor. */
.hero-stack {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  padding: 0.5rem 0 2.2rem;
}

.stack-card {
  position: relative;
  margin: 0 -0.9rem;
  flex-shrink: 0;
  width: clamp(6rem, 26vw, 8rem);
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid oklch(99% 0.004 85);
  box-shadow: 0 24px 50px -24px oklch(17% 0.015 280 / 0.5);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stack-card:nth-child(1) { rotate: -6deg; z-index: 1; top: 0.5rem; }
.stack-card:nth-child(2) { rotate: 3deg; z-index: 3; top: -0.4rem; }
.stack-card:nth-child(3) { rotate: -2deg; z-index: 2; top: 0.7rem; }
.stack-card:hover { transform: scale(1.05) rotate(1deg); z-index: 4; }
.stack-card img { filter: grayscale(1) contrast(1.05); }

.stack-exif {
  flex: 1 0 100%;
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 0.62rem;
  color: var(--ink-soft);
}

@media (min-width: 920px) {
  .hero-stack { height: clamp(20rem, 42vw, 30rem); padding: 0; justify-content: normal; }
  .stack-card { position: absolute; margin: 0; width: clamp(11rem, 16vw, 15rem); top: 0; }
  .stack-card:nth-child(1) { top: 4%; left: 2%; rotate: -7deg; }
  .stack-card:nth-child(2) { top: 16%; left: 34%; rotate: 4deg; }
  .stack-card:nth-child(3) { top: 40%; left: 12%; rotate: -2deg; }
  .stack-exif { position: absolute; bottom: -6%; left: 12%; text-align: left; margin: 0; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  translate: -50% 0;
  width: 1.4rem;
  height: 2.3rem;
  border: 1.5px solid var(--ink-soft);
  border-radius: 999px;
  opacity: 0.6;
}
.hero-scroll-dot {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  translate: -50% 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--ink-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-dot { animation: hero-scroll-dot 1.6s ease-in-out infinite; }
}
@keyframes hero-scroll-dot {
  0% { translate: -50% 0; opacity: 1; }
  65% { translate: -50% 0.7rem; opacity: 0; }
  100% { translate: -50% 0.7rem; opacity: 0; }
}

/* NICHES: statische EXIF-Klammer-Zeile (F/1.8-Kamera-Motiv der Seite statt
   generischem Gradient-Sternchen-Scroll-Ticker). */

.niches {
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
  background: color-mix(in oklch, var(--card) 65%, transparent);
}

.niches-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
  list-style: none;
  margin: 0;
  padding: 0 1.2rem;
  max-width: 64rem;
  margin-inline: auto;
}

.niches-list li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun-deep);
  white-space: nowrap;
  padding: 0 0.9rem;
  border-right: 1px solid var(--line);
}

.niches-list li:last-child { border-right: none; }

/* PROBLEM ------------------------------------------------------------------ */

.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.problem-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 26ch;
}

.problem-list strong { font-weight: 800; }

/* zigzag rhythm: middle statement swings right */
@media (min-width: 768px) {
  .problem-list li:nth-child(2) { margin-left: auto; }
}

/* MANIFEST: scrub reveal ---------------------------------------------------- */

.manifest { text-align: center; }

.manifest-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin-inline: auto;
}

.manifest-text .w { opacity: 0.14; }

/* BENTO --------------------------------------------------------------------- */

.bento-grid {
  display: grid;
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(15rem, auto);
  }
  .bento-big { grid-column: span 4; grid-row: span 2; }
  .bento-stat { grid-column: span 2; grid-row: span 1; }
}

.bento-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-big { min-height: 22rem; padding: 0; }

.bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}
.bento-big:hover .bento-bg { transform: scale(1.05); filter: grayscale(0.2) contrast(1.05); }

.bento-overlay {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: linear-gradient(to top, oklch(17% 0.015 280 / 0.82), transparent);
  color: oklch(97% 0.005 90);
}
.bento-overlay h3 { color: inherit; margin-bottom: 0.4rem; }
.bento-overlay p { color: oklch(90% 0.008 85); margin: 0; }

.bento-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  margin: 0 0 auto;
}

.bento-stat h3 { margin: 1.2rem 0 0.4rem; }
.bento-stat p:not(.bento-number) { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.bento-dark {
  background: var(--ink);
  border-color: transparent;
  color: oklch(97% 0.005 90);
}
.bento-dark .bento-number { color: oklch(97% 0.005 90); }
.bento-dark h3 { color: inherit; }
.bento-dark p:not(.bento-number) { color: oklch(78% 0.01 85); }
.bento-link { color: oklch(85% 0.09 55); }

/* Centered sections: headings centered, card innards stay left ------------- */

.section-center { text-align: center; }
.section-center h2 { margin-inline: auto; }
.section-center > p { margin-inline: auto; }
.section-center .bento-card,
.section-center .acc-panel,
.section-center .price-card,
.section-center .faq-list,
.section-center .booking-form { text-align: left; }
.section-center .faq-list { margin-inline: auto; }
.section-center .booking-form,
.section-center .booking-embed { margin-inline: auto; }
/* wide enough for cal.com month view + time slots side by side */
.section-center .booking-embed { max-width: 64rem; width: 100%; }

/* PROOF ---------------------------------------------------------------------- */

.proof-intro { padding-bottom: 2rem; text-align: center; }
.proof-intro h2 { margin-inline: auto; }
.proof-intro > p { margin-inline: auto; }

.proof-pin { overflow: clip; }

.proof-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

@media (min-width: 768px) {
  .js .proof-track { flex-direction: row; }
}

.proof-panel {
  flex: 0 0 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* top padding keeps panel labels clear of the fixed pill nav while pinned */
  padding: 6.5rem var(--gutter) 2rem;
}

.proof-panel > * { text-align: left; }
.proof-panel > .exif { text-align: center; }

.proof-panel-visual > a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  max-width: min(100%, 46rem);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px -34px oklch(17% 0.015 280 / 0.4);
  margin-bottom: 1.25rem;
}

.proof-panel-visual img {
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.proof-panel-visual > a:hover img { transform: scale(1.04); }

.proof-note { color: var(--ink-soft); max-width: 46rem; width: 100%; }

.proof-quote {
  margin: 0.4rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--sun-deep);
  font-style: italic;
  color: var(--ink);
  max-width: 46rem;
  width: 100%;
}
.proof-quote cite {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.proof-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sun-deep);
}
.proof-link:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .proof-panel { min-height: 0; padding-block: 3rem; }
}

/* PROCESS: horizontal accordion ------------------------------------------------ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 3rem;
}

@media (min-width: 820px) {
  .accordion { flex-direction: row; min-height: 20rem; }
}

.acc-panel {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  cursor: default;
  transition: flex 600ms cubic-bezier(0.22, 1, 0.36, 1), background-color 400ms ease, border-color 400ms ease;
}

@media (min-width: 820px) {
  .acc-panel:hover, .acc-panel:focus-visible { flex: 2.2; }
}

.acc-panel:hover, .acc-panel:focus-visible {
  border-color: transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
}

.acc-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.acc-body h3 { margin-bottom: 0.5rem; }
.acc-body p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ABOUT -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); align-items: start; }
}

.about-photo img {
  border-radius: 14px;
  margin-bottom: 0.8rem;
}
.about-photo .exif { margin: 0; font-size: 0.62rem; color: var(--ink-soft); }

/* PRICING -------------------------------------------------------------------------- */

.pricing { display: grid; justify-items: center; }

.price-grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 34rem;
  margin-top: 2.5rem;
}

@media (min-width: 920px) {
  .price-grid {
    max-width: 71rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.price-grid .price-card {
  margin-top: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}
.price-grid .price-card .btn { margin-top: auto; }

.price-card {
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin-top: 2.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 18px;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px -40px oklch(60% 0.22 15 / 0.45);
}

/* Abo-Karte: ruhiger Rahmen, damit der Festpreis die Bühne behält */
.price-card-abo {
  background: var(--card);
  border: 1px solid var(--line);
  padding: calc(clamp(1.75rem, 4vw, 3rem) + 1px);
  box-shadow: 0 30px 70px -40px oklch(17% 0.015 280 / 0.35);
}

.price-card-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-name { margin-bottom: 0.4rem; }

.price-amount { margin: 0 0 0.8rem; }

.price-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-net {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.price-exif { margin-bottom: 0; }

@media (max-width: 420px) {
  .price-exif { font-size: 0.58rem; letter-spacing: 0.03em; }
}

.price-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.price-list li {
  padding-left: 1.5rem;
  position: relative;
}

.price-list li::before {
  content: "✳";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-reassure {
  margin-top: 1.6rem;
  max-width: 38rem;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price-after { margin-top: 2rem; }

.price-anchor {
  color: var(--ink-soft);
  max-width: 34rem;
}

.price-story {
  max-width: 36rem;
  margin-top: 1.5rem;
}

.price-story .price-roi { margin-top: 0.8rem; font-weight: 600; color: var(--ink); }
.price-story-lead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.price-story p:not(.price-story-lead) {
  color: var(--ink-soft);
  margin: 0;
}
.section-center .price-story { margin-inline: auto; }

/* FAQ ---------------------------------------------------------------------------- */

.faq-list {
  margin-top: 2rem;
  max-width: 44rem;
  border-top: 1px solid var(--line);
}

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  letter-spacing: -0.01em;
  padding: 1.2rem 2.5rem 1.2rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  font-family: var(--font-mono);
  position: absolute;
  right: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: rotate 200ms ease;
}

.faq-list details[open] summary::after { rotate: 45deg; }

.faq-list details p {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
}

/* BOOKING -------------------------------------------------------------------------- */

.booking-h2 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }

.booking-sub { color: var(--ink-soft); margin-bottom: 2.5rem; }

.booking-embed {
  min-height: 220px;
  display: grid;
  border: 1px dashed var(--line);
  border-radius: 16px;
  margin-bottom: 2.5rem;
  background: color-mix(in oklch, var(--card) 60%, transparent);
}

.booking-embed-consent[hidden] { display: none; }

.booking-embed-consent {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
}

.booking-embed-note { margin: 0; }
.booking-embed-hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin: 0 0 0.5rem;
}

.booking-embed-cal { min-height: 640px; }

/* form is a collapsed fallback below the calendar */
.form-fallback {
  max-width: 34rem;
  margin-inline: auto;
}

.form-fallback summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-fallback summary::-webkit-details-marker { display: none; }
.form-fallback summary::after {
  content: "+";
  font-family: var(--font-mono);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: rotate 200ms ease;
}
.form-fallback[open] summary::after { rotate: 45deg; }
.form-fallback summary:hover { color: var(--ink); }
.form-fallback[open] { text-align: left; }
.form-fallback[open] summary { margin-bottom: 1.5rem; }

.booking-form {
  max-width: 34rem;
  display: grid;
  gap: 1.2rem;
}

.form-row { display: grid; gap: 0.4rem; }

.booking-form label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-optional { text-transform: none; letter-spacing: 0; }

.booking-form input,
.booking-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  min-height: 44px;
  width: 100%;
}

.booking-form input:focus-visible,
.booking-form textarea:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 0;
  border-color: var(--violet);
}

.form-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--sun-deep);
  min-height: 1.2em;
  margin: 0;
}

/* FOOTER ------------------------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer .exif { margin: 0; }

.site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }

.site-footer a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.footer-link-btn:hover { color: var(--ink); }

/* Cookie consent banner ----------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 1.25rem;
  z-index: 50;
  max-width: 44rem;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 60px -24px oklch(17% 0.015 280 / 0.35);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; flex: 1 1 20rem; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex: 0 0 auto; }

/* Legal pages -------------------------------------------------------------------------- */

.legal {
  max-width: 44rem;
  margin-inline: auto;
  padding: 9rem var(--gutter) 4rem;
}

/* Reveal initial states (JS only — page fully readable without JS) --------- */

.js [data-reveal] { opacity: 0; }
.js .hero .line > span,
.js [data-hero-line] > span { transform: translateY(110%); }

/* Reduced motion ------------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js [data-reveal] { opacity: 1; }
  .js .hero .line > span,
  .js [data-hero-line] > span { transform: none; }
  .manifest-text .w { opacity: 1; }
}
