@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/lora-latin.woff2") format("woff2");
}

:root {
  --ink: #514c46;
  --ink-soft: #70665d;
  --accent: #a6886f;
  --accent-dark: #866b55;
  --beige: #d1c7be;
  --sand: #f3ede8;
  --paper: #faf7f3;
  --line: rgba(81, 76, 70, 0.16);
  --shadow: 0 24px 70px rgba(81, 76, 70, 0.14);
  --radius: 8px;
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 58px);
  background: rgba(250, 247, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
  min-width: 176px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 14px;
  color: var(--ink-soft);
}

.wp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-menu li {
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav .menu-item-has-children:hover > a,
.main-nav .menu-item-has-children:focus-within > a,
.main-nav .menu-item-has-children.is-open > a,
.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
}

.nav-dropdown,
.main-nav .menu-item-has-children {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.main-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after,
.main-nav .menu-item-has-children:hover > a::after,
.main-nav .menu-item-has-children:focus-within > a::after,
.main-nav .menu-item-has-children.is-open > a::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-submenu,
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  min-width: 260px;
  padding: 10px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 247, 243, 0.98);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu,
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu,
.main-nav .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu span,
.nav-submenu a,
.main-nav .sub-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.nav-submenu span:hover,
.nav-submenu a:hover,
.nav-submenu a[aria-current="page"],
.main-nav .sub-menu a:hover,
.main-nav .sub-menu a[aria-current="page"] {
  background: var(--sand);
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(81, 76, 70, 0.32);
  color: var(--ink);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline-light {
  border-color: rgba(250, 247, 243, 0.55);
  color: #fff;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px 0 18px;
  border: 1px solid rgba(250, 247, 243, 0.45);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 46px rgba(81, 76, 70, 0.24);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(81, 76, 70, 0.3);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section,
.section-band {
  padding: clamp(76px, 9vw, 124px) 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  max-width: 780px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.hero {
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: clamp(30px, 3.6vw, 52px);
  padding-bottom: clamp(22px, 2.4vw, 34px);
  background:
    linear-gradient(90deg, rgba(250, 247, 243, 0.98) 0%, rgba(250, 247, 243, 0.96) 42%, rgba(243, 237, 232, 0.88) 100%);
  overflow: hidden;
}

.hero .container {
  width: min(1440px, 100%);
  padding-left: clamp(26px, 4.6vw, 58px);
  padding-right: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  align-items: start;
  gap: clamp(18px, 3vw, 44px);
  --hero-media-height: clamp(615px, 44vw, 720px);
}

.hero-copy p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.55;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(40px, 4.15vw, 60px);
}

.hero-media,
.section-heading > *,
.evidence-grid > *,
.about-grid > *,
.training-grid > *,
.contact-grid > *,
.faq-grid > *,
.final-grid > * {
  min-width: 0;
}

.hero-copy {
  align-self: start;
  min-width: 0;
  padding-top: clamp(24px, 3.8vw, 48px);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(18px, 2.3vw, 30px);
  max-width: 620px;
}

.hero-highlights div {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  text-align: center;
}

.hero-highlights span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.hero-highlights svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-highlights p {
  max-width: 138px;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.3;
}

.hero-media {
  position: relative;
  align-self: start;
  width: 100%;
  height: var(--hero-media-height);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(260px, 34%);
  background: linear-gradient(90deg, var(--paper) 0%, rgba(250, 247, 243, 0.82) 30%, rgba(250, 247, 243, 0) 100%);
  pointer-events: none;
}

.hero-integrated {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 0;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-section {
  padding: 38px 0 46px;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-section h2 {
  text-align: center;
  font-size: clamp(24px, 2.6vw, 34px);
}

.logo-section p {
  max-width: 760px;
  margin: 12px auto 28px;
  text-align: center;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-left 92s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
}

.ticker-group picture,
.service-card picture,
.collaborator-card picture,
.orly-collaborator-card picture,
.process-intro picture,
.founder-card picture,
.orly-hero-card picture,
.orly-maria-feature picture,
.area-hero-media picture,
.training-media picture,
.blog-card picture,
.profile-portrait picture,
.orly-director-panel picture,
.credentials-portrait picture,
.collaborator-full-profile picture,
.maria-hero-portrait picture,
.supervision-logos picture,
.footer-brand picture,
.brand picture {
  display: block;
}

.service-card picture,
.collaborator-card picture,
.orly-collaborator-card picture,
.process-intro picture,
.founder-card picture,
.orly-hero-card picture,
.orly-maria-feature picture,
.area-hero-media picture,
.training-media picture,
.blog-card picture,
.profile-portrait picture,
.orly-director-panel picture,
.credentials-portrait picture,
.collaborator-profile-card picture,
.collaborator-photo-frame picture,
.collaborator-full-profile picture,
.maria-hero-portrait picture {
  width: 100%;
  overflow: hidden;
}

.ticker-logo {
  display: block;
  width: 250px;
  height: 112px;
  object-fit: contain;
  opacity: 0.95;
}

@keyframes ticker-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  font-size: 17px;
}

.section-heading.slim {
  display: block;
  max-width: 770px;
}

.section-heading.slim p {
  margin-top: 18px;
}

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

.service-card {
  min-height: 360px;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card picture {
  aspect-ratio: 5 / 3;
  border-bottom: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h2,
.service-card h3 {
  padding: 24px 24px 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-price {
  margin-top: 14px;
  margin-bottom: 24px;
  padding: 0 24px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 auto 0;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card a:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.therapies-index {
  background: var(--paper);
}

.therapies-grid .service-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.therapies-grid .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 136, 111, 0.34);
  box-shadow: var(--shadow);
}

.text-link {
  margin-top: auto;
  padding: 28px 24px 0;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
}

.service-card a::after,
.text-link::after {
  content: " ->";
}

.evidence-grid {
  display: grid;
  gap: 42px;
}

.evidence-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.45fr) auto;
  gap: 34px;
  align-items: end;
}

.evidence-intro p {
  font-size: 18px;
}

.evidence-intro .text-link {
  padding-top: 0;
  align-self: end;
  white-space: nowrap;
}

.evidence-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.evidence-items article {
  min-height: 210px;
  padding: 34px 28px;
  background: var(--sand);
  text-align: center;
}

.evidence-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--accent);
}

.evidence-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.evidence-items p {
  margin-top: 12px;
  font-size: 14px;
}

.process {
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 54%, var(--sand) 54%, var(--sand) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.process-intro {
  min-width: 0;
}

.process-intro p {
  max-width: 680px;
  margin-top: 20px;
  font-size: 18px;
}

.process-intro picture {
  aspect-ratio: 16 / 9;
  margin-top: 34px;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(81, 76, 70, 0.12);
}

.process-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 247, 243, 0.82);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.steps p {
  margin-top: 10px;
  font-size: 15px;
}

.about-grid,
.training-grid,
.faq-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.training-grid {
  align-items: start;
}

.about-copy p,
.training-grid p,
.faq-grid p {
  margin-top: 18px;
  font-size: 17px;
}

.training-grid .btn {
  margin-top: 28px;
}

.pending-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pending-data span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 13px;
}

