/* ============================================
   Anthony Tran — Celebrant & MC
   Warm, personal, confident. Mobile-first.
   ============================================ */

:root {
  /* Brand palette (locked in by Anthony — reuse for all future design work):
     FBF1EC cream · FCDDEC pink · CFE5AE light green · 205A18 deep green.
     Cream is the neutral base; greens carry most of the accent work;
     pink (--blush) is reserved for small accents only, never large surfaces. */
  --cream: #FBF1EC;
  --cream-deep: #EEEDDA;
  --ink: #2B2320;
  --ink-soft: #5A4F47;
  --terracotta: #205A18;
  --terracotta-deep: #205A18;
  --sage: #CFE5AE;
  --sage-deep: #205A18;
  --sage-light: #DCEAC4;
  --blush: #FCDDEC;
  --blush-deep: #C4ACB8;
  --wine: #205A18;
  --gold: #CFE5AE;
  --line: #E9ECD3;
  --white: #FFFFFF;

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1080px;
  --shadow-card: 0 4px 16px rgba(43, 35, 32, 0.07);
  --shadow-card-hover: 0 14px 32px rgba(43, 35, 32, 0.14);
  --shadow-photo: 0 18px 40px rgba(43, 35, 32, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 7.5vw, 4.6rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4.6vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--terracotta-deep);
  margin-bottom: 0.9em;
  display: inline-block;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--terracotta-deep);
  margin-right: 10px;
  vertical-align: middle;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 241, 236, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7px;
  padding-bottom: 7px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand .logo-mark-img {
  height: 46px;
  width: auto;
  display: block;
}

.site-footer .brand .logo-mark-img { height: 50px; }

