/* ============================================================
   MEIN WOLFGANGSEE — Präsentation Styles
   Premium Tourism · Destination Campaign · 2024
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  /* Brand Colors — direct from logo */
  --copper:       #c07a52;
  --copper-light: #d49272;
  --copper-dim:   rgba(192, 122, 82, 0.15);
  --steel:        #3d5f72;
  --steel-light:  #5a8299;
  --steel-dim:    rgba(61, 95, 114, 0.12);
  --mist:         #8db5c8;

  /* Backgrounds */
  --bg-deep:      #0a1e2e;
  --bg-navy:      #0e2840;
  --bg-dark:      #122233;
  --bg-copper-dk: #1a1008;
  --bg-light:     #f5f1ea;
  --bg-cream:     #faf7f2;
  --bg-white:     #ffffff;

  /* Text */
  --text-dark:    #0d1e2d;
  --text-mid:     #3a5a6e;
  --text-light:   #6a8fa5;
  --text-ghost:   rgba(255,255,255,0.55);
  --text-ondk:    rgba(255,255,255,0.92);
  --text-ondk-sub: rgba(255,255,255,0.65);

  /* Typography */
  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --max-w:    1200px;
  --pad-x:    clamp(1.5rem, 5vw, 5rem);
  --pad-y:    clamp(3rem, 8vh, 6rem);

  /* Animation */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --dur:       0.75s;
  --dur-fast:  0.4s;
}


/* === BASE RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul, ol {
  list-style: none;
}

em {
  font-style: italic;
}


/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  z-index: 100;
  transition: width 0.2s ease;
}


/* ============================================================
   DOT NAVIGATION
   ============================================================ */
.dot-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.dot-nav__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  cursor: pointer;
}

.dot-nav__label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease, color var(--dur-fast) ease;
  white-space: nowrap;
  pointer-events: none;
}

.dot-nav__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}

/* On light slides, darken the dots */
.dot-nav.is-light .dot-nav__dot {
  border-color: rgba(61, 95, 114, 0.4);
}

.dot-nav.is-light .dot-nav__label {
  color: var(--text-mid);
}

.dot-nav__item:hover .dot-nav__label {
  opacity: 1;
  transform: translateX(0);
}

.dot-nav__item.is-active .dot-nav__dot {
  background: var(--copper);
  border-color: var(--copper);
  transform: scale(1.3);
}

.dot-nav__item.is-active .dot-nav__label {
  opacity: 0.9;
  color: var(--copper);
  transform: translateX(0);
}


/* ============================================================
   SLIDE COUNTER
   ============================================================ */
.slide-counter {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  z-index: 90;
  transition: color 0.4s ease;
}

.slide-counter.is-light {
  color: var(--text-light);
}

.slide-counter__sep {
  margin: 0 0.2em;
  opacity: 0.5;
}

#currentSlide {
  color: var(--copper);
  font-weight: 500;
}


/* ============================================================
   SLIDE BASE
   ============================================================ */
.slide {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  z-index: 2;
}

.slide__inner--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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


