:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --text: #e8e2d6;
  --text-dim: #a89f8d;
  --accent: #d8c9a8;
  --line: rgba(216, 201, 168, 0.35);
  --line-soft: rgba(216, 201, 168, 0.18);
  --serif: 'Cormorant Garamond', 'Cormorant', Garamond, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─────────── NAV ─────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding: 22px clamp(24px, 5vw, 70px);
  font-family: var(--serif);
  letter-spacing: 0.18em;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.brand-name {
  font-size: clamp(15px, 1.15vw, 19px);
  letter-spacing: 0.35em;
  font-weight: 500;
  color: var(--accent);
}
.brand-by {
  margin-top: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(216,201,168,0.55);
}
.menu {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 54px);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--text);
}
.menu a { opacity: 0.78; transition: opacity .2s, color .2s; }
.menu a:hover { opacity: 1; }
.menu a.active { color: var(--accent); opacity: 1; }
.socials {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--text);
}
.socials a {
  display: inline-flex;
  opacity: 0.82;
  transition: opacity .2s, color .2s;
}
.socials a:hover { opacity: 1; color: var(--accent); }

/* Subtile Lesbarkeit über hellen Bildbereichen */
.brand-name,
.brand-by,
.hero .kicker,
.hero .tagline,
.hero-title,
.hero-quote em,
.hero-quote span,
.scroll-label {
  text-shadow: 0 1px 14px rgba(0,0,0,0.55), 0 0 3px rgba(0,0,0,0.3);
}
.hero-divider { box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.scroll-line { box-shadow: 0 0 10px rgba(0,0,0,0.4); }

.nav-chat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: background .2s, color .2s, box-shadow .2s;
}
.nav-chat:hover { background: var(--accent); color: var(--bg); text-shadow: none; box-shadow: 0 6px 28px rgba(216,201,168,0.25); }

.lang-switch {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 18px;
}
.lang-switch button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(0.4);
  transition: opacity .25s, filter .25s, transform .2s;
}
.lang-switch button img {
  display: block;
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.18);
}
.lang-switch button:hover { opacity: 1; filter: grayscale(0); transform: translateY(-1px); }
.lang-switch button.active { opacity: 1; filter: grayscale(0); }
.lang-switch button.active img { box-shadow: 0 0 0 1px var(--accent), 0 2px 10px rgba(0,0,0,0.4); }

.burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  margin: 6px 0;
  transition: transform .25s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/img/hero.jpg?v=5') center 15% / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.18) 42%, rgba(13,13,13,0) 70%),
    linear-gradient(to bottom, rgba(13,13,13,0.30), rgba(13,13,13,0) 18%, rgba(13,13,13,0) 70%, rgba(13,13,13,0.80));
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vh, 80px) clamp(24px, 5vw, 70px);
}
.hero-quote {
  position: absolute;
  top: clamp(90px, 12vh, 130px);
  left: clamp(24px, 5vw, 70px);
  right: clamp(24px, 5vw, 70px);
}
.hero-quote {
  max-width: 540px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-dim);
  font-family: var(--serif);
  font-size: clamp(13px, 1.1vw, 16px);
  opacity: 0.85;
}
.hero-quote span {
  font-size: 32px;
  line-height: 0.7;
  color: var(--accent);
}
.hero-quote em { font-style: italic; line-height: 1.5; }
.hero-content {
  max-width: 740px;
}
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin-bottom: clamp(16px, 2.2vh, 24px);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(68px, 11vw, 186px);
  line-height: 0.96;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-divider {
  width: 68px;
  height: 1px;
  background: var(--accent);
  margin: clamp(22px, 3vh, 34px) 0 clamp(16px, 2vh, 24px);
}
.tagline {
  font-family: var(--sans);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.38em;
  color: var(--text-dim);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text);
  transition: background .3s, border-color .3s, color .3s;
  cursor: pointer;
}
.btn-line:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-line.small {
  padding: 12px 22px;
  font-size: 10px;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(40px, 7vh, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
}
.scroll-line {
  position: relative;
  width: 1px;
  height: 74px;
  background: var(--line);
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -40%;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, var(--accent) 80%, transparent 100%);
  animation: scroll-drip 2.4s cubic-bezier(.45,.05,.55,.95) infinite;
}
@keyframes scroll-drip {
  0%   { top: -40%; opacity: 0; }
  18%  { opacity: 0.85; }
  82%  { opacity: 0.85; }
  100% { top: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-line::after { animation: none; }
}
.scroll-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.45em;
  writing-mode: vertical-rl;
}

