:root {
  --ink: #2a1a32;
  --stone: #f6f1f8;
  --mist: #e8ddee;
  --clay: #9d7e5e;
  --lilac: #a088e0;
  --mauve: #a47dab;
  --header: #e9e4de;
  --sage: #7a8b7a;
  --paper: #fbf7fc;
  --plum: #3d2450;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: Sora, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--stone);
  padding: 0.5rem 1rem;
  z-index: 80;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header);
  border-bottom: 1px solid rgba(42, 26, 50, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
}
.brand img {
  height: 68px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #27282c;
}
.nav a[aria-current="page"] { color: var(--clay); }
.nav-cta {
  background: var(--plum);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--ink); }

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 7px 0;
}

.hero,
.hero-slider {
  min-height: min(78vh, 760px);
  position: relative;
  display: grid;
  align-items: end;
  color: var(--stone);
  overflow: hidden;
}
.hero-slider { display: block; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.is-active .hero-media img {
  animation: heroRise 8s var(--ease) both;
}
.hero::after,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,36,80,0.18) 0%, rgba(42,26,50,0.72) 100%);
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 5.2rem;
}
.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8ddee;
  margin: 0 0 0.9rem;
}
.hero-brand {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 3.6vw, 3.15rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 22ch;
}
.hero-slide.is-active .hero-brand { animation: fadeUp 1s 0.1s var(--ease) both; }
.hero-line {
  font-size: 1.08rem;
  max-width: 34rem;
  margin: 0 0 1.8rem;
  font-weight: 300;
}
.hero-slide.is-active .hero-line { animation: fadeUp 1s 0.28s var(--ease) both; }
.hero-slide.is-active .cta-row { animation: fadeUp 1s 0.42s var(--ease) both; }

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-arrow {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(243,239,233,0.45);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.hero-arrow:hover { background: rgba(255,255,255,0.12); }
.hero-dots { display: flex; gap: 0.45rem; }
.hero-dot {
  width: 2.2rem;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active { background: #fff; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--stone); color: var(--ink); }
.btn-solid:hover { background: var(--lilac); color: #fff; }
.btn-ghost { border: 1px solid currentColor; background: transparent; color: inherit; }
.btn-ghost-ink { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.btn-ink { background: var(--plum); color: #fff; }
.btn-ink:hover { background: var(--clay); }

.marquee {
  overflow: hidden;
  background: var(--plum);
  color: #f4e9ff;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-top {
  position: relative;
  z-index: 50;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 0.85rem;
  line-height: 1.2;
  white-space: nowrap;
}
.marquee-group span { opacity: 0.88; }

.section {
  padding: 6.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  max-width: 36rem;
  margin-bottom: 3rem;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.7rem;
}
.display {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.display-xl { font-size: clamp(2.6rem, 6vw, 4.8rem); max-width: 14ch; }
.lede { margin: 0; font-weight: 300; max-width: 38rem; }
.lede-wide { max-width: 46rem; font-size: 1.12rem; }

.question-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.question-list li {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(42,26,50,0.12);
  font-weight: 300;
}
.question-list li:last-child { border-bottom: 1px solid rgba(42,26,50,0.12); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-play-state: paused;
}
.reveal.is-in { animation-play-state: running; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split img {
  width: 100%;
  height: auto;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.pillar {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  text-decoration: none;
  color: inherit;
  background: #fff;
  min-height: 240px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.pillar:hover { transform: translateY(-4px); }
.pillar img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 280px;
  object-fit: cover;
}
.pillar-body { padding: 1.5rem 1.4rem; }
.pillar-body span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--clay);
}
.pillar-body h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0.4rem 0 0.6rem;
}
.pillar-body p { margin: 0; font-weight: 300; font-size: 0.92rem; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.duo-card {
  position: relative;
  min-height: 360px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  display: grid;
  align-items: end;
}
.duo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.duo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,26,50,0.05), rgba(42,26,50,0.72));
}
.duo-card > div { position: relative; z-index: 1; padding: 2rem 1.6rem; }
.duo-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.duo-card p { margin: 0 0 1rem; font-weight: 300; max-width: 28rem; }
.duo-card span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.duo-card .kicker { color: #e8ddee; }

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(42,26,50,0.12);
}
.service-row {
  display: grid;
  grid-template-columns: 2fr 3fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(42,26,50,0.12);
  text-decoration: none;
  color: inherit;
  transition: padding 0.4s var(--ease);
}
.service-row:hover { padding-left: 0.6rem; }
.service-row h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
}
.service-row p { margin: 0; font-weight: 300; }
.service-row span { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.service-card {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-4px); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card div { padding: 1.5rem 1.4rem 1.8rem; }
.service-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.service-card p { margin: 0; font-weight: 300; }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.quote { padding: 0; margin: 0; }
.quote p {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 1rem;
}
.quote cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.08em; }

.band {
  background: var(--plum);
  color: var(--stone);
  padding: 5.5rem 1.5rem;
}
.band-lilac {
  background: var(--mauve);
  color: #fff;
}
.band-inner { max-width: 1280px; margin: 0 auto; }

.page-hero {
  min-height: 38vh;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--stone);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,36,80,0.2), rgba(42,26,50,0.68));
}
.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 1.5rem 3.5rem;
  width: 100%;
}

