/* =========================================================
   Felicita Ovadje - Shared Stylesheet
   ========================================================= */

:root {
  --cream: #FBF6F0;
  --cream-warm: #F4ECDF;
  --paper: #FEFAF4;
  --rose-pastel: #F4D7CE;
  --rose: #E8B4A8;
  --rose-deep: #B26F5E;
  --sage-pastel: #D8E0CC;
  --sage: #A8B894;
  --sage-deep: #5C6B4E;
  --ink: #2A2520;
  --ink-soft: #4A3F37;
  --ink-muted: #786B5F;
  --line: #E5DACE;
  --shadow-sm: 0 2px 8px rgba(42, 37, 32, 0.04);
  --shadow-md: 0 12px 40px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(42, 37, 32, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== Typography ===== */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.display-italic {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
}
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 70px 0; } }

/* ===== Nav ===== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 0;
  background: rgba(251, 246, 240, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
nav.site-nav.scrolled { border-bottom-color: var(--line); padding: 16px 32px; }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { font-style: italic; color: var(--rose-deep); font-weight: 300; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose-deep);
  transition: width 0.3s ease;
}
.nav-links a:not(.btn-nav):hover { color: var(--ink); }
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }

@media (max-width: 1024px) {
  nav.site-nav { padding: 16px 0; }
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 16px 0; }
}

/* Mobile menu toggle (simple show on small screens) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 32px;
    border-top: 1px solid var(--line);
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.mobile-open a { display: block; font-size: 1.05rem; }
  .nav-links.mobile-open .nav-soon { display: flex !important; }
  .nav-links.mobile-open .btn-nav { display: inline-flex; align-items: center; margin-top: 8px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-nav {
  padding: 10px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--rose-deep); }
.btn-nav::after { display: none !important; }
.btn .arrow { transition: transform 0.3s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Home Hero (full screen) ===== */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose-pastel) 0%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-shape-2 {
  position: absolute;
  bottom: 10%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sage-pastel) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-text .eyebrow { margin-bottom: 28px; display: inline-block; }
.hero-text h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  margin-bottom: 32px;
}
.hero-text h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}
.hero-text .tagline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}
@media (max-width: 968px) { .hero-image-wrap { margin: 0 auto; } }
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -24px; left: -24px;
  right: 24px; bottom: 24px;
  background: var(--rose-pastel);
  border-radius: 4px;
  z-index: 0;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--sage);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.85;
}
.hero-image-wrap img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.hero-credentials {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.credential-item .number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.credential-item .label {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ===== Inner Page Hero (smaller) ===== */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 30%; right: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--rose-pastel) 0%, transparent 70%);
  opacity: 0.45;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--sage-pastel) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 24px 0 24px;
}
.page-hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}
.page-hero .lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
}

/* ===== About content ===== */
.about-section { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  position: sticky;
  top: 120px;
}
@media (max-width: 968px) { .about-image-wrap { position: static; } }
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 24px; left: -24px;
  right: 32px; bottom: -24px;
  background: var(--sage-pastel);
  border-radius: 4px;
  z-index: 0;
}
.about-image-wrap img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 28px;
}
.about-text p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-text p:last-of-type { margin-bottom: 36px; }
.signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rose-deep);
  font-weight: 300;
}

/* Pull quote */
.pull-quote {
  margin: 48px 0;
  padding: 32px 40px;
  border-left: 3px solid var(--rose-deep);
  background: var(--cream);
  border-radius: 0 8px 8px 0;
}
.pull-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 !important;
}

/* ===== Practice Areas ===== */
.practice { background: var(--cream); position: relative; }
.practice-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.practice-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 24px 0 20px;
}
.practice-header p { color: var(--ink-soft); font-size: 1.05rem; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .practice-grid { grid-template-columns: 1fr; } }
.practice-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--sage) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-pastel);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--rose-deep);
  margin-bottom: 20px;
  display: block;
}
.practice-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.practice-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}
.practice-card ul {
  list-style: none;
  margin-top: 16px;
}
.practice-card ul li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.practice-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--rose-deep);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* ===== Process ===== */
.process { background: var(--cream-warm); }
/* Process three phases (single horizontal row) */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .phase-grid { grid-template-columns: 1fr; gap: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
}
.phase-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.phase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin-bottom: 22px;
}
.phase-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.phase-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.phase-card > p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 24px;
}
.phase-note {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.phase-note span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 6px;
}