/* ─────────── ABOUT ─────────── */
.about {
  padding: clamp(60px, 8vh, 110px) clamp(24px, 5vw, 70px) clamp(50px, 6vh, 80px);
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.55fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}
.about-text .kicker { margin-bottom: 18px; }
.about-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 clamp(20px, 2.4vh, 32px);
}
.about-copy {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 440px;
  margin: 0 0 clamp(28px, 3.5vh, 42px);
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.about-gallery figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-2);
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-gallery figure:hover img { transform: scale(1.04); }

/* ─────────── CHAT CTA ─────────── */
.chat-cta {
  position: relative;
  padding: clamp(80px, 14vh, 140px) 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(216,201,168,0.08), rgba(13,13,13,0) 60%),
    linear-gradient(180deg, rgba(13,13,13,0.6), rgba(13,13,13,1));
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.chat-cta::before {
  content: '';
  position: absolute; left: 50%; top: 0;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  transform: translateX(-50%);
  opacity: 0.4;
}
.chat-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chat-cta .kicker { margin-bottom: 24px; }
.chat-cta-heading {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 clamp(36px, 5vh, 56px);
}
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 26px 56px;
  background: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--bg);
  text-decoration: none;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(216,201,168,0.35),
    0 8px 28px rgba(216,201,168,0.18),
    0 0 60px rgba(216,201,168,0.10);
  transition: transform .35s ease, box-shadow .35s ease, color .25s ease, background .25s ease;
  animation: glow-pulse 3.6s ease-in-out infinite;
}
.btn-glow::after {
  content: '';
  position: absolute; inset: -6px;
  border: 1px solid rgba(216,201,168,0.55);
  border-radius: 0;
  opacity: 0;
  animation: glow-ring 3.6s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-glow-shimmer {
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: glow-shimmer 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.btn-glow-text { position: relative; z-index: 2; }
.btn-glow svg { position: relative; z-index: 2; transition: transform .25s ease; }
.btn-glow:hover {
  background: #f1e4c4;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(216,201,168,0.5),
    0 14px 40px rgba(216,201,168,0.32),
    0 0 80px rgba(216,201,168,0.18);
  animation: none;
}
.btn-glow:hover .btn-glow-shimmer { display: none; }
.btn-glow:hover svg { transform: translateX(6px); }

@keyframes glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(216,201,168,0.35),
      0 8px 28px rgba(216,201,168,0.18),
      0 0 60px rgba(216,201,168,0.10);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(216,201,168,0.55),
      0 12px 40px rgba(216,201,168,0.35),
      0 0 80px rgba(216,201,168,0.22);
  }
}
  50% { box-shadow: 0 0 48px rgba(216,201,168,0.22), 0 0 0 1px rgba(216,201,168,0.1); }
}
@keyframes glow-ring {
  0% { transform: scale(1); opacity: 0.6; }
  80%, 100% { transform: scale(1.18); opacity: 0; }
}
@keyframes glow-shimmer {
  0%, 30% { left: -120%; }
  60%, 100% { left: 220%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-glow, .btn-glow::after, .btn-glow-shimmer { animation: none; }
}

/* ─────────── STATS ─────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(40px, 5vh, 70px) clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  gap: 24px;
  text-align: center;
}
.stat { position: relative; padding: 0 24px; }
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: var(--line-soft);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-num sup {
  font-size: 0.55em;
  top: -0.5em;
  font-weight: 300;
}
.stat-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─────────── QUOTE BAR ─────────── */
.quote-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(30px, 4vh, 50px) clamp(24px, 5vw, 70px);
  flex-wrap: wrap;
}
.quote-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--serif);
  color: var(--text-dim);
  font-size: clamp(15px, 1.15vw, 19px);
  flex: 1 1 320px;
}
.quote-mark {
  font-size: 32px;
  line-height: 0.7;
  color: var(--accent);
}
.quote-text em { font-style: italic; }

