/* ============================================================
   Nancy Chong RCC — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   Variables
   ============================================================ */
:root {
  --primary:       #2B5C6B;
  --primary-dark:  #1E4252;
  --primary-light: #E6EFF2;
  --accent:        #B8975A;
  --accent-dark:   #9A7A40;
  --accent-light:  #F5ECD8;
  --sage:          #7A9E7E;
  --sage-light:    #EAF0EB;
  --bg:            #FAFAF7;
  --bg-alt:        #F2EFE9;
  --text:          #1C1C2A;
  --text-mid:      #4A4A5A;
  --text-light:    #7A7A8A;
  --border:        #E0DAD1;
  --white:         #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(43,92,107,0.08);
  --shadow-md: 0 6px 24px rgba(43,92,107,0.12);
  --shadow-lg: 0 12px 48px rgba(43,92,107,0.16);

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1120px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); line-height: 1.78; }

.eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 88px 0; }
.section-alt    { background: var(--bg-alt); }
.section-dark   { background: var(--primary-dark); }
.section-primary{ background: var(--primary); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { text-decoration: none; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .02em;
}
.nav-logo-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 13px;
  border-radius: var(--radius-s);
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-links .nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px;
  margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-s);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,92,107,.28);
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 72px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.page-hero .eyebrow { color: rgba(255,255,255,.55); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card-icon-primary { background: var(--primary-light); color: var(--primary); }
.card-icon-accent  { background: var(--accent-light);  color: var(--accent); }
.card-icon-sage    { background: var(--sage-light);    color: var(--sage); }
.card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.card p  { font-size: .93rem; }

/* Tags */
.tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.tag-primary { background: var(--primary-light); color: var(--primary); }
.tag-accent  { background: var(--accent-light);  color: #8a6835; }
.tag-sage    { background: var(--sage-light);    color: #4a7a4e; }

/* ============================================================
   Photo placeholder
   ============================================================ */
.photo-placeholder {
  background: var(--primary-light);
  border-radius: var(--radius-m);
  border: 2px dashed rgba(43,92,107,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .88rem;
  text-align: center;
  gap: 10px;
  opacity: .75;
}
.photo-placeholder svg { opacity: .45; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--primary-dark);
  padding: 64px 0 32px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-tagline {
  color: rgba(255,255,255,.35);
  font-size: .88rem;
  font-style: italic;
  max-width: 280px;
  line-height: 1.75;
  margin: 0;
}
.footer-info {
  text-align: right;
  padding-bottom: 36px;
}
.footer-brand-name {
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 4px;
}
.footer-email-link {
  display: block;
  font-family: var(--font-b);
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-email-link:visited { color: rgba(255,255,255,.55); }
.footer-email-link:hover,
.footer-email-link:active  { color: var(--white); }
.footer-location-note {
  font-family: var(--font-b);
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}
.footer-brand-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer p  { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer h4 {
  color: var(--white);
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul li { margin-bottom: 9px; }
.footer ul li a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer ul li a:hover { color: var(--white); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-row a { color: rgba(255,255,255,.6); }
.footer-contact-row a:hover { color: var(--white); }
.footer hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 22px; }
.footer-bottom {
  text-align: right;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   HOME — Hero
   ============================================================ */
.home-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1B3D4A 0%, #2B5C6B 55%, #3D7A87 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(184,151,90,.08) 0%, transparent 60%);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-hero-text .eyebrow { color: rgba(255,255,255,.55); }
.home-hero-text h1 { color: var(--white); margin-bottom: 18px; font-weight: 400; }
.home-hero-text h1 em { font-style: italic; color: rgba(255,255,255,.85); }
.home-hero-text p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 34px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo .photo-placeholder { width: 100%; height: 500px; }
.hero-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-m);
}

/* Home — intro strip */
.intro-strip {
  background: var(--accent);
  padding: 22px 0;
  text-align: center;
}
.intro-strip p {
  color: var(--white);
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Home — work-with grid */
.work-with-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ww-card {
  text-align: center;
  padding: 40px 24px 32px;
  background: var(--white);
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.ww-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.ww-icon { font-size: 2.4rem; margin-bottom: 14px; }
.ww-card h3 { font-size: 1.35rem; color: var(--primary); margin-bottom: 8px; }
.ww-card p  { font-size: .9rem; }

/* Home — approach pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-m);
  transition: all .3s;
}
.pillar:hover { background: rgba(255,255,255,.12); }
.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.pillar h4 { font-family: var(--font-b); font-size: .88rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.pillar p  { font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* Home — quote */
.quote-section {
  padding: 88px 0;
  background: var(--accent-light);
}
.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-h);
  font-size: 6rem;
  color: var(--accent);
  line-height: .7;
  margin-bottom: 20px;
  opacity: .45;
}
.quote-text {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}

/* CTA */
.cta-section {
  background: var(--primary);
  padding: 88px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 500px; margin: 0 auto 34px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo .photo-placeholder { height: 480px; width: 100%; }
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-md);
  display: block;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p  { margin-bottom: 14px; }

/* Credentials */
.cred-list { display: grid; gap: 16px; }
.cred-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.cred-year {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  min-width: 80px;
  padding-top: 2px;
}
.cred-info h4 {
  font-family: var(--font-b);
  font-size: .93rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}
.cred-info .inst { font-size: .875rem; color: var(--text-mid); margin-bottom: 2px; }
.cred-info .detail { font-size: .82rem; color: var(--text-light); font-style: italic; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  font-size: .9rem;
  color: var(--text-mid);
  transition: border-color .2s;
}
.area-item:hover { border-color: var(--primary); color: var(--primary); }
.area-item::before { content: '○'; color: var(--accent); font-size: .6rem; flex-shrink: 0; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.approach-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
}
.approach-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.approach-item h4 {
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}
.approach-item p { font-size: .85rem; line-height: 1.55; }

.fees-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.fees-box h3 { margin-bottom: 14px; }
.fees-box p  { margin-bottom: 12px; }
.fees-note {
  background: var(--primary-light);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--primary);
  margin-top: 20px;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-intro {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}
.resources-intro p { font-size: 1.05rem; }

.resource-categories { display: grid; gap: 52px; }

.resource-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.resource-cat-header .cat-icon { font-size: 1.4rem; }

.resources-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .2s;
}
.resource-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.resource-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.resource-card h4 { font-family: var(--font-b); font-size: .93rem; font-weight: 600; color: var(--primary); }
.resource-card p  { font-size: .855rem; line-height: 1.6; }
.resource-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
}
.resource-card-link:hover { color: var(--accent-dark); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-s);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-family: var(--font-b);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-info-text p,
.contact-info-text a { font-size: .98rem; color: var(--text); }
.contact-info-text a:hover { color: var(--primary); }
.contact-note {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  margin-top: 32px;
}
.contact-note p { font-size: .88rem; }

.expect-list { display: grid; gap: 14px; margin-top: 8px; }
.expect-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text-mid);
}
.expect-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.email-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 32px;
  border-radius: var(--radius-s);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
  transition: all .2s;
}
.email-button:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,92,107,.28);
}
.email-visible {
  font-size: .85rem;
  color: var(--text-light);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .home-hero-grid       { grid-template-columns: 1fr; }
  .hero-photo           { display: none; }
  .home-hero-text p     { max-width: none; }
  .home-hero-text       { text-align: center; }
  .hero-btns            { justify-content: center; }

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

  .about-profile        { grid-template-columns: 1fr; }
  .about-photo .photo-placeholder { height: 340px; }

  .services-who-grid    { grid-template-columns: 1fr; }
  .areas-grid           { grid-template-columns: repeat(2,1fr); }
  .approach-grid        { grid-template-columns: 1fr; }

  .resources-cards      { grid-template-columns: 1fr; }

  .contact-layout       { grid-template-columns: 1fr; }


  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-toggle     { display: flex; }
}

