
:root {
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --linen: #f1e7da;
  --sage: #c8d5c1;
  --sage-deep: #687f67;
  --forest: #22362e;
  --forest-soft: #2f4b40;
  --teal: #245b70;
  --clay: #b87961;
  --ink: #1e2f28;
  --muted: #667269;
  --line: rgba(34, 54, 46, .12);
  --shadow: 0 32px 90px rgba(34, 54, 46, .15);
  --soft-shadow: 0 20px 46px rgba(34, 54, 46, .10);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(200, 213, 193, .72), transparent 32rem),
    radial-gradient(circle at 90% 15%, rgba(184, 121, 97, .18), transparent 27rem),
    radial-gradient(circle at 85% 92%, rgba(36, 91, 112, .13), transparent 32rem),
    var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 54, 46, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 54, 46, .028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.50), transparent 72%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.topline {
  background: var(--forest);
  color: rgba(255,253,248,.88);
  font-size: .88rem;
}

.topline .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, .90);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 800;
  letter-spacing: -.02em;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(34, 54, 46, .10);
}

.brand span {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .76);
  overflow-x: auto;
  max-width: 100%;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #4a574f;
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  background: rgba(200, 213, 193, .68);
  outline: none;
}

.nav-links .nav-book {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(34, 54, 46, .18);
}

.page-hero {
  padding: 74px 0 48px;
}

.home-hero {
  min-height: calc(100vh - 116px);
  padding: 72px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(200, 213, 193, .58);
  color: #506851;
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage-deep);
  box-shadow: 0 0 0 6px rgba(104, 127, 103, .15);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.35vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -.048em;
}

h2 {
  max-width: 840px;
  margin: 0 0 18px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -.044em;
}

h3 {
  color: #293d33;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.lead,
.hero-subtitle {
  max-width: 860px;
  color: var(--teal);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.42;
  font-weight: 560;
}

.copy {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section {
  padding: 46px 0;
}

.section-card {
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.hero-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 780;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  outline: none;
}

.primary {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 18px 36px rgba(34, 54, 46, .22);
}

.secondary {
  background: rgba(255, 253, 248, .76);
  color: var(--forest);
  border-color: var(--line);
}

.light-button {
  background: rgba(255,253,248,.94);
  color: var(--forest);
  border-color: rgba(255,253,248,.60);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .10);
}

.hero-note,
.tag-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,253,248,.66);
  border: 1px solid var(--line);
  color: #536157;
  font-size: .9rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  padding: 15px;
  border-radius: 42px;
  background: rgba(255, 253, 248, .76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 52px;
  background:
    linear-gradient(135deg, rgba(200,213,193,.58), rgba(184,121,97,.18)),
    var(--linen);
  transform: rotate(-2deg);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--linen);
}

.photo-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 19px;
  border-radius: 24px;
  border: 1px solid rgba(255,253,248,.72);
  background: rgba(255,253,248,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(34, 54, 46, .18);
}

.profile-card strong {
  display: block;
  color: var(--forest);
  font-size: 1.17rem;
  margin-bottom: 4px;
}

.profile-card span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.44;
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.credential {
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.70);
  color: #536157;
  font-size: .9rem;
  text-align: center;
  font-weight: 690;
}

.page-grid,
.card-grid,
.fee-grid,
.news-grid,
.resource-grid {
  display: grid;
  gap: 16px;
}

.page-grid.two,
.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three,
.news-grid,
.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fee-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-card,
.fee-card,
.resource-card,
.news-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251,247,239,.98), rgba(241,231,218,.56));
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(34,54,46,.08);
}

.info-card p,
.fee-card p,
.resource-card p,
.news-card p {
  color: var(--muted);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(200,213,193,.62);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.price {
  display: inline-block;
  margin-top: 12px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.group-title {
  margin: 38px 0 16px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.035em;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 11px;
  margin-top: 26px;
}

.support-item {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,253,248,.70);
  border: 1px solid var(--line);
  color: #46544b;
  font-weight: 650;
}

.dark-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #22362e, #245b70);
  color: var(--paper);
}

.dark-card::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -150px;
  top: -150px;
  border-radius: 999px;
  background: rgba(255,253,248,.08);
}

.dark-card .section-kicker,
.dark-card h1,
.dark-card h2,
.dark-card .lead,
.dark-card .copy {
  position: relative;
  z-index: 1;
  color: var(--paper);
}

.dark-card .lead,
.dark-card .copy {
  color: rgba(255,253,248,.84);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.contact-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(200,213,193,.34);
  border: 1px solid var(--line);
}

.contact-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
}

.contact-box a {
  color: var(--teal);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.note,
.disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(184, 121, 97, .12);
  border: 1px solid rgba(184, 121, 97, .22);
  color: #64554b;
  font-size: .95rem;
}

.logo-box {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(200,213,193,.52), rgba(241,231,218,.72));
  box-shadow: var(--soft-shadow);
}

.logo-box img {
  display: block;
  border-radius: 24px;
  background: var(--paper);
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 36px;
  align-items: center;
}

.footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 52px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #737d73;
  font-size: .94rem;
}

.footer a {
  color: var(--teal);
  font-weight: 700;
}


