:root {
  --primary: #3a2028;
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #3e3530;
  background: #f9f3ec;
  font-size: 16px;
  line-height: 1.65;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(235, 226, 216, 0.68), transparent 34%),
    radial-gradient(circle at bottom right, rgba(223, 200, 180, 0.26), transparent 26%),
    #f9f3ec;
}

@keyframes page-content-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-reveal {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-title-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    letter-spacing: 0.04em;
  }
  to {
  @media (max-width: 1100px) and (min-width: 961px) {
    .blog-page .blog-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 960px) {
    .blog-page .blog-card:first-child {
      grid-column: auto;
      min-height: 330px;
    }
  }
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0;
  }
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

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

.home-service-grid article.reveal-on-scroll:nth-of-type(2),
.age-group-card.reveal-on-scroll:nth-child(2),
.faq-list details.reveal-on-scroll:nth-child(2),
.planning-steps li.reveal-on-scroll:nth-child(2) {
  transition-delay: 80ms;
}

.home-service-grid article.reveal-on-scroll:nth-of-type(3),
.age-group-card.reveal-on-scroll:nth-child(3),
.faq-list details.reveal-on-scroll:nth-child(3),
.planning-steps li.reveal-on-scroll:nth-child(3) {
  transition-delay: 160ms;
}

.home-service-grid article.reveal-on-scroll:nth-of-type(4),
.age-group-card.reveal-on-scroll:nth-child(4),
.faq-list details.reveal-on-scroll:nth-child(4),
.planning-steps li.reveal-on-scroll:nth-child(4) {
  transition-delay: 240ms;
}

.home-service-grid article.reveal-on-scroll:nth-of-type(5),
.age-group-card.reveal-on-scroll:nth-child(5),
.faq-list details.reveal-on-scroll:nth-child(5),
.planning-steps li.reveal-on-scroll:nth-child(5) {
  transition-delay: 320ms;
}

.home-service-grid article.reveal-on-scroll:nth-of-type(6),
.age-group-card.reveal-on-scroll:nth-child(6),
.faq-list details.reveal-on-scroll:nth-child(6) {
  transition-delay: 400ms;
}

.hero-section.is-visible .hero-content h1 {
  animation: hero-title-reveal 850ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section.is-visible .hero-content > .eyebrow {
  animation: hero-copy-reveal 650ms ease-out both;
}

.hero-section.is-visible .hero-content > p:not(.eyebrow) {
  animation: hero-copy-reveal 700ms 320ms ease-out both;
}

.hero-section.is-visible .hero-content > .hero-actions {
  animation: hero-copy-reveal 700ms 470ms ease-out both;
}

main img {
  animation: image-reveal 900ms 120ms ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  main img,
  .reveal-on-scroll {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-section.is-visible .hero-content h1 {
    animation: none;
  }

  .hero-section.is-visible .hero-content > .eyebrow,
  .hero-section.is-visible .hero-content > p:not(.eyebrow),
  .hero-section.is-visible .hero-content > .hero-actions {
    animation: none;
  }
}

a {
  color: inherit;
}

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 4px 0 42px;
}

.brand {
  display: inline-block;
  font-family: "Allura", "Great Vibes", "Brush Script MT", cursive;
  font-size: clamp(2rem, 2.75vw, 3rem);
  line-height: 1;
  color: #705d66;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
}

.contact-page .site-header .brand {
  font-family: "Allura", "Great Vibes", "Brush Script MT", cursive;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  background: #198754;
  color: #fff;
  box-shadow: 0 10px 24px rgba(25, 135, 84, 0.28);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #146c43;
  color: #fff;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 60;
  width: calc(100vw - 24px);
  max-width: 720px;
  padding: 20px 22px;
  background: #fffaf6;
  border: 1px solid rgba(51, 40, 36, 0.16);
  border-radius: 14px;
  box-shadow: 0 22px 64px rgba(47, 33, 25, 0.2);
  box-sizing: border-box;
}

.cookie-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  margin: 0;
  color: #52443d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-cookie-primary {
  background: var(--primary);
  color: #fff;
}

.btn-cookie-primary:hover {
  background: #52222f;
}

.btn-cookie-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(58, 32, 40, 0.28);
}

.btn-cookie-ghost:hover {
  background: rgba(58, 32, 40, 0.08);
}

.cookie-prefs {
  display: grid;
  gap: 13px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(51, 40, 36, 0.12);
}

