/* ========================================================================
   Prime Time Plön — Design System
   ======================================================================== */

:root {
  --pt-paper: #faf6ef;
  --pt-paper-2: #f3ecdf;
  --pt-paper-3: #ebe1cd;
  --pt-ink: #2b2718;
  --pt-ink-2: #3a3525;
  --pt-ink-soft: rgba(43, 39, 24, 0.62);
  --pt-ink-faint: rgba(43, 39, 24, 0.4);
  --pt-copper: #cdb86e;
  --pt-copper-dark: #a8943a;
  --pt-copper-soft: #dece9a;
  --pt-gold: #cdb86e;
  --pt-bronze: #cdb86e;
  --pt-line: rgba(43, 39, 24, 0.12);
  --pt-line-soft: rgba(43, 39, 24, 0.07);
  --pt-dark: #1f1a10;
  --pt-paper-on-dark: #f5ede0;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --script: "Petit Formal Script", "Cormorant Garamond", cursive;
  --sans: "Plus Jakarta Sans", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: #fff; color: var(--pt-ink); }
html {
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ---------- Typography ------------------------------------------------ */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pt-copper);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pt-copper);
  display: inline-block;
}
.eyebrow[style*="justify-content:center"]::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pt-copper);
  display: inline-block;
}

h1, .h1-display, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.06;
  color: var(--pt-ink);
}