.about-visual-stack {
  display: grid;
  gap: 18px;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.about-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.about-photo-caption {
  padding: 18px 20px;
  background: rgba(255,253,248,.92);
}

.about-photo-caption strong {
  display: block;
  color: var(--forest);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.about-photo-caption span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.logo-box.compact-logo {
  padding: 18px;
}

.logo-box.compact-logo img {
  max-height: 190px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-links {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .home-hero,
  .about-grid,
  .page-grid.two,
  .card-grid.two,
  .card-grid.three,
  .news-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 58px;
  }
}

@media (max-width: 720px) {
  .topline .wrap {
    display: block;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.55rem);
  }

  .hero-visual,
  .section-card {
    border-radius: 24px;
  }

  .credential-strip {
    grid-template-columns: 1fr;
  }

  .profile-card {
    position: static;
    margin-top: 12px;
  }

  .photo-frame img {
    aspect-ratio: 4 / 4.7;
  }
}


/* V16 About page refined visual composition */
.about-grid {
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
}

.about-visual-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-logo-top {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.84);
  box-shadow: 0 16px 34px rgba(34,54,46,.08);
}

.about-logo-top img {
  display: block;
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.about-photo-card {
  width: min(100%, 390px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.about-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 4.85;
  object-fit: cover;
}

.about-photo-caption {
  padding: 17px 20px;
  background: rgba(255,253,248,.94);
}

.about-photo-caption strong {
  display: block;
  color: var(--forest);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.about-photo-caption span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-logo-top,
  .about-photo-card {
    width: min(100%, 430px);
  }
}


/* V17 Premium About page */
.about-brand-panel {
  margin-top: -18px;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.about-brand-panel-inner {
  width: min(100%, 520px);
  padding: 18px 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.88);
  box-shadow: var(--soft-shadow);
}

.about-brand-panel-inner img {
  display: block;
  width: 100%;
  max-height: 155px;
  object-fit: contain;
}

.about-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 46px;
  align-items: center;
}

.about-copy-block {
  max-width: 760px;
}

.about-copy-block .copy {
  font-size: 1.06rem;
}

.about-portrait-panel {
  position: relative;
  padding: 14px;
  border-radius: 38px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-portrait-panel::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(200,213,193,.58), rgba(184,121,97,.18));
  transform: rotate(1.5deg);
}

.about-portrait-image {
  overflow: hidden;
  border-radius: 30px;
  background: var(--linen);
}

.about-portrait-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-portrait-caption {
  margin-top: 12px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255,253,248,.90);
  border: 1px solid rgba(34,54,46,.08);
}

.about-portrait-caption strong {
  display: block;
  color: var(--forest);
  font-size: 1.14rem;
  margin-bottom: 5px;
}

.about-portrait-caption span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-highlight {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
}

.about-highlight strong {
  display: block;
  color: var(--forest);
  margin-bottom: 6px;
}

.about-highlight span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.about-closing {
  margin-top: 34px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(200,213,193,.42), rgba(255,253,248,.70));
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-portrait-panel {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .about-highlight-grid {
    grid-template-columns: 1fr;
  }

  .about-brand-panel-inner {
    padding: 16px 18px;
  }
}


/* V18 Refined professional About page */
.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  gap: 46px;
  align-items: center;
}

.about-hero-logo {
  padding: 22px 30px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.86);
  box-shadow: var(--soft-shadow);
}

.about-hero-logo img {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.about-professional-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: 46px;
  align-items: start;
}

.about-portrait-panel {
  position: relative;
  padding: 14px;
  border-radius: 38px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-portrait-panel::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(200,213,193,.58), rgba(184,121,97,.18));
  transform: rotate(-1.2deg);
}

.about-portrait-image {
  overflow: hidden;
  border-radius: 30px;
  background: var(--linen);
}

.about-portrait-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-portrait-caption {
  margin-top: 12px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255,253,248,.90);
  border: 1px solid rgba(34,54,46,.08);
}

.about-portrait-caption strong {
  display: block;
  color: var(--forest);
  font-size: 1.14rem;
  margin-bottom: 5px;
}

.about-portrait-caption span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.about-copy-block .copy {
  font-size: 1.06rem;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.about-highlight {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
}

.about-highlight strong {
  display: block;
  color: var(--forest);
  margin-bottom: 6px;
}

.about-highlight span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.about-closing {
  margin-top: 34px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(200,213,193,.42), rgba(255,253,248,.70));
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .about-hero-layout,
  .about-professional-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-logo {
    max-width: 520px;
  }

  .about-portrait-panel {
    max-width: 440px;
  }

  .about-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .about-highlight-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-logo {
    padding: 18px 20px;
  }
}


/* V19 Rebuilt About page */
.about-page-hero {
  padding: 70px 0 36px;
}

.about-hero-card {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.about-hero-mark {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-mark img {
  width: min(100%, 430px);
  max-height: 265px;
  object-fit: contain;
  display: block;
}

.about-hero-text h1 {
  margin-bottom: 20px;
}

.about-hero-text .lead {
  max-width: 760px;
}

.about-main-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.about-photo-simple {
  position: sticky;
  top: 116px;
}

.about-photo-simple-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-photo-simple-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo-simple-caption {
  padding: 20px 22px;
  background: rgba(255,253,248,.94);
}

.about-photo-simple-caption strong {
  display: block;
  color: var(--forest);
  font-size: 1.18rem;
  margin-bottom: 5px;
}

.about-photo-simple-caption span {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.about-main-copy .copy {
  font-size: 1.07rem;
}

.about-main-copy h2 {
  max-width: 760px;
}

.about-values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.about-value-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
}

.about-value-card strong {
  display: block;
  color: var(--forest);
  margin-bottom: 7px;
}

.about-value-card span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.about-statement {
  margin-top: 32px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(200,213,193,.42), rgba(255,253,248,.72));
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .about-hero-card,
  .about-main-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-mark {
    order: -1;
  }

  .about-hero-mark img {
    width: min(100%, 360px);
    max-height: 220px;
  }

  .about-photo-simple {
    position: static;
    max-width: 430px;
    margin: 0 auto;
  }

  .about-values-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .about-page-hero {
    padding-top: 42px;
  }

  .about-hero-card {
    padding: 24px;
    border-radius: 26px;
  }

  .about-values-row {
    grid-template-columns: 1fr;
  }
}


/* V20 clean professional About page redesign */
.about-clean-hero {
  padding: clamp(42px, 7vw, 82px) 0 34px;
}

.about-clean-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-clean-copy h1 {
  margin-bottom: 18px;
}

.about-clean-copy .lead {
  max-width: 760px;
}

.about-clean-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-clean-logo img {
  display: block;
  width: min(100%, 420px);
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(34,54,46,.10));
}

