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

:root {
  --cream: #fdf0ee;
  --warm-white: #fff5f3;
  --gold: #f73959;
  --gold-light: #f97a90;
  --dark: #2e1410;
  --mid: #7a3d33;
}

html, body {
  height: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

body {
  opacity: 0;
  background-color: #120808;
  transition: opacity 0.423s ease;
}

body.loaded {
  opacity: 1;
}

/* ── Background ── */
.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('wing.jpg') center center / cover no-repeat;
}

.background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(232, 128, 106, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(232, 128, 106, 0.07) 0%, transparent 35%);
  animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* ── Layout ── */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2.5rem 4rem;
}

/* ── Header ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  transition: opacity 0.25s;
}

.nav a.active {
  color: var(--gold-light);
  opacity: 1;
}

.nav a:hover {
  opacity: 1;
}

/* ── Hero Content ── */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.8rem;
  padding: 4rem 1rem;
  min-height: calc(100vh - 8rem);
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--warm-white);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Keyword Phrases ── */
.phrases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.phrases span {
  padding: 0 0.75rem;
}

.phrases .divider {
  color: var(--gold-light);
  opacity: 0.4;
  padding: 0;
}

/* ── Quote ── */
.quote {
  max-width: 540px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.95;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.quote em {
  color: var(--gold-light);
  font-style: italic;
}

/* ── CTA ── */
.cta {
  display: inline-block;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.9rem 2.4rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── Manifesto ── */
.manifesto {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 4rem 8rem;
}

.manifesto::before {
  content: '';
  display: block;
  width: 50%;
  border-top: 2px solid rgba(247, 57, 89, 0.8);
  margin-bottom: 9rem;
}

.manifesto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 5rem;
  opacity: 0.8;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  max-width: 620px;
}

.manifesto-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--cream);
  opacity: 0.85;
}

.manifesto-body strong {
  color: var(--warm-white);
  font-weight: 400;
  opacity: 1;
}

.manifesto-choice {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
  color: var(--gold-light) !important;
  opacity: 1 !important;
  line-height: 2 !important;
}

.manifesto-unfurl {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-style: italic;
  color: var(--warm-white) !important;
  opacity: 1 !important;
  margin-top: 1rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero {
    padding: 2rem 1.5rem;
  }

  .site-header {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }

  .nav {
    gap: 0.8rem 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .phrases .divider {
    display: none;
  }

  .phrases span {
    display: block;
    text-align: center;
  }

  .quote {
    border-left: none;
    padding-left: 0;
    text-align: center;
    border-top: 1px solid var(--gold);
    padding-top: 1.5rem;
  }
}