.founder-card {
  margin: 0;
}

.founder-card picture {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.founder-link {
  margin-top: 20px;
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 4vw, 52px);
}

.collaborator-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.08);
}

.collaborator-card picture {
  aspect-ratio: 4 / 3;
}

.collaborator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaborator-photo-frame {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.collaborator-photo-frame picture {
  height: 100%;
}

.collaborator-photo-frame img {
  height: 100%;
}

.collaborator-photo-frame img.claudia-home-photo {
  object-position: center 44%;
  transform: scale(1.13);
}

.collaborator-photo-frame img.monica-home-photo {
  object-position: center 44%;
  transform: scale(1.12);
}

.collaborator-card div {
  padding: 22px 24px 24px;
}

.collaborator-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.collaborator-card p {
  margin-top: 8px;
  font-size: 15px;
}

.collaborator-card span {
  display: block;
  margin-top: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.collaborator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.collaborator-link:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(174, 140, 113, 0.24);
}

.orly-hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(58px, 8vw, 108px);
}

.orly-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.62fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.orly-hero-copy h1 {
  max-width: 820px;
  margin-top: 18px;
}

.orly-hero-copy p {
  max-width: 660px;
  margin-top: 24px;
  font-size: 19px;
}

.orly-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.orly-hero-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow);
}

.orly-hero-card picture {
  aspect-ratio: 4 / 4.35;
}

.orly-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.orly-hero-card div {
  padding: 24px;
}

.orly-hero-card span,
.orly-collaborator-card span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.orly-hero-card h2 {
  margin-top: 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.orly-hero-card p {
  margin-top: 12px;
  font-size: 15px;
}

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

.orly-story-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.9);
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.orly-story-card::before {
  content: "";
  position: absolute;
  inset: auto 32px 28px auto;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(166, 136, 111, 0.26);
  border-radius: 50%;
  opacity: 0.7;
  transition: transform 360ms ease, opacity 240ms ease;
}

.orly-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 136, 111, 0.46);
  box-shadow: 0 20px 54px rgba(81, 76, 70, 0.11);
}

.orly-story-card:hover::before {
  transform: scale(1.18);
  opacity: 1;
}

.orly-story-card > span {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.orly-story-card h2 {
  max-width: 680px;
  margin-top: 18px;
}

.orly-story-card p {
  max-width: 760px;
  margin-top: 20px;
  font-size: 17px;
}

.orly-story-card-dark {
  background: var(--accent);
  color: #fff;
}

.orly-story-card-dark > span,
.orly-story-card-dark p {
  color: rgba(255, 255, 255, 0.84);
}

.orly-story-card-dark::before {
  border-color: rgba(255, 255, 255, 0.35);
}

.orly-method {
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 49%, var(--sand) 49%, var(--sand) 100%);
}

.orly-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.orly-method-intro {
  position: sticky;
  top: 112px;
}

.orly-method-intro h2 {
  margin-top: 18px;
}

.orly-method-intro p {
  margin-top: 20px;
  font-size: 18px;
}

.orly-method-steps {
  display: grid;
  gap: 14px;
}

.orly-method-steps article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.88);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.orly-method-steps article:hover {
  transform: translateX(4px);
  border-color: rgba(166, 136, 111, 0.46);
  background: #fffdf9;
}

.orly-method-steps strong {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
}

.orly-method-steps p {
  font-size: 16px;
}

.orly-maria-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(243, 237, 232, 0.72), rgba(255, 253, 249, 0.92));
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.06);
}

.orly-maria-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.orly-maria-feature picture {
  aspect-ratio: 5 / 4;
}

.orly-maria-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.orly-maria-feature h3 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 58px);
}

.orly-maria-feature p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 18px;
}

.orly-maria-feature .btn {
  margin-top: 28px;
}

.orly-collaborators-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.orly-collaborator-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 12px 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.orly-collaborator-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 136, 111, 0.46);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.08);
}

.orly-collaborator-card picture {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px);
}

.orly-collaborator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orly-collaborator-card span,
.orly-collaborator-card strong {
  padding: 0 8px;
}

.orly-collaborator-card strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}

.orly-specialties {
  background: var(--sand);
}

.orly-specialties-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.orly-specialties-copy h2 {
  margin-top: 18px;
}

.orly-specialties-copy p {
  margin-top: 20px;
  font-size: 18px;
}

.orly-specialty-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.orly-specialty-list a {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.orly-specialty-list a:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.orly-manifesto {
  min-height: 0;
  display: grid;
  align-items: center;
  padding: clamp(46px, 6vw, 78px) 0;
  background:
    linear-gradient(135deg, rgba(81, 76, 70, 0.98), rgba(81, 76, 70, 0.92)),
    var(--ink);
  color: #fff;
}

.orly-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.orly-manifesto-brand {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 26px;
  align-content: start;
  min-height: 0;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.orly-manifesto-brand picture {
  display: block;
  width: min(230px, 100%);
}

.orly-manifesto-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.orly-manifesto-brand span,
.orly-eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.orly-manifesto-brand span {
  color: rgba(255, 255, 255, 0.82);
}

.orly-manifesto .orly-eyebrow {
  color: var(--beige);
}

.orly-manifesto-copy {
  max-width: 980px;
  align-self: center;
  padding-top: clamp(12px, 3vw, 48px);
}

.orly-manifesto-copy h1 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.02;
}

.orly-manifesto-copy p {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
}

.orly-section-nav {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.orly-section-nav a {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease;
}

.orly-section-nav a:last-child {
  border-right: 0;
}

.orly-section-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.orly-dossier {
  background: var(--paper);
}

.orly-dossier-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.orly-dossier-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.orly-dossier-index span {
  color: var(--accent-dark);
  font-weight: 800;
}

.orly-dossier-index strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.1;
}

.orly-dossier-copy {
  max-width: 960px;
}

.orly-dossier-copy h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.06;
}

.orly-dossier-copy p {
  max-width: 830px;
  margin-top: 24px;
  font-size: 19px;
}

.orly-principles {
  padding: clamp(62px, 8vw, 104px) 0;
  background: var(--sand);
}

.orly-principles-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.orly-principles-title {
  position: sticky;
  top: 112px;
}

.orly-principles-title h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.08;
}