.brand .logo-mark {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text .name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-text .role {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}

.wordmark {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.wordmark span {
  color: var(--terracotta);
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 32px 24px;
  overflow-y: auto;
}

.main-nav.is-open {
  transform: translateX(0);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav a:not(.btn) {
  display: block;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.main-nav a.is-active {
  color: var(--terracotta);
}

.main-nav .nav-cta {
  margin-top: 24px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  padding: 20px 46px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--sage-deep);
  box-shadow: 0 4px 14px rgba(32, 90, 24, 0.14);
}

.btn-primary:hover {
  background: #A3C288;
  box-shadow: 0 6px 18px rgba(32, 90, 24, 0.2);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn:active { transform: scale(0.97); }

/* pill color variants */
.pill-sage { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }
.pill-blush { background: var(--blush); color: var(--wine); border-color: var(--blush-deep); }

/* ---------- Hero ---------- */

.hero {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

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

.decor-sprig {
  position: absolute;
  width: 140px;
  height: 140px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  object-fit: contain;
}

.decor-sprig.top-right {
  top: -18px;
  right: -20px;
  transform: rotate(150deg) scaleX(-1);
}

.decor-sprig.bottom-left {
  bottom: -24px;
  left: -18px;
  transform: rotate(-6deg);
}

@media (max-width: 719px) {
  .decor-sprig { width: 110px; height: 110px; opacity: 0.7; }
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}

.pill {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- Photo-background hero (image header, no gradient — flat scrim only) ---------- */

.hero-photo {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
  padding: 56px 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 32, 0.52);
}

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

.hero-photo .eyebrow { color: var(--sage); }
.hero-photo .eyebrow::before { background: var(--sage); }
.hero-photo h1 { color: var(--white); }
.hero-photo .lede { color: rgba(255, 255, 255, 0.92); }

@media (min-width: 720px) {
  .hero-photo { min-height: 420px; }
}

/* ---------- Sections ---------- */

section { padding: 56px 0; }

.section-alt {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

/* ---------- Cards / grid ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--sage-deep);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--sage-deep);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--sage-deep);
  border-radius: 2px;
  margin-bottom: 20px;
}

.flourish {
  width: 46px;
  height: 46px;
  margin: 0 0 8px -8px;
  opacity: 0.9;
  object-fit: contain;
}

.section-head { display: flex; flex-direction: column; }

/* ---------- Services ---------- */

.service-card h3 {
  color: var(--ink);
  margin-bottom: 0.4em;
}

.service-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 10px;
}

.service-card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta-deep);
  text-decoration: none;
}

.service-card .card-link:hover { text-decoration: underline; }

.service-detail {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  scroll-margin-top: 90px;
}

.service-detail:last-child { border-bottom: none; }

.service-detail .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-deep);
  margin-bottom: 10px;
}

.service-detail h3 { margin-bottom: 0.5em; }

.service-detail p { max-width: 640px; }

.service-detail .btn { margin-top: 18px; }

/* ---------- Photos ---------- */

.photo-frame {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: none;
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-wrap {
  position: relative;
  margin-top: 32px;
}

.hero-photo-wrap .decor-sprig {
  width: 130px;
  height: 130px;
  bottom: -30px;
  right: -24px;
  top: auto;
  left: auto;
  transform: rotate(8deg);
  opacity: 0.9;
}

.photo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.photo-grid .photo-frame { aspect-ratio: 4 / 3; }
.photo-grid .photo-frame.tall { aspect-ratio: 3 / 4; }

.gallery-caption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

@media (min-width: 720px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Testimonials ---------- */

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  border-top: 3px solid var(--sage-deep);
}

.testimonial .quote-mark {
  font-family: var(--font-head);
  font-size: 3.2rem;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial p.quote {
  font-size: 1.08rem;
  color: var(--ink);
  font-style: italic;
}

.testimonial .attribution {
  font-weight: 700;
  font-style: normal;
  color: var(--terracotta-deep);
  margin-top: 16px;
  font-size: 0.95rem;
}

.testimonial-slot {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  min-height: 160px;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.faq-note {
  margin-top: 32px;
  background: var(--cream-deep);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Contact form ---------- */

.form-note {
  background: var(--white);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}

.form-status {
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-status.show { display: block; }

.form-status.info {
  background: var(--cream-deep);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.contact-alt {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 44px 0 28px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sage-deep);
}

.site-footer .wordmark { color: var(--cream); }
.site-footer .wordmark span { color: var(--gold); }

.site-footer .brand { color: var(--cream); }
.site-footer .brand-text .role { color: rgba(251, 241, 236, 0.55); }

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--cream-deep);
  font-size: 0.95rem;
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(251,241,236,0.6);
}

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Larger screens ---------- */

@media (min-width: 720px) {
  body { font-size: 18px; }

  .nav-toggle { display: none; }

  .main-nav {
    position: static;
    transform: none;
    background: none;
    padding: 0;
    display: block;
    inset: auto;
    overflow: visible;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .main-nav a:not(.btn) {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 6px 0;
    border-bottom: none;
    position: relative;
    white-space: nowrap;
  }

  .main-nav .btn {
    font-size: 0.96rem;
  }

  .main-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--terracotta);
    transition: right 0.2s ease;
  }

  .main-nav a:not(.btn):hover::after,
  .main-nav a.is-active::after {
    right: 0;
  }

  .main-nav .nav-cta { margin-top: 0; }

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  .footer-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
}

/* ---------- Full-bleed photo band ---------- */

.bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.bleed img {
  width: 100%;
  height: 46vh;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* short decorative floral-banner divider */
.bleed-banner img {
  height: 14vh;
  min-height: 80px;
  max-height: 170px;
  object-position: center;
}

@media (max-width: 719px) {
  .bleed-banner img { min-height: 64px; max-height: 110px; }
}

/* ---------- Instagram-style grid ---------- */

.ig-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.ig-handle {
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 700;
}

.ig-handle:hover { color: var(--terracotta-deep); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ig-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  background: var(--cream-deep);
  box-shadow: var(--shadow-card);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ig-tile:hover img { transform: scale(1.06); }

.ig-tile .ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 35, 32, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.ig-tile:hover .ig-overlay {
  opacity: 1;
  background: rgba(43, 35, 32, 0.42);
}

.ig-tile.ig-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
}

@media (min-width: 600px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Consultation / pricing banners ---------- */

.offer-banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.offer-banner .offer-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--blush);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
}

.offer-banner h3 {
  color: var(--white);
  margin-bottom: 0.3em;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.offer-banner p {
  color: var(--cream-deep);
  margin-bottom: 0;
  max-width: 480px;
}

.offer-banner .btn-primary {
  align-self: flex-start;
}

@media (min-width: 720px) {
  .offer-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .offer-banner .offer-copy { flex: 1; }
}

.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border: 1.5px dashed var(--sage);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: var(--white);
}

.pricing-note p { margin-bottom: 0; color: var(--ink-soft); }

/* ---------- Advice / Journal hub ---------- */

.advice-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.advice-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.advice-card .advice-media {
  aspect-ratio: 16 / 10;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advice-card .advice-media .flourish {
  margin: 0;
  width: 56px;
  height: 56px;
  opacity: 0.7;
}

.advice-card .advice-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.advice-card .advice-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sage-deep);
  margin-bottom: 10px;
}

.advice-card h3 { margin-bottom: 0.4em; }

.advice-card p.excerpt {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.advice-card .advice-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.advice-hero-lede {
  max-width: 620px;
}

@media (min-width: 720px) {
  .advice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .advice-grid.grid-3-wide { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Notion dashboard mockups ---------- */

.notion-mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.notion-mock .notion-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--cream-deep);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.notion-mock .notion-titlebar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.notion-mock .notion-body { padding: 18px; }

.notion-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.notion-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.notion-table th {
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}

.notion-table td {
  padding: 10px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.notion-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.notion-tag.tag-pink { background: var(--blush); color: var(--wine); }
.notion-tag.tag-green { background: var(--sage); color: var(--sage-deep); }
.notion-tag.tag-orange { background: var(--blush); color: var(--wine); }

.notion-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.notion-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

.notion-checklist .box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--ink-soft);
  flex-shrink: 0;
  margin-top: 2px;
}

.notion-checklist .box.checked {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  position: relative;
}

.notion-checklist .box.checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.notion-checklist li.sub { padding-left: 26px; font-size: 0.85rem; color: var(--ink-soft); }

.notion-callout {
  background: var(--cream-deep);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.dashboard-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ---------- Reveal-on-scroll (motion-safe) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
