@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --cream: #f3ecd7;
  --cream-light: #fff8e2;
  --cream-soft: #fffaec;
  --sand: #ece2c5;
  --taupe: #c2b2a3;
  --brown: #5f4239;
  --olive: #8e9047;
  --olive-dark: #6f712f;
  --green: #00c853;
  --white: #fffdf6;
  --shadow: 0 12px 34px rgb(95 66 57 / 11%);
  --radius: 16px;
  --content: 1140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--brown);
  background: var(--cream);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #1b75d0;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--brown);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--brown);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 84px 0;
}

.section-title {
  margin: 0 0 44px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: balance;
}

.section-title strong {
  font-weight: 700;
}

.section-lead {
  max-width: 760px;
  margin: -22px auto 44px;
  font-size: 1.05rem;
  text-align: center;
}

.about-section,
.reviews-section,
.benefits-section,
.psychotherapy-section,
.tips-section,
.treatments-section,
.blog-preview,
.location-section {
  content-visibility: auto;
}

.about-section,
.benefits-section,
.tips-section {
  contain-intrinsic-size: auto 900px;
}

.reviews-section,
.treatments-section,
.location-section {
  contain-intrinsic-size: auto 560px;
}

.psychotherapy-section {
  contain-intrinsic-size: auto 1024px;
}