.orly-principles-board {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.orly-principles-board article {
  min-height: 156px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 253, 249, 0.9);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.orly-principles-board article:hover {
  transform: translateX(4px);
  background: var(--accent);
  color: #fff;
}

.orly-principles-board span {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.orly-principles-board article:hover span,
.orly-principles-board article:hover p {
  color: rgba(255, 255, 255, 0.86);
}

.orly-principles-board p {
  font-size: 17px;
}

.orly-principles-tabs {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(81, 76, 70, 0.08);
}

.orly-tabs-list {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
  background: rgba(250, 247, 243, 0.82);
}

.orly-tabs-list button {
  width: 100%;
  min-height: 88px;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.orly-tabs-list button:last-child {
  border-bottom: 0;
}

.orly-tabs-list button:hover,
.orly-tabs-list button.is-active {
  background: var(--accent);
  color: #fff;
}

.orly-tabs-panels {
  position: relative;
  min-height: 380px;
}

.orly-tab-panel {
  position: absolute;
  inset: 0;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.orly-tab-panel[hidden] {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.orly-tab-panel span {
  width: fit-content;
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
  font-weight: 800;
}

.orly-tab-panel h3 {
  max-width: 640px;
  margin-top: 28px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.08;
}

.orly-tab-panel p {
  max-width: 680px;
  margin-top: 20px;
  font-size: 18px;
}

.orly-principles-mobile {
  display: none;
}

@keyframes orlyTabFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.orly-code {
  background: linear-gradient(180deg, var(--paper), var(--sand));
}

.orly-code-header {
  max-width: 900px;
  margin-bottom: 32px;
}

.orly-code-header h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.08;
}

.orly-code-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.orly-code-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.6vw, 42px);
  border-right: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.orly-code-grid article:last-child {
  border-right: 0;
}

.orly-code-grid article:hover {
  background: rgba(255, 253, 249, 0.78);
  transform: translateY(-4px);
}

.orly-code-grid span {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
}

.orly-code-grid p {
  margin-top: 38px;
  font-size: 17px;
}

.orly-people {
  background: var(--paper);
}

.orly-people-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.orly-director-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 0.92fr);
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.orly-director-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.orly-director-copy h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.04;
}

.orly-director-copy p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.orly-director-copy .btn {
  width: fit-content;
  margin-top: 32px;
}

.orly-director-panel figure {
  margin: 0;
  overflow: hidden;
  min-width: 0;
}

.orly-director-panel picture {
  height: 100%;
}

.orly-director-panel img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.orly-network {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 22px;
}

.orly-network > p {
  font-size: 17px;
}

.orly-network-list {
  display: grid;
  gap: 10px;
}

.orly-network-list a {
  display: grid;
  grid-template-columns: 74px 1fr;
  grid-template-areas:
    "img label"
    "img name";
  gap: 4px 14px;
  align-items: center;
  min-height: 92px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.88);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.orly-network-list a:hover {
  transform: translateX(4px);
  border-color: rgba(166, 136, 111, 0.46);
  background: #fffdf9;
}

.orly-network-list img {
  grid-area: img;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.orly-network-list span {
  grid-area: label;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.orly-network-list strong {
  grid-area: name;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.orly-specialization {
  background: var(--sand);
}

.orly-specialization-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.orly-specialization h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.08;
}

.orly-specialization p {
  margin-top: 20px;
  font-size: 18px;
}

.orly-specialization-map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.orly-specialization-map a {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.orly-specialization-map a span {
  max-width: 260px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.16;
}

.orly-specialization-map a p {
  max-width: 300px;
  margin-top: 14px;
  color: transparent;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.orly-specialization-map a:nth-child(1),
.orly-specialization-map a:nth-child(6) {
  grid-column: span 3;
}

.orly-specialization-map a:nth-child(2),
.orly-specialization-map a:nth-child(3),
.orly-specialization-map a:nth-child(4),
.orly-specialization-map a:nth-child(5) {
  grid-column: span 3;
}

.orly-specialization-map a:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.12);
}

.orly-specialization-map a:hover p,
.orly-specialization-map a:focus-visible p {
  color: rgba(255, 255, 255, 0.86);
  opacity: 1;
  transform: translateY(0);
}

.orly-specialization-map a:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.training-media picture {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.training-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  overflow: hidden;
}

.blog-card picture {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 28px;
}

.blog-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.blog-card-category {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.blog-card-meta time {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.blog-card-title {
  margin-top: 24px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.08;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 28px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.blog-card-link::after {
  content: " ->";
}

.blog-empty-message {
  grid-column: 1 / -1;
  color: var(--ink-soft);
}

.contact-hero {
  padding: clamp(54px, 7vw, 86px) 0;
  background:
    linear-gradient(135deg, rgba(81, 76, 70, 0.98), rgba(81, 76, 70, 0.92)),
    var(--ink);
  color: #fff;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.contact-hero-copy h1 {
  max-width: 780px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
}

.contact-hero-copy p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
}

.contact-hero-card {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact-hero-card div {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
}

.contact-hero-card div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-hero-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero-card strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.contact-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(81, 76, 70, 0.05);
}

.contact-panel {
  padding: clamp(28px, 4vw, 42px);
}

.contact-panel p {
  margin-top: 16px;
  font-size: 17px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.wpcf7 {
  margin-top: 26px;
}

.wpcf7 form.contact-form {
  margin-top: 0;
}

.contact-form .hidden-fields-container {
  display: none;
}

.contact-panel .contact-form p,
.contact-form p {
  margin: 0;
  font-size: inherit;
}

.contact-form br {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
}

.contact-field {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(81, 76, 70, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form input {
  min-height: 46px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(166, 136, 111, 0.16);
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #9a453d;
  font-size: 13px;
  font-weight: 600;
}

.contact-form .wpcf7-response-output {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
}

.privacy-check {
  margin-top: 2px;
  color: var(--ink-soft);
  font-weight: 500;
}

.privacy-check .wpcf7-form-control-wrap {
  margin-top: 0;
}

.privacy-check .wpcf7-list-item {
  margin: 0;
}

.privacy-check .wpcf7-list-item label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.45;
}

.privacy-check input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.contact-submit {
  margin-top: 8px;
}

.contact-submit p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .wpcf7-submit {
  width: 100%;
}

.contact-form .wpcf7-spinner {
  margin: 0;
}

.contact-form-fallback {
  padding: 18px;
  border: 1px dashed rgba(166, 136, 111, 0.42);
  border-radius: var(--radius);
}

.map-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 520px;
}

.map-frame {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(166, 136, 111, 0.95) 0 7px, transparent 8px),
    linear-gradient(28deg, transparent 0 38%, rgba(81, 76, 70, 0.13) 38% 39.5%, transparent 39.5%),
    linear-gradient(142deg, transparent 0 46%, rgba(81, 76, 70, 0.11) 46% 47.5%, transparent 47.5%),
    linear-gradient(90deg, transparent 0 28%, rgba(166, 136, 111, 0.14) 28% 29%, transparent 29% 62%, rgba(81, 76, 70, 0.1) 62% 63%, transparent 63%),
    linear-gradient(0deg, transparent 0 34%, rgba(81, 76, 70, 0.12) 34% 35%, transparent 35% 70%, rgba(166, 136, 111, 0.15) 70% 71%, transparent 71%),
    #ede6df;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) saturate(0.75);
}

.map-details {
  display: grid;
  gap: 9px;
  padding: 22px 24px 24px;
  border-top: 1px solid var(--line);
}

.map-details strong {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 22px;
}

.map-details a {
  color: var(--ink-soft);
}

.faq-grid {
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition:
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 320ms ease;
}

details[open] {
  border-color: rgba(166, 136, 111, 0.26);
  box-shadow: 0 12px 32px rgba(81, 76, 70, 0.06);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
}

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

summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    height 460ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, opacity, transform;
}

details[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 15px;
}

.faq-answer p + p {
  padding-top: 0;
}

.area-hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.area-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.area-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(166, 136, 111, 0.35);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(250, 247, 243, 0.54);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.area-hero-copy h1 {
  margin-top: 18px;
}

.area-hero-copy p {
  max-width: 680px;
  margin-top: 24px;
  font-size: 18px;
}

.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.area-hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.area-hero-media picture {
  aspect-ratio: 5 / 4;
}

.area-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-hero-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.area-hero-media strong {
  color: var(--accent-dark);
}

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

.area-summary-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.area-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.area-summary-card::after {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 42px);
  bottom: clamp(24px, 3.2vw, 34px);
  z-index: 1;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.area-summary-card > * {
  position: relative;
  z-index: 1;
  transition: color 220ms ease, transform 260ms ease;
}

.area-summary-card:hover,
.method-timeline article:hover,
.principle-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 136, 111, 0.46);
  box-shadow: 0 20px 54px rgba(81, 76, 70, 0.11);
}

.area-summary-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.area-summary-card:hover::after {
  width: min(190px, calc(100% - 84px));
}

.area-summary-card:hover span,
.area-summary-card:hover h2,
.area-summary-card:hover p {
  color: #fff;
}

.area-summary-card:hover h2 {
  transform: translateY(-4px);
}

.area-summary-card span,
.principle-cards article > span,
.principle-label > span:not(.principle-icon) {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.area-summary-card h2 {
  max-width: 620px;
  margin-top: 18px;
}

.area-summary-card p {
  max-width: 620px;
  margin-top: 20px;
}

.card-hover-note {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.area-summary-card:hover .card-hover-note {
  max-height: 44px;
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.reveal-ready .reveal-on-scroll:nth-child(2) {
  transition-delay: 100ms;
}

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

.reveal-ready .reveal-on-scroll.is-visible:hover {
  transform: translateY(-4px);
}

.addiction-credentials {
  padding-top: 0;
}

.adolescent-expertise {
  padding-top: 0;
}

.supervision-spotlight {
  padding-top: 0;
}

.credentials-kicker-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.credentials-kicker-row .area-kicker {
  width: auto;
  max-width: max-content;
  flex: 0 0 auto;
}

.credentials-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(166, 136, 111, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(166, 136, 111, 0.14), rgba(250, 247, 243, 0.94));
  box-shadow: 0 22px 70px rgba(81, 76, 70, 0.08);
}

.credentials-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.credentials-copy h2 {
  max-width: 1120px;
  margin-top: 14px;
}

.credentials-copy p {
  max-width: 1180px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.supervision-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.supervision-logos img {
  width: auto;
  max-width: min(260px, 100%);
  height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(166, 136, 111, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.82);
  object-fit: contain;
}

.supervision-logos img:first-child {
  max-width: 230px;
}

.credentials-portrait {
  align-self: stretch;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(166, 136, 111, 0.28);
  border-radius: var(--radius);
  background: #fffdf9;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(81, 76, 70, 0.09);
}

.credentials-portrait picture {
  height: 100%;
  min-height: 320px;
}

.credentials-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 62% 42%;
}

.credentials-portrait img.credentials-portrait-profile {
  object-position: center center;
}

.credentials-portrait figcaption {
  padding: 12px 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.adolescent-expertise .credentials-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: center;
}

.adolescent-expertise .credentials-grid {
  grid-column: 1 / -1;
}

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

.addiction-credentials .credentials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credentials-grid article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px;
  border: 1px solid rgba(166, 136, 111, 0.28);
  border-radius: var(--radius);
  background: #fffdf9;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.credentials-grid .principle-icon {
  flex: 0 0 auto;
}

.credentials-grid article:hover {
  transform: translateY(-4px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 20px 54px rgba(81, 76, 70, 0.13);
}

.credentials-grid h3 {
  margin-top: 26px;
  font-size: 22px;
}

.credentials-grid p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.credentials-grid article:hover p,
.credentials-grid article:hover .principle-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.56);
}

.credentials-grid article:hover .principle-icon {
  background: rgba(255, 255, 255, 0.12);
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: method;
}

.method-timeline article {
  position: relative;
  min-height: 440px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.method-timeline article::before {
  content: "";
  position: absolute;
  top: 53px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--line);
}

.method-timeline article:last-child::before {
  display: none;
}

.method-timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.method-timeline article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  align-content: start;
}

.method-timeline article h3 {
  align-self: center;
}

.method-timeline p {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.method-timeline ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.method-timeline li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.method-timeline li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(460px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.principles-intro {
  position: sticky;
  top: 112px;
}

.principles-intro h2 {
  margin-top: 18px;
}

.principles-intro p {
  margin-top: 20px;
  font-size: 18px;
}

.principle-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.principle-cards article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(250, 247, 243, 0.8), #fffdf9);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.principle-cards article:hover .principle-icon {
  background: var(--accent);
  color: #fff;
  transform: translateX(2px) scale(1.04);
}

.principle-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.principle-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(166, 136, 111, 0.3);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(166, 136, 111, 0.08);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.principle-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-cards h3 {
  margin-top: 14px;
}

.principle-cards p {
  margin-top: 12px;
}

.subareas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(480px, 0.92fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.subareas-sticky {
  position: sticky;
  top: 112px;
}

.subareas-sticky h2 {
  margin-top: 18px;
}

.subareas-sticky p {
  margin-top: 18px;
  font-size: 18px;
}

.service-accordion {
  display: grid;
  gap: 12px;
}

.service-accordion details {
  background: #fffdf9;
}

.service-accordion summary {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.service-accordion .faq-answer p {
  font-size: 16px;
}

.service-accordion details:hover {
  border-color: rgba(166, 136, 111, 0.46);
}

.area-cta {
  padding: 64px 0;
  background: var(--accent);
  color: #fff;
}

.area-cta p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.area-cta p a {
  color: var(--sand);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.area-cta p a:hover,
.area-cta p a:focus-visible {
  color: #fff;
}

.collaborator-specialty-link {
  color: inherit;
  text-decoration: none;
}

.collaborator-specialty-link:hover,
.collaborator-specialty-link:focus-visible {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  details,
  summary::after,
  .faq-answer {
    transition: none;
  }
}

.final-cta {
  padding: 64px 0;
  background: var(--accent);
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.84);
  margin-top: 14px;
}

.final-grid {
  align-items: center;
}

.final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.legal-page {
  min-height: 64vh;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(81, 76, 70, 0.05);
}

.legal-sidebar span {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-sidebar a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-sidebar a[aria-current="page"],
.legal-sidebar a:hover {
  background: var(--sand);
  color: var(--ink);
}

.legal-content {
  min-width: 0;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(81, 76, 70, 0.05);
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.legal-content h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.96;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  overflow-wrap: break-word;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-table {
  display: grid;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.8fr;
}

.legal-table > div + div {
  border-top: 1px solid var(--line);
}

.legal-table strong,
.legal-table span {
  padding: 14px 16px;
}

.legal-table strong {
  background: var(--sand);
}

.legal-table span {
  color: var(--ink-soft);
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.breadcrumbs-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.breadcrumbs-separator {
  color: var(--accent-dark);
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--ink);
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer .legal {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand {
  color: #fff;
  display: inline-block;
  margin-bottom: 18px;
  width: 190px;
}

.footer-brand picture,
.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-brand img {
  object-fit: contain;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.site-footer a {
  display: block;
  margin: 10px 0;
}

.footer-menu,
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu .sub-menu {
  display: grid;
  gap: 6px;
  margin: 4px 0 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-menu .sub-menu a {
  margin: 0;
  font-size: 0.94em;
  color: rgba(255, 255, 255, 0.58);
}

.footer-menu .sub-menu a:hover {
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact-item {
  display: grid !important;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 0.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  opacity: 0.82;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.profile-hero {
  padding-top: clamp(76px, 9vw, 120px);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.profile-hero-copy h1 {
  max-width: 780px;
  margin: 18px 0 12px;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.98;
}

.profile-role {
  margin: 0 0 24px;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 700;
}

.profile-hero-copy > p:not(.profile-role) {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.72;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.profile-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.68);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.profile-portrait {
  margin: 0;
}

.profile-portrait picture {
  aspect-ratio: 4 / 5;
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-portrait figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

@media (max-width: 1240px) {
  .profile-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.profile-card-grid .area-summary-card {
  min-height: 330px;
  justify-content: flex-start;
  padding: clamp(26px, 2.6vw, 34px);
}

.profile-card-grid .area-summary-card h2 {
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(27px, 2.35vw, 35px);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.profile-card-grid .area-summary-card p {
  max-width: 100%;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.68;
}

.profile-cv-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.profile-cv-heading {
  position: sticky;
  top: 108px;
}

.profile-cv-heading h2 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1;
}

.profile-cv-heading p {
  font-size: 18px;
  line-height: 1.75;
}

.profile-cv-list {
  display: grid;
  gap: 16px;
}

.profile-cv-list article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.8);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.06);
}

.profile-cv-list h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.profile-cv-list p,
.profile-cv-list li {
  font-size: 17px;
  line-height: 1.72;
}

.profile-cv-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.collaborators-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.collaborators-hero .profile-hero-copy h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.collaborators-hero-note {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
}

.collaborators-hero-note h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.collaborators-hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

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

.collaborator-profile-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.06);
}

.collaborator-profile-card picture {
  aspect-ratio: 4 / 2.7;
}

.collaborator-profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaborator-profile-card > div {
  display: grid;
  align-content: start;
  padding: clamp(22px, 2.6vw, 30px);
}

.collaborator-profile-card h2 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.08;
}

.collaborator-profile-card .profile-role {
  margin-bottom: 16px;
  font-size: 16px;
}

.collaborator-profile-card p:not(.profile-role) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.collaborator-license {
  margin-top: 20px !important;
  color: var(--accent-dark) !important;
  font-weight: 800;
}

.collaborators-cv-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.collaborators-cv-list {
  display: grid;
  gap: 18px;
}

.collaborators-cv-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.06);
}

.collaborators-cv-list h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.collaborators-cv-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.collaborators-cv-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.collaborators-cv-list li {
  font-size: 15px;
  line-height: 1.68;
}

.collaborators-directory {
  background: var(--paper);
}

.collaborators-directory-list {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.collaborator-full-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 18px 44px rgba(81, 76, 70, 0.06);
}

.collaborator-full-profile figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.collaborator-full-profile picture {
  height: 100%;
  min-height: clamp(460px, 42vw, 620px);
}

.collaborator-full-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.collaborator-full-profile img.monica-profile-photo {
  object-position: center 44%;
  transform: scale(1.08);
}

.collaborator-full-copy {
  display: grid;
  align-content: start;
}

.collaborator-full-copy h2 {
  margin: 14px 0 8px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
}

.collaborator-full-copy .profile-role {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 800;
}

.collaborator-full-copy .collaborator-license {
  margin: 0 0 18px !important;
  color: var(--accent-dark) !important;
  font-size: 16px;
  font-weight: 800;
}

.collaborator-full-copy > p:not(.profile-role):not(.collaborator-license) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.collaborator-cv-summary {
  margin-top: 14px;
  padding-top: 0;
}

.collaborator-cv-summary h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.18;
}

.collaborator-cv-summary h3 + ul,
.collaborator-cv-summary h3 + p {
  margin-top: 0;
}

.collaborator-cv-summary ul + h3,
.collaborator-cv-summary p + h3 {
  margin-top: 0;
  padding-top: 38px;
}

.collaborator-cv-summary .collaborator-formation-title {
  margin-top: 14px;
  padding-top: 0;
}

@media (min-width: 769px) {
  .collaborator-cv-summary .collaborator-formation-title {
    display: block;
    margin-top: 14px;
    padding-top: 0;
  }
}

.collaborator-cv-summary p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.collaborator-cv-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.collaborator-cv-summary li {
  font-size: 15px;
  line-height: 1.68;
}

.maria-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(82px, 10vw, 132px);
  padding-bottom: clamp(30px, 4vw, 52px);
}

.maria-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 243, 0.98) 0%, rgba(250, 247, 243, 0.88) 42%, rgba(250, 247, 243, 0.2) 100%),
    radial-gradient(circle at 78% 22%, rgba(166, 136, 111, 0.22), transparent 32%);
  pointer-events: none;
}

.maria-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.maria-hero-copy h1 {
  margin: 18px 0 14px;
  max-width: 820px;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.98;
}

.maria-hero-copy > p:not(.profile-role) {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.78;
}

.maria-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.maria-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.maria-hero-portrait {
  position: relative;
  margin: 0;
}

.maria-hero-portrait picture {
  aspect-ratio: 4 / 4.4;
}

.maria-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 45%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.maria-hero-portrait figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.maria-impact {
  padding-top: clamp(22px, 3.2vw, 42px);
  padding-bottom: clamp(34px, 4.4vw, 58px);
  background: var(--paper);
}

.maria-axis {
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
}

.maria-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.maria-impact-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.8);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.maria-impact-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.maria-impact-card span {
  color: var(--accent-dark);
  font-weight: 800;
}

.maria-impact-card h2 {
  margin: 0;
  font-size: 34px;
}

.maria-impact-card p {
  font-size: 15px;
  line-height: 1.68;
}

.maria-impact-card:hover {
  transform: translateY(-7px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 26px 54px rgba(81, 76, 70, 0.18);
}

.maria-impact-card:hover span,
.maria-impact-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.maria-axis-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.maria-axis-layout h2 {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.08;
}

.maria-axis-grid {
  display: grid;
  gap: 16px;
}

.maria-axis-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
}

.maria-axis-grid h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.maria-axis-grid p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
}