.cookie-prefs[hidden] {
  display: none;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-row span {
  display: grid;
  gap: 2px;
}

.cookie-row strong {
  color: #3a2028;
  font-size: 0.92rem;
  font-weight: 600;
}

.cookie-row small {
  color: #776a62;
  font-size: 0.78rem;
}

.cookie-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.cookie-prefs-link {
  display: inline-block;
  margin-top: 20px;
  padding: 0;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cookie-prefs-link:hover {
  color: #fff;
}

@media (max-width: 860px) {
  body.cookie-open .whatsapp-float { display: none; }
}

@media (max-width: 640px) {
  .cookie-banner { bottom: 12px; padding: 16px; }
  .cookie-main .cookie-actions { flex-direction: column; align-items: stretch; }
  .cookie-main .cookie-actions .btn-cookie { width: 100%; }
}

.main-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  font-size: 0.96rem;
  font-weight: 400;
}

.main-nav {
  justify-content: center;
}

.main-nav a,
.footer-nav a {
  color: #52443d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #1d1613;
}

.header-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.header-social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
}

.header-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 58px;
  padding: 44px 0 96px;
}

.hero-content {
  min-width: 0;
  max-width: 650px;
}

.home-hero .hero-content {
  margin: 0 auto;
  text-align: center;
}

.home-hero .hero-content p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #836f74;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #2f2420;
}

.brand span {
  display: block;
  margin-top: 6px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #3a2028;
}

.notice-bar {
  padding: 9px 20px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.nav-contact {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(74, 21, 37, 0.45);
}

.new-hero {
  min-height: 690px;
  padding-top: 54px;
}

.new-hero .hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.2vw, 6.2rem);
  line-height: 0.92;
}

.hero-lead {
  max-width: 680px !important;
  font-size: 1.12rem !important;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid rgba(47, 36, 32, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.faq-list summary {
  cursor: pointer;
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.35;
}

.faq-list details p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #5f4a45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.72;
}

.portrait-note {
  width: min(86%, 390px);
  margin: 0;
  padding: 18px 22px;
  position: absolute;
  right: -12px;
  bottom: 0;
  background: rgba(255, 250, 246, 0.94);
  border: 1px solid rgba(51, 40, 36, 0.1);
  box-shadow: 0 18px 50px rgba(47, 33, 25, 0.09);
}

.portrait-note strong,
.portrait-note span { display: block; }
.portrait-note span { margin-top: 3px; color: #776a62; font-size: 0.88rem; }

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: #776a62;
  font-size: 0.83rem;
}

.trust-line li::before { content: "·"; margin-right: 9px; color: var(--primary); }

.section-block {
  padding: 92px 0;
  border-top: 1px solid rgba(51, 40, 36, 0.1);
}

.section-block h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  line-height: 0.98;
  font-weight: 400;
}