/* ─────────── FOOTER ─────────── */
.site-footer {
  padding: clamp(28px, 4vh, 50px) clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.3em;
  color: var(--accent);
  font-size: 14px;
}
.footer-legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent); }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .lang-switch { margin-right: 0; gap: 8px; }
  .lang-switch button img { width: 26px; height: 18px; }

  .hero-inner {
    padding: 60px 28px;
  }
  .hero-quote { display: none; }
  .hero-title { font-size: clamp(64px, 15vw, 120px); }
  .hero-divider { width: 52px; }
  .scroll-cue {
    right: 14px;
    bottom: clamp(28px, 5vh, 60px);
    gap: 10px;
  }
  .scroll-line { height: 52px; }
  .scroll-label { font-size: 9px; letter-spacing: 0.36em; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-gallery { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }

  .stats { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); padding-top: 26px; }

  .quote-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .chat-cta { padding: clamp(60px, 10vh, 90px) 22px; }
  .btn-glow { padding: 18px 32px; font-size: 11px; letter-spacing: 0.32em; gap: 16px; }
}

@media (max-width: 520px) {
  .brand-name { font-size: 14px; letter-spacing: 0.3em; }
  .brand-by { font-size: 10px; margin-top: 4px; }
  .nav { padding: 16px 18px; gap: 10px; }
  .lang-switch button img { width: 24px; height: 17px; }
  .hero-inner { padding: 50px 22px; }
  .kicker { font-size: 10px; letter-spacing: 0.38em; }
  .tagline { font-size: 9px; letter-spacing: 0.16em; color: rgba(216,201,168,0.92); text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 0 6px rgba(0,0,0,0.55); }
  .btn-line { padding: 14px 22px; font-size: 10px; letter-spacing: 0.28em; }
  .about { padding: 60px 22px 50px; }
  .about-title { font-size: clamp(32px, 9vw, 48px); }
  .stats { padding: 36px 22px; }
  .stat-num { font-size: clamp(30px, 9vw, 42px); }
  .stat-label { font-size: 9.5px; letter-spacing: 0.28em; }
  .quote-bar { padding: 30px 22px; }
  .quote-text { font-size: 15px; }
  .site-footer { padding: 30px 20px; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-socials { order: -1; }
  .footer-legal {
    justify-content: center;
    gap: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .footer-legal > span {
    flex-basis: 100%;
    margin-bottom: 4px;
  }
}

/* Hero centered floating CTA */
.hero-cta-floating {
  position: absolute;
  left: 50%;
  bottom: clamp(60px, 10vh, 110px);
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 780px) {
  .hero-cta-floating { bottom: clamp(40px, 8vh, 80px); }
  .hero-cta-floating .btn-glow {
    padding: 18px 32px;
    font-size: 11px;
    letter-spacing: 0.32em;
    gap: 14px;
  }
}
@media (max-width: 380px) {
  .hero-cta-floating .btn-glow { padding: 16px 22px; font-size: 10px; gap: 10px; letter-spacing: 0.28em; }
  .hero-cta-floating .btn-glow svg { width: 14px; height: 14px; }
}

.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-socials a {
  display: inline-flex;
  color: var(--text-dim);
  opacity: 0.85;
  transition: opacity .2s, color .2s, transform .2s;
}
.footer-socials a:hover { color: var(--accent); opacity: 1; transform: translateY(-1px); }
/* ===== Landing v2 (mockup-aligned) ===== */
.v2-body { background: #0a0a0a; color: var(--text); font-family: var(--sans); margin: 0; }

/* ===== HERO: full-bleed photo right, dark text left ===== */
.v2-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}
.v2-hero-photo {
  position: absolute;
  inset: 0 0 0 38%;
  background-image: url('/img/hero.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 1;
}
.v2-hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 30%, rgba(10,10,10,0.7) 42%, rgba(10,10,10,0) 60%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0) 25%, rgba(10,10,10,0) 65%, rgba(10,10,10,0.85) 100%);
}
.v2-nav {
  position: relative; z-index: 5;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 32px clamp(28px, 5vw, 80px) 0;
}
.v2-nav .lang-switch { display: flex; gap: 6px; }
.v2-nav .lang-switch button {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(216,201,168,0.35);
  border-radius: 6px;
  padding: 4px 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity .2s, border-color .2s;
}
.v2-nav .lang-switch button.active,
.v2-nav .lang-switch button:hover { opacity: 1; border-color: var(--accent); }
.v2-hero-content {
  position: relative; z-index: 4;
  padding: clamp(60px, 8vh, 120px) clamp(28px, 5vw, 80px) 80px;
  max-width: 640px;
}
.v2-hero-content .kicker { margin-bottom: 28px; font-size: 11px; letter-spacing: 0.4em; }
.v2-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.92;
  margin: 0 0 28px;
  color: var(--accent);
  letter-spacing: 0.005em;
}
.v2-hero-rule { width: 70px; height: 1px; background: var(--accent); opacity: 0.7; margin-bottom: 24px; }
.v2-hero-tagline {
  font-size: 12px; letter-spacing: 0.36em; color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 28px;
}
.v2-hero-copy {
  font-size: 16px; line-height: 1.7; color: var(--text);
  max-width: 460px; margin: 0;
}