h1 {
  font-size: clamp(52px, 7.6vw, 132px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

h1.eyebrow,
.hero h1.eyebrow,
.page-hero h1.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.3em;
  max-width: none;
  white-space: nowrap;
}
h2 {
  font-size: clamp(36px, 4.6vw, 80px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
}
h3 {
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h4 {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.serif { font-family: var(--serif); }

p { max-width: 56ch; }

.body-lg {
  font-size: 17px;
  line-height: 1.7;
  color: var(--pt-ink-soft);
  font-weight: 400;
}
.body-md {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pt-ink-soft);
  font-weight: 400;
}

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

.wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 max(24px, 4vw);
}
.wrap-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 max(24px, 4vw);
}

section { position: relative; }

/* ---------- Header --------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px max(24px, 4vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: #141e22;
}
.site-header.shrunk {
  padding: 8px max(24px, 4vw);
  background: rgba(20, 30, 34, 0.95);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
}
.site-header .brand .brand-logo {
  height: clamp(36px, 3.8vw, 52px);
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
}
.nav .nav-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 4px;
  position: relative;
  transition: color 0.2s;
}
.nav .nav-link:hover,
.nav .nav-link.active { color: var(--pt-copper); }

.nav .socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.nav .socials a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s, color 0.25s;
}
.nav .socials a:hover { background: var(--pt-copper); color: #141e22; }
.nav .socials svg { width: 14px; height: 14px; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--pt-ink);
  color: var(--pt-ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill:hover {
  background: var(--pt-ink);
  color: var(--pt-paper);
}
.btn-pill.gold {
  background: var(--pt-copper);
  color: var(--pt-paper);
  border-color: var(--pt-copper);
}
.btn-pill.gold:hover {
  background: var(--pt-copper-dark);
  border-color: var(--pt-copper-dark);
}
.btn-pill .arrow {
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
  transform: scaleX(0.64);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}
.btn-pill .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-pill:hover .arrow { transform: scaleX(1); }

.nav .menu-toggle { display: none; }

@media (max-width: 1380px) {
  .nav .nav-link { display: none; }
  .nav .nav-cta { display: none; }
  .nav .socials { display: none; }
  .nav .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
  }
  .nav .menu-toggle .bar {
    display: inline-block;
    width: 22px; height: 1px;
    background: currentColor;
    position: relative;
  }
  .nav .menu-toggle .bar::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 6px;
    height: 1px;
    background: currentColor;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--pt-paper);
  z-index: 99;
  padding: 100px max(24px, 4vw) 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--pt-line);
  color: var(--pt-ink);
}
.mobile-menu a:hover { color: var(--pt-copper); }
.mobile-menu .contact-block {
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--pt-ink-soft);
}
.mobile-menu .contact-block a { font-size: 14px; padding: 0; border: 0; }

/* ---------- Reveal animations --------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.0s var(--ease-out), transform 1.0s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.27s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.38s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.49s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.60s; }

.parallax-target { will-change: transform; }

/* ---------- Hero ---------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(12, 8, 4, 0.88) 0%,
    rgba(12, 8, 4, 0.62) 45%,
    rgba(12, 8, 4, 0.42) 100%
  );
}

.hero-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: max(100px, 12vh) max(48px, 7vw);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
}
.hero-text-left {
  display: flex;
  flex-direction: column;
}
.hero-text-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.hero-roundel {
  width: clamp(220px, 28vw, 420px);
  height: auto;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .hero-text { grid-template-columns: 1fr; }
  .hero-text-right { display: none; }
}

.hero-text .eyebrow {
  color: var(--pt-copper-soft);
  margin-bottom: 28px;
}

.hero h1, .hero .h1-display {
  font-size: clamp(64px, 9.5vw, 160px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  font-style: normal;
  max-width: 14ch;
  margin-bottom: 48px;
}

.hero h1 .rot-wrap, .hero .h1-display .rot-wrap {
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--pt-copper-soft);
  letter-spacing: -0.02em;
  min-width: 7ch;
}
.hero h1 .rot-word {
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.5s, transform 0.7s var(--ease-out);
}
.hero h1 .rot-word.out { opacity: 0; transform: translateY(-14px); }
.hero h1 .rot-word.in  { opacity: 0; transform: translateY(14px); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta .divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}
.hero-meta .meta-block {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.hero-meta .meta-block strong {
  display: block;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.14em;
}

@media (max-width: 768px) {
  .hero-text {
    padding: 0 max(24px, 5vw) 60px;
  }
  .hero h1, .hero .h1-display {
    font-size: clamp(52px, 13vw, 96px);
    margin-bottom: 36px;
  }
  .hero-meta .divider { display: none; }
}

/* ---------- Sections ------------------------------------------------- */

.section {
  padding: clamp(70px, 11vh, 160px) 0;
  position: relative;
}

.section-paper { background: var(--pt-paper-2); }
.section-paper-2 { background: var(--pt-paper-2); }
.section-paper-3 { background: var(--pt-paper-3); }

.section-dark { background: var(--pt-dark); color: var(--pt-paper-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--pt-paper-on-dark); }
.section-dark .body-lg, .section-dark .body-md { color: rgba(245, 237, 224, 0.78); }
.section-dark .eyebrow { color: var(--pt-copper-soft); }
.section-dark .eyebrow::before, .section-dark .eyebrow::after { background: var(--pt-copper-soft); }
.section-dark .btn-pill { border-color: var(--pt-paper); color: var(--pt-paper); }
.section-dark .btn-pill:hover { background: var(--pt-paper); color: var(--pt-ink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split .text-col { max-width: 520px; }
.split .text-col .eyebrow { margin-bottom: 28px; }
.split .text-col h2 { margin-bottom: 28px; }
.split .text-col p { margin-bottom: 18px; }
.split .text-col .actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.split .img-col { position: relative; }
.split .img-col img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  box-shadow: 0 30px 60px rgba(43, 39, 24, 0.12);
}
.split .img-col .caption {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pt-ink-faint);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse > :first-child { order: unset; }
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(50px, 8vh, 90px);
}
@media (max-width: 820px) {
  .section-header { grid-template-columns: 1fr; }
}

/* ---- Full-bleed 50/50 splits -------------------------------- */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}
.section-split.compact {
  min-height: 68vh;
}
.section-split.reverse .img-col { order: 2; }
.section-split .img-col {
  overflow: hidden;
  position: relative;
}
.section-split .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}
.section-split.portrait-split .img-col {
  background: var(--pt-paper);
}
.section-split.portrait-split .img-col img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.section-split .img-col .caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 1;
}
.section-split .text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 120px) clamp(56px, 8vw, 140px);
  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.06);
}
.section-split.reverse .text-col {
  border-left: none;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.section-split .text-col .eyebrow { margin-bottom: 24px; }
.section-split .text-col h2 {
  font-size: clamp(42px, 5.5vw, 96px);
  margin-bottom: 28px;
  line-height: 1.0;
}
.section-split .text-col p { margin-bottom: 20px; max-width: 44ch; }
.section-split .text-col .actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
/* Rectangular outline buttons inside splits */
.section-split .btn-pill {
  border-radius: 0;
  padding: 14px 32px;
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
}
/* Dark variant — add class "dark" to section-split for alternating feel */
.section-split.dark .text-col {
  background: var(--pt-ink);
  color: var(--pt-paper);
  border-color: transparent;
}
.section-split.dark .text-col .eyebrow { color: var(--pt-copper); }
.section-split.dark .text-col h2 { color: var(--pt-paper); }
.section-split.dark .text-col p { color: rgba(250,246,239,0.75); }
.section-split.dark .btn-pill {
  background: transparent;
  color: var(--pt-paper);
  border-color: rgba(250,246,239,0.4);
}
.section-split.dark .btn-pill:hover {
  background: var(--pt-paper);
  color: var(--pt-ink);
}
@media (max-width: 860px) {
  .section-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .section-split .img-col {
    position: relative;
    min-height: 60vw;
    order: -1 !important;
  }
  .section-split.portrait-split .img-col {
    min-height: 0;
    overflow: visible;
  }
  .section-split.portrait-split .img-col img {
    position: static;
    width: 100%;
    height: auto;
  }
  .section-split .text-col {
    order: 1 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-row img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.gallery-row img:nth-child(2) { transform: translateY(40px); }
.gallery-row img:nth-child(4) { transform: translateY(40px); }
@media (max-width: 820px) {
  .gallery-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-row img:nth-child(2) { transform: none; }
  .gallery-row img:nth-child(4) { transform: translateY(30px); }
}

/* pt-masonry — 3-column masonry with per-image scroll fade */
.pt-masonry {
  columns: 3;
  column-gap: 6px;
  margin-top: clamp(40px, 6vh, 72px);
}
.pt-masonry a {
  display: block;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 6px;
  cursor: zoom-in;
}
.pt-masonry img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease, scale 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pt-masonry img.pt-in {
  opacity: 1;
  transform: translateY(0);
}
.pt-masonry a:hover img.pt-in {
  scale: 1.04;
}
.pt-masonry a.pt-hidden { display: none; }
@media (max-width: 900px) {
  .pt-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .pt-masonry { columns: 1; }
}

.pt-gallery-controls {
  display: none;
}

@media (max-width: 640px) {
  .pt-masonry.pt-mobile-slider {
    columns: auto;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    margin-top: clamp(24px, 5vh, 40px);
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pt-masonry.pt-mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .pt-masonry.pt-mobile-slider a {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .pt-masonry.pt-mobile-slider a.pt-hidden {
    display: block;
  }

  .pt-masonry.pt-mobile-slider img {
    aspect-ratio: 4 / 5;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1;
    transform: none;
  }

  .pt-gallery-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
  }

  .pt-gallery-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(144, 102, 65, 0.45);
    border-radius: 50%;
    color: var(--pt-ink);
    background: rgba(255, 255, 255, 0.72);
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .pt-gallery-more {
    display: none;
  }
}

/* Lightbox */
.pt-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 2, 0.96);
  z-index: 8000;
  align-items: center;
  justify-content: center;
}
.pt-lightbox.open { display: flex; }
.pt-lightbox-img {
  max-width: min(90vw, 1400px);
  max-height: 88dvh;
  object-fit: contain;
  display: block;
  user-select: none;
}
.pt-lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: rgba(250,246,239,0.7);
  cursor: pointer; font-size: 30px; line-height: 1; padding: 8px;
  transition: color 0.2s;
}
.pt-lightbox-prev,
.pt-lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(250,246,239,0.6);
  cursor: pointer; font-size: 44px; line-height: 1; padding: 16px 20px;
  transition: color 0.2s;
}
.pt-lightbox-close:hover,
.pt-lightbox-prev:hover,
.pt-lightbox-next:hover { color: var(--pt-paper); }
.pt-lightbox-prev { left: 8px; }
.pt-lightbox-next { right: 8px; }
.pt-lightbox-counter {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.1em; color: rgba(250,246,239,0.35);
}