.prose { max-width: 40rem; }
.prose p { font-weight: 300; }
.prose h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 2.4rem 0 0.7rem;
}

.faq-item { border-bottom: 1px solid rgba(42,26,50,0.12); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .answer { padding: 0 0 1.4rem; font-weight: 300; }

.form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}
.form label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(42,26,50,0.25);
  background: transparent;
  padding: 0.7rem 0;
  font: inherit;
  color: inherit;
}
.form textarea { min-height: 8rem; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.9fr;
  gap: 3.5rem;
  align-items: start;
}
.book-form fieldset {
  border: 0;
  margin: 0 0 2.2rem;
  padding: 0;
}
.book-form legend {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.9rem;
}
.field-hint { margin: 0 0 0.8rem; font-weight: 300; font-size: 0.92rem; }
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.choice-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .choice-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.9rem 1rem;
  background: #fff;
  cursor: pointer;
  border: 1px solid transparent;
}
.choice-card:has(input:checked) {
  border-color: var(--clay);
  box-shadow: 0 0 0 1px var(--clay);
}
.choice-card input { margin-top: 0.35rem; accent-color: var(--plum); }
.choice-card strong { display: block; font-weight: 500; }
.choice-card em {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 0.88rem;
  margin-top: 0.25rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}
.form-span { grid-column: 1 / -1; }
.book-form label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.book-form input,
.book-form textarea,
.book-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(42,26,50,0.25);
  background: transparent;
  padding: 0.7rem 0;
  font: inherit;
  color: inherit;
}
.book-aside {
  background: #fff;
  padding: 1.8rem 1.5rem 2rem;
}
.book-fees { list-style: none; margin: 1.4rem 0; padding: 0; }
.book-fees li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(42,26,50,0.1);
  font-weight: 300;
}
.book-fees strong { font-family: Fraunces, Georgia, serif; font-weight: 500; }
.book-thanks { max-width: 40rem; }
.receipt { margin: 1.4rem 0 1.6rem; }
.receipt div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(42,26,50,0.1);
}
.receipt dt { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); }
.receipt dd { margin: 0; font-weight: 300; }

.fee-list {
  display: grid;
  gap: 0;
  max-width: 40rem;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(42,26,50,0.12);
}
.fee-row strong { font-family: Fraunces, Georgia, serif; font-size: 1.4rem; font-weight: 500; }