@media (max-width: 600px) {
  .section        { padding: 64px 0; }
  .areas-grid     { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .fees-box       { padding: 28px 20px; }
  .hero-btns      { flex-direction: column; align-items: center; }
}

/* ============================================================
   Prose — rich text content for resource articles
   ============================================================ */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.prose h2 { font-family: var(--font-serif); font-size: 1.8rem; margin: 2rem 0 0.75rem; color: var(--text-dark); }
.prose h3 { font-family: var(--font-serif); font-size: 1.4rem; margin: 1.75rem 0 0.6rem; color: var(--text-dark); }
.prose h4 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: var(--text-dark); }
.prose p  { margin: 0 0 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a  { color: var(--primary); text-decoration: underline; }
.prose a:hover { color: var(--primary-dark); }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 3px solid var(--primary);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-style: italic;
  color: var(--text-light);
}
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ============================================================
   Link Visibility — ensure all link states remain visible
   ============================================================ */
a:active { color: var(--primary-dark); }
.prose a:visited { color: var(--primary); }
.prose a:active  { color: var(--primary-dark); }
/* Prevent bold-wrapped links from appearing black */
a strong, strong a { color: inherit; }

/* ============================================================
   RESOURCE INDEX PAGE (resources landing)
   ============================================================ */
.resource-index-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.resource-index-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all .25s;
}
.resource-index-card:hover,
.resource-index-card:visited,
.resource-index-card:active { color: inherit; }
.resource-index-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.resource-index-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-s);
}
.resource-index-body { flex: 1; }
.resource-index-body h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.resource-index-card:hover .resource-index-body h3 { color: var(--primary); }
.resource-index-body p { font-size: .9rem; margin: 0; color: var(--text-mid); }
.resource-index-card:hover .resource-index-body p { color: var(--text-mid); }
.resource-index-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform .2s;
}
.resource-index-card:hover .resource-index-arrow { transform: translateX(4px); }