.about-clean-section {
  padding-top: 28px;
}

.about-clean-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
  background: rgba(255,253,248,.86);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.about-clean-photo {
  width: 100%;
  max-width: 360px;
}

.about-clean-photo-frame {
  overflow: hidden;
  border-radius: 30px;
  background: var(--linen);
  border: 1px solid var(--line);
  box-shadow: 0 24px 58px rgba(34,54,46,.14);
}

.about-clean-photo-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-clean-caption {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(251,247,239,.78);
  border: 1px solid var(--line);
}

.about-clean-caption strong {
  display: block;
  color: var(--forest);
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.about-clean-caption span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  font-size: .95rem;
}

.about-clean-text h2 {
  max-width: 780px;
}

.about-clean-text .copy {
  font-size: 1.06rem;
  max-width: 820px;
}

.about-clean-tags {
  margin-top: 24px;
}

.about-clean-focus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-clean-focus-card {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(251,247,239,.98), rgba(241,231,218,.55));
  border: 1px solid var(--line);
}

.about-clean-focus-card strong {
  display: block;
  color: var(--forest);
  margin-bottom: 7px;
}

.about-clean-focus-card span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}

.about-clean-statement {
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(200,213,193,.32);
  border: 1px solid rgba(104,127,103,.18);
}

.about-clean-statement p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .about-clean-hero-inner,
  .about-clean-card {
    grid-template-columns: 1fr;
  }

  .about-clean-logo {
    order: -1;
    justify-content: flex-start;
  }

  .about-clean-logo img {
    width: min(100%, 340px);
    max-height: 230px;
  }

  .about-clean-photo {
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .about-clean-card {
    padding: 24px;
    border-radius: 28px;
  }

  .about-clean-focus {
    grid-template-columns: 1fr;
  }

  .about-clean-logo {
    justify-content: center;
  }
}


/* V21 brand and neurodiversity refinements */
.brand { gap: 0; padding: 6px 0; }
.brand img { width: 190px; height: 58px; object-fit: contain; border-radius: 0; background: transparent; box-shadow: none; }
.brand span { display: none; }
.site-header { background: rgba(251, 247, 239, .94); }
.nav { min-height: 84px; }
.footer { align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: var(--muted); }
.footer-brand img { width: 165px; height: auto; object-fit: contain; display: block; }
.logo-soft-panel { margin-top: 22px; padding: 18px; border-radius: 26px; background: rgba(255,253,248,.66); border: 1px solid var(--line); }
.logo-soft-panel img { display: block; width: min(100%, 300px); max-height: 170px; object-fit: contain; margin: 0 auto; }
.neuro-feature { border-color: rgba(36,91,112,.22); background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(200,213,193,.42)); }
.neuro-feature .card-icon { background: rgba(36,91,112,.12); color: var(--teal); }
.neuro-banner { margin-top: 26px; padding: 26px; border-radius: 28px; background: linear-gradient(135deg, rgba(200,213,193,.48), rgba(255,253,248,.78)); border: 1px solid rgba(104,127,103,.20); }
.neuro-banner h3 { margin-bottom: 8px; font-size: 1.3rem; }
.neuro-banner p { margin-bottom: 0; color: var(--muted); }
@media (max-width: 1100px) { .brand img { width: 175px; height: 54px; } }
@media (max-width: 720px) { .brand img { width: 160px; height: 50px; } .footer-brand { width: 100%; flex-direction: column; align-items: flex-start; } .footer-brand img { width: 150px; } }


/* V22 launch soon and professional polish */
.launch-strip {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(200,213,193,.62), rgba(255,253,248,.82));
  border: 1px solid rgba(104,127,103,.22);
  box-shadow: 0 18px 38px rgba(34,54,46,.08);
}

.launch-strip strong {
  display: block;
  color: var(--forest);
  font-size: 1.08rem;
  margin-bottom: 5px;
}

.launch-strip span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.news-date {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(200,213,193,.56);
  color: #506851;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reduced-copy {
  max-width: 760px;
}

.professional-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(36,91,112,.08);
  border: 1px solid rgba(36,91,112,.16);
  color: var(--muted);
}

.professional-note strong {
  color: var(--forest);
}

@media (max-width: 720px) {
  .launch-strip {
    padding: 18px;
  }
}


/* V23 student rates and therapy support voucher polish */
.support-option-card {
  border-color: rgba(184,121,97,.24);
  background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(184,121,97,.10));
}

.student-rate-card {
  border-color: rgba(36,91,112,.24);
  background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(36,91,112,.09));
}

.terms-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.terms-list div {
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255,253,248,.70);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}

.fee-helper {
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
}


/* V26 therapy process and FAQs */
.process-timeline {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(241,231,218,.52));
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(34,54,46,.06);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(200,213,193,.64);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 7px;
}

.process-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(34,54,46,.05);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq-category {
  margin-top: 42px;
  margin-bottom: 16px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -.035em;
}

.process-note {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(36,91,112,.08);
  border: 1px solid rgba(36,91,112,.16);
  color: var(--muted);
}

.process-note strong {
  color: var(--forest);
}

@media (max-width: 720px) {
  .process-step {
    grid-template-columns: 1fr;
  }
}