.chapters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.chapter-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  min-height: 560px;
}
.chapter-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.chapter-card:hover img { transform: scale(1.05); }
.chapter-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 8, 4, 0.88) 0%,
    rgba(12, 8, 4, 0.45) 45%,
    rgba(12, 8, 4, 0.10) 100%
  );
  transition: background 0.5s;
}
.chapter-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(12, 8, 4, 0.92) 0%,
    rgba(12, 8, 4, 0.55) 50%,
    rgba(12, 8, 4, 0.18) 100%
  );
}
.chapter-card .ch-top { display: none; }
.chapter-card .ch-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px) clamp(32px, 4vw, 56px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chapter-card .ch-body .ch-num-inline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pt-copper-soft);
}
.chapter-card h3 {
  font-size: clamp(28px, 2.8vw, 46px);
  margin: 0;
  color: #fff;
  line-height: 1.05;
}
.chapter-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 36ch;
  margin: 0;
}
.chapter-card .ch-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pt-copper-soft);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.chapter-card:hover .ch-link {
  opacity: 1;
  transform: translateY(0);
}
.chapter-card .ch-link .arrow-icon {
  width: 42px;
  height: 1px;
  background: currentColor;
  position: relative;
  transform-origin: left center;
}
.chapter-card .ch-link .arrow-icon::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .chapters { grid-template-columns: 1fr; }
  .chapter-card { min-height: 70vw; }
  .chapter-card .ch-link { opacity: 1; transform: translateY(0); }
}