/* ============================================================
   ANXIETY PAGE — Age Range Grid
   ============================================================ */
.age-range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.age-range-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.age-range-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.age-range-card h4 {
  font-family: var(--font-b);
  font-size: .93rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.age-range-card ul { list-style: none; padding: 0; margin: 0; }
.age-range-card ul li {
  font-size: .875rem;
  color: var(--text-mid);
  padding: 5px 0 5px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.5;
}
.age-range-card ul li:last-child { border-bottom: none; }
.age-range-card ul li::before { content: '•'; color: var(--accent); position: absolute; left: 0; }

/* ============================================================
   ANXIETY PAGE — Help Tiers (When to Seek Help)
   ============================================================ */
.help-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.help-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.help-tier-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.help-tier-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.help-tier.green .help-tier-dot { background: #5a9a6a; }
.help-tier.amber .help-tier-dot { background: #d4862a; }
.help-tier.red   .help-tier-dot { background: #c0392b; }
.help-tier-label {
  font-family: var(--font-b);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.help-tier.green .help-tier-label { color: #5a9a6a; }
.help-tier.amber .help-tier-label { color: #d4862a; }
.help-tier.red   .help-tier-label { color: #c0392b; }
.help-tier h4 {
  font-family: var(--font-b);
  font-size: .96rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.help-tier ul { list-style: none; padding: 0; margin: 0; }
.help-tier ul li {
  font-size: .855rem;
  color: var(--text-mid);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.help-tier ul li:last-child { border-bottom: none; }
.help-tier ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: .75rem;
  color: var(--text-light);
  top: 7px;
}

/* ============================================================
   ANXIETY PAGE — General Resource Callout Box
   ============================================================ */
.resource-callout {
  background: var(--primary-light);
  border: 1px solid rgba(43,92,107,.18);
  border-radius: var(--radius-m);
  padding: 32px 36px;
}
.resource-callout h3 { color: var(--primary-dark); margin-bottom: 8px; font-size: 1.4rem; }
.resource-callout > p { color: var(--text-mid); font-size: .93rem; margin-bottom: 20px; }
.callout-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.callout-link-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(43,92,107,.15);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  text-decoration: none;
  transition: all .2s;
}
.callout-link-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.callout-link-item:visited .link-name,
.callout-link-item .link-name { color: var(--primary); }
.callout-link-item:active .link-name  { color: var(--primary-dark); }
.callout-link-item .link-name {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 3px;
}
.callout-link-item .link-desc { font-size: .8rem; color: var(--text-light); line-height: 1.4; }

/* ============================================================
   ANXIETY PAGE — Topic Sections
   ============================================================ */
.topic-sections { display: grid; gap: 36px; }

.topic-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.topic-section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}
.topic-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-s);
  margin-top: 4px;
}
.topic-section-header h3 { color: var(--primary); font-size: 1.3rem; line-height: 1.3; }
.topic-intro { font-size: .96rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.75; }
.topic-intro strong { color: var(--text); }

.topic-question-list { list-style: none; padding: 0; margin: 0 0 22px; }
.topic-question-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.topic-question-list li:last-child { border-bottom: none; }
.topic-question-list li .q {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: .93rem;
}

.topic-age-notes {
  background: var(--bg-alt);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  margin-bottom: 22px;
}
.topic-age-notes h4 {
  font-family: var(--font-b);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.topic-age-note-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: .875rem;
  align-items: flex-start;
}
.topic-age-note-item:last-child { margin-bottom: 0; }
.topic-age-pill {
  flex-shrink: 0;
  min-width: 72px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 2px;
}
.topic-age-note-item p { margin: 0; color: var(--text-mid); line-height: 1.6; }

.topic-resources { border-top: 1px solid var(--border); padding-top: 18px; }
.topic-resources h4 {
  font-family: var(--font-b);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.topic-resource-links { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  font-weight: normal;
}
/* LVHA order: visited → hover → active */
.topic-resource-link:visited { color: var(--primary); }
.topic-resource-link:hover   { background: var(--primary); color: var(--white); }
.topic-resource-link:active  { background: var(--primary-dark); color: var(--white); }

/* Resource callout and topic sections — responsive */
@media (max-width: 960px) {
  .help-tiers      { grid-template-columns: 1fr; }
  .age-range-grid  { grid-template-columns: 1fr; }
  .callout-links   { grid-template-columns: 1fr; }
  .topic-section   { padding: 24px 20px; }
  .resource-callout { padding: 24px 20px; }
  .resource-index-card { flex-wrap: wrap; gap: 16px; }
}
