/* Jonny's Angels - site styles
   Theme: LIGHT, locked page-wide (client preference, dark mode removed). One accent: blue.
   Radius system (documented lock): buttons = pill, cards/panels = 16px,
   inputs = 10px, media thumbs = 12px, avatars = circle.
   Type: Cormorant Garamond (display), Albert Sans (body). */

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-tint: #eef3f9;
  --ink: #1b2637;
  --muted: #4f5f77;
  --accent: #2e6bb5;
  --accent-deep: #22548f;
  --accent-soft: #e6eefa;
  --on-accent: #f8fbff;
  --line: #dde5f0;
  --shadow: 0 14px 40px rgba(34, 62, 105, 0.10);
  --r-card: 16px;
  --r-input: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}


* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Albert Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.45rem; line-height: 1.25; }

p { max-width: 65ch; }
.lede { font-size: 1.2rem; color: var(--muted); }

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin-inline: auto; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 68px; display: flex; align-items: center; gap: 28px;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700; font-size: 1.3rem; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.brand svg { width: 26px; height: 26px; flex: none; }
.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover, .nav-links a.btn-primary[aria-current="page"] { color: var(--on-accent); }
.nav-toggle { display: none; }

/* ---------- Buttons (pill lock) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 26px;
  font-family: "Albert Sans", sans-serif; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-deep); color: var(--on-accent); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center;
}
.hero h1 { margin: 0 0 18px; }
.hero .lede { margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--r-card); aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: var(--shadow);
}
.hero-caption { margin-top: 12px; font-size: 0.9rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tint { background: var(--surface-tint); }
.section-head { margin-bottom: 44px; }
.section-head p { color: var(--muted); margin-top: 12px; }

.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep);
  margin-bottom: 12px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 30px;
}
.card h3 { margin-bottom: 10px; }
.card .price {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700;
  font-size: 2rem; color: var(--ink); margin: 8px 0 2px;
}
.card .price small { font-family: "Albert Sans", sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .btn { margin-top: 18px; }
.card-note { font-size: 0.88rem; color: var(--muted); margin-top: 10px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.grid-asym { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 4fr); gap: 26px; }

.feature-card { border-top: 3px solid var(--accent); }

/* ---------- Split rows ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px; align-items: center; }
.split img { width: 100%; border-radius: var(--r-card); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.split h2 { margin-bottom: 16px; }
.split p + p { margin-top: 14px; }
.split .btn { margin-top: 24px; }

/* ---------- Rhythm / schedule ---------- */
.rhythm { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.rhythm-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px; display: flex; flex-direction: column; gap: 8px;
}
.rhythm-when {
  font-weight: 700; color: var(--accent-deep); font-size: 0.95rem;
}

/* ---------- Accent band ---------- */
.band { background: var(--accent); color: var(--on-accent); }
.band .section-head p, .band p { color: color-mix(in srgb, var(--on-accent) 82%, transparent); }
.band h2 { color: var(--on-accent); }
.band-inner { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 48px; align-items: center; }
.band form { display: flex; gap: 12px; flex-wrap: wrap; }
.band input[type="email"] {
  flex: 1 1 240px; padding: 13px 18px; border-radius: var(--r-input);
  border: 1px solid color-mix(in srgb, var(--on-accent) 40%, transparent);
  background: color-mix(in srgb, var(--on-accent) 12%, transparent);
  color: var(--on-accent); font-size: 1rem; font-family: inherit;
}
.band input[type="email"]::placeholder { color: color-mix(in srgb, var(--on-accent) 65%, transparent); }
.band .btn-invert { background: var(--on-accent); color: var(--accent-deep); }
.band .btn-invert:hover { box-shadow: var(--shadow); }

/* ---------- Quote / story ---------- */
.story { max-width: 820px; margin: 0 auto; text-align: center; }
.story blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 500; line-height: 1.35;
}
.story cite { display: block; margin-top: 20px; font-style: normal; color: var(--muted); font-size: 1rem; }

/* ---------- Books ---------- */
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.book-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column;
}
.book-cover {
  aspect-ratio: 3 / 4; background: linear-gradient(160deg, var(--accent-soft), var(--surface-tint));
  display: flex; align-items: flex-end; padding: 18px;
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; font-size: 1.2rem;
  color: var(--accent-deep); line-height: 1.2;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.book-body p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.book-price { font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 4px 26px; margin-bottom: 14px;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 18px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--accent-deep); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); padding-bottom: 20px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; max-width: 640px; }
