/* Observabledatastream — elegant luxury theme */
:root {
  --ink: #1c1915;
  --ink-soft: #3d3830;
  --muted: #6b645a;
  --pearl: #f7f4ef;
  --cream: #efe9df;
  --sand: #e4d9c8;
  --champagne: #c4a574;
  --champagne-deep: #a8874f;
  --gold-glow: rgba(196, 165, 116, 0.22);
  --surface: #ffffff;
  --line: rgba(28, 25, 21, 0.12);
  --danger: #8b3a3a;
  --success: #2f5d3a;
  --radius: 2px;
  --header-h: 4.5rem;
  --font-display: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 60px rgba(28, 25, 21, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--gold-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(228, 217, 200, 0.55), transparent 50%),
    linear-gradient(180deg, var(--pearl) 0%, var(--cream) 48%, var(--pearl) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--champagne-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

p { margin: 0 0 1rem; color: var(--ink-soft); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--pearl);
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  animation: headerIn 0.7s var(--ease) both;
}

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--champagne);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: var(--champagne);
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  flex-wrap: wrap;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--champagne);
  padding: 0.45rem 0.95rem !important;
  color: var(--ink) !important;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--pearl) !important;
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--pearl);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
  }
  .site-nav.is-open {
    max-height: 28rem;
    opacity: 1;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.35rem;
  }
  .nav-cta { text-align: center; }
}

/* Layout */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 38rem;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--ink);
  color: var(--pearl);
}

.btn-primary:hover {
  background: var(--champagne-deep);
  color: var(--pearl);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--pearl);
}

.btn-gold {
  background: var(--champagne);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--champagne-deep);
  color: var(--pearl);
}

/* Hero — editorial split, brand-forward */
.hero-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header-h));
  max-width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem 4rem clamp(1.5rem, 6vw, 5rem);
  max-width: 40rem;
  margin-left: auto;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
  line-height: 1.1;
  color: var(--ink);
}

.hero-line {
  width: 3.5rem;
  height: 1px;
  background: var(--champagne);
  margin: 0 0 1.5rem;
  animation: growX 1s 0.3s var(--ease) both;
}

.hero-statement {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.hero-support {
  margin: 0 0 2rem;
  max-width: 28rem;
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  animation: fadeIn 1.2s 0.2s var(--ease) both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 244, 239, 0.35), transparent 40%);
  pointer-events: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes growX {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 860px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    margin: 0;
    max-width: none;
    padding: 3rem 1.5rem 2rem;
  }
  .hero-visual {
    min-height: 52vw;
    order: -1;
  }
  .hero-visual::after {
    background: linear-gradient(0deg, rgba(247, 244, 239, 0.5), transparent 45%);
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quote band */
.quote-band {
  background: var(--ink);
  color: var(--pearl);
  padding: 4.5rem 0;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 44rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--pearl);
}

.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--champagne);
}

/* Feature list (not cards) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}

.benefit-item {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.benefit-item h3 {
  margin: 0 0 0.75rem;
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--champagne-deep);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

@media (max-width: 760px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Course preview rows */
.course-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.course-row:last-child { border-bottom: 0; padding-bottom: 0; }

.course-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.course-meta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--champagne-deep);
  margin-bottom: 0.5rem;
}

@media (max-width: 760px) {
  .course-row { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  margin-top: 2rem;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
}

.page-hero .lead { margin-bottom: 0; }

.page-hero-visual {
  margin-top: 2.5rem;
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  aspect-ratio: 21 / 7;
}

/* Pricing */
.pricing-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pricing-tier:hover {
  border-color: var(--champagne);
  box-shadow: var(--shadow-soft);
}

.pricing-tier.is-featured {
  border-color: var(--ink);
  background: linear-gradient(165deg, #fff 0%, #f3ebe0 100%);
}

.pricing-tier h3 { margin: 0 0 0.5rem; }

.price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 1rem 0;
  color: var(--ink);
}

.price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-tier ul {
  margin: 0 0 1.75rem;
  padding: 0 0 0 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.pricing-tier li { margin-bottom: 0.45rem; }

@media (max-width: 860px) {
  .pricing-list { grid-template-columns: 1fr; }
}

/* Reviews */
.review-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.review-item {
  border-left: 2px solid var(--champagne);
  padding: 0.25rem 0 0.25rem 1.5rem;
}

.review-item p { margin-bottom: 0.75rem; }

.review-attr {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-rating {
  color: var(--champagne-deep);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.case-study {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.case-study h3 { margin-top: 0; }

/* Forms */
.form-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 36rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--champagne);
}

.form-field textarea { min-height: 9rem; resize: vertical; }

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

.form-field.has-error .field-error { display: block; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  display: none;
  font-size: 0.92rem;
}

.form-status.is-success {
  display: block;
  background: rgba(47, 93, 58, 0.1);
  color: var(--success);
  border: 1px solid rgba(47, 93, 58, 0.25);
}

.form-status.is-error {
  display: block;
  background: rgba(139, 58, 58, 0.08);
  color: var(--danger);
  border: 1px solid rgba(139, 58, 58, 0.25);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
}

.contact-aside {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.contact-aside h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.contact-aside p {
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-item h2 {
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.blog-item:hover h2 { color: var(--champagne-deep); }

.blog-date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

@media (max-width: 640px) {
  .blog-item { grid-template-columns: 1fr; gap: 1rem; }
}

.article-body {
  max-width: 42rem;
  margin: 2.5rem auto 0;
}

.article-body h2 {
  margin-top: 2.5rem;
  font-size: 1.65rem;
}

.article-cover {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  margin-top: 2rem;
  aspect-ratio: 2 / 1;
}

/* Legal */
.legal-body {
  max-width: 46rem;
  margin: 2.5rem auto 0;
}

.legal-body h2 {
  font-size: 1.45rem;
  margin-top: 2.25rem;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.25rem 0;
}

.legal-body th,
.legal-body td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-body th {
  background: var(--sand);
  font-weight: 500;
}

/* Modules */
.module-list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  counter-reset: mod;
}

.module-list li {
  counter-increment: mod;
  padding: 1.25rem 0 1.25rem 3.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--champagne-deep);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
}

.faq-list details p {
  margin: 0.75rem 0 0.25rem;
}

.instructor {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 2rem 0;
}

.instructor img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 500px) {
  .instructor { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: rgba(247, 244, 239, 0.78);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--pearl);
  margin: 0 0 0.5rem;
}

.footer-tagline {
  color: rgba(247, 244, 239, 0.55);
  max-width: 28rem;
  font-size: 0.9rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 1rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 0.45rem; }

.footer-col a {
  color: rgba(247, 244, 239, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--champagne); }

.footer-contact p {
  color: rgba(247, 244, 239, 0.65);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.45);
}

.footer-bottom p { margin: 0; color: inherit; }

@media (max-width: 860px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 420px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.4rem;
  animation: rise 0.5s var(--ease) both;
}

.cookie-banner p {
  font-size: 0.88rem;
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
}

.inline-error {
  background: rgba(139, 58, 58, 0.1);
  color: var(--danger);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(139, 58, 58, 0.2);
  font-size: 0.9rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 0;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--champagne);
  margin: 0 0 0.5rem;
}

/* CTA band */
.cta-band {
  padding: 4.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 50%, var(--pearl) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.split-prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .split-prose { grid-template-columns: 1fr; gap: 1.5rem; }
}

.timeline {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 0 0 2rem 1.75rem;
  border-left: 1px solid var(--champagne);
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  background: var(--champagne);
  border-radius: 50%;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}
