/* ---------- Design tokens ---------- */
:root {
  --bg: #f4f9f4;
  --bg-alt: #e8f2e8;
  --ink: #2b3a32;
  --ink-soft: #4f5e55;
  --muted: #7d8a82;
  --line: #d8e6d8;
  --primary: #6fa886;
  --primary-dark: #4f8a68;
  --primary-soft: #c8e0cf;
  --accent: #b8d8b8;
  --accent-soft: #dff0df;
  --pastel-mint: #d6ecde;
  --pastel-sage: #cfe4cf;
  --pastel-cream: #f6f2e7;
  --card: #ffffff;
  --shadow-sm: 0 2px 10px rgba(60, 95, 75, 0.05);
  --shadow-md: 0 14px 40px rgba(60, 95, 75, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --font-sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Lora", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; color: var(--primary-dark); }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.125rem; color: var(--ink-soft); max-width: 40ch; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.9em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(111, 168, 134, 0.30);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid var(--primary-dark);
  padding: 10px 20px;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: var(--primary-dark); color: #fff; }
.btn-link {
  color: var(--ink);
  font-weight: 500;
  padding: 14px 8px;
}
.btn-link:hover { color: var(--primary-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 249, 244, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-text small {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary-dark); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-alt);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle at 60% 40%, rgba(184, 216, 184, 0.45), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 18px; }

.hero-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: start center;
  padding-bottom: 100px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: float 10s ease-in-out infinite;
  z-index: 0;
}
.blob-1 {
  width: 360px; height: 360px;
  background: var(--pastel-mint);
  top: -20px; left: -20px;
}
.blob-2 {
  width: 260px; height: 260px;
  background: var(--pastel-cream);
  bottom: 20px; right: 0;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(10px); }
}

.portrait {
  position: relative;
  z-index: 1;
  margin: 0;
}
/* Soft pastel-green halo sitting behind the portrait so any faded
   edges of the photo dissolve into the theme instead of onto the page. */
.portrait::before {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
    var(--pastel-mint) 0%,
    var(--pastel-mint) 45%,
    rgba(214, 236, 222, 0.6) 70%,
    transparent 95%);
  z-index: 0;
}
.portrait-frame {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--pastel-mint);
  z-index: 1;
  /* Fade the photo edges into the mint halo behind so nothing reads
     as a sharp ring on the page background. */
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 55%, rgba(0,0,0,0.9) 72%, rgba(0,0,0,0.45) 88%, transparent 100%);
          mask-image: radial-gradient(circle at 50% 48%, #000 55%, rgba(0,0,0,0.9) 72%, rgba(0,0,0,0.45) 88%, transparent 100%);
}
.portrait-frame::after {
  /* Gentle pastel-green wash across the whole frame so a white photo
     background blends naturally with the calm theme. Stronger toward
     the edges, near-invisible over the face. */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%,
    transparent 30%,
    rgba(200, 224, 207, 0.35) 65%,
    rgba(111, 168, 134, 0.55) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor the top of the head so nothing gets cropped away */
  object-position: center 18%;
  filter: saturate(0.9) contrast(0.98) brightness(1.01);
}
.quote-card {
  position: absolute;
  bottom: 0; left: -8px;
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 300px;
  z-index: 2;
}
.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.45;
}
.quote-card span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.alt { background: var(--bg-alt); }
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--ink-soft); }

/* ---------- About ---------- */
.bio {
  max-width: 68ch;
  margin: 0 auto;
  position: relative;
  padding-left: 22px;
}
.bio::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-soft));
  opacity: 0.85;
}
.bio p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.15em;
}
.bio p:last-child { margin-bottom: 0; }
.bio p:first-child::first-line {
  font-weight: 600;
  color: var(--ink);
}


