:root {
  --primary: #97c8e5;
  --primary-dark: #7bb5d9;
  --primary-light: #b5dbf0;
  --cover: #f9c9d6;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --bg: #f5f5f5;
  --card: #fff;
  --placeholder: #e8edf5;
  --border: rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", Georgia, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.font-mono { font-family: "JetBrains Mono", Monaco, monospace; }
.font-serif { font-family: "Cormorant Garamond", Georgia, serif; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245, 245, 245, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 36px);
  min-height: 56px;
  padding: 8px 16px;
  overflow-x: auto;
}

.nav-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(26, 26, 26, 0.45);
  white-space: nowrap;
  transition: color 0.4s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 16px 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7fc 0%, #ffffff 40%, #f5faff 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.hero-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -1px;
  color: var(--text);
}

.hero-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 32px;
}

.hero-intro {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  min-height: 1.6em;
}

.keyword {
  color: var(--primary);
  font-weight: 500;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.6s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Sections ── */
.section {
  padding: 100px 0 80px;
  position: relative;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin: 0 0 8px;
}

.section-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}

.section-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.section-blob-about {
  background: var(--primary);
  top: 60px;
  right: -60px;
}

.section-blob-exp {
  background: var(--primary-light);
  top: 40px;
  left: -80px;
}

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

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.about-photo-frame {
  position: absolute;
  top: 8px; left: 8px;
  right: -8px; bottom: -8px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 2px;
  z-index: 0;
  transition: all 0.5s ease;
}

.about-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
}