.maria-cv-layout {
  align-items: start;
}

.maria-cv {
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(44px, 5.4vw, 78px);
}

.maria-cv + .area-cta {
  padding-top: clamp(44px, 5vw, 70px);
}

.maria-cv-layout .profile-cv-heading h2 {
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.08;
}

.maria-accordion details {
  background: rgba(255, 253, 249, 0.78);
}

.cv-timeline {
  display: grid;
  gap: 14px;
}

.cv-timeline article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 247, 243, 0.72);
}

.cv-timeline span {
  color: var(--accent-dark);
  font-weight: 800;
}

.cv-timeline p {
  margin: 0;
}

.cv-list,
.publication-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.cv-list li,
.publication-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 247, 243, 0.72);
  line-height: 1.72;
}

.cv-list a {
  color: inherit;
  text-decoration: none;
}

.cv-more-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.cv-bullet-list {
  gap: 10px;
  padding: 0 20px 20px 42px;
  list-style: disc;
  list-style-position: outside;
}

.cv-bullet-list li {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.cv-transfer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cv-transfer-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 247, 243, 0.78);
}

.cv-transfer-grid h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.cv-transfer-grid p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: minmax(132px, 1fr) auto auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav .wp-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav .wp-menu > li > a {
    width: 100%;
    padding: 12px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-dropdown,
  .main-nav .menu-item-has-children {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-toggle::after,
  .main-nav .menu-item-has-children > a::after {
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-submenu,
  .main-nav .sub-menu {
    position: static;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 4px 0 10px;
    padding: 6px 0 6px 16px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu,
  .main-nav .menu-item-has-children:hover > .sub-menu,
  .main-nav .menu-item-has-children:focus-within > .sub-menu {
    display: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-submenu,
  .main-nav .menu-item-has-children.is-open > .sub-menu {
    display: grid;
    transform: none;
  }

  .nav-submenu span,
  .nav-submenu a,
  .main-nav .sub-menu a {
    padding: 7px 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

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

  .hero-grid,
  .area-hero-grid,
  .orly-hero-grid,
  .orly-origin-grid,
  .orly-method-grid,
  .orly-maria-feature,
  .orly-specialties-grid,
  .orly-manifesto-grid,
  .orly-dossier-grid,
  .orly-principles-layout,
  .orly-people-grid,
  .orly-director-panel,
  .orly-specialization-grid,
  .profile-hero-grid,
  .maria-hero-grid,
  .collaborators-hero-grid,
  .contact-hero-grid,
  .area-summary-grid,
  .about-grid,
  .training-grid,
  .contact-grid,
  .faq-grid,
  .final-grid,
  .evidence-grid,
  .process-grid,
  .principles-grid,
  .subareas-layout,
  .section-heading,
  .legal-layout,
  .credentials-panel,
  .adolescent-expertise .credentials-panel,
  .profile-cv-layout,
  .collaborators-cv-layout,
  .collaborator-full-profile,
  .maria-axis-layout {
    grid-template-columns: 1fr;
  }

  .collaborators-profile-grid,
  .collaborators-cv-list article {
    grid-template-columns: 1fr;
  }

  .collaborator-full-profile picture {
    height: auto;
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .process {
    background: var(--sand);
  }

  .steps,
  .orly-method-intro,
  .orly-manifesto-brand,
  .orly-dossier-index,
  .orly-principles-title,
  .orly-network,
  .legal-sidebar,
  .principles-intro,
  .subareas-sticky,
  .profile-cv-heading {
    position: static;
  }

  .orly-manifesto-brand {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .orly-section-nav {
    grid-column: 1;
  }

  .orly-code-grid {
    grid-template-columns: 1fr;
  }

  .orly-code-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .orly-code-grid article:last-child {
    border-bottom: 0;
  }

  .orly-principles-tabs {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .orly-tabs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .orly-tabs-list button {
    min-height: 64px;
    padding: 16px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
  }

  .orly-tabs-list button:nth-child(2n) {
    border-right: 0;
  }

  .orly-tabs-list button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .orly-tabs-list button:hover,
  .orly-tabs-list button.is-active {
    padding-left: 14px;
  }

  .orly-director-panel {
    min-height: 0;
  }

  .orly-director-panel img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .evidence-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .evidence-intro .text-link {
    justify-self: start;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero .container {
    width: min(1160px, calc(100% - 40px));
    padding-right: 0;
    padding-left: 0;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-integrated {
    min-height: 500px;
    height: 500px;
    object-position: 50% 32%;
  }

  .hero-media::before {
    display: none;
  }

  .hero-highlights {
    max-width: 100%;
  }

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

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

  .orly-collaborators-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orly-specialty-list {
    grid-template-columns: 1fr;
  }

  .profile-card-grid {
    grid-template-columns: 1fr;
  }

  .profile-card-grid .area-summary-card {
    min-height: 0;
  }

  .profile-card-grid .area-summary-card h2 {
    font-size: 30px;
    overflow-wrap: normal;
  }

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

  .cv-transfer-grid {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    max-width: 520px;
  }

  .method-timeline,
  .principle-cards {
    grid-template-columns: 1fr;
  }

  .method-timeline article {
    min-height: auto;
  }

  .method-timeline article::before {
    display: none;
  }

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

  .final-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: auto;
  }

  .section > .container,
  .section-band > .container,
  .area-cta > .container,
  .final-cta > .container,
  .logo-section > .container,
  .contact-hero > .container,
  .site-footer > .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: auto;
  }

  .orly-manifesto > .container,
  .orly-dossier > .container,
  .orly-principles > .container,
  .orly-code > .container,
  .orly-people > .container,
  .orly-specialization > .container {
    width: calc(100% - 44px);
    max-width: none;
    margin-inline: auto;
  }

  .hero .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .site-header {
    grid-template-columns: minmax(118px, 1fr) auto auto;
    gap: 10px;
    justify-content: stretch;
    padding: 12px 14px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .main-nav {
    right: 0;
    left: 0;
    width: auto;
    max-width: none;
    padding: 8px 32px 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 15px;
  }

  .brand {
    width: 126px;
    min-width: 0;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    margin-left: 0;
    font-size: 12.5px;
  }

  h1 {
    font-size: 34px;
    overflow-wrap: normal;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    width: 100%;
    max-width: 100%;
  }

  .collaborators-hero .profile-hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy,
  .hero-copy p,
  .hero-grid,
  .area-hero-grid,
  .area-hero-copy,
  .orly-hero-grid,
  .orly-hero-copy,
  .orly-origin-grid,
  .orly-method-grid,
  .orly-method-steps,
  .orly-maria-feature,
  .orly-collaborators-row,
  .orly-specialties-grid,
  .orly-specialty-list,
  .orly-manifesto-grid,
  .orly-manifesto-copy,
  .orly-section-nav,
  .orly-dossier-grid,
  .orly-dossier-copy,
  .orly-principles-layout,
  .orly-principles-board,
  .orly-code-grid,
  .orly-people-grid,
  .orly-director-panel,
  .orly-network,
  .orly-network-list,
  .orly-specialization-grid,
  .orly-specialization-map,
  .orly-principles-tabs,
  .profile-hero-grid,
  .profile-hero-copy,
  .maria-hero-grid,
  .maria-hero-copy,
  .collaborators-hero-grid,
  .collaborators-directory-list,
  .collaborator-full-profile,
  .maria-axis-layout,
  .profile-cv-layout,
  .collaborators-cv-layout,
  .legal-layout,
  .credentials-panel,
  .credentials-grid,
  .principles-grid,
  .principle-cards,
  .subareas-layout,
  .service-accordion,
  .method-timeline,
  .section-heading,
  .contact-heading,
  .about-grid,
  .training-grid,
  .contact-grid,
  .faq-grid,
  .final-grid {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy p {
    width: 100%;
    max-width: 100%;
  }

  .contact-heading,
  .contact-grid {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  h2 {
    font-size: 34px;
  }

  .contact-panel h2 {
    font-size: 32px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact-panel,
  .map-panel {
    min-width: 0;
  }

  .contact-panel,
  .map-panel,
  .area-hero-media,
  .orly-hero-card,
  .orly-story-card,
  .orly-method-steps article,
  .orly-maria-feature,
  .orly-collaborator-card,
  .orly-specialty-list a,
  .orly-director-panel,
  .orly-principles-board,
  .orly-principles-board article,
  .orly-principles-tabs,
  .orly-network-list a,
  .orly-specialization-map a,
  .founder-card,
  .training-media,
  .profile-portrait,
  .maria-hero-portrait,
  .collaborator-full-profile,
  .service-card,
  .blog-card,
  .area-summary-card,
  .method-timeline article,
  .principle-cards article,
  .service-accordion details,
  .profile-cv-list article,
  .maria-impact-card,
  .maria-axis-grid article,
  .cv-timeline article,
  .cv-list li,
  .publication-list li,
  .cv-transfer-grid article,
  .legal-content,
  .collaborator-card {
    width: 100%;
    max-width: 100%;
  }

  .section,
  .section-band {
    padding: 64px 0;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    max-height: 310px;
  }

  .hero-integrated {
    min-height: 0;
    height: 100%;
    object-position: 56% 34%;
  }

  .hero-highlights {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
    margin-top: 34px;
  }

  .ticker-group {
    gap: 28px;
    padding-right: 28px;
  }

  .ticker-logo {
    width: 190px;
    height: 92px;
  }

  .legal-content {
    padding: 28px 22px;
  }

  .legal-table,
  .legal-table > div,
  .legal-table strong,
  .legal-table span {
    display: block;
  }

  .legal-table > div:first-child {
    display: none;
  }

  .legal-table span {
    padding: 10px 16px;
  }

  .area-summary-card {
    min-height: 0;
    justify-content: flex-start;
    padding: 30px 24px;
  }

  .area-summary-card h2 {
    margin-top: 0;
    font-size: 34px;
    line-height: 1.12;
  }

  .area-summary-card p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.62;
  }

  .service-grid,
  .collaborators-grid,
  .profile-card-grid,
  .maria-impact-grid,
  .evidence-items,
  .footer-grid,
  .credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .credentials-panel {
    padding: 24px 18px;
  }

  .collaborator-full-profile {
    gap: 22px;
    padding: 22px;
  }

  .collaborator-full-profile picture {
    height: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .collaborator-full-copy h2 {
    font-size: 32px;
  }

  .collaborator-cv-summary {
    margin-top: 14px;
    padding-top: 0;
  }

  .credentials-copy h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 36px);
    overflow-wrap: break-word;
  }

  .credentials-copy p,
  .credentials-grid p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .credentials-grid {
    gap: 14px;
  }

  .addiction-credentials .credentials-grid,
  .adolescent-expertise .credentials-grid {
    grid-template-columns: 1fr;
  }

  .credentials-grid article {
    min-width: 0;
    min-height: 0;
    padding: 22px;
  }

  .credentials-grid h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .map-panel {
    min-height: 420px;
  }

  .map-frame {
    min-height: 300px;
  }

  .steps article {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .profile-hero {
    padding-top: 48px;
  }

  .profile-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 38px;
  }

  .profile-hero-copy > p:not(.profile-role) {
    font-size: 17px;
  }

  .profile-portrait picture {
    aspect-ratio: 4 / 4.5;
  }

  .profile-cv-heading h2 {
    font-size: 38px;
  }

  .profile-cv-list h3 {
    font-size: 24px;
  }

  .maria-hero {
    padding-top: 50px;
  }

  .maria-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 38px;
  }

  .maria-hero-copy > p:not(.profile-role) {
    font-size: 17px;
  }

  .maria-impact-grid,
  .maria-axis-grid,
  .cv-timeline article {
    grid-template-columns: 1fr;
  }

  .maria-impact-card {
    min-height: 0;
  }

  .maria-impact-card h2 {
    margin-top: 0;
  }

  .maria-axis-layout h2 {
    font-size: 34px;
  }

  .final-actions,
  .hero-actions,
  .area-hero-actions,
  .orly-hero-actions {
    display: grid;
    width: 100%;
  }

  .orly-hero-copy h1 {
    font-size: 38px;
  }

  .orly-hero-copy p,
  .orly-method-intro p,
  .orly-maria-feature p,
  .orly-specialties-copy p {
    font-size: 17px;
  }

  .orly-story-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .orly-story-card h2,
  .orly-method-intro h2,
  .orly-maria-feature h3,
  .orly-specialties-copy h2 {
    font-size: 34px;
  }

  .orly-method-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .orly-collaborators-row {
    grid-template-columns: 1fr;
  }

  .orly-manifesto {
    min-height: 0;
    padding: 52px 0;
  }

  .orly-manifesto-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .orly-manifesto-copy p,
  .orly-dossier-copy p,
  .orly-principles-board p,
  .orly-tab-panel p,
  .orly-code-grid p,
  .orly-director-copy p,
  .orly-network > p,
  .orly-specialization p {
    font-size: 16px;
  }

  .orly-section-nav {
    grid-template-columns: 1fr;
  }

  .orly-section-nav a {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .orly-section-nav a:last-child {
    border-bottom: 0;
  }

  .orly-dossier-copy h2,
  .orly-principles-title h2,
  .orly-code-header h2,
  .orly-director-copy h2,
  .orly-specialization h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .orly-principles-board article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .orly-principles-tabs {
    display: none;
  }

  .orly-principles-mobile {
    display: grid;
    gap: 12px;
  }

  .orly-principles-mobile details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffdf9;
    box-shadow: 0 14px 34px rgba(81, 76, 70, 0.06);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  }

  .orly-principles-mobile details[open] {
    border-color: rgba(166, 136, 111, 0.48);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 18px 40px rgba(81, 76, 70, 0.1);
  }

  .orly-principles-mobile summary {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 20px 56px 20px 20px;
    cursor: pointer;
    list-style: none;
  }

  .orly-principles-mobile summary::-webkit-details-marker {
    display: none;
  }

  .orly-principles-mobile summary::after {
    content: "+";
    position: absolute;
    top: 22px;
    right: 20px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent-dark);
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    transform: none;
    transition: background 220ms ease, color 220ms ease;
  }

  .orly-principles-mobile details[open] summary::after {
    content: "+";
    background: var(--accent);
    color: #fff;
    transform: none;
  }

  .orly-principles-mobile strong {
    display: block;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .orly-principles-mobile summary span {
    display: block;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.12;
  }

  .orly-principles-mobile .faq-answer {
    overflow: hidden;
    transition: height 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, transform 260ms ease;
  }

  .orly-principles-mobile p {
    margin: 0;
    padding: 0 20px 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .orly-code-grid article {
    padding: 24px 22px;
  }

  .orly-code-grid p {
    margin-top: 18px;
  }

  .orly-director-copy {
    padding: 28px 24px;
  }

  .orly-director-panel figure {
    aspect-ratio: 4 / 4.35;
    background: rgba(255, 253, 249, 0.08);
  }

  .orly-director-panel img {
    height: 100%;
    aspect-ratio: auto;
    object-position: center 18%;
  }

  .orly-director-copy .btn {
    width: 100%;
  }

  .orly-network-list a {
    grid-template-columns: 62px 1fr;
  }

  .orly-network-list img {
    width: 62px;
    height: 62px;
  }

  .orly-network-list strong {
    font-size: 20px;
  }

  .orly-specialization-map {
    grid-template-columns: 1fr;
  }

  .orly-specialization-map a {
    grid-column: auto !important;
    min-height: 104px;
  }

  .orly-specialization-map a p {
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 14px;
    opacity: 1;
    transform: none;
  }

  .orly-specialization-map a:hover p,
  .orly-specialization-map a:focus-visible p {
    color: rgba(255, 255, 255, 0.86);
  }

  .area-hero-media figcaption {
    display: grid;
  }

  .whatsapp-float {
    right: auto;
    bottom: 16px;
    left: calc(100dvw - 70px);
    width: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

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

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

  .ticker-track,
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Native WordPress blog: archive, single posts and widget-managed sidebar. */
.blog-page {
  background: var(--paper);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-archive-header {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.blog-archive-header h1 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
}

.blog-archive-header p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.blog-post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  box-shadow: 0 14px 34px rgba(81, 76, 70, 0.06);
}

.blog-post-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.blog-post-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.blog-post-card-media:hover img,
.blog-post-card-media:focus-visible img {
  transform: scale(1.035);
}

.blog-post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.blog-post-card-meta,
.single-post-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-post-card-meta a,
.single-post-meta a {
  color: inherit;
}

.blog-post-card-categories,
.single-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
}

.blog-post-card-meta time,
.single-post-meta time {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.single-post-author {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.single-post-author a {
  color: var(--accent-dark);
}

.blog-post-card h2 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.08;
}

.blog-post-card h2 a {
  color: var(--ink);
}

.blog-post-card h2 a:hover,
.blog-post-card h2 a:focus-visible {
  color: var(--accent-dark);
}

.blog-post-card-body > p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.blog-post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.blog-post-card-link span {
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.blog-post-card-link:hover span,
.blog-post-card-link:focus-visible span {
  transform: translateX(3px);
}

.blog-empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.blog-empty-state h2 {
  font-family: var(--font-serif);
  font-size: 30px;
}

.blog-empty-state p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.blog-sidebar {
  position: sticky;
  top: 104px;
  min-width: 0;
  padding-left: clamp(24px, 3vw, 38px);
  border-left: 1px solid var(--line);
}

.blog-widget {
  margin: 0;
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.blog-widget + .blog-widget {
  margin-top: 28px;
}

.blog-widget-title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.15;
}

.blog-widget ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-widget li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.blog-widget.widget_recent_entries .post-date {
  display: none;
}

.blog-widget.widget_categories li {
  font-size: 0;
}

.blog-widget.widget_categories li a {
  font-size: 14px;
}

.blog-widget a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
}

.blog-widget a:hover,
.blog-widget a:focus-visible {
  color: var(--accent-dark);
  border-color: currentColor;
}

.blog-widget .search-form {
  display: grid;
  gap: 10px;
}

.blog-widget .search-form .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.blog-widget .search-field {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.blog-widget .search-submit {
  min-height: 42px;
  padding: 9px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.blog-widget .search-submit:hover,
.blog-widget .search-submit:focus-visible {
  background: var(--accent-dark);
}

.single-post-article {
  width: 100%;
  padding: 0 clamp(10px, 1.5vw, 22px) clamp(40px, 5vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.single-post-header h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(36px, 4.25vw, 58px);
  line-height: 1.08;
  text-align: left;
}

.single-post-header .single-post-meta {
  margin-top: 18px;
}

.single-post-featured-image {
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: max(4px, calc(var(--radius) - 2px));
  background: var(--sand);
}

.single-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.entry-content {
  max-width: 760px;
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.entry-content > * + * {
  margin-top: 1.25em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  font-family: var(--font-serif);
  line-height: 1.15;
}

.entry-content h2 {
  margin: 1.15em 0 0.65em;
  font-size: clamp(30px, 4vw, 44px);
}

.entry-content h3 {
  margin: 1.8em 0 0.6em;
  font-size: clamp(25px, 3vw, 34px);
}

.entry-content h2 + *,
.entry-content h3 + *,
.entry-content h4 + * {
  margin-top: 0;
}

.entry-content a,
.single-post-tags a,
.single-post-navigation a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.entry-content a:hover,
.entry-content a:focus-visible,
.single-post-tags a:hover,
.single-post-tags a:focus-visible,
.single-post-navigation a:hover,
.single-post-navigation a:focus-visible {
  color: var(--ink);
  text-decoration: none;
}

.entry-content blockquote {
  position: relative;
  margin: 2em 0;
  padding: 24px 52px;
  border-left: 4px solid var(--accent);
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.15em;
  font-style: italic;
  line-height: 1.5;
}

.entry-content blockquote::before,
.entry-content blockquote::after {
  position: absolute;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}

.entry-content blockquote::before {
  top: 16px;
  left: 20px;
  content: "“";
}

.entry-content blockquote::after {
  right: 20px;
  bottom: 12px;
  content: "”";
}

.entry-content blockquote span[aria-hidden="true"] {
  display: none;
}

.entry-content blockquote p {
  margin: 0;
}

.entry-content blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-family: var(--font-sans);
  font-size: 0.7em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.3em;
}

.entry-content li + li {
  margin-top: 0.45em;
}

.entry-content img,
.entry-content video,
.entry-content iframe {
  max-width: 100%;
}

.entry-content img {
  height: auto;
}

.entry-content figure {
  margin: 2em 0;
}

.entry-content figcaption {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
  color: var(--ink-soft);
  font-size: 14px;
}

.single-post-tags span {
  font-weight: 700;
}

.single-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.single-post-navigation div:last-child {
  text-align: right;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.nav-links .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-sidebar {
    position: static;
    padding: 34px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@media (max-width: 680px) {
  .blog-archive-header h1,
  .single-post-header h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .blog-archive-header p {
    font-size: 16px;
  }

  .blog-post-list {
    grid-template-columns: 1fr;
  }

  .single-post-article {
    padding: 0 0 36px;
  }

  .entry-content {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  .single-post-navigation {
    grid-template-columns: 1fr;
  }

  .single-post-navigation div:last-child {
    text-align: left;
  }
}