/* ---------- Price Grid ------------------------------------------------ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: clamp(40px, 6vh, 64px);
}
.price-cell {
  background: var(--pt-paper);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-cell-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pt-copper);
}
.price-cell-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--pt-ink);
}
.price-cell-price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--pt-copper-dark);
  letter-spacing: 0.04em;
}
.price-cell p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pt-ink-soft);
}
@media (max-width: 600px) {
  .price-grid { grid-template-columns: 1fr; }
}

.fullbleed {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fullbleed img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31, 26, 16, 0.78) 0%, rgba(31, 26, 16, 0.45) 55%, rgba(31, 26, 16, 0.05) 100%);
  z-index: 1;
}
.fullbleed .fb-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px max(24px, 4vw);
  color: var(--pt-paper-on-dark);
}
.fullbleed h2 { color: var(--pt-paper-on-dark); margin-bottom: 28px; }
.fullbleed p { color: rgba(245, 237, 224, 0.85); max-width: 50ch; }
.fullbleed .eyebrow { color: var(--pt-copper-soft); }
.fullbleed .eyebrow::before, .fullbleed .eyebrow::after { background: var(--pt-copper-soft); }
.fullbleed .actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.fullbleed .actions--sub { margin-top: 12px; }
.btn-pill--sm { font-size: 10px; padding: 6px 14px; letter-spacing: 0.22em; opacity: 0.6; }
.btn-pill--sm:hover { opacity: 1; }
.fullbleed .btn-pill { border-color: var(--pt-paper); color: var(--pt-paper); }
.fullbleed .btn-pill:hover { background: var(--pt-paper); color: var(--pt-ink); border-color: var(--pt-paper); }
.fullbleed .btn-pill.gold { background: var(--pt-copper); border-color: var(--pt-copper); color: var(--pt-paper); }
.fullbleed .btn-pill.gold:hover { background: var(--pt-copper-dark); border-color: var(--pt-copper-dark); }

/* ---------- Quote --------------------------------------------------- */

.quote-section {
  padding: clamp(120px, 20vh, 240px) 0;
  text-align: center;
  background: #141e22;
}
.quote-section blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
  position: relative;
  color: var(--pt-paper);
}
.quote-section blockquote .italic { color: var(--pt-copper); }
.quote-section blockquote em.italic[style] { color: var(--pt-copper); }
.quote-section blockquote::before {
  content: "\201E";
  font-family: var(--serif);
  font-style: italic;
  color: var(--pt-copper);
  font-size: 1.6em;
  opacity: 0.45;
  position: absolute;
  left: -0.7em;
  top: -0.2em;
}
.quote-section blockquote::after {
  content: "\201C";
  font-family: var(--serif);
  font-style: italic;
  color: var(--pt-copper);
  font-size: 1.6em;
  opacity: 0.45;
  position: absolute;
  right: -0.55em;
  bottom: -0.6em;
}
.quote-section .attribution {
  margin-top: 44px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.45);
}

/* ---------- Footer -------------------------------------------------- */

.site-footer {
  background: var(--pt-paper-2);
  color: var(--pt-ink);
  padding: clamp(60px, 10vh, 110px) 0 30px;
  border-top: 1px solid var(--pt-line);
}
.site-footer .foot-mark {
  margin-bottom: 50px;
}
.site-footer .foot-mark .foot-logo {
  height: auto;
  width: clamp(100px, 11vw, 180px);
  display: block;
}
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--pt-line);
}
.site-footer .foot-grid h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pt-copper);
  margin-bottom: 20px;
}
.site-footer .foot-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}
.site-footer .foot-grid a:hover { color: var(--pt-copper); }
.site-footer .foot-grid p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--pt-ink-soft);
}
.site-footer .foot-grid p strong { color: var(--pt-ink); font-weight: 700; }
.site-footer .foot-grid .big-link {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.0;
  color: var(--pt-copper);
}
.site-footer .foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--pt-ink-soft);
  letter-spacing: 0.06em;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .foot-bottom a:hover { color: var(--pt-copper); }