/* ===== Booking ===== */
.booking { background: var(--paper); }
.booking-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.booking h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 24px 0 24px;
}
.booking p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.calendar-placeholder {
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 80px 32px;
  margin-bottom: 36px;
}
.calendar-placeholder .pl-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--rose-pastel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.calendar-placeholder p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.calendar-placeholder .pl-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* What to expect for booking */
.booking-expect {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
@media (max-width: 768px) { .booking-expect { grid-template-columns: 1fr; gap: 24px; } }
.expect-card {
  padding: 28px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.expect-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.expect-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== Payment ===== */
.payment {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .payment-grid { grid-template-columns: 1fr; gap: 40px; } }
.payment-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 20px 0 24px;
}
.payment-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.payment-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.payment-card .card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  margin-bottom: 12px;
}
.payment-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.payment-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ===== Contact ===== */
.contact { background: var(--ink); color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 20px;
  color: var(--cream);
}
.contact-text h2 .accent { font-style: italic; color: var(--rose); font-weight: 300; }
.contact-text p {
  color: rgba(251, 246, 240, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact .eyebrow { color: var(--rose); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.info-item .value {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
a.value:hover { color: var(--rose); }

/* ===== CTA Section (used on inner pages) ===== */
.cta-section {
  background: var(--cream-warm);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 20px;
}
.cta-section h2 .accent { font-style: italic; font-weight: 300; color: var(--rose-deep); }
.cta-section p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 240, 0.5);
  padding: 32px 0;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(251, 246, 240, 0.1);
  padding-top: 32px;
}
.footer-name {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: heroFadeIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }
.hero-text > *:nth-child(5) { animation-delay: 0.7s; }
.hero-image-wrap { animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards; }
.page-hero-inner > * { animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.page-hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero-inner > *:nth-child(2) { animation-delay: 0.22s; }
.page-hero-inner > *:nth-child(3) { animation-delay: 0.34s; }

/* =========================================================
   Contact Page - Intake Form
   ========================================================= */
.contact-page-section {
  background: var(--paper);
  padding: 80px 0 120px;
}
@media (max-width: 768px) { .contact-page-section { padding: 60px 0 80px; } }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 968px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 56px; }
}

.contact-side h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin: 24px 0 24px;
  color: var(--ink);
}
.contact-side > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.info-row { display: flex; flex-direction: column; gap: 6px; }
.info-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}
.info-value {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
a.info-value:hover { color: var(--rose-deep); }

/* Form card */
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) { .form-card { padding: 32px 24px; } }

.form-card .card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.form-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.form-intro {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* Form layout */
#intakeForm {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form-row-split { grid-template-columns: 1fr; gap: 22px; } }

.form-row label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.form-row label span { color: var(--rose-deep); margin-left: 2px; }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.form-row select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%232A2520' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(178, 111, 94, 0.12);
  background: var(--cream);
}
.form-row textarea::placeholder { color: var(--ink-muted); opacity: 0.7; }

/* Checkbox row */
.form-checkbox-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}
.form-checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--rose-deep);
  cursor: pointer;
}
.form-checkbox-row label {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.form-submit {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
  padding: 16px 28px;
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form states */
.form-success {
  background: var(--sage-pastel);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
}
.form-success .success-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
}
.form-success h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.form-error {
  background: var(--rose-pastel);
  border-radius: 6px;
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--ink);
}
.form-error a { color: var(--rose-deep); text-decoration: underline; font-weight: 500; }

/* =========================================================
   REVISION ADDITIONS
   ========================================================= */