/* Centered floating CTA + scroll hint */
.v2-hero-floating {
  position: absolute;
  left: 50%; bottom: clamp(180px, 24vh, 230px);
  transform: translateX(-50%);
  z-index: 6;
  width: max-content;
  display: flex; flex-direction: column; align-items: center;
}
.v2-pill-hero {
  padding: 12px 24px 12px 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  gap: 14px;
  animation: v2-pill-glow 3.2s ease-in-out infinite;
}
.v2-pill-hero .v2-pill-icon { width: 30px; height: 30px; }
.v2-pill-hero .v2-pill-icon svg { width: 14px; height: 14px; }
.v2-pill-hero .v2-pill-text { padding: 0 4px; }
.v2-pill-hero .v2-pill-arrow { width: 14px; height: 14px; }

@keyframes v2-pill-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(216,201,168,0.5), 0 18px 50px rgba(216,201,168,0.18), 0 8px 24px rgba(0,0,0,0.5); }
  50%      { box-shadow: 0 0 0 1px rgba(216,201,168,0.8), 0 30px 80px rgba(216,201,168,0.42), 0 10px 30px rgba(0,0,0,0.55); }
}

.v2-scroll-hint {
  background: transparent; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-dim); padding: 8px 16px;
  transition: color .25s;
}
.v2-scroll-hint:hover { color: var(--accent); }

.v2-scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  position: relative;
  display: inline-block;
}
.v2-scroll-dot {
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: v2-scroll-dot 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes v2-scroll-dot {
  0%   { transform: translate(-50%, 0);  opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: 0; }
  61%  { transform: translate(-50%, 0);  opacity: 0; }
  100% { transform: translate(-50%, 0);  opacity: 1; }
}

.v2-scroll-chevrons {
  display: flex; flex-direction: column; align-items: center;
  margin-top: -4px;
  height: 22px;
}
.v2-scroll-chevrons svg {
  margin-top: -10px;
  opacity: 0;
  animation: v2-chevron 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.v2-scroll-chevrons svg:nth-child(2) { animation-delay: 0.25s; }
@keyframes v2-chevron {
  0%   { transform: translateY(-6px); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(6px); opacity: 0; }
}

.v2-scroll-label {
  font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 4px;
}

.v2-scroll-bridge {
  position: absolute;
  left: 50%; bottom: clamp(8px, 1.5vh, 16px);
  transform: translateX(-50%);
  z-index: 7;
  display: flex; justify-content: center; align-items: center;
  background: transparent;
  padding: 0;
}
.v2-scroll-bridge .v2-scroll-hint { padding: 4px 16px; }

@media (prefers-reduced-motion: reduce) {
  .v2-pill-hero, .v2-scroll-dot, .v2-scroll-chevrons svg { animation: none; }
}
.v2-hero-scroll {
  position: absolute; right: clamp(20px, 3vw, 40px); bottom: 28px; z-index: 5;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 10px; letter-spacing: 0.4em; color: var(--text-dim);
  display: flex; align-items: center; gap: 14px;
}
.v2-scroll-line { width: 1px; height: 40px; background: var(--accent); opacity: 0.5; }

/* ===== WHY + QUOTES section ===== */
.v2-why {
  padding: clamp(60px, 9vw, 110px) clamp(28px, 5vw, 80px);
  background: #0a0a0a;
}
.v2-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1280px; margin: 0 auto;
}

.v2-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid rgba(216,201,168,0.35);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow:
    0 0 0 1px rgba(216,201,168,0.05) inset,
    0 30px 80px rgba(0,0,0,0.4);
}
.v2-panel::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(216,201,168,0.12);
  border-radius: 14px; pointer-events: none;
}
.v2-panel > * { position: relative; }

