/* ==========================================================================
   From Burn to Bloom — Design System
   Palette: warm botanical (cream / terracotta / sage / forest)
   Type: Fraunces (display) + Karla (body)
   ========================================================================== */

:root {
  --cream: #FBF7F1;
  --sand: #F3EBDF;
  --sand-deep: #EADFCE;
  --terracotta: #C05E3C;
  --terracotta-dark: #9E4A2E;
  --blush: #E8B4A0;
  --blush-soft: #F4D9CC;
  --sage: #8A9B7E;
  --sage-soft: #DCE3D4;
  --forest: #3F4F3A;
  --forest-deep: #2E3B2B;
  --ink: #2C2925;
  --soft: #6B655C;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(44, 41, 37, 0.06);
  --shadow: 0 10px 30px rgba(44, 41, 37, 0.09);
  --shadow-lg: 0 24px 60px rgba(44, 41, 37, 0.14);

  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Anchor jumps land below the sticky header */
[id] { scroll-margin-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p + p { margin-top: 1em; }

::selection { background: var(--blush-soft); }

/* ---------- Utilities ---------- */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest-deep); }
.section--forest h2, .section--forest h3, .section--forest p { color: var(--cream); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.section--forest .eyebrow { color: var(--blush); }
.section--forest .eyebrow::before { background: var(--blush); }

.lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--soft); max-width: 46ch; }
.section--forest .lede { color: rgba(251, 247, 241, 0.82); }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(192, 94, 60, 0.32);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(192, 94, 60, 0.4);
}
.btn--ghost {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn--ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.btn--light {
  background: var(--cream);
  color: var(--forest-deep);
}
.btn--light:hover { background: var(--white); color: var(--forest-deep); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
}
.brand:hover { color: var(--forest); }
.brand .brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand em { font-style: italic; color: inherit; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--terracotta); }
.nav-links .btn { padding: 0.7rem 1.4rem; }
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  margin: 5.5px 0;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

@media (max-width: 1080px) {
  .nav-toggle { display: block; }

  /* Dropdown panel below the header — solid background, all links stacked */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--sand-deep);
    border-bottom: 1px solid var(--sand-deep);
    box-shadow: 0 18px 30px rgba(44, 41, 37, 0.14);
    padding: 0.4rem 0 1.3rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  body.nav-open .nav-links { display: flex; animation: nav-drop 0.28s var(--ease); }

  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 1.08rem;
  }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--terracotta); }
  .nav-links li + li a { border-top: 1px solid rgba(234, 223, 206, 0.6); }
  .nav-links .btn {
    display: inline-flex;
    margin: 1rem auto 0.3rem;
    padding: 0.8rem 1.8rem;
    border-top: none;
  }
  .nav-links li:has(.btn) a { border-top: none; }

  /* Solid header while the menu is open (no translucency bleed-through) */
  body.nav-open .site-header { background: var(--cream); }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero .lede { margin: 1.5rem 0 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-note { font-size: 0.9rem; color: var(--soft); margin-top: 1.2rem; }

.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-art svg { width: 100%; height: 100%; }

.hero-bloom-bg {
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin-inline: auto; }
}

/* ---------- Trust badges ---------- */
.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}
.badge svg { width: 34px; height: 34px; flex-shrink: 0; }
@media (max-width: 900px) { .badges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .badges { grid-template-columns: 1fr; } }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
.split-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.split-art svg { width: 100%; height: 100%; }
.split-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split h2 { margin-bottom: 1.2rem; }
.split .btn { margin-top: 1.8rem; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > *:first-child { order: 0; }
  .split-art { max-width: 460px; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .card-grid, .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid, .card-grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
}
.card .card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--soft); font-size: 0.98rem; flex: 1; }
.card .card-link { font-weight: 700; font-size: 0.92rem; letter-spacing: 0.03em; }
.card .card-link .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* Card accent variants */
.card--terracotta .card-icon { background: var(--blush-soft); }
.card--sand .card-icon { background: var(--sand-deep); }

