/* ============================================
   LOE5 🧭 思い出のアルバム — styles
   ============================================ */

:root {
  --bg: #fff8ef;
  --bg-alt: #ffeed8;
  --paper: #fffdf8;
  --ink: #2b2a36;
  --ink-soft: #6a6878;
  --accent: #ff7a59;
  --accent2: #5b8cff;
  --accent3: #ffd166;

  --shadow-sm: 0 2px 8px rgba(60, 40, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(60, 40, 20, 0.12);
  --shadow-lg: 0 18px 60px rgba(60, 40, 20, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  padding-top: 64px;
  font-family: "Klee One", "Hiragino Maru Gothic ProN", "Yu Gothic UI", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, #ffe2c4 0, transparent 40%),
    radial-gradient(circle at 90% 30%, #d4e3ff 0, transparent 45%),
    radial-gradient(circle at 50% 90%, #ffd9e8 0, transparent 50%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================
   NAV (Top fixed bar + Mobile drawer)
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(60, 40, 20, 0.06);
  transition: box-shadow 0.25s, background 0.25s;
}
.nav.is-scrolled {
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 6px 24px rgba(60, 40, 20, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand-mark {
  font-size: 1.6rem;
  display: inline-block;
  animation: spin 8s linear infinite;
}
.nav-brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.nav-brand-jp {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  background: linear-gradient(120deg, #ff7a59, #5b8cff 60%, #5fc987);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.nav-brand-en {
  font-family: "Caveat", cursive;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  position: relative;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-menu a:hover {
  background: rgba(255, 122, 89, 0.1);
  color: var(--accent);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 49;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.25s;
  padding: 32px 24px;
}
.nav-drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 480px;
  margin: 0 auto;
}
.nav-drawer-menu a {
  font-size: 1.2rem;
  font-weight: 800;
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 122, 89, 0.06);
}
.nav-drawer-menu a:hover { background: rgba(255, 122, 89, 0.14); text-decoration: none; }
body.is-nav-open { overflow: hidden; }

@media (max-width: 880px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 380px; height: 380px; background: #ff8ab1; top: -80px; left: -60px; }
.blob-2 { width: 460px; height: 460px; background: #5b8cff; top: 20%; right: -120px; animation-delay: -3s; }
.blob-3 { width: 320px; height: 320px; background: #5fc987; bottom: -80px; left: 10%; animation-delay: -6s; }
.blob-4 { width: 400px; height: 400px; background: #ff9f43; bottom: 5%; right: 15%; animation-delay: -9s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin: 0 0 8px;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
}

.hero-title-line1 {
  background: linear-gradient(120deg, #ff7a59 0%, #ff5392 35%, #5b8cff 75%, #5fc987 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-compass {
  display: inline-block;
  font-size: 0.7em;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
  to { transform: rotate(-15deg); }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: var(--ink);
  margin: 24px 0 32px;
  font-weight: 600;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 600px;
}

.hero-pill {
  display: inline-block;
  padding: 8px 18px;
  background: var(--paper);
  color: var(--mc, var(--accent));
  border: 2px solid var(--mc, var(--accent));
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.hero-pill:hover {
  transform: translateY(-3px) rotate(-2deg);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Caveat", cursive;
  font-size: 1.2rem;
  color: var(--ink-soft);
  z-index: 1;
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 40px 24px;
  background: linear-gradient(180deg, transparent 0, var(--paper) 50%, transparent 100%);
}

.stats-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--paper);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid #f1e6d2;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-4px); }

.stat-num {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  background: linear-gradient(120deg, #ff7a59, #5b8cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  margin-top: 6px;
  font-size: 1rem;
}

.stat-sub {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 96px 24px;
  position: relative;
}

.section-alt {
  background:
    repeating-linear-gradient(45deg, rgba(255, 200, 130, 0.04) 0 12px, transparent 12px 24px),
    rgba(255, 247, 232, 0.7);
}

.section-head {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 122, 89, 0.1);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================
   MEMBERS
   ============================================ */
.members-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1100px) {
  .members-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .members-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 460px) {
  .members-grid { grid-template-columns: 1fr; }
}

.member-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 6px solid var(--mc);
  display: flex;
  flex-direction: column;
}
.member-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--mc) 0%, transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
}
.member-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.member-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mc) 0%, var(--mc-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.member-name-block { flex: 1; min-width: 0; }

.member-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mc-dark);
  word-break: break-word;
}

.member-tag {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.member-role {
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mc-dark);
  margin: 0 0 12px;
  position: relative;
}

.member-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  position: relative;
}

.vibe-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 600;
}

.member-quote {
  margin: 0;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
  border-left: 3px solid var(--mc);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--ink);
  font-style: italic;
  position: relative;
  line-height: 1.55;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #ff7a59 0%, #5b8cff 50%, #5fc987 100%);
  border-radius: 4px;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 40px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.timeline-left { left: 0; text-align: right; }
.timeline-right { left: 50%; }

.timeline-dot {
  position: absolute;
  top: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ec);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 3px var(--ec), 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1;
}
.timeline-left .timeline-dot { right: -11px; }
.timeline-right .timeline-dot { left: -11px; }

.timeline-content {
  background: var(--paper);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  display: inline-block;
  text-align: left;
  border-top: 4px solid var(--ec);
}

.timeline-date {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: var(--ec);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.timeline-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  background: var(--ec);
  color: white;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.timeline-title {
  margin: 8px 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
}

.timeline-body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================
   QUOTES
   ============================================ */
.quotes-wall {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.quote-card {
  background: var(--paper);
  padding: 24px 20px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s;
  position: relative;
  border-left: 4px solid var(--accent3);
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: "Outfit", serif;
  font-size: 4rem;
  color: var(--accent3);
  line-height: 1;
  opacity: 0.6;
}
.quote-card:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 2;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 600;
}

.quote-card figcaption {
  margin-top: 12px;
  font-family: "Caveat", cursive;
  font-size: 1.15rem;
  color: var(--ink-soft);
  text-align: right;
}

/* ============================================
   PHOTO GRID (masonry-ish via CSS columns)
   ============================================ */
.photo-grid {
  max-width: 1400px;
  margin: 0 auto;
  column-count: 4;
  column-gap: 16px;
}

@media (max-width: 1100px) { .photo-grid { column-count: 3; } }
@media (max-width: 760px)  { .photo-grid { column-count: 2; } }
@media (max-width: 460px)  { .photo-grid { column-count: 1; } }

.photo-card {
  break-inside: avoid;
  margin: 0 0 16px;
  padding: 8px 8px 36px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s, box-shadow 0.3s, z-index 0s;
  position: relative;
  border-radius: 4px;
}
.photo-card:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.photo-card img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  background: #efe6d4;
}

.gallery-foot {
  text-align: center;
  margin-top: 48px;
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
}

.gallery-foot a {
  color: var(--accent);
  font-weight: 700;
  padding: 10px 24px;
  border: 2px dashed var(--accent);
  border-radius: 999px;
  display: inline-block;
  transition: all 0.2s;
}
.gallery-foot a:hover {
  background: var(--accent);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ============================================
   PLANS (5/31)
   ============================================ */
.plans-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 460px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px 18px 18px;
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--pc);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: var(--shadow-lg);
}
.plan-card::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--pc) 0%, transparent 70%);
  opacity: 0.14;
  border-radius: 50%;
}