.v2-feature-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 0;
}
.v2-feature-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(216,201,168,0.15);
}
.v2-feature-list li:first-child { border-top: none; }
.v2-feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(216,201,168,0.08);
  border: 1px solid rgba(216,201,168,0.4);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.v2-feature-title {
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 6px; font-weight: 600;
}
.v2-feature-body { font-size: 14px; line-height: 1.55; color: var(--text); opacity: 0.8; }

/* ===== Quote panels ===== */
.v2-quote-stack { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 22px); }
.v2-quote { padding: clamp(20px, 2.4vw, 28px) clamp(24px, 2.8vw, 34px); }
.v2-quote-mark {
  font-family: var(--serif);
  font-size: 56px; line-height: 0.6;
  color: var(--accent); opacity: 0.9;
  display: block; margin-bottom: -8px;
}
.v2-quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 14px;
}
.v2-quote-meta { font-size: 12px; line-height: 1.5; color: var(--text-dim); letter-spacing: 0.04em; }

/* ===== Final CTA ===== */
.v2-cta {
  padding: clamp(70px, 10vw, 120px) clamp(28px, 5vw, 80px);
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(216,201,168,0.06) 0%, rgba(0,0,0,0) 70%),
    #050505;
  text-align: center;
  position: relative;
}
.v2-cta-inner { max-width: 880px; margin: 0 auto; }
.v2-cta-eyebrow {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(216,201,168,0.45);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--text); text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(0,0,0,0.4);
}
.v2-cta-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  color: var(--text);
}
.v2-cta-heading > span:first-child { color: var(--text); }
.v2-cta-heading > span:last-child { color: var(--accent); }
.v2-cta-sub {
  font-size: 15px; line-height: 1.6; color: var(--text-dim);
  margin: 0 auto 44px; max-width: 520px;
}
.v2-cta-row {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 36px;
}