/* ============================================================
   TYPOGRAPHY — SHARED
   ============================================================ */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.section-eyebrow--light {
  color: var(--copper-light);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.section-title em {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}

.section-title--light {
  color: var(--text-ondk);
}

.section-title--light em {
  color: var(--copper-light);
}

.section-intro {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-intro--light {
  color: var(--text-ondk-sub);
}

.section-intro strong {
  color: var(--copper-light);
  font-weight: 500;
}


/* ============================================================
   FOLIE 1 — HERO
   ============================================================ */
.slide--hero {
  background: var(--bg-navy);
  min-height: 100vh;
}

/* Atmospheric orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,95,114,0.35) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation-duration: 14s;
  animation-delay: 0s;
}

.orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,122,82,0.20) 0%, transparent 70%);
  top: 30%;
  right: -5%;
  animation-duration: 11s;
  animation-delay: -4s;
}

.orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(141,181,200,0.15) 0%, transparent 70%);
  bottom: 20%;
  left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%   { opacity: 0.6; transform: translate(0, 0) scale(1); }
  33%  { opacity: 0.9; transform: translate(20px, -30px) scale(1.05); }
  66%  { opacity: 0.7; transform: translate(-15px, 20px) scale(0.98); }
  100% { opacity: 0.6; transform: translate(0, 0) scale(1); }
}

/* Hero wave layers */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave--far {
  fill: rgba(255,255,255,0.03);
  animation: waveDrift 8s ease-in-out infinite alternate;
}

.wave--mid {
  fill: rgba(255,255,255,0.05);
  animation: waveDrift 10s ease-in-out infinite alternate-reverse;
}

.wave--near {
  fill: rgba(192,122,82,0.08);
  animation: waveDrift 7s ease-in-out infinite alternate;
}

@keyframes waveDrift {
  from { transform: scaleX(1) translateX(0); }
  to   { transform: scaleX(1.04) translateX(-2%); }
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-badge span {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.hero-logo-wrap {
  margin-bottom: 2.5rem;
}

.hero-logo {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.25);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  margin: 0 auto 2.5rem;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255,255,255,0.90);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  max-width: 700px;
}

.hero-headline em {
  color: var(--copper-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-ghost);
  line-height: 1.8;
  margin-bottom: 3.5rem;
  max-width: 560px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-body);
  animation: scrollPulse 2s ease-in-out infinite;
  animation-delay: 0.2s;
}


/* ============================================================
   FOLIE 2 — AUSGANGSLAGE (LIGHT)
   ============================================================ */
.slide--light {
  background: var(--bg-cream);
}

/* Insights grid */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.insight {
  padding: 2.25rem 1.75rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid rgba(61,95,114,0.08);
  box-shadow: 0 4px 24px rgba(13,30,45,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.insight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--mist));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.insight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,30,45,0.12);
}

.insight:hover::before {
  transform: scaleX(1);
}

.insight__icon {
  width: 44px;
  height: 44px;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.insight h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.insight p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Pullquote */
.pullquote {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
  border-left: 3px solid var(--copper);
  border-radius: 0 12px 12px 0;
  max-width: 800px;
}

.pullquote__mark {
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pullquote__mark svg {
  width: 28px;
  height: 21px;
}

.pullquote p {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}


/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
.section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}

.section-wave svg {
  width: 100%;
  height: 100%;
}

.section-wave--to-dark svg  { fill: var(--bg-dark); }
.section-wave--to-light svg { fill: var(--bg-cream); }
.section-wave--to-deep svg  { fill: var(--bg-deep); }

/* Split columns — grid children for slide 4 */
.split-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}


/* ============================================================
   FOLIE 3 — GRUNDIDEE (DARK)
   ============================================================ */
.slide--dark {
  background: var(--bg-dark);
}

/* Packages grid */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pkg {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.pkg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pkg:hover {
  border-color: rgba(192,122,82,0.25);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

.pkg:hover::after {
  opacity: 1;
}

.pkg__icon {
  width: 40px;
  height: 40px;
  color: var(--copper-light);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.pkg h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-ondk);
  margin-bottom: 0.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pkg p {
  font-size: 0.8rem;
  color: var(--text-ondk-sub);
  line-height: 1.6;
}

/* Platform pill */
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.75rem;
  background: rgba(192,122,82,0.12);
  border: 1px solid rgba(192,122,82,0.25);
  border-radius: 100px;
  margin: 0 auto;
}

.platform-pill__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-body);
}

.platform-pill__url {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--copper-light);
  letter-spacing: 0.02em;
}


/* ============================================================
   FOLIE 4 — PARTNER & STÄRKEN (LIGHT)
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.feature-list__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* Partner card */
.partner-card {
  background: var(--bg-white);
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(61,95,114,0.08);
  box-shadow: 0 4px 24px rgba(13,30,45,0.06);
  margin-bottom: 1.5rem;
}

.partner-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-family: var(--ff-body);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partner {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease;
}

.partner:hover {
  background: var(--copper-dim);
  color: var(--copper);
}

/* Ship highlight card */
.ship-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--bg-navy), var(--bg-dark));
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(13,30,45,0.18);
}

.ship-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--copper-light);
  opacity: 0.85;
}

