/* Slide deck — landscape A4, one slide per page when printed */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1a1a;
  --gold: #a8894a;
  --muted: #5c5648;
  --light: #f7f4ef;
  --accent: #2563eb;
}

html { font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #333;
  color: var(--ink);
}

.slide {
  width: 297mm;
  height: 210mm;
  margin: 12px auto;
  padding: 28mm 24mm;
  background: #fefcf9;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  page-break-after: always;
}

@media print {
  @page { size: A4 landscape; margin: 0; }
  body { background: #fff; }
  .slide { margin: 0; box-shadow: none; width: 100%; height: 100vh; page-break-after: always; }
}

.slide-num {
  position: absolute;
  bottom: 14mm;
  right: 20mm;
  font-size: 0.75rem;
  color: var(--muted);
}

.brand-sm {
  position: absolute;
  top: 14mm;
  left: 24mm;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 90%;
}

.slide h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.slide p, .slide li {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 92%;
}

.slide ul { margin: 0.5rem 0 0 1.25rem; }
.slide li { margin-bottom: 0.4rem; }

.slide.title-slide {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  color: #fff;
}
.slide.title-slide h1 { color: #fff; font-size: 2.5rem; }
.slide.title-slide p { color: rgba(255,255,255,0.9); font-size: 1.15rem; }
.slide.title-slide .brand-sm { color: rgba(255,255,255,0.85); }

.slide.contact-slide { background: var(--light); }
.slide.contact-slide a { color: var(--accent); }

.meta-tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 0.4rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