.form-field { display: grid; gap: 8px; }
.form-field label { font-weight: 600; font-size: 0.95rem; }
.form-field input, .form-field textarea, .form-field select {
  padding: 13px 16px; border-radius: var(--r-input); border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font-family: inherit; font-size: 1rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.form-help { font-size: 0.88rem; color: var(--muted); }

/* ---------- Notice ---------- */
.notice {
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  background: var(--surface); border-radius: var(--r-card);
  padding: 20px 24px; font-size: 0.95rem; color: var(--muted); max-width: 780px;
}
.notice strong { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 60px; align-items: start; }
.contact-list { display: grid; gap: 18px; }
.contact-list div { display: grid; gap: 2px; }
.contact-list dt { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-list dd { font-size: 1.05rem; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: 40px;
  background: var(--surface-tint);
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, minmax(0, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; color: var(--muted); }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--ink); text-decoration: none; font-size: 0.98rem; }
.footer-grid a:hover { color: var(--accent-deep); }
.footer-note { font-size: 0.88rem; color: var(--muted); max-width: 72ch; }
.footer-legal { font-size: 0.85rem; color: var(--muted); margin-top: 24px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 72px 0 24px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lede { max-width: 62ch; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hero-grid, .split, .band-inner, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 0 64px; }
  .section { padding: 60px 0; }
}
@media (max-width: 640px) {
  .grid-2, .grid-asym, .rhythm, .book-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; background: none; border: 1px solid var(--line);
    border-radius: 999px; padding: 8px 14px; color: var(--ink); font: inherit; cursor: pointer;
  }
}

/* ---------- Heaven sky (from the book cover palette) ---------- */
:root {
  --sky-top: #a8b6dc;
  --sky-mid: #cfd4e8;
  --sky-low: #f3d3b4;
  --sky-glow: rgba(255, 214, 160, 0.85);
  --cloud-a: rgba(255, 255, 255, 0.92);
  --cloud-b: rgba(255, 226, 195, 0.80);
  --sky-ink: #22304a;
}

.sky {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 52%, var(--sky-low) 100%);
  color: var(--sky-ink);
}
.sky h1, .sky h2 { color: var(--sky-ink); }
.sky .lede { color: color-mix(in srgb, var(--sky-ink) 78%, transparent); }
.sky > .container { position: relative; z-index: 2; }

.sky-sun {
  position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  right: -10vw; bottom: -28vw;
  background: radial-gradient(circle, var(--sky-glow) 0%, rgba(255, 214, 160, 0) 65%);
  animation: sunPulse 9s ease-in-out infinite alternate;
}

