:root {
  --teal: #0A4D4F;
  --teal-light: #0D6B6E;
  --cream: #FDF6EC;
  --cream-dark: #F5EBD9;
  --mango: #F4722B;
  --mango-light: #F8965A;
  --ink: #141414;
  --ink-light: #3A3A3A;
  --mist: #8FA5A8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  align-items: center;
}

.hero-text {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 24px;
  display: block;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero-line-1 {
  display: block;
  color: var(--teal);
}

.hero-line-2 {
  display: block;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-light);
  max-width: 400px;
  line-height: 1.7;
}

.hero-visual {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 50%, #3DC5C8 100%);
  height: 100%;
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wave-stack {
  position: absolute;
  inset: 0;
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}

.wave-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}

.wave-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -60px;
  border-color: rgba(255,255,255,0.12);
}

.wave-3 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,0.08);
}

.hero-badge {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  padding: 20px 32px;
  text-align: center;
  color: white;
}

.badge-year {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: white;
}

.badge-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

/* ─── EXCURSIONS ─── */
.excursions {
  background: var(--cream-dark);
  padding: 100px 80px;
}

.excursions-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mango);
  margin-bottom: 48px;
  display: block;
}

.excursions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.exc-card {
  background: var(--cream);
  padding: 48px 40px;
  border-left: 3px solid var(--teal);
  transition: background 0.2s;
}

.exc-card:hover {
  background: white;
}

.exc-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  margin-bottom: 24px;
}

.exc-icon svg {
  width: 100%;
  height: 100%;
}

.exc-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.exc-card p {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ─── OPERATORS ─── */
.operators {
  background: var(--teal);
  color: white;
  padding: 100px 80px;
}

.operators-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.operators .section-label {
  color: var(--mango-light);
}

.operators-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
}

.operators-body {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 48px;
}

.operator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--mango-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.op-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.op-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
}

.op-card:nth-child(2) {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  margin-left: 20px;
}

.op-card:nth-child(3) {
  margin-left: 40px;
}

.op-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.op-avatar svg {
  width: 100%;
  height: 100%;
}

.op-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.op-info strong {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.op-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ─── PHILOSOPHIE ─── */
.philosophie {
  background: var(--cream);
  padding: 100px 80px;
}

.philosophie-inner {
  max-width: 800px;
  margin: 0 auto;
}

.philosophie-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 48px;
  padding-left: 32px;
  border-left: 4px solid var(--mango);
}

.philosophie-quote em {
  color: var(--teal);
  font-style: normal;
  font-weight: 700;
}

.philosophie-body p {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.philosophie-divider {
  text-align: center;
  margin: 56px 0;
  color: var(--mango);
  font-size: 20px;
}

.philosophie-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ─── CLOSING ─── */
.closing {
  background: linear-gradient(160deg, var(--ink) 0%, #1E1E1E 100%);
  color: white;
  padding: 120px 80px;
  overflow: hidden;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  max-width: 500px;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
}

.closing-landmark {
  flex-shrink: 0;
  text-align: center;
}

.landmark-circle {
  width: 200px;
  height: 200px;
  margin-bottom: 16px;
}

.landmark-circle svg {
  width: 100%;
  height: 100%;
}

.landmark-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: 40px 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 900;
  color: white;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-meta span {
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 60px 32px 40px;
  }

  .hero-visual {
    min-height: 50vh;
  }

  .excursions {
    padding: 64px 24px;
  }

  .excursions-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .operators {
    padding: 64px 24px;
  }

  .operators-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .operator-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .philosophie {
    padding: 64px 24px;
  }

  .philosophie-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing {
    padding: 80px 24px;
  }

  .closing-inner {
    flex-direction: column;
    gap: 48px;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 56px;
  }

  .exc-card {
    padding: 32px 24px;
  }

  .op-card:nth-child(2),
  .op-card:nth-child(3) {
    margin-left: 0;
  }

  .operator-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}