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

:root {
  --bg: #f8f4ee;
  --bg-dark: #ede8df;
  --green: #1e3d2f;
  --green-light: #2d5240;
  --gold: #b8913a;
  --gold-light: #d4aa55;
  --slate: #2c2c2c;
  --slate-mid: #4a4a4a;
  --cream: #faf8f4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.nav__tagline {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-mid);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 80px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(30,61,47,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(184,145,58,0.08) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-dark) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-style: italic;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--slate-mid);
  font-weight: 400;
  flex-wrap: wrap;
}

.hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero__ornament {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero__ornament-inner {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(30,61,47,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__ornament-inner::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184,145,58,0.2);
  border-radius: 50%;
}

.hero__ornament-inner::after {
  content: 'MQ';
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(30,61,47,0.12);
  letter-spacing: 0.1em;
}

/* === MANIFESTO === */
.manifesto {
  padding: 80px 80px;
  background: var(--green);
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.manifesto__rule {
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  font-weight: 400;
}

/* === SECTION SHARED === */
.section__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === GAMEPLAY === */
.gameplay {
  padding: 100px 80px;
  background: var(--bg);
}

.gameplay__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gameplay__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.gameplay__card {
  padding: 48px 40px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.gameplay__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(30,61,47,0.12);
  line-height: 1;
  margin-bottom: 24px;
}

.gameplay__card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
}

.gameplay__card-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* === NARRATIVE === */
.narrative {
  padding: 100px 80px;
  background: var(--bg-dark);
}

.narrative__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.narrative__text .section__title {
  margin-bottom: 28px;
}

.narrative__body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.narrative__detail {
  background: var(--cream);
  border: 1px solid rgba(30,61,47,0.12);
  padding: 40px 36px;
}

.narrative__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(30,61,47,0.08);
  gap: 20px;
}

.narrative__detail-row:last-child { border-bottom: none; }

.narrative__detail-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-mid);
}

.narrative__detail-val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green);
  text-align: right;
}

/* === WHO COMES === */
.whocomes {
  padding: 100px 80px;
  background: var(--bg);
}

.whocomes__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.whocomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.whocomes__item {
  padding: 40px 40px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whocomes__icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
}

.whocomes__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-mid);
  line-height: 1.7;
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: 100px 80px;
  background: var(--bg-dark);
}

.closing__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.closing__rule {
  height: 1px;
  background: rgba(30,61,47,0.2);
}

.closing__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--green);
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
}

/* === FOOTER === */
.footer {
  padding: 60px 80px;
  background: var(--green);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}

.footer__location {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(250,248,244,0.6);
  letter-spacing: 0.05em;
}

.footer__contact {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(250,248,244,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 100px 40px 60px; }
  .manifesto { padding: 60px 40px; }
  .gameplay { padding: 80px 40px; }
  .narrative { padding: 80px 40px; }
  .whocomes { padding: 80px 40px; }
  .closing { padding: 80px 40px; }
  .footer { padding: 50px 40px; }

  .hero__ornament { display: none; }
  .gameplay__grid { grid-template-columns: 1fr; }
  .narrative__inner { grid-template-columns: 1fr; }
  .whocomes__grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 24px 50px; }
  .manifesto { padding: 50px 24px; }
  .gameplay { padding: 60px 24px; }
  .narrative { padding: 60px 24px; }
  .whocomes { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
}