.plan-num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--pc);
  opacity: 0.35;
  letter-spacing: -0.02em;
}

.plan-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-title {
  margin: 4px 0 6px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  line-height: 1.4;
}

.plan-area {
  margin: 0 0 10px;
  font-size: 0.78rem;
  color: var(--pc);
  font-weight: 700;
  position: relative;
}

.plan-body {
  margin: 0 0 12px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink);
  position: relative;
}

.plan-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
}

.plan-tag {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.plans-foot {
  text-align: center;
  margin-top: 36px;
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
  color: var(--ink-soft);
}

/* ============================================
   NEXT
   ============================================ */
.section-next {
  padding: 96px 24px 120px;
  background: linear-gradient(135deg, #fff8ef 0%, #ffe2c4 50%, #ffd9e8 100%);
}

.next-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.next-card::before, .next-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}
.next-card::before { background: #ff8ab1; top: -80px; left: -60px; }
.next-card::after  { background: #5b8cff; bottom: -80px; right: -60px; }

.next-eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-size: 0.9rem;
  position: relative;
}

.next-title {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 16px 0 24px;
  background: linear-gradient(120deg, #ff7a59, #5b8cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.next-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink);
  margin: 0 0 32px;
  position: relative;
}

.next-pulse {
  display: inline-block;
  font-family: "Caveat", cursive;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  position: relative;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  text-align: center;
  padding: 40px 24px 60px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  background: rgba(255, 247, 232, 0.6);
}

.footer small {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE: TIMELINE
   ============================================ */
@media (max-width: 760px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    padding-right: 16px;
    text-align: left;
  }
  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: 9px;
    right: auto;
  }
  .timeline-content { display: block; width: 100%; }
}

/* ============================================
   PRINT (just in case)
   ============================================ */
@media print {
  .hero-bg, .next-card::before, .next-card::after { display: none; }
  body { background: white; }
}