/* Light cream pill button with circular badge floating right */
.v2-pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 22px 90px 22px 28px;
  background: linear-gradient(180deg, #f5ecd8 0%, #e2d5b6 100%);
  color: #1a1408;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(216,201,168,0.5),
    0 20px 60px rgba(216,201,168,0.18),
    0 8px 24px rgba(0,0,0,0.5);
  transition: transform .2s, box-shadow .2s;
}
.v2-pill:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(216,201,168,0.7), 0 26px 70px rgba(216,201,168,0.28), 0 10px 30px rgba(0,0,0,0.5); }
.v2-pill-icon {
  width: 44px; height: 44px;
  background: #1a1408; color: #e2d5b6;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v2-pill-text { padding: 0 8px; }
.v2-pill-arrow { color: #1a1408; opacity: 0.85; }
.v2-pill-badge {
  position: absolute;
  right: -42px; top: 50%; transform: translateY(-50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(216,201,168,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.v2-pill-badge-num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0;
}
.v2-pill-badge-label {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  line-height: 1.3;
}

.v2-trust {
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--text-dim); text-transform: uppercase;
  display: inline-flex; align-items: center;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .v2-hero-photo { inset: 0 0 0 30%; }
}
@media (max-width: 900px) {
  .v2-hero { min-height: auto; }
  .v2-hero-photo { inset: 0; }
  .v2-hero-shade {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 35%, rgba(10,10,10,0.4) 55%, rgba(10,10,10,0.95) 100%);
  }
  .v2-nav { padding: 22px 22px 0; }
  .v2-hero-content {
    padding: 96px 22px 24px;
    max-width: 100%;
  }
  .v2-hero-content .kicker { margin-bottom: 14px; }
  .v2-hero-title { font-size: clamp(54px, 14vw, 96px); margin-bottom: 22px; }
  .v2-hero-rule { margin-bottom: 16px; }
  .v2-hero-tagline { margin-bottom: 14px; }
  .v2-hero-copy { font-size: 14px; line-height: 1.55; }
  .v2-hero-scroll { display: none; }
  .v2-hero-floating {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin: 22px 0 14px;
    padding: 0 22px;
    align-items: center;
    z-index: 6;
  }
  .v2-pill-hero { width: 100%; max-width: 320px; padding: 11px 22px 11px 12px; font-size: 11px; }
  .v2-scroll-bridge { position: relative; left: auto; bottom: auto; transform: none; padding: 14px 22px 4px; }
  .v2-scroll-hint { gap: 6px; padding: 4px 10px; }
  .v2-scroll-mouse { width: 18px; height: 30px; }
  .v2-scroll-label { font-size: 9px; margin-top: 2px; }
  .v2-pill-hero { width: 100%; max-width: 360px; }
  .v2-why-grid { grid-template-columns: 1fr; }
  .v2-cta { padding: 70px 22px 90px; }
  .v2-pill {
    padding: 18px 24px;
    gap: 14px;
    font-size: 12px;
  }
  .v2-pill-badge {
    position: static;
    transform: none;
    width: 60px; height: 60px;
    margin-left: 6px;
  }
  .v2-pill-badge-num { font-size: 14px; }
  .v2-pill-badge-label { font-size: 7px; }
}
@media (max-width: 520px) {
  .v2-feature-list li { grid-template-columns: 50px 1fr; gap: 14px; padding: 16px 0; }
  .v2-cta-row { flex-direction: column; }
}

.footer-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  opacity: 0.8;
}
.footer-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-trust .trust-item svg { flex-shrink: 0; opacity: 0.75; }
@media (max-width: 900px) {
  .footer-trust { gap: 16px; justify-content: center; }
}

/* ===== FAQ ===== */
.v2-faq {
  padding: clamp(70px, 10vw, 110px) clamp(28px, 5vw, 80px);
  background:
    radial-gradient(45% 60% at 50% 20%, rgba(216,201,168,0.04) 0%, rgba(0,0,0,0) 70%),
    #050505;
  position: relative;
}
.v2-faq-inner { max-width: 760px; margin: 0 auto; }
.v2-faq-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
}
.v2-faq-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  text-align: center;
  margin: 0 0 56px;
  line-height: 1.25;
}
.v2-faq-group { margin-bottom: 40px; }
.v2-faq-group:last-child { margin-bottom: 0; }
.v2-faq-group-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #d8c9a8;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 14px;
  padding: 0 4px;
}
.v2-faq-item {
  border-top: 1px solid rgba(216,201,168,0.12);
  padding: 0;
}
.v2-faq-item:last-child { border-bottom: 1px solid rgba(216,201,168,0.12); }
.v2-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 4px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  position: relative;
  transition: color 0.15s ease;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary:hover { color: var(--accent); }
.v2-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s ease, content 0.2s;
  line-height: 1;
}
.v2-faq-item[open] summary::after {
  content: "−";
}
.v2-faq-item[open] summary { color: var(--accent); }
.v2-faq-a {
  padding: 0 36px 22px 4px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  margin: -2px 0 0;
}
@media (max-width: 600px) {
  .v2-faq { padding: 70px 22px 90px; }
  .v2-faq-item summary { font-size: 14px; padding-right: 32px; }
  .v2-faq-a { font-size: 13px; padding-right: 32px; }
}