/* ----- Deeper accent token (nav CTA + flow accents) ----- */
:root { --rose-deepest: #9A4F3E; }

/* ----- Nav CTA contrast fix -----
   Was dark ink on a cream nav, so it blended with the plain
   text links. Now a filled accent pill that reads clearly as
   the primary action, with AA-compliant text contrast. */
.btn-nav {
  background: var(--rose-deepest);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(154, 79, 62, 0.25);
}
.btn-nav:hover {
  background: var(--ink);
  box-shadow: 0 6px 18px rgba(42, 37, 32, 0.22);
  transform: translateY(-1px);
}

/* ----- Nav "Soon" badge (Blog) ----- */
.nav-soon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-soon .soon-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--sage-pastel);
  padding: 2px 7px;
  border-radius: 100px;
  line-height: 1.4;
}

/* =========================================================
   FAQ - Accordion
   ========================================================= */
.faq { background: var(--paper); }
.faq-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.faq-intro h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 24px 0 18px; }
.faq-intro p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open {
  border-color: var(--rose-pastel);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
@media (max-width: 540px) { .faq-q { padding: 22px 20px; font-size: 1.05rem; } }
.faq-q:hover { color: var(--rose-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  position: relative;
  border: 1px solid var(--rose-deep);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--rose-deep);
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon { background: var(--rose-deep); transform: rotate(90deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--cream); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 28px 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 540px) { .faq-a-inner { padding: 0 20px 22px; } }
.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner a { color: var(--rose-deep); text-decoration: underline; }

.faq-disclaimer {
  max-width: 860px;
  margin: 44px auto 0;
  padding: 22px 26px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* =========================================================
   PROCESS - File Journey Flowchart
   ========================================================= */
.flow { background: var(--paper); }
.flow-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.flow-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 24px 0 18px; }
.flow-header p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }

.flowchart {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
/* vertical spine */
.flowchart::before {
  content: '';
  position: absolute;
  left: 31px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--rose) 0%, var(--sage) 100%);
  z-index: 0;
}
@media (max-width: 600px) { .flowchart::before { left: 23px; } }

.flow-node {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding-bottom: 36px;
  z-index: 1;
}
.flow-node:last-child { padding-bottom: 0; }
@media (max-width: 600px) {
  .flow-node { grid-template-columns: 48px 1fr; gap: 18px; }
}

.flow-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--rose-deep);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--paper);
}
@media (max-width: 600px) { .flow-dot { width: 48px; height: 48px; font-size: 1.3rem; } }

.flow-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 32px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.flow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-pastel);
}
@media (max-width: 540px) { .flow-card { padding: 24px 22px; } }

.flow-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.flow-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.flow-timeline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--sage-pastel);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.flow-card > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.flow-card ul { list-style: none; }
.flow-card ul li {
  padding: 5px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.flow-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--rose-deep);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* =========================================================
   BLOG - Coming Soon
   ========================================================= */
.blog-soon { background: var(--paper); }
.blog-soon-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.blog-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 72px 56px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) { .blog-card { padding: 52px 26px; } }
.blog-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--rose-pastel) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -70px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--sage-pastel) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.blog-card-content { position: relative; z-index: 1; }
.blog-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose-deepest);
  background: var(--rose-pastel);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.blog-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 24px;
  line-height: 1.08;
}
.blog-card h2 .accent { font-style: italic; font-weight: 300; color: var(--rose-deep); }
.blog-card > .blog-card-content > p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 18px;
}
.blog-card .blog-sub {
  font-size: 0.98rem;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.blog-notify {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-notify input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-notify input[type="email"]:focus {
  outline: none;
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(178, 111, 94, 0.12);
}
.blog-notify .btn { white-space: nowrap; }
.blog-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 18px;
  font-style: italic;
}
.blog-topics {
  margin-top: 56px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-topic {
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--cream-warm);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 100px;
}

/* =========================================================
   PRACTICE - Detailed Area Sections
   ========================================================= */
.practice-detail-section { background: var(--paper); }
.practice-detail-block { max-width: 1000px; margin: 0 auto; }
.practice-detail-block + .practice-detail-block {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  .practice-detail-block + .practice-detail-block { margin-top: 56px; padding-top: 56px; }
}
.pd-head { margin-bottom: 36px; }
.pd-head .pd-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 10px;
}
.pd-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.pd-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 700px;
}
.sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .sub-grid { grid-template-columns: 1fr; } }
.sub-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sub-card:hover {
  border-color: var(--rose-pastel);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.sub-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.sub-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.sub-card ul { list-style: none; margin-top: 12px; }
.sub-card ul li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.sub-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--rose-deep);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.sub-card.wide { grid-column: 1 / -1; }


