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

/* ── CUSTOM PROPERTIES ───────────────────── */
:root {
  --bg:       #212124;
  --surface:  #2a2a2d;
  --raised:   #333337;
  --border:   #424247;
  --red:      #c0392b;
  --red-dark: #a93226;
  --white:    #f0f0ed;
  --muted:    #8a8a8e;
  --light:    #c8c8c4;
  --nav-h:    68px;
}

/* ── BASE ────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LINKS ───────────────────────────────── */
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── SHARED SECTION STYLES ───────────────── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 110px 0; position: relative; z-index: 1; }
.tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; color: var(--white); margin: 0.6rem 0 1.25rem; }
.body-text { font-size: 0.97rem; color: var(--muted); line-height: 1.8; }
.rule { width: 36px; height: 2px; background: var(--red); margin: 1rem 0 1.5rem; }

/* ── BUTTONS ─────────────────────────────── */
.btn { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 0.9rem 2rem; border-radius: 2px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--light); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); text-decoration: none; }

/* ── KEYFRAMES ───────────────────────────── */
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 560px) {
  section { padding: 72px 0; }
  .wrap { padding: 0 1.25rem; }
}