/* ---------- Approach list ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .approach-grid { grid-template-columns: 1fr; } }

.approach {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(251, 247, 241, 0.14);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.approach:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.approach h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
}
.approach h3 svg { width: 26px; height: 26px; flex-shrink: 0; }
.approach p { font-size: 0.98rem; color: rgba(251, 247, 241, 0.78); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--blush);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.6rem; }
.step p { color: var(--soft); font-size: 0.98rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.6rem 1.4rem; color: var(--soft); }
.faq-body ul { margin: 0.6rem 0 0 1.2rem; }
.faq-body li { margin-bottom: 0.3rem; }

/* ---------- Quote / pull ---------- */
.pullquote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--forest);
}
.pullquote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--terracotta-dark) 60%, var(--forest-deep) 130%);
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--cream);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { max-width: 54ch; margin: 0 auto 2rem; color: rgba(251, 247, 241, 0.9); }
.cta-band .cta-bloom {
  position: absolute;
  width: 320px;
  opacity: 0.16;
  pointer-events: none;
}
.cta-band .cta-bloom--tl { top: -110px; left: -90px; }
.cta-band .cta-bloom--br { bottom: -120px; right: -80px; transform: rotate(160deg); }

/* ---------- Blog cards ---------- */
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .post-art { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card .post-art svg { width: 100%; height: 100%; }
.post-card .post-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.post-card .post-meta { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
.post-card h3 { font-size: 1.3rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--terracotta); }
.post-card p { color: var(--soft); font-size: 0.96rem; flex: 1; }

/* ---------- Article ---------- */
.article-header { padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; text-align: center; }
.article-header .post-meta { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; display: block; }
.article-header h1 { max-width: 20ch; margin-inline: auto; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.article-body { max-width: 720px; margin-inline: auto; padding-bottom: clamp(3rem, 6vw, 5rem); }
.article-body h2 { font-size: 1.7rem; margin: 2.4rem 0 0.9rem; }
.article-body p { margin-bottom: 1.2rem; }
.article-body .article-callout {
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--sand-deep);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(192, 94, 60, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--soft); margin-top: 1rem; }
.form-success {
  display: none;
  background: var(--sage-soft);
  color: var(--forest-deep);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  margin-top: 1.2rem;
}
.form-success.visible { display: block; }

/* ---------- Contact info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-top: 1.6rem; }
.contact-item svg { width: 26px; height: 26px; flex-shrink: 0; margin-top: 0.2rem; }
.contact-item strong { display: block; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(251, 247, 241, 0.8);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 247, 241, 0.15);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); display: flex; align-items: center; gap: 0.6rem; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-brand em { font-style: italic; color: var(--blush); }
.footer-tag { margin-top: 1rem; font-size: 0.95rem; max-width: 30ch; }
.site-footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(251, 247, 241, 0.8); font-size: 0.98rem; }
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(251, 247, 241, 0.55);
}
.footer-crisis {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  background: rgba(251, 247, 241, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  line-height: 1.55;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--sand);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: 1.2rem; }
.page-hero .hero-bloom-bg { top: -80px; right: -100px; width: 400px; opacity: 0.6; }

/* ---------- Specialty list ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .spec-grid { grid-template-columns: 1fr; } }
.spec {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--sage);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.spec:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.spec:nth-child(even) { border-top-color: var(--terracotta); }
.spec h3 { margin-bottom: 0.7rem; }
.spec p { color: var(--soft); font-size: 0.98rem; }
.spec ul { margin: 0.8rem 0 0 1.1rem; color: var(--soft); font-size: 0.95rem; }
.spec li { margin-bottom: 0.3rem; }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.8rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-row:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-row .card-icon { width: 88px; height: 88px; border-radius: 20px; background: var(--sage-soft); display: grid; place-items: center; }
.service-row .card-icon svg { width: 46px; height: 46px; }
.service-row:nth-child(even) .card-icon { background: var(--blush-soft); }
.service-row h3 { margin-bottom: 0.5rem; }
.service-row p { color: var(--soft); }
.service-row .service-fee {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
  white-space: nowrap;
  background: var(--sand);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
}
@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row .card-icon { width: 64px; height: 64px; }
  .service-row .card-icon svg { width: 36px; height: 36px; }
}

/* ---------- Credentials strip ---------- */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.cred {
  background: var(--sand);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
}