/* V27 expanded menu without horizontal scrollbar */
:root {
  --max: 1320px;
}

.nav {
  gap: 20px;
}

.brand img {
  width: 172px;
  height: 54px;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: wrap;
  overflow-x: visible;
  border-radius: 28px;
  gap: 2px;
  padding: 6px;
}

.nav-links a {
  padding: 9px 10px;
  font-size: .84rem;
}

.nav-links .nav-book {
  padding-left: 14px;
  padding-right: 14px;
}

@media (max-width: 1200px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: visible;
    flex-wrap: wrap;
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 158px;
    height: 50px;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: .82rem;
  }
}


/* v35 outstanding personal rewrite. Original Terapija.care colours retained. */
.nav-book { white-space: nowrap; }
.reduced-copy { max-width: 820px; }
.story-card { position:relative; overflow:hidden; }
.story-card:before { content:""; position:absolute; inset:0 auto 0 0; width:8px; background:rgba(68,92,75,.28); }
.story-card > * { position:relative; }
.support-list { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.support-list span { display:inline-flex; padding:10px 14px; border-radius:999px; background:rgba(255,253,248,.72); border:1px solid var(--line); color:var(--muted); font-weight:700; }
.faq-list { display:grid; gap:14px; }
.faq-item { border:1px solid var(--line); border-radius:22px; background:rgba(255,253,248,.72); overflow:hidden; }
.faq-item summary { cursor:pointer; padding:18px 22px; color:var(--forest); font-weight:800; }
.faq-item p { padding:0 22px 20px; margin:0; }
.footer-brand span { color:var(--muted); }
.contact-hero-pro .hero-actions { margin-top: 26px; }
.contact-feature-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap:22px; }
.contact-feature-card { border:1px solid var(--line); border-radius:30px; background:rgba(255,253,248,.78); box-shadow:var(--soft-shadow); padding:clamp(28px,4vw,46px); }
.contact-feature-card h2 { margin-bottom:16px; }
.primary-contact-card { background:linear-gradient(135deg, rgba(255,253,248,.92), rgba(200,213,193,.38)); }
.whatsapp-contact-card { background:rgba(255,253,248,.76); }
.contact-method-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:18px; margin-top:24px; }
.contact-method { border:1px solid var(--line); border-radius:24px; padding:22px; background:rgba(255,253,248,.66); }
.contact-method h3 { margin-bottom:8px; }
.suggested-message { border:1px solid var(--line); border-radius:24px; background:rgba(200,213,193,.24); padding:22px; margin:22px 0; }
.suggested-message p:last-child { margin-bottom:0; }
@media (max-width: 820px) {
  .contact-feature-grid, .contact-method-grid { grid-template-columns:1fr; }
}


/* v36 credential and footer polish. Original Terapija.care colours retained. */
.hero-credentials {
  display: grid;
  gap: 4px;
  margin: 18px 0 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,253,248,.72);
  box-shadow: var(--soft-shadow);
  max-width: 560px;
}
.hero-credentials strong {
  color: var(--forest);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}
.hero-credentials span {
  color: var(--muted);
  font-weight: 700;
}
.profile-card span + span {
  margin-top: 2px;
}


/* v37 about photo left polish. Original Terapija.care colours retained. */
.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(230px, 340px) 1fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(42px, 7vw, 82px);
  padding-bottom: clamp(28px, 5vw, 58px);
}
.about-intro-text {
  max-width: 840px;
}
.about-intro-text h1 {
  margin-top: 14px;
}
.about-photo-small {
  max-width: 330px;
  justify-self: start;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.about-photo-small img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-photo-caption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}
.about-photo-caption strong {
  color: var(--forest);
  font-weight: 900;
}
.about-photo-caption span {
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.35;
}
@media (max-width: 820px) {
  .about-intro-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-photo-small {
    width: min(74vw, 310px);
    justify-self: center;
  }
}


/* v51 full site footer FAQ polish. Original Terapija.care colours retained. */
.footer-expanded {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--forest);
}
.reflection-article {
  max-width: 880px;
}
.reflection-article p {
  font-size: 1.04rem;
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.emergency-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,253,248,.72);
}
.emergency-item h3 {
  margin-bottom: 8px;
}
@media (max-width: 820px) {
  .footer-expanded {
    align-items: flex-start;
  }
  .footer-links {
    width: 100%;
  }
  .emergency-grid {
    grid-template-columns: 1fr;
  }
}


/* V28 photo polish */
.hero-visual {
  max-width: 520px;
  justify-self: end;
  padding: 18px;
}

.photo-frame {
  border-radius: 30px;
}

.photo-frame img {
  aspect-ratio: 4 / 4.85;
  object-position: center 14%;
}