/* ---------- Counselling — soft badge grid ---------- */
.topics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 56px 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.topic-item {
  grid-column: span 2;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.topic-item:nth-child(4) { grid-column: 2 / span 2; }
.topic-item:nth-child(5) { grid-column: 4 / span 2; }

.topic-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--pastel-mint) 70%);
  display: grid;
  place-items: center;
  font-size: 2rem;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 18px rgba(60, 95, 75, 0.08);
}
.topic-badge::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--primary-soft);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity .35s ease, transform .35s ease;
}
.topic-item:hover .topic-badge {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(60, 95, 75, 0.15);
}
.topic-item:hover .topic-badge::before {
  opacity: 1;
  transform: scale(1);
}
.topic-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}
.topic-item h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin: 10px auto 0;
  transition: width .3s ease;
}
.topic-item:hover h3::after { width: 56px; }
.topic-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Relationships ---------- */
.rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rel-item {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.rel-item:hover {
  transform: translateY(-4px);
  background: var(--pastel-mint);
  box-shadow: var(--shadow-md);
}
.rel-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.rel-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.rel-item p { font-size: 0.9rem; margin: 0; }

/* ---------- Approach — horizontal timeline ---------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--primary-soft) 0,
    var(--primary-soft) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.tl-step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.tl-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-soft);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(60, 95, 75, 0.08);
  margin-bottom: 22px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.tl-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--primary-soft);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.tl-step:hover .tl-node {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: var(--pastel-mint);
}
.tl-step:hover .tl-node::after { opacity: 1; transform: scale(1.05); }
.tl-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--primary-dark);
  line-height: 1;
}
.tl-content {
  max-width: 22ch;
}
.tl-content h3 {
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.tl-content p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-alt); }
.t-carousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 56px;
}
.t-track {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 48px 44px;
  box-shadow: var(--shadow-md);
  min-height: 340px;
  overflow: hidden;
}
.t-slide {
  position: absolute;
  inset: 56px 48px 44px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
}
.t-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.t-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--primary-soft);
  position: absolute;
  top: 28px;
  left: 36px;
}
.t-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.t-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-meta strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.t-meta span {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  z-index: 2;
}
.t-nav:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: var(--shadow-md);
}
.t-prev { left: 0; }
.t-next { right: 0; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-soft);
  transition: background .25s ease, transform .25s ease, width .25s ease;
}
.t-dot:hover { background: var(--primary); }
.t-dot.is-active {
  background: var(--primary-dark);
  width: 28px;
  border-radius: 999px;
}

/* ---------- Contact ---------- */
.contact-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro { margin-bottom: 48px; }
.contact-intro p { max-width: 56ch; margin-left: auto; margin-right: auto; }

.contact-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-cards li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-cards li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.contact-cards .ci {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pastel-mint);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.contact-cards .ci-wa {
  background: #d8efde;
  color: #2c8a4a;
}
.contact-cards strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.contact-cards a,
.contact-cards .ci-text {
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
  word-break: break-word;
  line-height: 1.5;
}
.contact-cards .ci-text { color: var(--ink-soft); font-weight: 400; }
.contact-cards a:hover { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: #2b3a32;
  color: #d8e0d8;
  padding: 60px 0 24px;
  margin-top: 20px;
}
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: #9eab9e; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-grid a,
.footer-grid .footer-text {
  display: block;
  color: #c4d0c4;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.footer-grid a:hover { color: #fff; }
.muted { color: #9eab9e; font-size: 0.92rem; max-width: 34ch; margin-top: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  color: #9eab9e;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
  .timeline::before { display: none; }
  .hero-art { min-height: 400px; order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .portrait-frame { width: 300px; height: 300px; }
  .topics {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
  .topic-item,
  .topic-item:nth-child(4),
  .topic-item:nth-child(5) { grid-column: span 1; }
  .topic-item:nth-child(5) { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .brand-text strong { font-size: 1.4rem; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .menu-toggle { display: block; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .topics {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .topic-item,
  .topic-item:nth-child(4),
  .topic-item:nth-child(5) { grid-column: 1 / -1; max-width: none; margin: 0; }
  .topic-badge { width: 72px; height: 72px; font-size: 1.7rem; margin-bottom: 16px; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
  .timeline::before {
    display: block;
    top: 32px;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(
      to bottom,
      var(--primary-soft) 0,
      var(--primary-soft) 8px,
      transparent 8px,
      transparent 16px
    );
  }
  .tl-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 22px;
    padding: 16px 0;
  }
  .tl-node { margin-bottom: 0; flex-shrink: 0; }
  .tl-content { max-width: none; padding-top: 12px; }
  .rel-grid { grid-template-columns: 1fr; }
  .bio { padding-left: 16px; }
  .bio p { font-size: 0.98rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .t-carousel { padding: 0; }
  .t-track { padding: 44px 26px 32px; min-height: 360px; }
  .t-slide { inset: 44px 26px 32px; }
  .t-quote { font-size: 1.1rem; }
  .t-quote-mark { font-size: 3.5rem; top: 18px; left: 18px; }
  .t-nav {
    position: static;
    transform: none;
    margin-top: 18px;
  }
  .t-prev, .t-next {
    display: inline-grid;
  }
  .t-carousel {
    display: grid;
    grid-template-areas:
      "track track"
      "prev next"
      "dots dots";
    gap: 12px;
  }
  .t-track { grid-area: track; }
  .t-prev { grid-area: prev; justify-self: start; }
  .t-next { grid-area: next; justify-self: end; }
  .t-dots { grid-area: dots; margin-top: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .portrait-frame { width: 250px; height: 250px; }
  .quote-card {
    position: static;
    margin: 18px auto 0;
    max-width: none;
  }
  .brand-text strong { font-size: 1.3rem; }
  .brand-text small { font-size: 0.72rem; }
}