@media (max-width: 820px) {
  .site-footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .site-footer .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- Misc ----------------------------------------------------- */


.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #141e22;
  padding: 28px 0;
  white-space: nowrap;
  gap: 60px;
}
.marquee .track {
  display: flex;
  gap: 60px;
  animation: scroll-x 32s linear infinite;
  flex-shrink: 0;
  padding-right: 60px;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 38px);
  color: var(--pt-paper);
  font-weight: 400;
}
.marquee span::after {
  content: "✦";
  color: var(--pt-copper);
  margin-left: 60px;
  font-size: 0.55em;
  vertical-align: middle;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.rule-list {
  list-style: none;
  border-top: 1px solid var(--pt-line);
}
.rule-list li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--pt-line);
  align-items: baseline;
}
.rule-list .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pt-copper);
  font-size: 22px;
}
.rule-list .title-cell {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--pt-ink);
}
.rule-list .desc {
  color: var(--pt-ink-soft);
  font-size: 14px;
  max-width: 38ch;
  text-align: right;
  font-weight: 400;
}
@media (max-width: 760px) {
  .rule-list li { grid-template-columns: 50px 1fr; }
  .rule-list .desc {
    grid-column: 1 / -1;
    text-align: left;
    max-width: none;
  }
}

.page-intro {
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
}
.page-intro .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.page-intro h2 { margin-bottom: 0; }
.page-intro .text {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  font-weight: 400;
  color: var(--pt-ink-soft);
}
.page-intro .text p { max-width: 50ch; margin-bottom: 1.1em; }
.page-intro .text p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .page-intro .grid { grid-template-columns: 1fr; }
}

.page-hero {
  position: relative;
  min-height: 70vh;
  padding: max(120px, 14vh) max(24px, 4vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--pt-paper-2);
}
.page-hero img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 26, 16, 0.55) 0%, rgba(31, 26, 16, 0.15) 60%, rgba(31, 26, 16, 0.4) 100%);
  z-index: 1;
}
.page-hero--dark::after {
  background: linear-gradient(to top, rgba(12, 8, 4, 0.82) 0%, rgba(12, 8, 4, 0.45) 50%, rgba(12, 8, 4, 0.62) 100%);
}
.page-hero .ph-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  color: var(--pt-paper);
}
.page-hero .eyebrow { color: var(--pt-copper-soft); margin-bottom: 28px; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--pt-copper-soft); }
.page-hero h1, .page-hero .h1-display {
  color: var(--pt-paper);
  font-size: clamp(44px, 6.5vw, 110px);
  max-width: 14ch;
}
.page-hero .breadcrumb {
  position: absolute;
  top: 110px;
  left: max(24px, 4vw);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.78);
  display: flex;
  gap: 14px;
  z-index: 2;
}
.page-hero .breadcrumb .sep { opacity: 0.5; }
.page-hero .breadcrumb a:hover { color: var(--pt-copper-soft); }

.contact-callout {
  background: #141e22;
  color: var(--pt-paper);
  padding: clamp(100px, 16vh, 170px) 0;
}
.contact-callout h2 { color: var(--pt-paper) !important; }
.contact-callout .eyebrow { color: var(--pt-copper-soft); }
.contact-callout .eyebrow::before, .contact-callout .eyebrow::after { background: var(--pt-copper-soft); }
.contact-callout .info .label { color: var(--pt-copper-soft); }
.contact-callout .info .val { color: var(--pt-paper); }
.contact-callout .info a.val:hover { color: var(--pt-copper); }
.contact-callout .btn-pill { border-color: rgba(245,237,224,0.35); color: var(--pt-paper); }
.contact-callout .btn-pill:hover { background: var(--pt-paper); color: var(--pt-ink); border-color: var(--pt-paper); }
.contact-callout .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}
.contact-callout h2 { color: var(--pt-paper); max-width: 14ch; }
.contact-callout .info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 15px;
  line-height: 1.7;
}
.contact-callout .info .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pt-copper-soft);
  margin-bottom: 6px;
}
.contact-callout .info .val {
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--pt-paper);
  letter-spacing: -0.015em;
}
.contact-callout .info a.val:hover { color: var(--pt-copper); }
.contact-callout .actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .contact-callout .grid { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pt-copper);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 16px;
  background: var(--pt-paper);
  border: 1px solid var(--pt-line);
  padding: 14px 16px;
  color: var(--pt-ink);
  outline: none;
  font-family: var(--sans);
  font-weight: 400;
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--pt-copper); background: #fff; }
.field textarea { resize: vertical; min-height: 140px; }

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