.blog-preview {
  contain-intrinsic-size: auto 1500px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  color: var(--white);
  background: var(--olive-dark);
  border: 0;
  border-radius: 10px 0 10px 0;
  box-shadow: 0 8px 20px rgb(142 144 71 / 18%);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #5f6127;
  box-shadow: 0 12px 24px rgb(95 66 57 / 20%);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.icon-link {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  transition: background-color 160ms ease, transform 160ms ease;
}

.icon-link:hover {
  background: rgb(95 66 57 / 8%);
  transform: translateY(-2px);
}

.icon-link svg {
  width: 23px;
  height: 23px;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: 96px;
  background: var(--cream);
}

.header-inner {
  display: grid;
  min-height: 96px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-phone {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 500;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  position: relative;
  padding: 15px 18px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 18px;
  bottom: 8px;
  left: 18px;
  height: 2px;
  content: "";
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-socials {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  color: var(--brown);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 740px;
  overflow: hidden;
  background: radial-gradient(at bottom right, rgb(95 66 57 / 56%) 0%, rgb(161 163 83 / 0%) 72%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 5% 0;
  height: 100%;
  content: "";
  background: url("/assets/icons/line.svg") bottom center / 100% auto no-repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
}

.hero-copy {
  z-index: 2;
  max-width: 610px;
  padding: 56px 0 90px;
}

.hero-logo {
  width: 250px;
  margin-bottom: 26px;
}

.hero h1 {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: clamp(2.55rem, 4.5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 span {
  display: inline;
  font-size: 0.62em;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin: 0 0 34px;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-person {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: min(55vw, 630px);
  max-height: 720px;
  object-fit: contain;
  object-position: bottom right;
}

.specialties {
  padding-top: 64px;
  background: var(--cream-light);
}

.specialties .section-title {
  margin-bottom: 38px;
}

.specialty-grid {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.specialty {
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 5px 14px rgb(95 66 57 / 7%);
}

.specialty summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--brown);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.specialty summary::-webkit-details-marker {
  display: none;
}

.specialty summary::before {
  content: "+";
  font-size: 1.05rem;
  font-weight: 400;
}

.specialty[open] summary::before {
  content: "−";
}

.specialty p {
  margin: 0;
  padding: 22px;
  color: var(--brown);
  font-size: 0.93rem;
  line-height: 1.65;
}

.about-section {
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 72px;
}

.about-photo {
  width: min(100%, 460px);
  margin-inline: auto;
  border-radius: 70px 0 70px 0;
  box-shadow: var(--shadow);
}

.about-copy .section-title {
  margin-bottom: 28px;
  text-align: left;
}

.about-copy p {
  margin: 0 0 20px;
}

.inline-socials {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}

.reviews-section {
  padding: 64px 0 76px;
  background: var(--cream-light);
}

.rating-summary {
  margin-bottom: 30px;
  text-align: center;
}

.rating-summary strong {
  display: block;
  font-size: 1.25rem;
}

.stars {
  color: #f1b31c;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.rating-summary small {
  display: block;
  font-size: 0.78rem;
}

.google-wordmark {
  margin-top: 4px;
  color: #1769c2;
  font-weight: 700;
}

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  gap: 18px;
  overflow: auto hidden;
  padding: 5px 4px 16px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgb(95 66 57 / 10%);
  scroll-snap-align: start;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  color: #fff;
  background: var(--brown);
  border-radius: 50%;
  font-weight: 700;
}

.review-card h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.review-card .stars {
  font-size: 0.9rem;
}

.review-card p {
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--brown);
  background: var(--cream-light);
  border: 1px solid rgb(95 66 57 / 16%);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgb(95 66 57 / 12%);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button:hover {
  color: #fff;
  background: var(--olive);
}

.carousel-button.prev {
  left: -20px;
}

.carousel-button.next {
  right: -20px;
}

.benefits-section {
  background: var(--cream-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgb(95 66 57 / 16%);
}

.benefit-card {
  padding: 18px 38px 34px;
  text-align: center;
  background: var(--cream-soft);
}

.benefit-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 25px;
  place-items: center;
  color: #fff;
  background: var(--olive-dark);
  border-radius: 6px 0 6px 0;
  font-weight: 700;
}

.benefit-card h3 {
  min-height: 2.5em;
  margin: 0 0 15px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
}

.psychotherapy-section {
  min-height: 560px;
  padding: 76px 0;
  background: var(--taupe) url("/assets/images/therapy-bg-desktop.webp") center / cover no-repeat;
}

.psychotherapy-copy {
  width: 52%;
  margin-left: auto;
  text-align: center;
}

.psychotherapy-copy .section-title {
  margin-bottom: 26px;
}

.psychotherapy-copy p {
  max-width: 560px;
  margin: 0 auto 20px;
}

.tips-section {
  background: var(--cream-light);
}

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

.tip-card {
  padding: 34px 28px;
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgb(95 66 57 / 8%);
}

.tip-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--brown);
  background: var(--sand);
  border-radius: 50%;
}

.tip-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.tip-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.tip-card p {
  margin: 0;
  font-size: 0.88rem;
}

.treatments-section {
  background: var(--cream);
}

.treatment-list {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 52px;
  list-style: none;
}

.treatment-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.treatment-list li::before {
  color: var(--olive);
  content: "▣";
  font-size: 0.72rem;
}

.blog-preview,
.blog-listing {
  background: var(--cream);
}

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

.post-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 7px 22px rgb(95 66 57 / 10%);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.post-card:hover {
  box-shadow: 0 14px 34px rgb(95 66 57 / 16%);
  transform: translateY(-4px);
}

.post-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--taupe);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.025);
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 18px;
  text-align: center;
}

.post-card h2,
.post-card h3 {
  margin: 0 0 15px;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.25;
}

.post-card p {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: var(--olive-dark);
  font-size: 0.86rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.read-more {
  margin-top: auto;
  color: var(--olive-dark);
  font-size: 0.83rem;
  font-weight: 600;
}

.post-date {
  display: block;
  margin: 18px -24px -18px;
  padding: 13px 16px;
  border-top: 1px solid rgb(95 66 57 / 9%);
  font-size: 0.73rem;
  font-weight: 500;
}

.location-section {
  padding-bottom: 96px;
  background: var(--cream);
}

.location-address {
  max-width: 720px;
  margin: -20px auto 32px;
  font-style: normal;
  text-align: center;
}

.map-shell {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  aspect-ratio: 16 / 6;
  margin: 0 auto;
  background: var(--sand);
  border-radius: 18px 0 18px 0;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: #22d366;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgb(0 0 0 / 25%);
  transition: transform 160ms ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.site-footer {
  color: var(--cream-light);
  text-align: center;
}

.footer-social {
  padding: 20px;
  background: var(--brown);
}

.footer-social .icon-link:hover {
  background: rgb(255 255 255 / 10%);
}

.footer-bottom {
  padding: 17px 20px;
  background: var(--olive-dark);
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-bottom p {
  margin: 0;
}

.blog-hero {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  color: #fff;
  background-color: var(--taupe);
  background-image: image-set(url("/assets/images/blog-hero-960.webp") 1x, url("/assets/images/blog-hero.webp") 2x);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-hero-copy {
  width: min(500px, 50%);
  margin-left: 27%;
  text-align: center;
}

.blog-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
}

.blog-hero p {
  margin: 0 0 18px;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.25;
}

.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.share-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--brown);
  background: var(--cream-light);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.share-link:hover {
  color: #fff;
  background: var(--olive);
  transform: translateY(-2px);
}

.share-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.blog-listing .section-title {
  font-weight: 600;
  text-transform: none;
}

.blog-listing .post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.article-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(95 66 57 / 78%), rgb(142 144 71 / 75%));
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 920px);
}