.ship-card__text h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-ondk);
  margin-bottom: 0.5rem;
}

.ship-card__text p {
  font-size: 0.82rem;
  color: var(--text-ondk-sub);
  line-height: 1.65;
}


/* ============================================================
   FOLIE 5 — BAUSTEINE (DEEP)
   ============================================================ */
.slide--deep {
  background: var(--bg-deep);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar {
  padding: 2.25rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s var(--ease-out);
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,122,82,0.04), transparent);
  pointer-events: none;
}

.pillar:hover {
  border-color: rgba(192,122,82,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.pillar__num {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  user-select: none;
}

.pillar__icon {
  width: 44px;
  height: 44px;
  color: var(--copper-light);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.pillar h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-ondk);
  margin-bottom: 0.7rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-ondk-sub);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.pillar__specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pillar__specs li {
  font-size: 0.75rem;
  color: var(--mist);
  opacity: 0.75;
  padding-left: 1rem;
  position: relative;
}

.pillar__specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper-light);
  opacity: 0.6;
}


/* ============================================================
   FOLIE 6 — PILOTPHASE (LIGHT)
   ============================================================ */
.slide--last {
  padding-bottom: 0;
}

.phases {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4rem;
}

.phase {
  flex: 1;
  padding: 2rem 1.75rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid rgba(61,95,114,0.08);
  box-shadow: 0 4px 20px rgba(13,30,45,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,30,45,0.1);
}

.phase__number {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
  font-family: var(--ff-body);
}

.phase__bar {
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--mist));
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.phase__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.phase__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phase__list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
}

.phase__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 1rem;
  line-height: 1.35;
}

.phase-connector {
  display: flex;
  align-items: center;
  padding: 0 0.25rem;
  margin-top: 3rem;
  color: var(--mist);
  opacity: 0.5;
  flex-shrink: 0;
}

.phase-connector svg {
  width: 36px;
  height: 24px;
}

/* Decisions */
.decisions {
  padding: 2.5rem 3rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(61,95,114,0.08);
  box-shadow: 0 4px 24px rgba(13,30,45,0.06);
  margin-bottom: 3rem;
}

.decisions__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(61,95,114,0.1);
}

.decisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
}

.decision {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.decision__mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--copper-dim);
  border: 1.5px solid var(--copper);
  flex-shrink: 0;
  position: relative;
}

.decision__mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--copper);
  opacity: 0.5;
}

/* Closing footer */
.closing {
  padding: 3rem var(--pad-x);
  background: var(--bg-dark);
  margin: 0 calc(-1 * var(--pad-x));
  text-align: center;
}

.closing__line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
  margin: 0 auto 2.5rem;
}

.closing__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.closing__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.closing__logo {
  width: 200px;
  border-radius: 8px;
  opacity: 0.85;
}


/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */

/* Reveal on scroll — base states */
.reveal-up,
.reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
  transition-delay: calc(var(--delay, 0s));
}

.reveal-fade {
  transform: none;
}

.reveal-up.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger {
  /* container stays visible, children animate */
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }
.reveal-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.65s; }

/* Hero initial animations (CSS-driven, no JS needed) */
.animate-fade {
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.94);
  animation: scaleIn 1s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

.animate-width {
  width: 0;
  opacity: 0;
  animation: expandWidth 1s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes expandWidth {
  to { width: 60px; opacity: 1; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 960px) {

  .slide__inner--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .insights {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .phases {
    flex-direction: column;
    gap: 1.25rem;
  }

  .phase-connector {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0.5rem;
  }

  .decisions-grid {
    grid-template-columns: 1fr;
  }

  .dot-nav {
    right: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {

  :root {
    --pad-x: 1.25rem;
    --pad-y: 2.5rem;
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .dot-nav {
    display: none;
  }

  .slide-counter {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .decisions {
    padding: 1.75rem 1.5rem;
  }

  .closing {
    padding: 2.5rem var(--pad-x);
  }

  .pullquote {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Print / presentation mode */
@media print {
  .dot-nav,
  .progress-bar,
  .slide-counter,
  .hero-scroll { display: none; }
}