.profile-card {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.home-hero {
  align-items: center;
}

.about-main-layout {
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.about-photo-simple {
  width: 100%;
  max-width: 320px;
}

.about-photo-simple-card {
  border-radius: 28px;
}

.about-photo-simple-card img {
  aspect-ratio: 4 / 4.95;
  object-position: center 12%;
}

.about-photo-simple-caption {
  padding: 18px 20px;
}

.about-main-copy {
  min-height: 100%;
}

@media (max-width: 1100px) {
  .hero-visual {
    max-width: 480px;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    justify-self: stretch;
    max-width: 100%;
    padding: 14px;
  }

  .about-main-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-photo-simple {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .photo-frame img {
    aspect-ratio: 4 / 4.65;
    object-position: center 10%;
  }

  .about-photo-simple {
    max-width: 300px;
  }

  .about-photo-simple-card img {
    aspect-ratio: 4 / 4.7;
    object-position: center 10%;
  }
}


/* V54 professional information, credentials, TISP stamp and social links */
.credential-stack {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.credential-stack strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.warrant-line {
  color: var(--forest);
  font-weight: 900;
}

.tisp-stamp {
  display: block;
  width: min(190px, 68%);
  height: auto;
  margin: 16px auto 0;
  border-radius: 18px;
  background: rgba(255,253,248,.76);
}

.tisp-stamp.inline {
  margin: 18px 0 0;
  width: min(210px, 72vw);
}

.professional-profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}

.professional-profile-card .tisp-stamp {
  width: 190px;
  margin: 0;
}

.professional-section-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.professional-section-list .info-card p {
  margin-bottom: 0;
}

.social-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-footer-label {
  color: var(--muted);
  font-weight: 900;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a,
.social-pill {
  color: var(--forest);
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(34,54,46,.06);
}

.social-links a:hover,
.social-pill:hover {
  transform: translateY(-1px);
  color: var(--teal);
}

.social-note {
  margin-top: 16px;
}

@media (max-width: 820px) {
  .professional-profile-card {
    grid-template-columns: 1fr;
  }

  .professional-profile-card .tisp-stamp {
    width: min(190px, 62vw);
  }

  .social-footer {
    width: 100%;
    align-items: flex-start;
  }
}


/* V55 social icons and workplace page polish. Existing Terapija.care colours retained. */
.social-icon-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  color: var(--forest);
  box-shadow: 0 8px 18px rgba(34,54,46,.06);
  text-decoration: none;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.social-icon-link svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.social-icon-link:hover {
  transform: translateY(-1px);
  color: var(--teal);
  background: rgba(255,253,248,.94);
}

.social-links.social-note {
  display: none;
}

.workplace-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.workplace-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,248,.62);
}

.workplace-boundary-card {
  border-left: 5px solid rgba(104,127,103,.55);
}

@media (max-width: 820px) {
  .social-icon-link {
    width: 40px;
    height: 40px;
  }
}


/* V56 emotional connection sweep and About portrait polish. Existing colours retained. */
.about-photo-simple-card img {
  aspect-ratio: 3 / 4;
  object-position: center 12%;
}

.how-i-work-grid {
  margin-top: 22px;
}

.how-i-work-grid .info-card p {
  margin-bottom: 0;
}

.boundary-note {
  border-left: 5px solid rgba(104,127,103,.55);
}

.connection-callout {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.68);
  color: var(--forest);
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .about-photo-simple-card img {
    aspect-ratio: 3 / 4;
    object-position: center 10%;
  }
}


/* V57 soft scroll movement. Existing Terapija.care colours retained. */
html {
  scroll-behavior: smooth;
}

.scroll-effects .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .75s ease,
    transform .75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-effects .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card,
.contact-feature-card,
.contact-method,
.emergency-item,
.about-photo-simple-card,
.photo-frame,
.section-card {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.info-card:hover,
.contact-feature-card:hover,
.contact-method:hover,
.about-photo-simple-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(34,54,46,.10);
}

.button {
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.photo-frame:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-effects .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .info-card:hover,
  .contact-feature-card:hover,
  .contact-method:hover,
  .about-photo-simple-card:hover,
  .photo-frame:hover,
  .button:hover {
    transform: none;
  }
}


/* V58 Reflections from Eman. Existing Terapija.care colours retained. */
.reflections-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.reflections-note-card {
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255,253,248,.74);
  box-shadow: var(--soft-shadow);
}

.reflections-note-card p {
  color: var(--muted);
}

.reflections-section-intro {
  max-width: 820px;
  margin-bottom: 24px;
}

.reflections-card-meta {
  color: var(--sage-deep);
  font-weight: 900;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reflections-soft-card {
  border-style: dashed;
}

.reflections-reading-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.reflections-reading-list span {
  display: block;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,248,.66);
  color: var(--muted);
  font-weight: 800;
}

.about-creative-card {
  border-left: 5px solid rgba(104,127,103,.55);
}

@media (max-width: 900px) {
  .reflections-feature {
    grid-template-columns: 1fr;
  }
}

/* V59 Reflections human copy safety sweep. Existing colours and movement retained. */


/* V60 best version polish. Existing Terapija.care colours and calm visual identity retained. */
.signature-line {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.72);
  color: var(--forest);
  font-weight: 900;
  line-height: 1.55;
  box-shadow: 0 12px 28px rgba(34,54,46,.06);
}

.featured-reflection-card {
  position: relative;
  overflow: hidden;
}

.featured-reflection-card:before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(104,127,103,.12);
  pointer-events: none;
}

.reflection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reflection-article h2 {
  margin-top: 28px;
}

.reflection-questions {
  margin: 24px 0;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.68);
}

.reflection-questions p {
  margin-bottom: 12px;
}

.reflection-questions ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.creative-piece {
  font-size: 1.08rem;
  line-height: 1.95;
}

.creative-piece p {
  margin-bottom: 18px;
}

.reading-category {
  margin-top: 24px;
}

.reading-category h3 {
  margin-bottom: 12px;
}

.reading-item {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,248,.68);
  margin-bottom: 10px;
}

.reading-item strong {
  color: var(--forest);
}

.reading-item span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.what-shapes-grid {
  margin-top: 22px;
}

.share-preview-note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 720px) {
  .reflection-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* V61 button and icon polish. Existing Terapija.care colours retained. */
.button.with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button .button-icon {
  width: 1.12em;
  height: 1.12em;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}

.book-button-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.book-cover-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: .95rem;
}

.bookmark-icon-card {
  position: relative;
}

.bookmark-icon-card:after {
  content: "⌁";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(104,127,103,.36);
  font-size: 2.2rem;
  line-height: 1;
}


/* V62 Google Books link polish. Existing Terapija.care colours retained. */
.reading-item {
  display: grid;
  gap: 8px;
}

