/*
Theme Name: Oana Dorneanu
Theme URI: https://oanadorneanu.ro
Author: Oana Dorneanu
Description: Custom WordPress theme for Oana Dorneanu, based on the local static design.
Version: 1.0.12
Text Domain: oana-dorneanu
*/

:root {
  --ink: #22211e;
  --muted-ink: #625d55;
  --ivory: #f7f1e8;
  --paper: #fffaf2;
  --forest: #21392e;
  --moss: #3d5d46;
  --sage: #87977f;
  --clay: #b45f43;
  --rosewood: #8e4f45;
  --brass: #a87d36;
  --line: rgba(34, 33, 30, 0.16);
  --white-line: rgba(255, 250, 242, 0.22);
  --shadow: 0 18px 48px rgba(32, 24, 17, 0.13);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: inherit;
}

.section-copy a,
.cabinet-copy a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(36, 52, 44, 0.28);
  text-underline-offset: 0.18em;
}

.section-copy a:hover,
.cabinet-copy a:hover {
  text-decoration-color: currentColor;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(180, 95, 67, 0.28);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--forest);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(247, 241, 232, 0.18);
  background: rgba(33, 57, 46, 0.88);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fffaf2;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
  list-style: none;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 15px;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 250, 242, 0.1);
  color: var(--paper);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
}

.site-nav a.nav-cta,
.site-nav .nav-cta > a {
  background: var(--paper);
  color: var(--forest);
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible,
.site-nav .nav-cta > a:hover,
.site-nav .nav-cta > a:focus-visible {
  background: #f3d7bd;
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  transform: translateY(-7px);
  opacity: 0;
}

.hero {
  min-height: 84svh;
  display: grid;
  align-items: center;
  padding: 96px 36px 82px;
  background:
    linear-gradient(90deg, rgba(20, 27, 22, 0.92) 0%, rgba(20, 27, 22, 0.72) 41%, rgba(20, 27, 22, 0.22) 82%),
    url("assets/seo-optimized/cabinet-therapy-room-wide-hero.webp") center center / cover no-repeat;
  color: var(--paper);
}

.hero-content {
  width: min(100%, 680px);
  margin-left: max(0px, calc((100vw - 1160px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 700;
}

.hero .eyebrow,
.section-deep .eyebrow {
  color: #f2c59d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 9ch;
  font-size: 74px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 25px;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--clay);
  color: #fff8f1;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rosewood);
}

.button-secondary {
  border-color: rgba(255, 250, 242, 0.35);
  background: rgba(255, 250, 242, 0.08);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 242, 0.16);
}

.section,
.intro-section,
.contact-section {
  padding: 92px 36px;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.intro-section {
  padding-top: 42px;
  padding-bottom: 52px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 54px;
  align-items: end;
}

.intro-grid p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 19px;
}

.cabinet-section {
  padding: 82px 36px;
  background: #efe3d4;
}

.cabinet-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.cabinet-copy {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.cabinet-copy p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 18px;
}

.cabinet-photos {
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  gap: 14px;
}

.cabinet-photos figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(32, 24, 17, 0.12);
}

.cabinet-photos img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.cabinet-photo-main {
  grid-row: span 2;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 58px;
  align-items: start;
}

.section-copy {
  display: grid;
  gap: 22px;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--muted-ink);
  font-size: 18px;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.quiet-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #efe3d4;
  padding: 28px;
  box-shadow: var(--shadow);
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-panel img {
  object-position: center center;
}

.image-panel p {
  padding: 18px 20px 20px;
  color: var(--muted-ink);
  font-size: 15px;
}

.reverse-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: center;
}

.quiet-panel h3 {
  margin-bottom: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #423d36;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
}

.section-muted {
  background: #e8ede2;
}

.section-muted .section-heading h2,
#abordare-title {
  color: var(--forest) !important;
  -webkit-text-fill-color: var(--forest);
}

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

.feature-card,
.service-card,
.article-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card {
  min-height: 292px;
  padding: 24px;
}

.feature-number {
  display: block;
  margin-bottom: 38px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 800;
}

.feature-card h3,
.service-card h3,
.article-grid h3,
.reason-item h3,
.process-list h3 {
  margin-bottom: 12px;
}

