:root {
  --snow:      #FEF8F5;
  --glacier:   #D7DFE1;
  --winter:    #08151E;
  --red:       #C74B4E;
  --green:     #ACCB79;
  --ice:       #C7D7EA;
  --turquoise: #5FB3AA;
  --twilight:  #B78584;
}

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

body {
  background: var(--snow);
  color: var(--winter);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  background: var(--winter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 56px;
  position: relative;
  z-index: 10;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--snow);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li { display: flex; align-items: center; }
.nav-links li:not(:last-child)::after {
  content: '|';
  color: var(--snow);
  opacity: 0.25;
  padding: 0 14px;
  font-size: 11px;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 80px;
}

/* Mountain image: centred, fades up on load */
.mountains {
  width: 100%;
  max-width: 860px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.2s ease forwards 0.2s;
}

/* ── TITLE ───────────────────────────────────────────────── */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5.5vw, 68px);
  letter-spacing: 0.08em;
  color: var(--winter);
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* Swiss flag (CSS cross) */
.swiss-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(24px, 2.5vw, 38px);
  height: clamp(24px, 2.5vw, 38px);
  background: var(--red);
  flex-shrink: 0;
  border-radius: 2px;
  position: relative;
}
.swiss-flag::before,
.swiss-flag::after {
  content: '';
  position: absolute;
  background: var(--snow);
}
.swiss-flag::before { width: 55%; height: 18%; }
.swiss-flag::after  { width: 18%; height: 55%; }

/* ── SUBTITLE ────────────────────────────────────────────── */
.hero-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--winter);
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

/* ── CTA ─────────────────────────────────────────────────── */
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

/* Plate-shaped button */
.btn-plate {
  display: inline-flex;
  align-items: stretch;
  background: var(--red);
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-width: 280px;
  height: 72px;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,0.12),
    0 4px 24px rgba(199,75,78,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.btn-plate:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,0.12),
    0 10px 36px rgba(199,75,78,0.45);
}
.btn-plate:active { transform: translateY(0); }

.plate-stripe {
  flex-shrink: 0;
  width: 30px;
  background: rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.plate-stripe span {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.btn-plate-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.18em;
  color: var(--snow);
  white-space: nowrap;
  padding: 0 16px;
}

.cta-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--winter);
  opacity: 0.38;
}
.cta-sub a {
  color: var(--winter);
  text-decoration: none;
  border-bottom: 1px solid var(--winter);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.cta-sub a:hover { opacity: 0.6; }


/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.4;
  border-top: 1px solid var(--glacier);
}
footer a { color: inherit; text-decoration: none; }
footer a:hover { opacity: 0.8; }

/* ── ANIMATION ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 680px) {
  nav { padding: 0 16px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.08em; }
  .nav-links li:not(:last-child)::after { padding: 0 8px; }
  .hero { padding: 40px 20px 60px; }
  .hero-subtitle { letter-spacing: 0.12em; font-size: 10px; }
  .btn-plate { min-width: 230px; height: 62px; }
  .btn-plate-text { font-size: 20px; letter-spacing: 0.12em; }
}