.article-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  line-height: 1.12;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 0.88rem;
}

.article-page {
  padding: 64px 0 100px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: start;
  gap: 58px;
}

.article-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.article-cover {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.article-body {
  padding: 48px 54px 54px;
  font-size: 1.02rem;
  line-height: 1.82;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body > :last-child {
  margin-bottom: 0;
}

.article-body h2,
.article-body h3 {
  margin: 1.6em 0 0.65em;
  line-height: 1.25;
}

.article-body p {
  margin: 0 0 1.25em;
}

.article-body a {
  color: var(--olive-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-footer {
  padding: 0 54px 50px;
  text-align: center;
}

.article-footer h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.article-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 0;
}

.category-pill {
  padding: 6px 12px;
  color: var(--brown);
  background: var(--sand);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.article-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.article-sidebar .post-card-body {
  padding: 18px;
}

.article-sidebar .post-card h3 {
  font-size: 0.85rem;
}

.article-sidebar .post-card p,
.article-sidebar .post-date {
  display: none;
}

.recent-section {
  margin-top: 92px;
}

.recent-section .section-title {
  text-align: left;
}

.recent-section .post-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.simple-page {
  min-height: 70vh;
  padding: 72px 0 100px;
}

.simple-page h1 {
  margin: 0 0 42px;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  text-align: center;
}

.simple-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 54px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.simple-card h2,
.simple-card h3 {
  margin-top: 1.65em;
  line-height: 1.25;
}

.simple-card a {
  color: var(--olive-dark);
  text-decoration: underline;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 220px);
  place-items: center;
  padding: 60px 20px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--olive);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.9;
}

.not-found h1 {
  margin: 24px 0 10px;
}

.not-found p {
  margin: 0 0 28px;
}

@media (max-width: 1024px) {
  .header-inner {
    gap: 10px;
  }

  .primary-nav a {
    padding-inline: 12px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 42%;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
  }

  .about-grid {
    gap: 42px;
  }

  .benefit-card {
    padding-inline: 22px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 30px;
  }

  .recent-section .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .section {
    padding: 58px 0;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .section-lead {
    margin-top: -12px;
    font-size: 0.95rem;
  }

  .site-header,
  .header-inner {
    min-height: 64px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    z-index: 60;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    background: var(--cream-soft);
    box-shadow: 0 14px 25px rgb(95 66 57 / 14%);
    opacity: 0;
    pointer-events: none;
    transition: max-height 200ms ease, opacity 160ms ease;
  }

  .primary-nav[data-open="true"] {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 15px 22px;
    border-bottom: 1px solid rgb(95 66 57 / 8%);
    text-align: center;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-socials {
    margin-left: auto;
  }

  .header-socials .icon-link {
    width: 44px;
    height: 44px;
  }

  .header-socials .icon-link svg {
    width: 20px;
    height: 20px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

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

  .hero::after {
    inset-inline: 2%;
  }

  .hero-copy {
    max-width: none;
    padding: 28px 0 0;
    text-align: center;
  }

  .hero-logo {
    width: 170px;
    margin: 0 auto 15px;
  }

  .hero h1 {
    max-width: none;
    margin: 0 auto 18px;
    font-size: clamp(2.3rem, 10.4vw, 2.6rem);
    line-height: 1.02;
  }

  .hero-stats {
    width: min(100%, 330px);
    justify-content: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 auto 20px;
  }

  .hero-stat strong {
    font-size: 1.6rem;
  }

  .hero-stat span {
    font-size: 0.76rem;
  }

  .hero .button {
    width: min(100%, 330px);
    min-height: 58px;
    padding: 14px 24px;
    font-size: 1.02rem;
  }

  .hero-person {
    top: 314px;
    right: 50%;
    bottom: auto;
    width: auto;
    height: 390px;
    max-width: none;
    max-height: none;
    object-position: top center;
    transform: translateX(50%);
  }

  .specialty-grid,
  .benefits-grid,
  .tips-grid,
  .post-grid,
  .blog-listing .post-grid,
  .recent-section .post-grid {
    grid-template-columns: 1fr;
  }

  .specialties {
    padding-top: 48px;
  }

  .specialty-grid {
    gap: 10px;
  }

  .specialty summary {
    min-height: 48px;
    padding: 12px 15px;
    font-size: 0.88rem;
  }

  .specialty p {
    padding: 18px;
    font-size: 0.86rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-photo {
    width: min(90%, 390px);
    border-radius: 42px 0 42px 0;
  }

  .about-copy .section-title {
    text-align: center;
  }

  .about-copy {
    font-size: 0.9rem;
    text-align: center;
  }

  .inline-socials {
    justify-content: center;
  }

  .inline-socials .icon-link,
  .footer-social .icon-link {
    width: 44px;
    height: 44px;
  }

  .reviews-track {
    grid-auto-columns: calc(100% - 28px);
    overscroll-behavior-inline: contain;
  }

  .carousel-button {
    display: none;
  }

  .benefits-grid {
    gap: 0;
    background: transparent;
  }

  .benefit-card {
    padding: 24px 24px 34px;
    border-bottom: 1px solid rgb(95 66 57 / 14%);
  }

  .benefit-card h3 {
    min-height: 0;
  }

  .psychotherapy-section {
    min-height: 1024px;
    padding: 560px 0 54px;
    background-image: url("/assets/images/therapy-bg-mobile.webp");
    background-position: top center;
    background-size: 100% auto;
  }

  .psychotherapy-copy {
    width: 100%;
    font-size: 0.89rem;
  }

  .tip-card {
    padding: 28px 22px;
  }

  .treatment-list {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 0.88rem;
  }

  .post-grid {
    max-width: 420px;
    margin-inline: auto;
  }

  .post-card h2 a,
  .post-card h3 a,
  .read-more,
  .category-pill {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .map-shell {
    aspect-ratio: 1 / 1;
    border-radius: 12px 0 12px 0;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .blog-hero {
    min-height: 500px;
    align-items: end;
    padding: 0 0 48px;
    background-position: 20% center;
  }

  .blog-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 40%, rgb(95 66 57 / 66%));
  }

  .blog-hero-copy {
    position: relative;
    z-index: 1;
    width: calc(100% - 28px);
    margin: 0;
  }

  .blog-hero h1 {
    font-size: 2.8rem;
  }

  .article-hero {
    min-height: 330px;
  }

  .article-hero h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.5rem);
  }

  .article-meta {
    font-size: 0.78rem;
  }

  .article-page {
    padding: 34px 0 70px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 30px 22px 32px;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .article-footer {
    padding: 0 22px 34px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .article-sidebar .post-card-body {
    padding: 10px;
  }

  .article-sidebar .post-card h3 {
    margin: 0;
    font-size: 0.68rem;
  }

  .article-sidebar .read-more {
    display: none;
  }

  .recent-section {
    margin-top: 58px;
  }

  .recent-section .section-title {
    text-align: center;
  }

  .simple-page {
    padding: 48px 0 70px;
  }

  .simple-card {
    padding: 30px 22px;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-sidebar .post-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .article-sidebar .post-card-image {
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .floating-whatsapp,
  .share-row,
  .article-sidebar,
  .recent-section,
  .button {
    display: none !important;
  }

  body,
  .article-card,
  .simple-card {
    color: #111;
    background: #fff;
    box-shadow: none;
  }

  .article-layout {
    display: block;
  }
}