.page-intro .italic, .hero-text .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Partner Logo (Festscheune) -------------------------------- */
.partner-logo-block {
  text-align: center;
  padding: clamp(48px, 7vh, 80px) 0 clamp(32px, 4vh, 48px);
}
.partner-logo-block img {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: inline-block;
  opacity: 0.92;
}

/* ---------- Coming Soon Popup ----------------------------------------- */
.cs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 8, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.cs-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cs-popup {
  position: relative;
  max-width: 620px;
  width: 92%;
  text-align: center;
  padding: clamp(48px, 8vh, 80px) clamp(32px, 6vw, 72px);
  background: #121510;
  overflow: hidden;
}
.cs-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.06'/%3E%3Cpath d='M20 40 Q40 10 60 40 Q40 70 20 40Z' fill='none' stroke='%23ffffff' stroke-width='0.25' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}
.cs-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
}
.cs-close:hover { color: #fff; }
.cs-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 44px);
  margin-bottom: clamp(32px, 5vh, 48px);
  position: relative;
  z-index: 1;
}
.cs-logo {
  width: clamp(120px, 18vw, 190px);
  height: auto;
  display: block;
  margin: 0;
  position: relative;
  z-index: 1;
}
.cs-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pt-copper);
  line-height: 1.1;
  margin-bottom: clamp(20px, 3vh, 32px);
  position: relative;
  z-index: 1;
}
.cs-text {
  font-family: var(--serif);
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}

/* Geschenkidee Popup (Vinothek) */
.gi-overlay {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 12, 8, 0.96);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.06'/%3E%3Cpath d='M20 40 Q40 10 60 40 Q40 70 20 40Z' fill='none' stroke='%23ffffff' stroke-width='0.25' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.gi-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.gi-close {
  position: fixed;
  top: 24px;
  right: 28px;
  font-size: 26px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
  background: none;
  border: none;
  padding: 0;
}
.gi-close:hover { color: #fff; }
.gi-content {
  text-align: center;
  padding: clamp(32px, 6vw, 80px);
  max-width: 900px;
  width: 92%;
}
.gi-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pt-copper);
  line-height: 1.05;
  margin-bottom: clamp(28px, 5vh, 56px);
}
.gi-text {
  font-family: var(--serif);
  font-size: clamp(16px, 2.4vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

/* ─── Legal Pages (Impressum / Datenschutz) ─────────────────────── */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 24px 100px;
}
.legal-content .section-label {
  display: block;
  margin-bottom: 20px;
}
.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--pt-ink);
  margin-bottom: 48px;
  line-height: 1.1;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--pt-ink);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.legal-content h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pt-copper);
  margin: 32px 0 12px;
}
.legal-content p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--pt-ink-soft);
  max-width: 720px;
  margin-bottom: 20px;
}
.legal-content ul, .legal-content ol {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--pt-ink-soft);
  max-width: 720px;
  margin: 0 0 20px 22px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--pt-copper-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--pt-ink); }
.legal-content strong { color: var(--pt-ink); font-weight: 600; }
.legal-content hr { border: none; border-top: 1px solid var(--pt-line); margin: 40px 0; }
@media (max-width: 640px) {
  .legal-content { padding: 100px 20px 80px; }
}

/* ─── SEO/Landing Pages – shared content styles ────────────────── */
.legal-content .lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
  color: var(--pt-ink-soft);
  max-width: 680px;
  margin-bottom: 48px;
  font-style: italic;
}
.legal-content em {
  font-style: italic;
  color: var(--pt-copper);
}
.seo-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 48px 0;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 48px;
  padding: 0 32px;
  border: 1px solid var(--pt-ink);
  background: var(--pt-ink);
  color: var(--pt-paper);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-light:hover { background: var(--pt-copper); border-color: var(--pt-copper); color: var(--pt-ink); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 48px;
  padding: 0 32px;
  border: 1px solid var(--pt-line);
  background: transparent;
  color: var(--pt-ink-soft);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--pt-ink); color: var(--pt-ink); }

/* ─── FAQ Accordion ──────────────────────────────────────────────── */
.faq-list { margin-top: 56px; border-top: 1px solid var(--pt-line); }
.faq-list > h2 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; color: var(--pt-ink); margin: 40px 0 0; }
.faq-item { border-bottom: 1px solid var(--pt-line); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--pt-ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--pt-copper); }
.faq-question .faq-icon {
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--pt-copper);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--pt-ink-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