.feature-card p,
.service-card p,
.article-grid p,
.reason-item p,
.process-list p {
  color: var(--muted-ink);
}

.reason-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.reason-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1fr);
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.reason-item h3 {
  font-size: 24px;
}

.section-deep {
  background: var(--forest);
  color: var(--paper);
}

.section-deep .section-heading p {
  color: rgba(255, 250, 242, 0.74);
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fbf4ea;
  color: var(--ink);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--rosewood);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover,
.service-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.process-section {
  background: #faf4ed;
}

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

.project-card {
  min-height: 276px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.project-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 800;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.project-card p {
  color: var(--muted-ink);
}

.reference-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(36, 52, 44, 0.16);
}

.reference-strip span {
  margin-right: 6px;
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reference-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(36, 52, 44, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.reference-strip a:hover {
  border-color: rgba(36, 52, 44, 0.36);
  background: var(--paper);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.process-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(180, 95, 67, 0.35);
  border-radius: 50%;
  color: var(--clay);
  font-size: 14px;
  font-weight: 800;
}

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

.article-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.article-grid a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}

.article-card-live {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-card-live:hover,
.article-card-live:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-card-live span {
  width: fit-content;
  margin-top: 24px;
  color: var(--rosewood);
  font-weight: 800;
}

.article-card-live small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.article-card-live a:focus-visible {
  outline: 3px solid rgba(180, 95, 67, 0.28);
  outline-offset: 6px;
}

.article-grid p {
  color: var(--brass);
  font-size: 14px;
  font-weight: 800;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  padding: 86px 36px 72px;
  background: #e8ede2;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: 54px;
  align-items: center;
}

.article-hero h1 {
  max-width: 11ch;
  margin-top: 8px;
  font-size: 64px;
}

.article-lede {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted-ink);
  font-size: 22px;
  line-height: 1.55;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--rosewood);
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.article-image {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-body {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding: 74px 0 86px;
}

.article-body h2 {
  margin: 52px 0 18px;
  font-size: 34px;
}

.article-body p,
.article-body li {
  color: #403a33;
  font-size: 19px;
  line-height: 1.78;
}

.article-body p + p,
.article-body blockquote + p,
.article-body ul + p {
  margin-top: 22px;
}

.article-body blockquote {
  margin: 34px 0;
  border-left: 4px solid var(--clay);
  padding: 4px 0 4px 22px;
}

.article-body blockquote p {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.35;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 26px;
}

.article-cta {
  padding: 66px 36px;
  background: var(--forest);
  color: var(--paper);
}

.article-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.article-cta h2 {
  margin-bottom: 14px;
}

.article-cta p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
}

.contact-section {
  background: #fff8ef;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 800;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted-ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 58px;
  align-items: start;
}

.contact-grid h2 {
  margin-bottom: 22px;
}

.contact-grid p {
  color: var(--muted-ink);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  max-width: 560px;
  color: var(--forest);
  font-weight: 700;
}

.contact-method {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 0;
  border: 1px solid rgba(33, 57, 46, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.66);
  padding: 12px 14px;
}

.contact-details br {
  display: none;
}

.contact-details a.contact-method {
  color: var(--rosewood);
  text-decoration: none;
}

.contact-details a.contact-method:not(.whatsapp-link):hover,
.contact-details a.contact-method:not(.whatsapp-link):focus-visible {
  border-color: rgba(180, 95, 67, 0.34);
  background: var(--paper);
  outline: none;
}

.contact-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #efe3d4;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-icon svg.location-pin {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-method strong,
.contact-method em {
  display: block;
}

.contact-method strong {
  color: var(--forest);
  font-size: 13px;
  line-height: 1.2;
}

.contact-method em {
  overflow-wrap: anywhere;
  color: var(--muted-ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

.contact-details a.whatsapp-link,
.contact-details a.whatsapp-link:link,
.contact-details a.whatsapp-link:visited {
  justify-content: flex-start;
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper) !important;
  font-weight: 800;
}

.contact-details a.whatsapp-link:hover,
.contact-details a.whatsapp-link:focus-visible,
.contact-details a.whatsapp-link:active {
  border-color: var(--moss) !important;
  background: var(--moss) !important;
  color: var(--paper) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(61, 93, 70, 0.18);
}

.contact-details .whatsapp-link .contact-icon {
  background: rgba(255, 250, 242, 0.16);
  color: var(--paper);
}

.contact-details .whatsapp-link strong,
.contact-details .whatsapp-link em,
.contact-details a.whatsapp-link *,
.contact-details a.whatsapp-link:hover em,
.contact-details a.whatsapp-link:focus-visible em,
.contact-details a.whatsapp-link:active em,
.contact-details a.whatsapp-link:hover .contact-icon,
.contact-details a.whatsapp-link:focus-visible .contact-icon,
.contact-details a.whatsapp-link:active .contact-icon {
  color: var(--paper) !important;
  -webkit-text-fill-color: var(--paper);
}

.contact-details a.whatsapp-link svg,
.contact-details a.whatsapp-link path {
  fill: currentColor !important;
}

.contact-location {
  align-items: flex-start;
  border-color: transparent;
  background: transparent;
  padding: 7px 0 0;
}

.contact-location .contact-icon {
  width: 30px;
  height: 30px;
  margin-top: 2px;
  background: rgba(33, 57, 46, 0.08);
  color: var(--forest);
}

.contact-location strong {
  margin-bottom: 2px;
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-location em {
  color: var(--muted-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #efe3d4;
  padding: 24px;
}

.contact-form br,
.contact-form > p:empty {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #403a33;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(34, 33, 30, 0.22);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
  outline: 3px solid rgba(180, 95, 67, 0.18);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  padding: 28px 36px;
  background: #1d211d;
  color: rgba(255, 250, 242, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-grid p {
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    max-height: calc(100svh - 92px);
    overflow: auto;
    border: 1px solid var(--white-line);
    border-radius: var(--radius);
    background: rgba(33, 57, 46, 0.98);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav-menu {
    display: grid;
    gap: 4px;
    width: 100%;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    margin: 0;
  }

  .site-nav a,
  .site-nav .nav-cta > a {
    padding: 13px 12px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .article-hero h1 {
    max-width: 12ch;
    font-size: 50px;
  }

  .hero {
    min-height: 82svh;
    padding-inline: 24px;
    background:
      linear-gradient(90deg, rgba(20, 27, 22, 0.86) 0%, rgba(20, 27, 22, 0.64) 52%, rgba(20, 27, 22, 0.22) 100%),
      url("assets/seo-optimized/cabinet-therapy-room-wide-hero.webp") center center / cover no-repeat;
  }

  .intro-grid,
  .cabinet-grid,
  .article-hero-grid,
  .split-layout,
  .reverse-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .services-grid,
  .project-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 80svh;
    padding: 74px 18px 62px;
    background:
      linear-gradient(180deg, rgba(20, 27, 22, 0.78) 0%, rgba(20, 27, 22, 0.68) 54%, rgba(20, 27, 22, 0.58) 100%),
      url("assets/seo-optimized/cabinet-therapy-room-wide-hero.webp") center center / cover no-repeat;
  }

  h1 {
    max-width: 8ch;
    font-size: 45px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .intro-section,
  .cabinet-section,
  .article-hero,
  .article-cta,
  .contact-section {
    padding: 64px 18px;
  }

  .intro-section {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .feature-grid,
  .services-grid,
  .project-grid,
  .article-grid,
  .cabinet-photos {
    grid-template-columns: 1fr;
  }

  .cabinet-copy {
    position: static;
  }

  .cabinet-photo-main {
    grid-row: auto;
  }

  .article-hero {
    padding-top: 58px;
    padding-bottom: 56px;
  }

  .article-hero h1 {
    font-size: 39px;
  }

  .article-lede {
    font-size: 19px;
  }

  .article-body {
    width: min(100% - 36px, 760px);
    padding: 54px 0 64px;
  }

  .article-body h2 {
    font-size: 28px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
  }

  .article-body blockquote p {
    font-size: 22px;
  }

  .article-cta-inner {
    display: grid;
  }

  .feature-card,
  .service-card,
  .project-card,
  .article-grid article {
    min-height: auto;
  }

  .quiet-panel,
  .contact-form {
    padding: 20px;
  }

  .process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .process-list span {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding: 24px 18px;
  }
}

@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;
  }
}