/* =========================================================
   REVISION 2 - nav robustness, layout fixes
   ========================================================= */

/* ----- Nav button never wraps or clips ----- */
.btn-nav { white-space: nowrap; flex-shrink: 0; }
.nav-links a { white-space: nowrap; }
.nav-links a.btn-nav { padding: 11px 24px; }

@media (min-width: 1025px) {
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 0.9rem; }
}

/* ----- Home hero: remove the forced full-height void ----- */
.hero { min-height: auto; padding-top: 160px; padding-bottom: 100px; }
@media (max-width: 968px) { .hero { padding-top: 130px; padding-bottom: 70px; } }

/* ----- Practice summary cards as jump-links ----- */
a.practice-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.practice-card .card-jump {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose-deep);
}
.practice-card .card-jump .arrow { transition: transform 0.3s ease; }
.practice-card:hover .card-jump .arrow { transform: translateY(3px); }
.practice-detail-block { scroll-margin-top: 110px; }

/* ----- About: fill the column beside the long text ----- */
.about-media { position: sticky; top: 120px; }
@media (max-width: 968px) { .about-media { position: static; } }
.about-media .about-image-wrap { position: relative; top: auto; }
.about-glance {
  margin-top: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 30px;
}
.about-glance .glance-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.about-glance dl { display: flex; flex-direction: column; gap: 14px; margin: 0; }
.about-glance .glance-row { display: flex; flex-direction: column; gap: 3px; }
.about-glance dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.about-glance dd {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ----- FAQ category labels ----- */
.faq-group-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 36px 0 6px;
  padding-left: 4px;
}
.faq-group-label:first-child { margin-top: 0; }

/* ----- Process: bridge line between the two models ----- */
.flow-bridge {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* ----- Booking section header (merged contact page) ----- */
.booking-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.booking-head .eyebrow { display: block; margin-bottom: 14px; }
.booking-head h2 { margin-bottom: 18px; }
.booking-sub { color: var(--ink-muted); font-size: 1.02rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }


/* ----- What to Expect section (contact page) ----- */
.expect-section { background: var(--paper); }
.expect-section .booking-expect { margin-top: 0; }

/* ----- Client Login (utility link in nav) ----- */
.nav-links a.nav-login {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.nav-links a.nav-login::after { display: none !important; }
.nav-links a.nav-login:hover { background: var(--cream-warm); border-color: var(--rose); color: var(--ink); }
@media (max-width: 1024px) {
  .nav-links.mobile-open a.nav-login { display: inline-flex; align-items: center; margin-top: 8px; }
}

/* ----- "Already a client?" band (contact page) ----- */
.client-band { background: var(--sage-pastel); padding: 36px 0; }
.client-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.client-band-text h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.client-band-text p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.client-band-btn { flex-shrink: 0; background: var(--paper); }
.client-band-btn:hover { background: var(--cream); }
@media (max-width: 600px) {
  .client-band-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ----- Footer legal link ----- */
.footer-link { color: rgba(251, 246, 240, 0.7); text-decoration: none; transition: color 0.2s ease; }
.footer-link:hover { color: var(--cream); text-decoration: underline; }

/* ----- Legal / disclaimer page ----- */
.legal-content { max-width: 760px; }
.legal-updated { color: var(--ink-muted); font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 28px; }
.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--ink);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { color: var(--rose-deep); }

/* ----- FAQ answer bullet lists ----- */
.faq-a-inner ul { margin: 2px 0 14px; padding-left: 20px; }
.faq-a-inner li { margin-bottom: 8px; color: var(--ink-soft); line-height: 1.7; }
.faq-a-inner li:last-child { margin-bottom: 0; }
.faq-a-inner li strong { color: var(--ink); }