.sky-clouds { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sky-clouds span {
  position: absolute; border-radius: 50%;
  filter: blur(22px); will-change: transform;
  background: radial-gradient(closest-side, var(--cloud-a) 0%, rgba(255,255,255,0) 72%);
  animation: billow 18s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}
.sky-clouds span:nth-child(2n) {
  background: radial-gradient(closest-side, var(--cloud-b) 0%, rgba(255,255,255,0) 72%);
}
.sky-clouds .c1 { width: 55vw; height: 26vw; left: -12vw; bottom: -12vw; animation-duration: 21s; }
.sky-clouds .c2 { width: 48vw; height: 24vw; left: 16vw;  bottom: -14vw; animation-duration: 17s; animation-delay: -6s; }
.sky-clouds .c3 { width: 60vw; height: 28vw; right: -14vw; bottom: -13vw; animation-duration: 24s; animation-delay: -11s; }
.sky-clouds .c4 { width: 34vw; height: 17vw; left: 4vw;   bottom: -4vw;  animation-duration: 14s; animation-delay: -3s; }
.sky-clouds .c5 { width: 30vw; height: 15vw; right: 8vw;  bottom: -3vw;  animation-duration: 16s; animation-delay: -9s; }
.sky-clouds .c6 { width: 24vw; height: 12vw; left: 40vw;  bottom: -2vw;  animation-duration: 12s; animation-delay: -5s; }
.sky-clouds .c7 { width: 20vw; height: 11vw; right: 30vw; bottom: 2vw;   animation-duration: 19s; animation-delay: -14s; }

@keyframes billow {
  from { transform: translate3d(0, 3vw, 0) scale(0.94); }
  to   { transform: translate3d(0, -2vw, 0) scale(1.16); }
}
@keyframes sunPulse {
  from { opacity: 0.75; transform: scale(0.96); }
  to   { opacity: 1;    transform: scale(1.06); }
}

.sky-lite { padding: 84px 0; }
.sky-lite .sky-clouds span { filter: blur(26px); }

/* ---------- Entrance + ambient motion ---------- */
.rise { opacity: 0; transform: translateY(26px); animation: riseIn 0.9s var(--ease) forwards; }
.rise.d1 { animation-delay: 0.08s; }
.rise.d2 { animation-delay: 0.18s; }
.rise.d3 { animation-delay: 0.30s; }
.rise.d4 { animation-delay: 0.44s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

.float-slow { animation: floatY 7s ease-in-out infinite alternate; }
@keyframes floatY { from { transform: translateY(6px); } to { transform: translateY(-8px); } }

.card { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.book-card { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

@media (prefers-reduced-motion: reduce) {
  .sky-clouds span, .sky-sun, .float-slow { animation: none; }
  .rise { animation: none; opacity: 1; transform: none; }
  .card:hover, .book-card:hover { transform: none; }
}

/* ---------- Stan-style offer rows ---------- */
.offer { display: flex; gap: 18px; align-items: flex-start; }
.offer .thumb {
  width: 76px; height: 76px; border-radius: 12px; object-fit: cover; flex: none;
  box-shadow: 0 6px 18px rgba(34, 62, 105, 0.16);
}
.offer > div { min-width: 0; }

.avatar-chip { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.avatar-chip img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid var(--surface); box-shadow: 0 4px 12px rgba(34, 62, 105, 0.2);
}
.avatar-chip span { font-size: 0.9rem; font-weight: 600; color: var(--muted); }

.portrait-frame { position: relative; }
.portrait-frame img {
  width: 100%; border-radius: var(--r-card); aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: 0 24px 60px rgba(34, 48, 74, 0.30);
}

/* ---------- Group finder ---------- */
.finder { max-width: 640px; }
.finder-result {
  margin-top: 18px; padding: 22px 26px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
}
.finder-result strong { color: var(--ink); }
.finder-result[hidden] { display: none; }

@media (max-width: 640px) {
  .offer { flex-direction: row; }
  .sky-clouds span { filter: blur(16px); }
}

/* ---------- Mega nav ---------- */
.nav-item { display: inline-flex; align-items: center; }
.nav-drop {
  background: none; border: none; cursor: pointer; font: inherit;
  color: var(--muted); font-size: 0.95rem; font-weight: 500; padding: 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-drop::after {
  content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.nav-drop:hover, .nav-drop[aria-expanded="true"], .nav-links a.active { color: var(--ink); }
.nav-drop[aria-expanded="true"]::after { transform: rotate(225deg) translateY(-2px); }

.mega {
  display: none; position: absolute; left: 0; right: 0; top: 68px;
  background: var(--surface); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 30px 0 34px;
}
.nav-item.open .mega { display: block; }
.mega-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 30px;
}
.mega-title {
  grid-column: 1 / -1; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.mega-link {
  display: flex; gap: 14px; align-items: flex-start; text-decoration: none;
  padding: 12px 14px; border-radius: 12px; color: var(--ink);
  transition: background 0.2s var(--ease);
}
.mega-link:hover { background: var(--surface-tint); color: var(--ink); }
.mega-link img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex: none; }
.mega-link > span:last-child { flex: 1; min-width: 0; }
.mega-link strong { display: block; font-size: 0.98rem; color: var(--ink); }
.mega-link span { display: block; font-size: 0.86rem; color: var(--muted); line-height: 1.45; }

@media (min-width: 901px) {
  .nav-item:hover .mega, .nav-item:focus-within .mega { display: block; }
}

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.post-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.post-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-cat { font-size: 0.8rem; font-weight: 700; color: var(--accent-deep); }
.post-card h3 { font-size: 1.25rem; }
.post-card p { font-size: 0.94rem; color: var(--muted); flex: 1; }
.post-meta { font-size: 0.85rem; color: var(--muted); }

.post-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); }
.post-card-featured img { height: 100%; aspect-ratio: auto; }
.post-card-featured .post-card-body { padding: 34px 38px; justify-content: center; }
.post-card-featured h3 { font-size: 1.9rem; }

.post-hero { padding: 64px 0 36px; }
.post-hero h1 { max-width: 22ch; margin-bottom: 14px; }
.post-hero .post-meta { margin-top: 6px; }
.post-cover { border-radius: var(--r-card); aspect-ratio: 21 / 9; object-fit: cover; width: 100%; box-shadow: var(--shadow); }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: 44px 0 14px; font-size: 1.7rem; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; line-height: 1.4;
  border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; margin: 26px 0; color: var(--ink);
}
.prose .cta-box {
  background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px 30px; margin: 40px 0 8px;
}
.prose .cta-box p { color: var(--muted); }
.prose .cta-box .btn { margin-top: 6px; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .post-card-featured { grid-template-columns: 1fr; }
  .post-card-featured img { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .nav-item { display: block; width: 100%; }
  .nav-drop { width: 100%; justify-content: space-between; padding: 4px 0; font-size: 1rem; }
  .mega { position: static; display: none; box-shadow: none; border: none; padding: 6px 0 10px; background: transparent; }
  .mega .container { padding: 0; }
  .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  .mega-link { padding: 8px 6px; }
  .mega-link img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sunset hero (Kathryn's photo palette: dusk blue over golden cloud sea) ---------- */
.sky-sunset {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg,
      #3f5170 0%, #56688c 22%, #8d92ac 40%,
      #cf9f79 58%, #f3c48e 72%, #ffe3b3 86%, #f6d9b4 100%);
  color: #fdf6ea;
}
.sky-sunset h1 { color: #fffdf7; text-shadow: 0 2px 24px rgba(30, 40, 70, 0.45); }
.sky-sunset .lede { color: rgba(253, 246, 234, 0.92); text-shadow: 0 1px 14px rgba(30, 40, 70, 0.4); }
.sky-sunset > .container { position: relative; z-index: 6; }
.sky-sunset .btn-ghost { color: #fffdf7; border-color: rgba(255, 253, 247, 0.55); }
.sky-sunset .btn-ghost:hover { border-color: #fffdf7; color: #fffdf7; background: rgba(255, 253, 247, 0.12); }
.sky-sunset .btn-primary { background: #fffdf7; color: #22548f; }
.sky-sunset .btn-primary:hover { background: #ffffff; color: #22548f; box-shadow: 0 14px 40px rgba(30, 40, 70, 0.35); }

/* sun + halo */
.sunset-sun {
  position: absolute; z-index: 1; pointer-events: none;
  width: 46vw; height: 46vw; max-width: 720px; max-height: 720px;
  left: 50%; top: 58%; transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255,250,235,0.95) 0%, rgba(255,224,166,0.75) 18%, rgba(255,203,133,0.35) 40%, rgba(255,203,133,0) 68%);
  animation: sunPulse 8s ease-in-out infinite alternate;
}

/* god rays: two counter-rotating conic fans from the sun */
.sunset-rays, .sunset-rays::after {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  width: 160vw; height: 160vw; left: 50%; top: 58%;
  margin: -80vw 0 0 -80vw;
  background: repeating-conic-gradient(from 0deg,
    rgba(255, 240, 210, 0.0) 0deg 9deg,
    rgba(255, 240, 210, 0.10) 12deg 15deg,
    rgba(255, 240, 210, 0.0) 18deg 24deg);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 35%, transparent 62%);
  mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 35%, transparent 62%);
  animation: raysTurn 90s linear infinite;
}
.sunset-rays::after { animation: raysTurnBack 120s linear infinite; opacity: 0.7; margin: 0; left: 0; top: 0; }
@keyframes raysTurn { to { transform: rotate(360deg); } }
@keyframes raysTurnBack { to { transform: rotate(-360deg); } }

/* cloud sea: warm lit clouds + blue shadow clouds */
.sky-sunset .sky-clouds { z-index: 2; }
.sky-sunset .sky-clouds span {
  background: radial-gradient(closest-side, rgba(255, 240, 218, 0.95) 0%, rgba(255, 240, 218, 0) 72%);
}
.sky-sunset .sky-clouds span:nth-child(2n) {
  background: radial-gradient(closest-side, rgba(122, 138, 176, 0.38) 0%, rgba(122, 138, 176, 0) 72%);
}
.sky-sunset .sky-clouds span:nth-child(3n) {
  background: radial-gradient(closest-side, rgba(255, 214, 165, 0.85) 0%, rgba(255, 214, 165, 0) 72%);
}

/* doves */
.doves { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.dove {
  position: absolute; top: 0; left: 0;
  width: 54px; height: auto; fill: rgba(255, 253, 247, 0.95);
  filter: drop-shadow(0 2px 6px rgba(60, 70, 100, 0.25));
  offset-rotate: auto 0deg;
  animation: flyAcross 30s linear infinite;
}
.dove .wingL, .dove .wingR { transform-box: fill-box; }
.dove .wingL { transform-origin: 90% 85%; animation: flapL 0.85s ease-in-out infinite alternate; }
.dove .wingR { transform-origin: 10% 85%; animation: flapR 0.85s ease-in-out infinite alternate; }
@keyframes flapL { from { transform: rotate(6deg); } to { transform: rotate(-38deg); } }
@keyframes flapR { from { transform: rotate(-6deg); } to { transform: rotate(38deg); } }
@keyframes flyAcross { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.dove.dv1 { offset-path: path("M -80 170 C 300 90, 700 200, 1100 110 C 1300 70, 1450 120, 1600 90"); width: 60px; animation-duration: 34s; }
.dove.dv2 { offset-path: path("M -60 690 C 350 620, 800 720, 1250 620 C 1400 580, 1500 610, 1600 590"); width: 40px; opacity: 0.85; animation-duration: 42s; animation-delay: -14s; }
.dove.dv2 .wingL, .dove.dv2 .wingR { animation-duration: 0.7s; }
.dove.dv3 { offset-path: path("M -70 100 C 250 170, 650 60, 1050 150 C 1250 200, 1450 140, 1600 170"); width: 30px; opacity: 0.7; animation-duration: 50s; animation-delay: -30s; }
.dove.dv3 .wingL, .dove.dv3 .wingR { animation-duration: 0.6s; }
.dove.dv4 { offset-path: path("M -80 710 C 60 680, 200 730, 400 690 C 800 610, 1200 720, 1600 640"); width: 24px; opacity: 0.55; animation-duration: 58s; animation-delay: -8s; }
.dove.dv4 .wingL, .dove.dv4 .wingR { animation-duration: 0.55s; }

/* rising angel lights */
.motes { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.motes i {
  position: absolute; bottom: -30px; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,250,230,0.95), rgba(255,250,230,0));
  filter: blur(1px);
  animation: moteRise 16s linear infinite;
}
.motes i:nth-child(1) { left: 8%;  animation-duration: 19s; animation-delay: -3s;  width: 10px; height: 10px; }
.motes i:nth-child(2) { left: 22%; animation-duration: 15s; animation-delay: -9s; }
.motes i:nth-child(3) { left: 37%; animation-duration: 22s; animation-delay: -6s;  width: 6px;  height: 6px; }
.motes i:nth-child(4) { left: 52%; animation-duration: 17s; animation-delay: -12s; }
.motes i:nth-child(5) { left: 64%; animation-duration: 21s; animation-delay: -1s;  width: 12px; height: 12px; }
.motes i:nth-child(6) { left: 78%; animation-duration: 14s; animation-delay: -7s; }
.motes i:nth-child(7) { left: 90%; animation-duration: 20s; animation-delay: -11s; width: 6px; height: 6px; }
@keyframes moteRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.9; }
  60%  { opacity: 0.6; transform: translateY(-46vh) translateX(14px); }
  100% { transform: translateY(-82vh) translateX(-10px); opacity: 0; }
}

.sky-sunset::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 5;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0), var(--bg));
  pointer-events: none;
}
.sky-sunset .portrait-frame img {
  box-shadow: 0 30px 80px rgba(30, 40, 70, 0.45);
  border: 3px solid rgba(255, 253, 247, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .sunset-rays, .sunset-rays::after, .sunset-sun, .motes i,
  .dove, .dove .wingL, .dove .wingR { animation: none; }
  .dove { offset-distance: 40%; }
  .dove.dv4 { offset-distance: 60%; }
}
@media (max-width: 900px) {
  .dove { width: 34px; }
  .dove.dv3, .dove.dv4 { display: none; }
  .sunset-sun { width: 90vw; height: 90vw; }
}

/* ---------- Children's collection strip ---------- */
.kids-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.kids-tile {
  display: flex; flex-direction: column; justify-content: flex-end;
  aspect-ratio: 3 / 4; padding: 18px; border-radius: 12px; text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; font-size: 1.15rem;
  line-height: 1.2; color: #fffdf7; text-shadow: 0 1px 10px rgba(30,40,70,0.5);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background-size: cover; background-position: center;
}
.kids-tile:hover { transform: translateY(-4px); }
.kids-tile.k1 { background-image: linear-gradient(160deg, #56688c, #cf9f79); }
.kids-tile.k2 { background-image: linear-gradient(160deg, #7d8fb3, #f3c48e); }
.kids-tile.k3 { background-image: linear-gradient(160deg, #8d92ac, #ffd9a0); }
.kids-tile.k4 { background-image: linear-gradient(160deg, #46597e, #e0aa7c); }
.kids-tile span { font-family: "Albert Sans", sans-serif; font-weight: 500; font-size: 0.82rem; margin-top: 6px; opacity: 0.9; }
@media (max-width: 640px) { .kids-strip { grid-template-columns: 1fr 1fr; } }