.intro-split,
.authority-section,
.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.section-copy { color: #66584f; font-size: 1.05rem; }
.section-copy p { margin: 0 0 26px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading h2 { max-width: 760px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(51, 40, 36, 0.12);
  border-left: 1px solid rgba(51, 40, 36, 0.12);
}

.feature-card {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid rgba(51, 40, 36, 0.12);
  border-bottom: 1px solid rgba(51, 40, 36, 0.12);
  background: rgba(255, 255, 255, 0.34);
}

.feature-card > span { color: #9b8589; font-size: 0.76rem; letter-spacing: 0.16em; }
.feature-card h3 { margin: 46px 0 13px; font-size: 1.75rem; font-weight: 400; }
.feature-card p { margin: 0; color: #66584f; }

.process-section { background: rgba(255, 255, 255, 0.31); padding-left: 42px; padding-right: 42px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(51, 40, 36, 0.12); }
.process-list li { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid rgba(51, 40, 36, 0.12); }
.process-list li > span { color: #9b8589; font-size: 0.8rem; }
.process-list h3 { margin: 0 0 5px; font-size: 1.35rem; font-weight: 400; }
.process-list p { margin: 0; color: #66584f; }

.local-copy p:not(.eyebrow) { max-width: 560px; color: #66584f; }
.local-copy .btn { margin-top: 16px; }
.district-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.district-grid a { min-height: 142px; padding: 24px; display: flex; flex-direction: column; justify-content: end; background: #eee3d8; color: var(--primary); text-decoration: none; transition: transform 0.2s ease, background 0.2s ease; }
.district-grid a:nth-child(2), .district-grid a:nth-child(3) { background: #e3d6d3; }
.district-grid a:hover { transform: translateY(-3px); background: #dfcdbf; }
.district-grid strong { font-family: "Newsreader", serif; font-size: 1.6rem; font-weight: 500; }
.district-grid span { color: #6c5e58; font-size: 0.84rem; }

.closing-cta { margin: 30px 0 70px; padding: 80px 8%; text-align: center; background: #e8dcd3; }
.closing-cta h2 { font-size: clamp(1.2rem, 2vw, 2.35rem); }
.closing-cta p:not(.eyebrow) { margin: 20px auto 30px; color: #66584f; }

.local-page-hero { display: grid; grid-template-columns: 1fr 0.7fr; gap: 70px; align-items: end; }
.local-page-hero h1 { font-size: clamp(3rem, 5vw, 5.7rem); }
.game-article-title { font-size: calc((clamp(3rem, 5vw, 5.7rem) - 10pt) / 1.4) !important; }
.game-article-quote-title { font-size: 1.85rem !important; line-height: 1.15; }
.early-puberty-title {
  color: #4a1525 !important;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem) !important;
  font-weight: 700 !important;
}
.local-page-hero .hero-summary { color: #66584f; font-size: 1.08rem; }
.breadcrumb { margin: 0 0 18px; color: #836f74; font-size: 0.8rem; }
.breadcrumb a { text-decoration: none; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; padding: 70px 0; }
.article-copy h2 { margin: 45px 0 15px; font-size: 2.25rem; font-weight: 400; }
.article-copy h2:first-child { margin-top: 0; }
.article-copy p, .article-copy li { color: #5e5148; }
.article-copy ul { padding-left: 20px; }

main > article .page-hero.local-page-hero {
  max-width: 980px;
  padding: 72px 0 62px;
  border-bottom: 1px solid rgba(58, 32, 40, 0.12);
}

main > article .local-page-hero h1 {
  max-width: 780px;
  color: #4a1525;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

main > article .local-page-hero .hero-summary {
  position: relative;
  max-width: 470px;
  align-self: end;
  margin: 0;
  padding: 24px 26px 22px 34px;
  background: rgba(122, 36, 56, 0.05);
  border: 1px solid rgba(74, 21, 37, 0.14);
  border-left: 4px solid #7a2438;
  border-radius: 12px;
  color: #614b46;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
}

main > article .local-page-hero .hero-summary::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(74, 21, 37, 0.28);
}

main > article .content-layout {
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: space-between;
  gap: 68px;
  padding: 62px 0 82px;
}

main > article .article-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.85;
}

main > article .article-copy h2 {
  margin: 52px 0 16px;
  color: #4a1525;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.25;
  font-weight: 600;
}

main > article .article-copy h3 {
  margin: 40px 0 14px;
  color: #4a1525;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  font-weight: 600;
}

main > article .article-copy h2:first-child {
  margin-top: 0;
}

main > article .article-copy p,
main > article .article-copy li {
  color: #5f514b;
}

main > article .article-copy p {
  margin: 0 0 24px;
}

main > article .article-copy li {
  margin-bottom: 10px;
}

/* Blog yazılarında bölümleri ayıran border box'lar */
main > article .article-copy .post-block {
  margin: 22px 0;
  padding: 26px 32px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(74, 21, 37, 0.14);
  border-left: 3px solid #7a2438;
  border-radius: 14px;
  box-shadow: 0 18px 44px -36px rgba(74, 21, 37, 0.42);
}

main > article .article-copy .post-block > h2,
main > article .article-copy .post-block > h3 {
  margin-top: 0;
}

main > article .article-copy .post-block > *:last-child {
  margin-bottom: 0;
}

main > article .article-copy .article-meta {
  margin-bottom: 34px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(58, 32, 40, 0.14);
  color: #9b8589;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

main > article .local-aside {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(58, 32, 40, 0.12);
  box-shadow: 0 18px 50px rgba(47, 33, 25, 0.07);
}

main > article .local-aside h2 {
  color: #4a1525;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

main > article .source-box,
main > article .faq-section {
  margin-top: 46px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(58, 32, 40, 0.12);
}

main > article .source-box h2,
main > article .faq-section h2 {
  margin-top: 0;
}
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 8px 0 44px; }
.legal-wrap .article-copy h2 { margin: 34px 0 12px; font-size: 1.5rem; }
.legal-wrap .article-copy h2:first-child { margin-top: 0; }
.legal-updated { margin: 0 0 26px; color: #836f74; font-size: 0.85rem; }
.legal-contact { margin: 0 0 32px; padding: 22px 26px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(51, 40, 36, 0.1); }
.legal-contact p { margin: 0 0 6px; color: #5e5148; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact strong { color: var(--primary); }
.local-aside { align-self: start; padding: 28px; background: rgba(255, 255, 255, 0.64); border: 1px solid rgba(51, 40, 36, 0.1); }
.local-aside h2 { margin: 0 0 13px; font-size: 1.6rem; }
.local-aside p { color: #66584f; }
.local-aside .btn { width: 100%; margin-top: 10px; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.nearby-links a { padding: 7px 11px; border: 1px solid rgba(51, 40, 36, 0.16); text-decoration: none; font-size: 0.82rem; }

.hero-content h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.15rem, 4.6vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 400;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.page-hero .blog-page-title {
  font-size: clamp(1.6rem, 2.3vw, 2.9rem);
}

.hero-content p {
  margin: 32px 0 34px;
  max-width: 42rem;
  color: #66584f;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 35px rgba(74, 21, 37, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: #332824;
  border: 1px solid rgba(51, 40, 36, 0.18);
}

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

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  background: #4a1525;
  border-color: #4a1525;
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(74, 21, 37, 0.6);
}

.hero-visual {
  min-width: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  display: block;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 50px 120px rgba(47, 33, 25, 0.16);
  overflow: hidden;
}

.intro-band {
  padding: 72px 0 42px;
  border-top: 1px solid rgba(51, 40, 36, 0.1);
}

.intro-band p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 0 22px;
  color: #66584f;
  font-size: 1.03rem;
}

.home-service-grid {
  margin: 0 0 34px;
  padding: 34px;
  border: 1px solid rgba(58, 32, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 246, 239, 0.72);
}

.home-service-heading {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: #4a1525;
}

.home-service-grid article h2 {
  text-align: center;
}

.home-service-grid article,
.age-group-card {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-service-grid article:hover,
.home-service-grid article:focus-within,
.age-group-card:hover,
.age-group-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(58, 32, 40, 0.24);
  background-color: rgba(255, 250, 246, 0.86);
  box-shadow: 0 18px 42px rgba(47, 33, 25, 0.12);
}

.home-service-grid article:active,
.age-group-card:active {
  transform: translateY(-1px) scale(0.985);
}

.age-groups > .eyebrow,
.faq-section > .eyebrow,
.home-planning > .eyebrow {
  color: #4a1525;
}

.home-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(58, 32, 40, 0.22);
  background: rgba(58, 32, 40, 0.05);
  color: var(--primary);
}

.home-service-icon svg {
  width: 16px;
  height: 16px;
}

.age-groups {
  margin-bottom: 34px;
  padding: 44px 34px 64px;
  border: 1px solid rgba(58, 32, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 246, 239, 0.72);
}

.faq-section,
.home-planning {
  margin-bottom: 34px;
  padding-left: 34px;
  padding-right: 34px;
  border: 1px solid rgba(58, 32, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 246, 239, 0.72);
}

.age-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.age-group-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(51, 40, 36, 0.1);
  box-shadow: 0 22px 70px rgba(47, 33, 25, 0.06);
  text-align: center;
}

.age-group-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: center;
  margin: 0 0 15px;
  padding: 9px 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.2;
  color: #4a1525;
  background: rgba(58, 32, 40, 0.06);
  border: 1px solid rgba(58, 32, 40, 0.16);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.age-group-card:hover .age-group-title,
.age-group-card:focus-within .age-group-title {
  background: #4a1525;
  border-color: #4a1525;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(74, 21, 37, 0.6);
}

.age-group-card:hover .age-group-title .age-group-icon,
.age-group-card:focus-within .age-group-title .age-group-icon {
  color: #fff;
}

.age-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.age-group-icon svg {
  width: 13.3px;
  height: 13.3px;
}

.age-groups .age-group-card .age-range {
  margin: 0 0 15px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9a8b81;
}

.age-groups .age-group-card .age-desc {
  margin: 0;
  color: #66584f;
  font-size: 1.02rem;
  line-height: 1.62;
}

.home-planning {
  padding-bottom: 68px;
}

.home-planning .map-panel {
  min-height: auto;
  max-width: 720px;
}

.services-bg-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(41, 15, 24, 0.86) 0%, rgba(64, 28, 39, 0.7) 45%, rgba(64, 28, 39, 0.48) 100%),
    url("therapy-room-burgundy.png") center center / cover no-repeat fixed;
  color: #fff;
}

.services-bg-page .page-shell {
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.services-bg-page .site-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px 42px;
}

.services-bg-page .brand,
.services-bg-page .brand span,
.services-bg-page .main-nav a,
.services-bg-page .header-social a {
  color: #fff;
}

.services-bg-page .main-nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
}

.services-immersive {
  max-width: 1320px;
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 24px 24px 96px;
}

.services-copy {
  width: min(100%, 650px);
  margin-left: 0;
  color: #fff;
}

.services-copy h1 {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(2.05rem, 2.6vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
}

.services-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  line-height: 1.72;
}

.services-copy .topics-list {
  display: block;
  margin: 4px 0 28px;
  padding-left: 23px;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.66;
  list-style: disc;
}

.services-copy .topics-list li {
  padding-left: 4px;
}

.services-copy .topics-list li::marker {
  color: rgba(255, 255, 255, 0.94);
}

.services-closing {
  max-width: 760px;
}

.services-footer-grid {
  grid-template-columns: minmax(0, 520px);
  gap: 0;
  padding-top: 0;
}

.services-bg-page .site-footer {
  margin-top: 0;
}

.contact-bg-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(41, 15, 24, 0.84) 0%, rgba(64, 28, 39, 0.68) 45%, rgba(64, 28, 39, 0.48) 100%),
    url("therapy-room-new.png") center center / cover no-repeat fixed;
}

.contact-bg-page .page-shell {
  background: transparent;
}

.contact-bg-page .site-header,
.contact-bg-page .page-main {
  color: #fff;
}

.contact-bg-page .brand,
.contact-bg-page .brand span,
.contact-bg-page .main-nav a,
.contact-bg-page .header-social a,
.contact-bg-page .page-hero h1,
.contact-bg-page .hero-summary,
.contact-bg-page .eyebrow {
  color: #fff;
}

.contact-bg-page .page-hero h1 {
  font-size: clamp(2rem, 2.8vw, 3.35rem);
}

.contact-bg-page .page-main {
  display: flex;
  flex-direction: column;
}

.contact-bg-page .contact-workspace {
  order: 1;
}

.contact-bg-page .contact-info-grid {
  order: 2;
}

.contact-page-title {
  width: min(100%, 900px);
  margin: 0 auto 24px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.12;
}

.contact-bg-page .main-nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
}

.services-bg-page .footer-inner {
  padding-top: 34px;
  padding-bottom: 30px;
}

.services-bg-page .footer-grid h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.services-bg-page .footer-grid p {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.services-bg-page .copyright {
  margin-top: 24px;
}

.intro-band h2 {
  max-width: 800px;
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 3vw, 3.55rem);
  line-height: 1;
}

#age-groups-title,
#faq-title {
  font-size: clamp(1.5rem, 2.15vw, 2.57rem);
}

#age-groups-title,
#faq-title {
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}

.text-link {
  display: inline-flex;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-main {
  padding-bottom: 24px;
}

.page-hero {
  padding: 70px 0 76px;
  border-bottom: 1px solid rgba(51, 40, 36, 0.1);
}

.slim-page-hero {
  max-width: 760px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.55fr);
  gap: 70px;
  padding: 74px 0 0;
}

.about-aside {
  position: sticky;
  top: 24px;
  align-self: start;
}

.about-aside h2 {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.725rem);
  line-height: 1;
}

.about-page-hero h1 {
  font-size: clamp(1.575rem, 2.3vw, 2.925rem);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding: 64px 0 0;
}

.about-profile-card {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-profile-card img {
  display: block;
  width: 100%;
  height: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(47, 33, 25, 0.16);
}

.about-nameplate {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-nameplate span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7a6d;
}

.about-nameplate strong {
  font-size: 1.15rem;
  color: #3e3530;
}

.about-profile-card .btn {
  align-self: start;
}

.about-profile-copy h1 {
  margin-top: 0;
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.12;
}

.about-profile-copy,
.about-education,
.about-publication {
  padding: 34px;
  border: 1px solid rgba(58, 32, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 246, 239, 0.72);
}

.about-profile-copy p,
.about-education p,
.about-education li,
.about-publication li,
.about-publication p {
  color: #5f4a45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.78;
}

.about-profile-copy p,
.about-education p,
.about-publication p {
  margin: 0 0 20px;
}

.about-profile-copy strong,
.about-education strong {
  color: #4a1525;
  font-weight: 600;
}

.about-education h2,
.about-publication h2 {
  margin: 0 0 18px;
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.about-education ul,
.about-publication ul {
  margin: 0 0 26px;
  padding-left: 20px;
}

.about-education li,
.about-publication li {
  margin-bottom: 10px;
}

.about-education {
  margin-top: 40px;
}

.about-education-list {
  display: grid;
  gap: 24px;
}

.education-box {
  padding: 24px;
  border: 1px solid rgba(58, 32, 40, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.72);
}

.education-box h2 {
  margin-top: 0;
}

.education-box ul {
  margin-bottom: 0;
}

.about-publication {
  margin-top: 34px;
}

@media (max-width: 860px) {
  .about-profile {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 40px;
  }

  .about-profile-card {
    position: static;
    max-width: 300px;
  }

  .about-profile-copy,
  .about-education,
  .about-publication {
    padding: 24px 18px;
  }
}

.long-copy {
  color: #5e5148;
  font-size: 1.03rem;
}

.long-copy p {
  margin: 0 0 22px;
}

.article-image {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 0 28px;
  border: 1px solid rgba(51, 40, 36, 0.1);
  box-shadow: 0 18px 45px rgba(47, 33, 25, 0.08);
}

.long-copy h2 {
  margin: 46px 0 18px;
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  line-height: 1.05;
}

.cv-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-list li {
  padding-left: 18px;
  border-left: 2px solid rgba(131, 111, 116, 0.38);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-service-grid {
  padding-top: 62px;
}

.service-grid article,
.plain-panel,
.contact-card {
  padding: 30px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(51, 40, 36, 0.1);
  box-shadow: 0 22px 70px rgba(47, 33, 25, 0.06);
}

.service-grid article {
  min-height: 190px;
}

.service-grid h2,
.service-grid h3 {
  margin: 0 0 12px;
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.expert-proof {
  margin: 44px 0;
  padding: 28px;
  border-left: 3px solid rgba(131, 111, 116, 0.58);
  background: rgba(255, 255, 255, 0.5);
}

.expert-proof h2 { margin-top: 0; }

.service-grid p,
.plain-panel p,
.contact-card p {
  margin: 0;
  color: #66584f;
}

.service-grid article .text-link {
  display: inline-block;
  margin-top: 16px;
}

.article-meta {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(51, 40, 36, 0.12);
  color: #76665d;
  font-size: 0.9rem;
}

.source-box {
  margin-top: 42px;
  padding: 24px 26px;
  border: 1px solid rgba(51, 40, 36, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.source-box h2 { margin-top: 0; }
.source-box li { margin-bottom: 8px; }

.local-aside .text-link {
  display: block;
  margin: 14px 0 20px;
}

.plain-panel,
.contact-card {
  max-width: 760px;
  margin-top: 56px;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0 56px;
}

.contact-info-grid article {
  min-height: 250px;
  padding: 30px 26px;
  background: rgba(255, 250, 246, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 46px rgba(35, 15, 20, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease;
}

.contact-info-grid .contact-details {
  grid-column: 1 / -1;
}

.contact-info-grid article:hover,
.contact-info-grid article:focus-within,
.contact-info-grid article:active,
.contact-workspace > .map-panel:hover,
.contact-workspace > .map-panel:focus-within,
.contact-workspace > .map-panel:active,
.contact-workspace > .contact-form:hover,
.contact-workspace > .contact-form:focus-within,
.contact-workspace > .contact-form:active {
  transform: translateY(-3px);
}

.contact-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--primary);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-info-grid h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #4a1525;
}

.contact-details h2 {
  margin: 0 0 16px;
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-info-grid h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: rgba(74, 21, 37, 0.12);
}

.contact-info-grid p {
  margin: 0;
  color: #776a62;
}

.contact-info-grid a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.contact-info-grid .contact-details {
  grid-column: span 2;
}

.contact-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-detail-list .cd-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f2420;
  font-weight: 800;
}

.contact-detail-list .social-icon-label {
  display: inline-flex;
  width: 22px;
  height: 22px;
  letter-spacing: 0;
}

.contact-detail-list .location-icon-label {
  display: inline-flex;
  width: 22px;
  height: 22px;
  letter-spacing: 0;
}

.contact-detail-list .social-icon-label svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-detail-list .phone-icon-label svg,
.contact-detail-list .email-icon-label svg,
.contact-detail-list .location-icon-label svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-detail-list a,
.contact-detail-list .cd-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-detail-list .cd-value {
  color: #66584f;
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail-list .location-icon-label + .cd-value {
  color: var(--primary);
  font-weight: 600;
}

.contact-detail-list a:hover {
  text-decoration: underline;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 18px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.contact-workspace > .map-panel,
.contact-workspace > .contact-form,
.contact-workspace > .contact-details {
  transition: transform 180ms ease;
}

.contact-bg-page .contact-workspace > .map-panel,
.contact-bg-page .contact-workspace > .contact-form,
.contact-bg-page .contact-workspace > .contact-details {
  background: rgba(255, 250, 246, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 46px rgba(35, 15, 20, 0.16);
  backdrop-filter: blur(10px);
}

.contact-form,
.map-panel,
.contact-details {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(51, 40, 36, 0.1);
  box-shadow: 0 28px 90px rgba(47, 33, 25, 0.07);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-details {
  align-self: stretch;
  padding: 24px;
}

.contact-form .eyebrow,
.contact-details-heading {
  margin-bottom: 8px;
  color: #4a1525;
  font-size: 0.76rem;
}

.contact-bg-page .contact-details-heading {
  color: #4a1525;
}

.contact-form h2 {
  margin: -6px 0 6px;
  font-size: clamp(1.28rem, 1.7vw, 1.82rem);
  line-height: 1;
  font-weight: 400;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #2f2420;
  font-weight: 700;
  font-size: 0.82rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(51, 40, 36, 0.16);
  background: #fffaf6;
  color: #332824;
  font: inherit;
  padding: 10px 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(74, 21, 37, 0.46);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.map-panel {
  min-height: 520px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.map-copy {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.62);
  color: #332824;
}

.map-copy .eyebrow {
  color: #4a1525;
}

.map-copy h2 {
  margin: .5rem 0 0;
  color: #332824;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.12;
}
.planning-steps {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: planning-step;
}

.planning-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  counter-increment: planning-step;
}

.planning-steps li::before {
  content: counter(planning-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid #4a1525;
  border-radius: 50%;
  background: #4a1525;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
}

.planning-steps h3 {
  margin: 0 0 5px;
  color: #4a1525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.planning-steps p {
  margin: 0;
  color: #66584f;
  font-size: .96rem;
  line-height: 1.58;
}
.form-hint { color: var(--muted); font-size: .78rem; font-weight: 400; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 48px;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 280px;
  padding: 24px;
  background: rgba(25, 10, 16, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 70px rgba(20, 8, 12, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(41, 15, 24, 0.86) 0%, rgba(64, 28, 39, 0.7) 45%, rgba(64, 28, 39, 0.48) 100%),
    url("therapy-room-burgundy.png") center center / cover no-repeat fixed;
  color: #fff;
}

.blog-page .brand,
.blog-page .brand span,
.blog-page .main-nav a,
.blog-page .header-social a {
  color: #fff;
}

.blog-page .main-nav a[aria-current="page"] {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
}

.blog-page .page-hero {
  max-width: none;
  padding: 72px 0 42px;
  border-bottom: 0;
  text-align: center;
}

.blog-page .page-hero .eyebrow {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
}

.blog-page .blog-page-title {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.blog-title-box {
  display: inline-block;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.blog-page .hero-summary {
  max-width: 650px;
  margin: 22px 0 0;
  color: #66584f;
  font-size: 1rem;
  line-height: 1.75;
}

.blog-page .blog-card:first-child {
  grid-column: span 2;
  min-height: 300px;
}

.blog-page .blog-card time {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-page .blog-card h2 {
  max-width: 540px;
  color: #fff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1.12;
  font-weight: 500;
}

.blog-page .blog-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.94rem;
  line-height: 1.7;
}

.blog-page .blog-card a {
  margin-top: auto;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-page .blog-card a::after {
  content: " ->";
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.blog-page .blog-card a:hover::after,
.blog-page .blog-card a:focus-visible::after {
  transform: translateX(4px);
}

@media (max-width: 1100px) and (min-width: 961px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .blog-page .blog-card:first-child {
    grid-column: auto;
    min-height: 330px;
  }
}

.blog-card:hover,
.blog-card:focus-within,
.blog-card:active {
  transform: translateY(-3px);
  background: rgba(40, 17, 25, 0.42);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 48px rgba(20, 8, 12, 0.36);
}

.blog-card time {
  color: #836f74;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.blog-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.05;
  font-weight: 400;
}

.blog-card p {
  margin: 0;
  color: #66584f;
}

.blog-card a {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  margin-top: 24px;
  background: var(--primary);
  color: #f7eee8;
}

.footer-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 42px 24px 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  color: #fff;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  padding-top: 56px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.75rem;
}

.footer-grid p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid strong {
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 34px;
  padding-top: 30px;
}

.footer-about {
  max-width: 320px;
}

.footer-role {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-hours {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.5;
}

.copyright {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.78rem;
}

.footer-disclaimer {
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

.footer-inner > .cookie-prefs-link {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 12px auto 0;
}

.contact-footer-inner {
  text-align: center;
}

.contact-footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10pt;
  line-height: 1.6;
}

.article-footer-inner {
  text-align: center;
}

.article-footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10pt;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .hero-section,
  .about-layout,
  .service-grid,
  .age-group-grid,
  .contact-info-grid,
  .contact-workspace,
  .blog-grid,
  .footer-grid,
  .intro-split,
  .authority-section,
  .local-section,
  .local-page-hero,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid { grid-template-columns: 1fr; }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 34px 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
  }

  .services-copy {
    margin-left: 0;
  }

  .about-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .notice-bar {
    padding-left: 14px;
    padding-right: 14px;
    white-space: normal;
    line-height: 1.45;
  }

  .page-shell {
    padding: 20px 18px 56px;
  }

  .brand {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 1.8rem);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .site-header,
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .footer-nav {
    width: 100%;
    gap: 12px 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav a,
  .footer-nav a { flex: 0 0 auto; }

  .header-social {
    justify-content: flex-start;
  }

  .hero-section,
  .page-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 34px;
  }

  .page-hero > *,
  .contact-info-grid > *,
  .contact-workspace > * { min-width: 0; }

  .new-hero .hero-content h1,
  .hero-content h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.8vw, 3rem);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-bg-page .page-hero h1,
  #age-groups-title,
  #faq-title {
    font-size: clamp(1.65rem, 8.2vw, 2.12rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .home-service-grid,
  .age-groups,
  .faq-section,
  .home-planning {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-block { padding: 64px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .intro-split, .authority-section, .local-section { gap: 32px; }
  .district-grid { grid-template-columns: 1fr; }
  .process-section { padding-left: 20px; padding-right: 20px; }

  .footer-inner {
    padding: 54px 18px 44px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-bg-page {
    background:
      linear-gradient(180deg, rgba(41, 15, 24, 0.9), rgba(64, 28, 39, 0.76)),
      url("therapy-room-burgundy.png") center center / cover no-repeat;
  }

  .contact-bg-page {
    background:
      linear-gradient(180deg, rgba(41, 15, 24, 0.9), rgba(64, 28, 39, 0.76)),
      url("therapy-room-new.png") center center / cover no-repeat;
  }

  .services-bg-page .site-header {
    padding: 20px 18px 38px;
  }

  .services-bg-page .main-nav {
    gap: 10px 16px;
    font-size: 0.9rem;
  }

  .services-immersive {
    min-height: auto;
    padding: 20px 18px 72px;
  }

  .services-copy {
    width: min(100%, 340px);
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .services-copy p,
  .services-copy li,
  .services-copy h1 {
    max-width: 100%;
  }

  .services-copy h1 {
    font-size: 2.1rem;
  }

  .services-copy p,
  .services-copy .topics-list {
    font-size: 0.9rem;
  }
}

.contact-form .kvkk-consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #4e403a;
  font-weight: 500;
  line-height: 1.45;
  justify-self: start;
}

.contact-form .kvkk-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  padding: 0;
  flex: 0 0 auto;
}

.contact-form .kvkk-consent a {
  color: #6f263d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