.reading-item .reading-actions {
  margin-top: 6px;
}

.reading-item .small-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--forest);
  background: rgba(255,253,248,.9);
  text-decoration: none;
  font-weight: 900;
  font-size: .9rem;
}

.reading-item .small-book-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(34,54,46,.08);
}

.reading-item .small-book-link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}


/* V63 accessibility and support polish */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--forest);
  color: var(--paper);
  z-index: 120;
  box-shadow: 0 18px 28px rgba(34,54,46,.18);
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid rgba(36, 91, 112, .65);
  outline-offset: 3px;
  border-radius: 10px;
}

.accessibility-trigger {
  position: fixed;
  top: 96px;
  right: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, .96);
  color: var(--forest);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(34,54,46,.12);
  cursor: pointer;
}
.accessibility-trigger:hover {
  transform: translateY(-1px);
}
.accessibility-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.accessibility-panel {
  position: fixed;
  top: 152px;
  right: 18px;
  width: min(360px, calc(100vw - 24px));
  z-index: 96;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 28px 56px rgba(34,54,46,.18);
  overflow: hidden;
}
.accessibility-panel[hidden] {
  display: none;
}
.accessibility-panel .panel-head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
}
.accessibility-panel .panel-head h2 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}
.accessibility-panel .panel-head p {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
}
.accessibility-panel .panel-body {
  padding: 14px 18px 18px;
  display: grid;
  gap: 12px;
}
.accessibility-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(200, 213, 193, .18);
}
.accessibility-option strong {
  display: block;
  color: var(--forest);
  font-size: .97rem;
}
.accessibility-option span {
  display: block;
  font-size: .86rem;
  color: var(--muted);
}

.accessibility-switch {
  position: relative;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: rgba(34,54,46,.18);
  cursor: pointer;
}
.accessibility-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,.14);
  transition: transform .2s ease;
}
.accessibility-switch[aria-checked="true"] {
  background: var(--forest);
}
.accessibility-switch[aria-checked="true"]::after {
  transform: translateX(22px);
}

.accessibility-panel .panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.accessibility-panel .mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.92);
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}
.accessibility-status {
  font-size: .84rem;
  color: var(--muted);
  margin: 2px 0 0;
}

body.accessibility-large-text {
  font-size: 1.11rem;
}
body.accessibility-large-text p,
body.accessibility-large-text li,
body.accessibility-large-text a,
body.accessibility-large-text .lead,
body.accessibility-large-text .hero-subtitle {
  font-size: 1.05em;
}
body.accessibility-large-text h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
}
body.accessibility-large-text h2 {
  font-size: clamp(1.95rem, 3.2vw, 2.6rem);
}
body.accessibility-readable-font,
body.accessibility-readable-font * {
  font-family: Arial, Helvetica, Verdana, system-ui, sans-serif !important;
}
body.accessibility-readable-font h1,
body.accessibility-readable-font h2,
body.accessibility-readable-font h3 {
  letter-spacing: 0;
}
body.accessibility-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: .18em;
}
body.accessibility-high-visibility {
  --ivory: #fffefa;
  --paper: #ffffff;
  --linen: #f2ebdd;
  --sage: #d9e3d1;
  --sage-deep: #47634c;
  --forest: #13231d;
  --forest-soft: #1d322b;
  --teal: #0d4960;
  --clay: #9b6047;
  --ink: #111714;
  --muted: #36423d;
  --line: rgba(17, 23, 20, .28);
}
body.accessibility-soft-colours {
  --ivory: #f7f4ee;
  --paper: #fbf8f2;
  --linen: #eee6dc;
  --sage: #d3dbce;
  --sage-deep: #758273;
  --forest: #30453b;
  --forest-soft: #41584d;
  --teal: #5d7681;
  --clay: #b78d7b;
  --ink: #29322e;
  --muted: #606b67;
  --line: rgba(48, 69, 59, .12);
  background-image: none;
}
body.accessibility-soft-colours::before {
  opacity: .35;
}
body.accessibility-reduce-motion *,
body.accessibility-reduce-motion *::before,
body.accessibility-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
body.accessibility-reduce-motion .reveal,
body.accessibility-reduce-motion .reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.contact-method.has-icon h3,
.emergency-item.has-icon h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.visual-icon-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(200, 213, 193, .34);
  color: var(--forest);
  box-shadow: inset 0 0 0 1px rgba(34,54,46,.08);
}
.visual-icon-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.emergency-grid.compact {
  align-items: stretch;
}
.emergency-item {
  position: relative;
}
.emergency-item .visual-icon-badge {
  margin-bottom: 10px;
}
.emergency-item .button {
  width: 100%;
  justify-content: center;
}
.emergency-item p strong {
  font-size: 1.28rem;
  color: var(--forest);
}
.support-caption {
  margin-top: 8px;
  font-size: .9rem;
  color: var(--muted);
}
.accessibility-note-card {
  border-left: 4px solid rgba(36, 91, 112, .25);
}
.accessibility-feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 18px;
}
.accessibility-feature {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.74);
}
.accessibility-feature h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.accessibility-feature p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .accessibility-trigger {
    top: auto;
    bottom: 16px;
    right: 16px;
  }
  .accessibility-panel {
    top: auto;
    right: 12px;
    bottom: 76px;
    width: min(380px, calc(100vw - 24px));
  }
}


/* V64 Autism, ADHD and final sweep. Design retained. */


/* V65 accessibility panel refinement. Main Terapija.care design retained. */
.accessibility-trigger {
  top: auto;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  max-width: calc(100vw - 36px);
  min-height: 46px;
}

