@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Lora:ital@0,400;1,400&family=Outfit:wght@700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f2f5ff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #222;
  padding: 40px 5%;
}

a {
  color: #333;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #800080;
  transition: color 0.2s ease;
}

a:hover {
  color: #800080;
  text-decoration-style: solid;
}

/* ── Layout ───────────────────────────────── */

#wrapper {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ── Photo column ─────────────────────────── */

#photo-col {
  width: 22%;
  flex-shrink: 0;
}

#diashow {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}

/* ── Text column ──────────────────────────── */

#text-col {
  flex: 1;
  min-width: 0;
}

/* ── Intro ────────────────────────────────── */

h1 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  word-spacing: 0.5em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin-bottom: 24px;
}

/* ── Quote ────────────────────────────────── */

blockquote {
  overflow: hidden;
  margin: 0 0 32px 0;
  padding: 0;
}

blockquote::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  line-height: 1;
  color: #800080;
  float: left;
  margin-right: 6px;
  margin-top: 2px;
}

blockquote p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 26px;
  color: #800080;
  margin-bottom: 8px;
}

blockquote cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline;
  text-decoration: none;
}

blockquote cite::before {
  content: '  — ';
}

/* ── Section labels ───────────────────────── */

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 28px;
  margin-bottom: 4px;
}

.claim {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #800080;
  margin-bottom: 10px;
}

/* ── Inline separator ─────────────────────── */

.sep {
  color: #800080;
  padding: 0 0.35em;
  font-size: 1.8em;
  vertical-align: -0.2em;
  text-decoration: none;
}

/* ── Bullet list ──────────────────────────── */

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 4px;
}

ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 22px;
  color: #333;
}

ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #800080;
  font-size: 15px;
}

/* ── Connect ──────────────────────────────── */

.connect-email {
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 10px;
}

.connect-social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.connect-social a {
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 600px) {
  body {
    padding: 24px 4%;
  }
  #wrapper {
    flex-direction: column;
    gap: 20px;
  }
  #photo-col {
    width: 50%;
  }
  h1 {
    font-size: 28px;
  }
}