.about-photo-wrap:hover .about-photo-placeholder {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.about-photo-wrap:hover .about-photo-frame {
  top: 6px; left: 6px;
  right: -6px; bottom: -6px;
}

.about-text-wrap {
  display: flex;
  align-items: center;
  min-height: 300px;
}

.about-line {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-family: "Noto Sans SC", Georgia, serif;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.about-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

/* ── Experience / Dial ── */
.dial-wrapper {
  position: relative;
  padding-bottom: 40px;
}

.fan-stage {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 520px;
  margin: 0 auto 24px;
  perspective: 1200px;
}

.fan-card-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 280px;
  height: 400px;
  margin-left: -140px;
  transform-origin: center bottom;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease, opacity 0.5s ease, box-shadow 0.4s ease;
  cursor: default;
  transform-style: preserve-3d;
}

.fan-card-wrapper.active {
  cursor: pointer;
  z-index: 20;
}

.fan-card-wrapper.inactive {
  opacity: 0.6;
  cursor: pointer;
}

.fan-card-wrapper.inactive:hover {
  opacity: 0.85;
}

.fan-flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.fan-flip-card.flipped {
  transform: rotateY(180deg);
}

.fan-flip-face {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.fan-flip-front {
  background: var(--card);
  padding: 8px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.fan-img-placeholder {
  width: 100%;
  flex: 1;
  min-height: 0;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  border-radius: 6px;
}

.fan-front-info {
  padding: 12px 8px 8px;
}

.fan-front-info h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 3px;
}

.fan-front-info .fan-subtitle {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
  margin: 0;
}

.fan-flip-back {
  transform: rotateY(180deg);
  background: var(--card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fan-era-back {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fan-era-back::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}

.fan-flip-back h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 6px;
}

.fan-flip-back .subtitle-back {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.fan-flip-back .description {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(26, 26, 26, 0.6);
}

.fan-flip-back .fan-location {
  margin-top: auto;
  padding-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

/* Dial */
.dial-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dial-clock {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.dial-arc-center {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 1000px;
  height: 1000px;
  transform: translate(-50%);
  pointer-events: none;
}

.dial-arc {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  pointer-events: auto;
}

.dial-arc-outer {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 1004px;
  height: 1004px;
  transform: translate(-50%);
  border-radius: 50%;
  border: 2px solid rgba(151, 200, 229, 0.03);
  pointer-events: none;
}

.dial-marker-group {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.dial-marker {
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -32px;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transform-origin: 32px 550px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.dial-marker-year {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.22);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.dial-marker-bar {
  width: 2px;
  height: 24px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dial-marker--active .dial-marker-year {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(151, 200, 229, 0.1);
}

.dial-marker--active .dial-marker-bar {
  height: 38px;
  width: 2.5px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(151, 200, 229, 0.25);
}

.dial-marker:hover:not(.dial-marker--active) .dial-marker-year {
  color: rgba(151, 200, 229, 0.6);
}

.dial-marker:hover:not(.dial-marker--active) .dial-marker-bar {
  background: rgba(151, 200, 229, 0.18);
}

.dial-pointer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.dial-pointer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(151, 200, 229, 0.1), 0 0 14px rgba(151, 200, 229, 0.12);
}

.dial-pointer-needle {
  width: 1.5px;
  height: 120px;
  background: linear-gradient(to top, var(--primary), rgba(151, 200, 229, 0.06));
  border-radius: 1px;
}

.dial-pointer-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid var(--primary);
}

.dial-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.dial-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(26, 26, 26, 0.35);
  transition: color 0.3s;
  padding: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dial-nav-btn:hover {
  color: var(--primary);
}

.dial-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* ── Visual Daily Flip Book ── */
.flip-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flip-wrapper {
  position: relative;
  padding-bottom: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flip-wrapper.shifted {
  transform: translateX(60px);
}

@media (max-width: 900px) {
  .flip-wrapper.shifted {
    transform: translateX(30px);
  }
}

@media (max-width: 640px) {
  .flip-wrapper.shifted {
    transform: translateX(0);
  }
}

.flip-book-container {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 2200px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.12));
}

.flip-book {
  position: relative;
  width: min(42vw, 480px);
  height: min(60vw, 680px);
  transform-style: preserve-3d;
  background: transparent;
}

.flip-page {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: left center;
  transform-style: preserve-3d;
  will-change: transform;
}

.flip-page.flipped {
  transform: rotateY(-180deg);
}

.flip-page {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  box-shadow: inset -5px 0 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  box-sizing: border-box;
}

.flip-front {
  transform: rotateY(0);
  border-radius: 2px 10px 10px 2px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-back {
  transform: rotateY(180deg);
  border-radius: 10px 2px 2px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafafa;
}

.flip-cover-f {
  background-color: var(--cover) !important;
  color: #fff;
  border-radius: 4px 14px 14px 4px;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08));
  box-shadow: inset 8px 0 20px rgba(0, 0, 0, 0.12);
  padding: 50px 36px;
  justify-content: flex-end;
}

.flip-cover-b {
  transform: rotateY(180deg);
  background-color: var(--cover) !important;
  color: #fff;
  border-radius: 14px 4px 4px 14px;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
  box-shadow: inset -8px 0 20px rgba(0, 0, 0, 0.12);
  padding: 50px 36px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flip-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
}

.flip-cover-f .flip-meta,
.flip-cover-b .flip-meta {
  color: rgba(255, 255, 255, 0.7);
}

.flip-title {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 14px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.flip-cover-f .flip-title,
.flip-cover-b .flip-title {
  color: #fff;
}

.flip-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  font-family: Georgia, serif;
  margin: 0;
}

.flip-cover-f .flip-desc,
.flip-cover-b .flip-desc {
  color: rgba(255, 255, 255, 0.85);
}

.flip-inner-page {
  background: #faf9f7 !important;
  padding: 36px !important;
  box-shadow: inset -3px 0 12px rgba(0, 0, 0, 0.03);
}

.flip-chapter {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.flip-photo-page {
  padding: 24px 28px !important;
  align-items: center;
  justify-content: center;
  background: #faf9f7 !important;
}

.flip-photo-placeholder {
  width: 78%;
  aspect-ratio: 4 / 3;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(151, 200, 229, 0.08), 0 0 0 1px rgba(151, 200, 229, 0.05);
}

.flip-photo-cap {
  font-family: Georgia, serif;
  font-size: 11px;
  color: #888;
  line-height: 1.6;
  margin-top: 12px;
  text-align: center;
  width: 82%;
  font-style: italic;
}

.flip-breath {
  padding: 40px !important;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: #faf9f7 !important;
}

.flip-breath-line {
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

.flip-breath-txt {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.2);
}

.flip-cta {
  display: inline-block;
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 9px 20px;
  transition: all 0.3s;
}

.flip-cta:hover {
  background: var(--primary);
  color: #fff;
}

.flip-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 200;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.flip-nav-btn:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(151, 200, 229, 0.4);
}

.flip-nav-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.flip-nav-prev {
  left: max(8px, calc(50% - min(42vw, 480px) / 2 - 60px));
}

.flip-nav-next {
  right: max(8px, calc(50% - min(42vw, 480px) / 2 - 60px));
}

.flip-back-btn {
  position: absolute;
  top: 16px;
  left: max(8px, calc(50% - min(42vw, 480px) / 2 - 60px));
  z-index: 200;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 12px;
  transition: color 0.3s;
  display: none;
}

.flip-back-btn:hover {
  color: var(--primary);
}

.flip-back-btn.visible {
  display: flex;
  align-items: center;
  gap: 4px;
}

.flip-bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flip-dots {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 300px;
}

.flip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.flip-dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 3px;
}

.flip-dot:hover:not(.active) {
  background: rgba(151, 200, 229, 0.5);
}

.flip-page-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.22);
  letter-spacing: 1px;
}

.flip-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 12px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Social Media ── */
.social-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.social-stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.social-stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.social-notes {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.social-note {
  flex: 0 0 220px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-note:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.social-note-img {
  aspect-ratio: 3 / 4;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.social-note-title {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s;
}

.social-link-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Toolkit ── */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.toolkit-card {
  background: var(--card);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.toolkit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.toolkit-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 8px;
}

.toolkit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.7;
}

.toolkit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.toolkit-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(151, 200, 229, 0.15);
  color: var(--primary);
  border-radius: 999px;
}

/* ── Contact ── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-title {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  padding: 24px 32px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 140px;
}

.contact-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(151, 200, 229, 0.2);
}

.contact-link:hover .contact-icon {
  color: var(--primary);
}

.contact-icon {
  font-size: 1.5rem;
  transition: color 0.3s;
}

.contact-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.flower-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: auto;
  z-index: 0;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 48px 16px 60px;
  color: var(--text-light);
  font-size: 0.85rem;
}

footer .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

footer .divider::before,
footer .divider::after {
  content: "";
  width: 80px;
  height: 1px;
  background: var(--border);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .fan-stage {
    height: 440px;
  }

  .fan-card-wrapper {
    width: 240px;
    height: 310px;
    margin-left: -120px;
  }

  .dial-clock {
    height: 200px;
  }

  .dial-arc-center {
    top: 50px;
    width: 800px;
    height: 800px;
  }

  .dial-arc-outer {
    top: 48px;
    width: 804px;
    height: 804px;
  }

  .dial-marker {
    transform-origin: 32px 445px;
  }

  .dial-pointer-needle {
    height: 90px;
  }

  .flip-book {
    width: min(50vw, 440px);
    height: min(70vw, 620px);
  }
}

@media (max-width: 640px) {
  .nav-inner {
    justify-content: flex-start;
  }

  .about-photo-wrap {
    max-width: 240px;
  }

  .fan-stage {
    height: 380px;
  }

  .fan-card-wrapper {
    width: 200px;
    height: 260px;
    margin-left: -100px;
  }

  .dial-clock {
    height: 170px;
  }

  .dial-arc-center {
    top: 45px;
    width: 600px;
    height: 600px;
  }

  .dial-arc-outer {
    top: 43px;
    width: 604px;
    height: 604px;
  }

  .dial-marker {
    top: 5px;
    transform-origin: 32px 340px;
  }

  .dial-marker-year {
    font-size: 11px;
  }

  .dial-marker--active .dial-marker-year {
    font-size: 13px;
  }

  .dial-pointer-needle {
    height: 70px;
  }

  .dial-nav {
    gap: 20px;
  }

  .flip-book {
    width: min(78vw, 300px);
    height: min(110vw, 425px);
  }

  .flip-cover-f,
  .flip-cover-b,
  .flip-inner-page {
    padding: 28px 20px;
  }

  .flip-nav-prev {
    left: 4px;
  }

  .flip-nav-next {
    right: 4px;
  }

  .flip-nav-btn {
    width: 38px;
    height: 38px;
  }

  .social-stats {
    gap: 32px;
  }

  .flower-canvas {
    height: 140px;
  }
}