.accessibility-panel {
  top: auto;
  right: 18px;
  bottom: 82px;
  width: min(420px, calc(100vw - 36px));
  max-height: min(75vh, 640px);
  z-index: 111;
  display: flex;
  flex-direction: column;
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel .panel-head {
  flex: 0 0 auto;
  display: grid;
  gap: 10px;
  padding: 18px 18px 14px;
}

.accessibility-panel .panel-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.accessibility-panel .panel-head h2 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.accessibility-panel .panel-head p {
  line-height: 1.45;
}

.accessibility-panel .panel-close-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,248,.92);
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
  flex: 0 0 auto;
}

.accessibility-panel .panel-body {
  overflow-y: auto;
  padding: 14px 18px 18px;
  scrollbar-width: thin;
}

.accessibility-group {
  display: grid;
  gap: 10px;
  padding: 0 0 14px;
}

.accessibility-group + .accessibility-group {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.accessibility-group-title {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
  font-size: .83rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.accessibility-option {
  gap: 14px;
  padding: 11px 12px;
}

.accessibility-option strong {
  font-size: .95rem;
}

.accessibility-option span {
  font-size: .84rem;
  line-height: 1.35;
}

.accessibility-panel .panel-actions {
  position: sticky;
  bottom: -18px;
  margin: 2px -18px -18px;
  padding: 12px 18px 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(255,253,248,.92), rgba(255,253,248,1));
}

.accessibility-panel .mini-button {
  min-height: 44px;
}

.accessibility-statement-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(200, 213, 193, .22);
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

body.accessibility-text-spacing p,
body.accessibility-text-spacing li,
body.accessibility-text-spacing a,
body.accessibility-text-spacing span,
body.accessibility-text-spacing .lead,
body.accessibility-text-spacing .hero-subtitle {
  line-height: 1.9;
  letter-spacing: .035em;
  word-spacing: .12em;
}

body.accessibility-text-spacing p + p,
body.accessibility-text-spacing .reading-item,
body.accessibility-text-spacing .info-card,
body.accessibility-text-spacing .contact-method,
body.accessibility-text-spacing .accessibility-feature {
  margin-top: .35rem;
}

body.accessibility-narrow-reading .reflection-article,
body.accessibility-narrow-reading .section-card p,
body.accessibility-narrow-reading .section-card li,
body.accessibility-narrow-reading .reading-category,
body.accessibility-narrow-reading .lead {
  max-width: 68ch;
}

body.accessibility-narrow-reading .section-card {
  max-width: 900px;
}

body.accessibility-strong-focus :focus-visible {
  outline: 4px solid #0d4960;
  outline-offset: 5px;
  box-shadow: 0 0 0 7px rgba(13,73,96,.16);
}

body.accessibility-dark-view {
  --ivory: #111a16;
  --paper: #18241f;
  --linen: #24342d;
  --sage: #4c6758;
  --sage-deep: #b7ccb7;
  --forest: #f4efe5;
  --forest-soft: #e9e1d3;
  --teal: #b6d8e4;
  --clay: #e3b69f;
  --ink: #f5f0e8;
  --muted: #d3d0c8;
  --line: rgba(245,240,232,.22);
  background:
    radial-gradient(circle at 10% 5%, rgba(76,103,88,.24), transparent 32rem),
    radial-gradient(circle at 90% 15%, rgba(227,182,159,.10), transparent 27rem),
    #111a16;
}

body.accessibility-dark-view .topline,
body.accessibility-dark-view .nav-links .nav-book,
body.accessibility-dark-view .button.primary {
  background: #f4efe5;
  color: #13231d;
}

body.accessibility-dark-view .site-header,
body.accessibility-dark-view .nav-links,
body.accessibility-dark-view .section-card,
body.accessibility-dark-view .accessibility-panel,
body.accessibility-dark-view .accessibility-trigger,
body.accessibility-dark-view .contact-feature-card,
body.accessibility-dark-view .reading-item,
body.accessibility-dark-view .accessibility-option,
body.accessibility-dark-view .accessibility-feature {
  background-color: rgba(24,36,31,.96);
}

body.accessibility-dark-view .eyebrow,
body.accessibility-dark-view .section-kicker,
body.accessibility-dark-view .visual-icon-badge {
  background: rgba(76,103,88,.55);
  color: #f5f0e8;
}

body.accessibility-dark-view .button.secondary,
body.accessibility-dark-view .mini-button,
body.accessibility-dark-view .small-book-link,
body.accessibility-dark-view .accessibility-statement-link {
  background: rgba(244,239,229,.08);
  color: #f5f0e8;
  border-color: rgba(245,240,232,.24);
}

body.accessibility-dark-view .panel-actions {
  background: linear-gradient(to bottom, rgba(24,36,31,.88), rgba(24,36,31,1));
}

.accessibility-statement-block {
  scroll-margin-top: 120px;
}

@media (max-width: 860px) {
  .accessibility-trigger {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }
  .accessibility-panel {
    right: 12px;
    left: 12px;
    bottom: 74px;
    width: auto;
    max-height: 78vh;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .accessibility-trigger span {
    display: none;
  }
  .accessibility-trigger {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }
  .accessibility-panel {
    max-height: 80vh;
  }
  .accessibility-panel .panel-head,
  .accessibility-panel .panel-body {
    padding-left: 15px;
    padding-right: 15px;
  }
  .accessibility-panel .panel-actions {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* V66 accessibility default motion fix. Standard movement remains on unless Calm motion is selected. */


/* V68 signatures, dark-view logo fix and payment visuals. Main design retained. */
.reflection-signature {
  margin: 30px 0 20px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(200, 213, 193, .20);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--forest);
}

.reflection-signature span {
  color: var(--muted);
  font-size: .94rem;
}

.reflection-signature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

body.accessibility-dark-view .brand img,
body.accessibility-dark-view .footer-brand img,
body.accessibility-dark-view .about-logo-top img,
body.accessibility-dark-view .about-hero-logo img,
body.accessibility-dark-view .about-clean-logo img,
body.accessibility-dark-view .logo-soft-panel img,
body.accessibility-dark-view .logo-box img {
  background: #fffdf8 !important;
  border-radius: 18px !important;
  padding: 7px 10px !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22) !important;
  filter: none !important;
}

body.accessibility-dark-view .brand img {
  padding: 5px 9px !important;
}

body.accessibility-dark-view .footer-brand img {
  max-width: 175px;
}

.payment-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 18px;
}

.payment-option {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .72);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(34, 54, 46, .07);
}