.site-footer {
  background: var(--plum);
  color: var(--mist);
  padding: 4.5rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  margin: 0 0 0.8rem;
  color: var(--stone);
}
.footer-about { font-weight: 300; margin: 0; }
.footer-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4b8e0;
  margin: 0 0 0.8rem;
}
.site-footer a {
  display: block;
  text-decoration: none;
  font-weight: 300;
  margin: 0.25rem 0;
}
.footer-base {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(243,239,233,0.12);
  padding-top: 1.2rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
}
.footer-base p { margin: 0; }
.footer-credit a {
  display: inline;
  margin: 0;
  color: inherit;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  background: var(--mauve);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); }

.flash {
  max-width: 1280px;
  margin: 5.5rem auto 0;
  padding: 1rem 1.5rem;
}
.flash-success { color: var(--sage); }
.flash-danger { color: #8a3a32; }

.portrait {
  width: 100%;
  height: auto;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) 300px;
  gap: 3rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 6rem;
}
.blog-sidebar { position: sticky; top: 6.5rem; display: grid; gap: 1.2rem; }
.side-card {
  background: #fff;
  padding: 1.3rem 1.2rem;
}
.side-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
}
.blog-search { display: grid; gap: 0.6rem; }
.blog-search input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(42,26,50,0.25);
  background: transparent;
  padding: 0.55rem 0;
  font: inherit;
}
.blog-cat-list,
.blog-recent-list { list-style: none; margin: 0; padding: 0; }
.blog-cat-list a,
.blog-recent-list a {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  text-decoration: none;
  padding: 0.45rem 0;
  font-weight: 300;
  border-bottom: 1px solid rgba(42,26,50,0.08);
}
.blog-cat-list a.is-active { color: var(--clay); }
.blog-recent-list a { align-items: center; justify-content: flex-start; }
.blog-recent-list img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex: 0 0 64px;
}
.blog-recent-list strong { display: block; font-weight: 500; font-size: 0.9rem; }
.blog-recent-list small { color: rgba(42,26,50,0.6); }
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2.2rem;
  background: #fff;
}
.featured-post img { width: 100%; height: 280px; object-fit: cover; }
.fp-body { padding: 1.4rem 1.4rem 1.6rem; }
.fp-body h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  margin: 0.4rem 0 0.7rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.home-notes .blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: #fff;
}
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card div { padding: 1.2rem 1.15rem 1.4rem; }
.blog-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.35rem 0 0.5rem;
}
.blog-card p, .fp-body p { margin: 0; font-weight: 300; }
.post-meta, .badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
}
.blog-pagination { display: flex; gap: 0.4rem; margin-top: 2rem; }
.blog-pagination a {
  min-width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(42,26,50,0.15);
}
.blog-pagination a.is-active { background: var(--plum); color: #fff; border-color: var(--plum); }
.article-hero-img img { width: 100%; height: 340px; object-fit: cover; margin-bottom: 1.4rem; }
.article h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0.4rem 0 0.7rem;
}
.article .meta { font-size: 0.85rem; font-weight: 300; margin-bottom: 1.4rem; color: rgba(42,26,50,0.7); }
.article-body { max-width: 42rem; }
.article-body p { font-weight: 300; margin: 0 0 1rem; }
.article-body h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 1.8rem 0 0.6rem;
}
.article-body .lead { font-size: 1.12rem; }
.related { margin-top: 3rem; }
.blog-filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroRise {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--header);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(42, 26, 50, 0.08);
  }
  .nav.is-open { display: flex; }
  .split,
  .quote-grid,
  .footer-grid,
  .service-row,
  .pillar-grid,
  .duo,
  .service-cards,
  .blog-layout,
  .blog-grid,
  .featured-post,
  .home-notes .blog-grid,
  .book-layout,
  .choice-grid,
  .form-grid,
  .receipt div {
    grid-template-columns: 1fr;
  }
  .pillar { grid-template-columns: 1fr; }
  .split img,
  .portrait { max-height: 420px; aspect-ratio: 4 / 5; }
  .hero,
  .hero-slider { min-height: 70vh; }
  .brand img { height: 52px; }
  .hero-brand { max-width: none; }
  .blog-sidebar { position: static; }
  .featured-post img,
  .article-hero-img img { height: 220px; }
}
