:root {
  --ink: #241a30;
  --ink-soft: #4a4159;
  --muted: #857b93;
  --line: #f0e7ef;
  --bg: #ffffff;
  --bg-soft: #fff6f2;
  --bg-tint: #fdeff2;
  --pink: #ff5c8a;
  --coral: #ff8f6b;
  --grad: linear-gradient(90deg, #ff5c8a 0%, #ff8f6b 100%);
  --grad-135: linear-gradient(135deg, #ff5c8a 0%, #ff8f6b 100%);
  --hero-grad: linear-gradient(135deg, #ffe7db 0%, #ffdfe9 42%, #efe4ff 100%);
  --shadow-pink: 0 22px 48px -22px rgba(255, 92, 138, 0.45);
  --shadow-soft: 0 22px 50px -28px rgba(50, 25, 55, 0.28);
  --shadow-card: 0 14px 34px -20px rgba(50, 25, 55, 0.22);
  --maxw: 1200px;
  --r: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; }

.kicker { color: var(--pink); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 12px; }
.kicker.light { color: rgba(255,255,255,0.9); }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--pink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { left: 16px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: none; transition: transform .16s ease, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: var(--shadow-pink); }
.btn-grad:hover { box-shadow: 0 26px 54px -20px rgba(255,92,138,0.6); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-soft { background: var(--bg-tint); color: var(--pink); }
.btn-soft:hover { background: #ffe1e9; }
.btn-white { background: #fff; color: var(--pink); box-shadow: 0 14px 30px -16px rgba(0,0,0,0.3); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Header */
.site-head { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.head-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 11px; background: var(--grad); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-pink); }
.brand-mark svg { width: 20px; height: 20px; fill: #fff; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: 15px; transition: color .2s; }
.nav a:hover { color: var(--pink); }

/* Hero */
.hero { position: relative; background: var(--hero-grad); padding: 70px 0 90px; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; z-index: 0; }
.blob-a { width: 420px; height: 420px; background: #ffb6c9; top: -120px; left: -80px; }
.blob-b { width: 380px; height: 380px; background: #d6c2ff; bottom: -140px; right: -60px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--pink); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; margin: 0 0 18px; background: rgba(255,255,255,0.7); padding: 7px 16px; border-radius: 999px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); letter-spacing: -0.03em; }
.circle-word { position: relative; display: inline-block; white-space: nowrap; color: var(--pink); }
.scribble { position: absolute; left: 50%; top: 50%; width: 128%; height: 175%; transform: translate(-50%, -52%); pointer-events: none; }
.hero-note { font-family: "Caveat", cursive; font-weight: 700; color: var(--coral); font-size: 0.5em; letter-spacing: 0; margin-left: 8px; white-space: nowrap; }
.lede { color: var(--ink-soft); font-size: clamp(16px, 2vw, 19px); max-width: 30em; margin: 24px 0 0; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero art */
.hero-art { position: relative; }
.hero-photo { position: relative; z-index: 1; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-soft); rotate: 2deg; border: 6px solid #fff; }
.hero-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.float-pill { position: absolute; z-index: 2; background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.float-followers { top: 22px; right: -10px; flex-direction: column; gap: 0; text-align: center; }
.float-followers strong { font-size: 22px; font-weight: 800; }
.float-followers span { font-size: 12px; color: var(--muted); font-weight: 600; }
.float-like { bottom: 30px; left: -18px; }
.float-like .heart { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-tint); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.float-like-text { font-size: 13px; font-weight: 700; }
.float-badge { position: absolute; z-index: 2; bottom: -16px; right: 26px; background: var(--grad-135); color: #fff; border-radius: 18px; padding: 12px 18px; text-align: center; box-shadow: var(--shadow-pink); rotate: -4deg; }
.float-badge .fb-num { display: block; font-size: 22px; font-weight: 800; line-height: 1; }
.float-badge .fb-label { font-size: 11px; font-weight: 700; opacity: .92; letter-spacing: .04em; text-transform: uppercase; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -46px; position: relative; z-index: 5; }
.stat-card { background: #fff; border-radius: var(--r); box-shadow: var(--shadow-card); padding: 20px; display: flex; align-items: center; gap: 14px; }
.stat-ico { width: 46px; height: 46px; border-radius: 14px; flex: none; background: var(--bg-tint) center/22px no-repeat; }
.ico-ig { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5c8a' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23ff5c8a'/%3E%3C/svg%3E"); }
.ico-th { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5c8a' stroke-width='2'%3E%3Cpath d='M12 21c5 0 8-3 8-9s-3-9-8-9-8 3.5-8 8c0 4 2.5 6.5 6 6.5 3 0 4.5-1.7 4.5-4S16.5 10 14 10c-2 0-3 1-3 2.5'/%3E%3C/svg%3E"); }
.ico-book { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5c8a' stroke-width='2'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H20v15H6.5A2.5 2.5 0 0 0 4 20.5z'/%3E%3Cpath d='M20 18v3H6.5A2.5 2.5 0 0 1 4 18.5'/%3E%3C/svg%3E"); }
.ico-heart { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff5c8a'%3E%3Cpath d='M12 21s-7-4.35-7-9.4A3.6 3.6 0 0 1 12 9a3.6 3.6 0 0 1 7 2.6C19 16.65 12 21 12 21z'/%3E%3C/svg%3E"); }
.stat-meta { margin-right: auto; }
.stat-meta h5 { font-size: 16px; font-weight: 800; }
.stat-meta span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Feed */
.feed { padding: 90px 0 90px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-sub { color: var(--muted); font-weight: 600; margin: 8px 0 34px; }
.section-sub span { color: var(--pink); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  display: flex; flex-direction: column; text-align: left; padding: 0; cursor: pointer;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  font: inherit; color: inherit; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .25s ease;
}
.card:hover, .card:focus-visible { transform: translateY(-6px); box-shadow: 0 26px 46px -22px rgba(255,92,138,0.4); outline: none; }
.card-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f4eef2; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-thumb img { transform: scale(1.05); }
.card-reel { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 12px; padding-left: 2px; box-shadow: 0 6px 14px -6px rgba(0,0,0,.3); }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.card-ref { align-self: flex-start; background: var(--bg-tint); color: var(--pink); font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; }
.card-title { font-size: 16px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-date { font-size: 12.5px; color: var(--muted); font-weight: 600; }

.feed-more { text-align: center; margin-top: 46px; }

/* Journey */
.journey { padding: 30px 0 100px; }
.journey-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.journey-art { position: relative; }
.ja-main { width: 84%; border-radius: 26px; box-shadow: var(--shadow-soft); border: 6px solid #fff; rotate: -3deg; }
.ja-mini { position: absolute; width: 46%; right: 0; bottom: -26px; border-radius: 20px; box-shadow: var(--shadow-card); border: 5px solid #fff; rotate: 5deg; }
.ja-squiggle { position: absolute; top: -26px; left: 30%; width: 120px; }
.journey-copy h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.journey-copy p { color: var(--ink-soft); font-size: 17px; max-width: 44ch; }
.ticks { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 34px; color: var(--ink-soft); font-weight: 500; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--grad) center/12px no-repeat; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

/* Subscribe */
.subscribe { padding: 20px 0 100px; }
.sub-panel { position: relative; overflow: hidden; background: var(--grad-135); border-radius: 34px; box-shadow: var(--shadow-pink); }
.blob-c { width: 360px; height: 360px; background: #fff; opacity: 0.14; top: -120px; right: -60px; }
.sub-inner { position: relative; z-index: 1; padding: 66px 40px; text-align: center; color: #fff; }
.sub-inner h2 { font-size: clamp(28px, 4vw, 44px); }
.sub-inner > p { opacity: 0.95; margin: 14px 0 28px; }
.sub-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sub-form input { background: rgba(255,255,255,0.95); border: none; color: var(--ink); padding: 15px 22px; border-radius: 999px; font-size: 15px; min-width: 300px; font-family: inherit; }
.sub-form input:focus { outline: 3px solid rgba(255,255,255,0.5); }
.sub-note { color: #fff; margin-top: 18px; font-weight: 600; }

/* Footer */
.site-foot { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 66px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.foot-brand p { color: var(--muted); margin: 16px 0; max-width: 32ch; }
.foot-social { display: flex; gap: 18px; }
.foot-social a { color: var(--pink); font-weight: 700; }
.foot-col h5 { font-size: 15px; margin-bottom: 16px; }
.foot-col a { display: block; color: var(--ink-soft); font-weight: 500; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--pink); }
.foot-feed { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.foot-feed img { aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; }
.foot-base { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 500; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .26s ease; }
.lightbox.open { opacity: 1; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(40, 20, 45, 0.55); backdrop-filter: blur(6px); cursor: pointer; }
.lb-shell { position: relative; width: min(920px, 92vw); max-height: 90vh; z-index: 1; transform: scale(.96); transition: transform .26s cubic-bezier(.2,.7,.2,1); }
.lightbox.open .lb-shell { transform: scale(1); }
.lb-content { display: grid; grid-template-columns: 1.05fr 1fr; background: #fff; border-radius: 26px; overflow: hidden; max-height: 90vh; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5); }
.lb-figure { margin: 0; background: #f4eef2; }
.lb-figure img { width: 100%; height: 100%; max-height: 90vh; object-fit: contain; }
.lb-meta { padding: 40px 38px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.lb-ref { align-self: flex-start; background: var(--bg-tint); color: var(--pink); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin: 0; }
.lb-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; margin: 14px 0 0; }
.lb-date { color: var(--muted); font-weight: 600; margin: 14px 0 22px; }
.lb-link { align-self: flex-start; }
.lb-btn { position: absolute; z-index: 2; background: #fff; color: var(--ink); border: none; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); transition: transform .15s, color .2s; }
.lb-btn:hover { transform: scale(1.08); color: var(--pink); }
.lb-close { top: -18px; right: -18px; width: 44px; height: 44px; font-size: 24px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 26px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-prev { left: -66px; }
.lb-next { right: -66px; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { max-width: 460px; margin: 0 auto; width: 100%; }
  .journey-grid { grid-template-columns: 1fr; gap: 70px; }
  .journey-art { max-width: 460px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .lb-content { grid-template-columns: 1fr; }
  .lb-figure img { max-height: 50vh; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 10px; right: 10px; background: #fff; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-base { flex-direction: column; text-align: center; }
  .sub-form input { min-width: 0; width: 100%; }
}
@media (max-width: 460px) {
  .grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { transition: none; }
  .btn:hover, .card:hover { transform: none; }
  .card:hover .card-thumb img { transform: none; }
  .lb-shell, .lightbox { transition: none; }
}