.payment-option h3 {
  margin: 12px 0 8px;
}

.payment-option p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-visual {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: rgba(200, 213, 193, .34);
  box-shadow: inset 0 0 0 1px rgba(34, 54, 46, .08);
}

.payment-visual svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.revolut-visual {
  background: linear-gradient(145deg, rgba(36, 91, 112, .18), rgba(200, 213, 193, .46));
}

.revolut-visual span {
  font-weight: 950;
  font-size: 2rem;
  letter-spacing: -.06em;
  color: var(--teal);
}

.cash-visual {
  background: linear-gradient(145deg, rgba(184, 121, 97, .18), rgba(200, 213, 193, .36));
}

.cancellation-note-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(184, 121, 97, .20);
  background: rgba(184, 121, 97, .08);
}

.cancellation-note-card p {
  margin: 0;
}

body.accessibility-dark-view .payment-option,
body.accessibility-dark-view .cancellation-note-card {
  background: rgba(24, 36, 31, .96);
}

body.accessibility-dark-view .payment-visual {
  background: rgba(244, 239, 229, .10);
  color: #f5f0e8;
}

body.accessibility-dark-view .revolut-visual span {
  color: #b6d8e4;
}

@media (max-width: 760px) {
  .payment-visual-grid {
    grid-template-columns: 1fr;
  }
}


/* V69 reflection spacing, share buttons and Gestalt Prayer reflection. */
.reflection-actions {
  margin-top: 28px;
  margin-bottom: 28px;
}

.reflection-actions + .share-preview-note {
  margin-top: 22px;
}

.share-reflection-button {
  cursor: pointer;
  font-family: inherit;
}

.share-feedback {
  flex-basis: 100%;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.gestalt-prayer-card {
  border-left: 4px solid rgba(104, 127, 103, .30);
}

body.accessibility-dark-view .gestalt-prayer-card {
  border-left-color: rgba(245, 240, 232, .34);
}


/* V70 Gestalt source links. */
.source-link-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}

.source-link-item {
  display: block;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .72);
  color: var(--forest);
  font-weight: 850;
}

.source-link-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: .94rem;
}

body.accessibility-dark-view .source-link-item {
  background: rgba(24, 36, 31, .96);
}


/* V71 listen-to-page accessibility support. */
.reader-controls {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(200, 213, 193, .18);
}

.reader-controls p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.35;
}

.reader-button-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reader-button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.94);
  color: var(--forest);
  font-weight: 850;
  cursor: pointer;
}

.reader-button:hover,
.reader-button:focus-visible {
  transform: translateY(-1px);
}

body.accessibility-dark-view .reader-controls {
  background: rgba(244, 239, 229, .08);
}

body.accessibility-dark-view .reader-button {
  background: rgba(244, 239, 229, .10);
  color: #f5f0e8;
  border-color: rgba(245,240,232,.24);
}






/* V76 soft scroll animation, privacy and visual refinements. */
html {
  scroll-behavior: smooth;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .75s ease,
    transform .75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card,
.contact-method,
.section-card,
.button,
.source-link-item,
.payment-option {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background-color .28s ease;
}

.info-card:hover,
.contact-method:hover,
.payment-option:hover,
.source-link-item:hover {
  transform: translateY(-2px);
}

.button:hover {
  transform: translateY(-1px);
}

.tisp-stamp {
  width: 78px !important;
  max-width: 78px !important;
  height: auto !important;
  margin-top: 10px !important;
  opacity: .86;
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 8px;
}

.privacy-list li {
  padding-left: 2px;
}

.privacy-source-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.privacy-source-grid a {
  display: block;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .72);
  color: var(--forest);
  font-weight: 850;
}

.privacy-source-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: .94rem;
}

body.accessibility-dark-view .privacy-source-grid a {
  background: rgba(24, 36, 31, .96);
}

body.accessibility-reduce-motion .reveal-on-scroll,
body.accessibility-reduce-motion .reveal-on-scroll.is-visible,
body.accessibility-reduce-motion .info-card,
body.accessibility-reduce-motion .contact-method,
body.accessibility-reduce-motion .section-card,
body.accessibility-reduce-motion .button,
body.accessibility-reduce-motion .source-link-item,
body.accessibility-reduce-motion .payment-option,
body.accessibility-reduce-motion .info-card:hover,
body.accessibility-reduce-motion .contact-method:hover,
body.accessibility-reduce-motion .button:hover,
body.accessibility-reduce-motion .source-link-item:hover,
body.accessibility-reduce-motion .payment-option:hover {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible,
  .info-card,
  .contact-method,
  .section-card,
  .button,
  .source-link-item,
  .payment-option,
  .info-card:hover,
  .contact-method:hover,
  .button:hover,
  .source-link-item:hover,
  .payment-option:hover {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}


/* V77 Trauma Informed Somatic Practitioner stamp balance. */
.tisp-stamp {
  width: 96px !important;
  max-width: 96px !important;
  height: auto !important;
  margin-top: 12px !important;
  opacity: .9;
}
