/* ============================================================
   BRAND — Entdecke Deutschland · Premium Travel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:           #FAFAF8;
  --c-surface:      #F4F2EE;
  --c-surface-2:    #EDEAE3;
  --c-border:       #E0DBCF;
  --c-border-light: #EDE9E0;

  --c-gold:         #C9A96E;
  --c-gold-dark:    #A8854A;
  --c-gold-light:   #E4D0A8;

  --c-text:         #1C1A17;
  --c-text-2:       #4A4640;
  --c-text-3:       #8A857A;
  --c-text-inv:     #FAFAF8;

  --c-white:        #FFFFFF;
  --c-dark:         #121008;

  /* Typography */
  --f-display:  'Playfair Display', Georgia, serif;
  --f-body:     'Inter', system-ui, sans-serif;
  --f-mono:     'IBM Plex Mono', monospace;

  /* Spacing */
  --gap-xs:   0.5rem;
  --gap-sm:   1rem;
  --gap-md:   1.5rem;
  --gap-lg:   2.5rem;
  --gap-xl:   4rem;
  --gap-xxl:  7rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(28,26,23,.06);
  --sh-md:  0 6px 24px rgba(28,26,23,.10);
  --sh-lg:  0 16px 48px rgba(28,26,23,.13);
  --sh-xl:  0 32px 80px rgba(28,26,23,.16);

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-base:   280ms cubic-bezier(.4,0,.2,1);
  --tr-slow:   480ms cubic-bezier(.4,0,.2,1);
  --tr-spring: 600ms cubic-bezier(.34,1.56,.64,1);

  /* Container */
  --container: 1280px;
  --container-narrow: 900px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography Scale ────────────────────────────────────── */
.t-display {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.t-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.018em;
}
.t-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.015em;
}
.t-h3 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.25;
}
.t-h4 {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}
.t-body-lg { font-size: 1.125rem; line-height: 1.7; }
.t-body    { font-size: 1rem;     line-height: 1.65; }
.t-body-sm { font-size: .9rem;    line-height: 1.6; }
.t-label {
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}
.t-caption {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--c-text-3);
}

/* ── Color Utilities ─────────────────────────────────────── */
.text-gold    { color: var(--c-gold); }
.text-muted   { color: var(--c-text-2); }
.text-light   { color: var(--c-text-3); }
.text-inv     { color: var(--c-text-inv); }
.bg-surface   { background: var(--c-surface); }
.bg-surface-2 { background: var(--c-surface-2); }
.bg-dark      { background: var(--c-dark); color: var(--c-text-inv); }
.bg-gold      { background: var(--c-gold); color: var(--c-white); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--tr-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-gold);
  color: var(--c-white);
  border: 1.5px solid var(--c-gold);
}
.btn-primary:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.30);
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--c-dark);
  color: var(--c-text-inv);
  border: 1.5px solid var(--c-dark);
}
.btn-dark:hover {
  background: #2a2618;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .82rem; }

/* ── Dividers & Decorations ──────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}
.divider-lg {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* ── Section Labels ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

/* ── Card Base ───────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--tr-base);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-gold-light);
}

/* ── Animated Underline ──────────────────────────────────── */
.underline-anim {
  position: relative;
  display: inline-block;
}
.underline-anim::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--tr-slow);
}
.underline-anim:hover::after { width: 100%; }

/* ── Gold Highlight ──────────────────────────────────────── */
.gold-em {
  color: var(--c-gold);
  font-style: italic;
}

/* ── Form ────────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-field label {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .9rem 1.1rem;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text);
  transition: var(--tr-base);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-2);
}
.badge-gold {
  background: rgba(201,169,110,.12);
  border-color: rgba(201,169,110,.3);
  color: var(--c-gold-dark);
}

/* ── Stat Number ─────────────────────────────────────────── */
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: 8rem 0 5rem;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,169,110,.08), transparent);
  pointer-events: none;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
