html {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f2eee5;
}

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

main:focus { outline: 0; }

.skipLink {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #fff;
  background: #172723;
  font: 700 14px/1.2 ui-sans-serif, system-ui, sans-serif;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skipLink:focus { transform: translateY(0); }

.siteShell {
  --paper: #f2eee5;
  --paper-deep: #e7dfd1;
  --ink: #172723;
  --green: #315e52;
  --green-dark: #173d35;
  --sage: #d8e1d7;
  --amber: #c8783d;
  --orange-text: #8d3518;
  --white: #fbfaf6;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.siteShell a,
.mobilePreviewStage a {
  color: inherit;
  text-decoration: none;
}

.siteShell img,
.mobilePreviewStage img {
  display: block;
  width: 100%;
}

.siteShell h1,
.siteShell h2,
.siteShell h3,
.siteShell p,
.siteShell figure,
.siteShell ol,
.siteShell ul,
.mobilePreviewStage h1,
.mobilePreviewStage h2,
.mobilePreviewStage p,
.mobilePreviewStage ol {
  margin: 0;
}

.siteShell a:focus-visible,
.mobilePreviewStage a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #172723;
}

.siteShell a,
.mobilePreviewStage a {
  touch-action: manipulation;
}

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

.header a,
.heroActions a,
.inlineCta,
.twoDoors a,
.footer a,
.priceTickets a,
.institutionContact a,
.mobileHeader a,
.mobileHeroCopy > a,
.mobileTherapy > a,
.mobileInstitution > a,
.mobileMenu a,
.mobileFooter a {
  min-height: 44px;
}

.header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(235px, 280px) minmax(440px, 760px) minmax(140px, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  width: min(100% - 64px, 1380px);
  min-height: 148px;
  margin: 0 auto;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.headerCompact { min-height: 136px; }

.brandLogo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  min-height: 80px;
  justify-self: start;
}

.brandLogo img {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  object-fit: contain;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.brandLogo > span {
  display: grid;
  gap: 5px;
  line-height: 1.05;
}

.brandLogo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.brandLogo small {
  max-width: 126px;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.practiceNavigation {
  display: grid;
  gap: 8px;
  align-content: center;
}

.practiceNavigation > p {
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktopNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 34%, transparent);
  background: var(--white);
}

.desktopNav a {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 76px;
  padding: 11px 18px 12px;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.desktopNav a::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.desktopNav a + a {
  border-left: 1px solid color-mix(in srgb, var(--ink) 34%, transparent);
}

.desktopNav a > span {
  color: color-mix(in srgb, var(--ink) 58%, transparent);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.desktopNav a > strong {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
  transition: color .2s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.desktopNav a > small {
  margin-top: 4px;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
  font-size: 10px;
  line-height: 1.3;
  transition: color .2s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.practiceClinic {
  background: color-mix(in srgb, var(--sage) 56%, var(--white));
}

.practiceInstitution {
  background: color-mix(in srgb, var(--amber) 24%, var(--white));
}

.practiceInstitution::after { background: var(--amber); }

.desktopNav .practiceClinic[aria-current="page"] {
  color: var(--white);
  background: var(--green-dark);
}

.desktopNav .practiceInstitution[aria-current="page"] {
  color: var(--ink);
  background: var(--amber);
}

.desktopNav a[aria-current="page"] > span,
.desktopNav a[aria-current="page"] > small {
  color: currentColor;
  opacity: .76;
}

.headerContact {
  display: grid;
  align-content: center;
  min-height: 44px;
  justify-self: end;
  line-height: 1.25;
  text-align: right;
}

.headerContact span {
  color: color-mix(in srgb, var(--ink) 58%, transparent);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.headerContact strong {
  font-size: 16px;
  font-weight: 750;
  transition: color .2s ease;
}

/* Ruch jest dodatkiem: bez JS cała treść pozostaje widoczna. */
.motionReady [data-plan-motion] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity .58s cubic-bezier(.22, 1, .36, 1) var(--plan-motion-delay, 0ms),
    transform .58s cubic-bezier(.22, 1, .36, 1) var(--plan-motion-delay, 0ms);
}

.motionReady [data-plan-motion="left"] { transform: translate3d(-22px, 0, 0); }
.motionReady [data-plan-motion="right"] { transform: translate3d(22px, 0, 0); }
.motionReady [data-plan-motion="zoom"] { transform: scale(.975); }

.motionReady [data-plan-motion].motionVisible,
.motionReady [data-plan-motion]:focus-within {
  opacity: 1;
  transform: none;
}

.motionReady [data-plan-motion]:focus-within {
  transition: none;
  transition-delay: 0s;
}

.heroCopy > .kicker {
  animation: planHeroEnter .58s cubic-bezier(.22, 1, .36, 1) both;
}

.heroCopy > h1 {
  animation: planHeroEnter .7s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.heroLead {
  animation: planHeroEnter .66s cubic-bezier(.22, 1, .36, 1) .18s both;
}

.heroActions {
  animation: planHeroEnter .66s cubic-bezier(.22, 1, .36, 1) .24s both;
}

.firstStep,
.heroDogRule {
  animation: planHeroEnter .66s cubic-bezier(.22, 1, .36, 1) .28s both;
}

.heroFigure {
  animation: planHeroFigureEnter .86s cubic-bezier(.22, 1, .36, 1) .1s both;
}

.parentHero > div,
.institutionTitle {
  animation: planHeroEnter .72s cubic-bezier(.22, 1, .36, 1) both;
}

.parentHero figure,
.institutionHero figure {
  animation: planHeroFigureEnter .86s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.mobileHeader,
.mobilePracticeSwitch {
  animation: planHeroEnter .56s cubic-bezier(.22, 1, .36, 1) both;
}

.mobileHeroImage { animation: planHeroFigureEnter .72s cubic-bezier(.22, 1, .36, 1) .06s both; }
.mobileHeroCopy > * { animation: planHeroEnter .58s cubic-bezier(.22, 1, .36, 1) both; }
.mobileHeroCopy > *:nth-child(2) { animation-delay: .06s; }
.mobileHeroCopy > *:nth-child(3) { animation-delay: .1s; }
.mobileHeroCopy > *:nth-child(4) { animation-delay: .14s; }
.mobileHeroCopy > *:nth-child(5) { animation-delay: .18s; }
.mobileHeroCopy > *:nth-child(6) { animation-delay: .22s; }

@keyframes planHeroEnter {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes planHeroFigureEnter {
  from { opacity: 0; transform: translate3d(0, 16px, 0) scale(.985); }
  to { opacity: 1; transform: none; }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
  grid-template-rows: auto 68px;
  width: min(100% - 64px, 1380px);
  min-height: 700px;
  margin: 0 auto;
  padding-top: 70px;
}

.heroCopy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding: 0 7vw 65px 2vw;
}

.kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.parentHero h1,
.institutionHero h1 {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6.4vw, 104px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero h1 span {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}

.heroLead {
  max-width: 590px;
  margin-top: 30px !important;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.heroDogRule {
  max-width: 590px;
  margin-top: 18px !important;
  padding: 12px 15px;
  border-left: 3px solid var(--green);
  color: var(--green-dark);
  background: color-mix(in srgb, var(--sage) 62%, transparent);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.heroActions {
  display: grid;
  justify-items: start;
  gap: 14px;
  max-width: 590px;
  margin-top: 36px;
}

.heroPrimaryCta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: stretch;
  width: 100%;
  min-height: 122px !important;
  overflow: hidden;
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--green-dark);
  box-shadow: 0 18px 38px rgba(23, 61, 53, .2);
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.heroCtaCopy {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 22px 26px;
}

.heroCtaCopy small {
  color: #b7cec5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.heroCtaCopy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.heroCtaCopy > span {
  margin-top: 6px;
  color: #dbe8e3;
  font-size: 13px;
  font-weight: 700;
}

.heroCtaArrow {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, .18);
  color: var(--ink);
  background: var(--amber);
  font-family: Georgia, serif;
  font-size: 32px;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), background-color .22s ease;
}

.primaryButton,
.darkButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  color: var(--white) !important;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.quietLink {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 35%, transparent);
  font-size: 13px;
  font-weight: 650;
  justify-self: start;
  transition: color .2s ease, border-color .2s ease;
}

.quietLink span {
  margin-left: 8px;
  display: inline-block;
  transition: transform .22s ease;
}

.firstStep {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  max-width: 590px;
  margin-top: 19px;
}

.firstStep > span {
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--green) 42%, transparent);
  border-radius: 999px;
  color: var(--green-dark);
  background: color-mix(in srgb, var(--sage) 54%, transparent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.firstStep p {
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 14px;
}

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

.heroFigure {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-height: 560px;
  border-radius: 42% 42% 6px 6px;
  background: var(--sage);
}

.heroFigure img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.heroFigure::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 -110px 100px -80px rgba(10, 30, 25, .68);
  pointer-events: none;
}

.heroFigure figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  display: grid;
  color: white;
  text-align: right;
}

.heroFigure figcaption strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.heroFigure figcaption span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.heroRoute {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.heroRoute i {
  height: 1px;
  background: color-mix(in srgb, var(--ink) 32%, transparent);
}

.routeStart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.routeStart::before {
  width: 9px;
  height: 9px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
  content: "";
}

.reassurance {
  display: grid;
  place-items: center;
  padding: 120px 32px 110px;
  color: var(--white);
  background: var(--green-dark);
  text-align: center;
}

.reassurance > p {
  color: #b9ccc5;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.reassurance h2 {
  max-width: 920px;
  margin-top: 16px !important;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.concernsLead {
  margin-top: 30px !important;
  color: #d8e5e0;
  font-size: 16px;
  font-weight: 650;
}

.supportLine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1220px);
  margin-top: 34px !important;
  padding: 0;
  list-style: none;
}

.supportLine li {
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: 210px;
  padding: 22px 23px 24px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  text-align: left;
}

.supportLine li > span {
  color: #e9a16c;
  font-family: Georgia, serif;
  font-size: 15px;
}

.supportLine li > strong {
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.14;
}

.supportCta {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr) 64px;
  align-items: center;
  gap: 20px;
  width: min(100%, 1220px);
  min-height: 96px !important;
  margin-top: 32px;
  padding-left: 28px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 5px;
  color: var(--ink) !important;
  background: var(--white);
  text-align: left;
  transition: background-color .22s ease, transform .22s ease;
}

.supportCta > span {
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: 14px;
}

.supportCta > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.15;
}

.supportCta > i {
  display: grid;
  place-items: center;
  align-self: stretch;
  border-left: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  color: var(--white);
  background: var(--amber);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: normal;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}

.trustStrip {
  display: grid;
  grid-template-columns: minmax(190px, .55fr) minmax(0, 2.45fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: stretch;
  padding: 34px max(32px, calc((100vw - 1380px) / 2));
  color: var(--ink);
  background: var(--sage);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.trustStrip > p {
  display: grid;
  align-content: center;
  gap: 8px;
  padding-right: 28px;
  border-right: 1px solid color-mix(in srgb, var(--ink) 23%, transparent);
}

.trustStrip > p span,
.trustList li > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.trustStrip > p strong {
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.trustList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.trustList li {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 112px;
  padding: 14px clamp(16px, 2vw, 28px);
  border-left: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.trustList li:first-child { border-left: 0; }

.trustList li > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.trustList li > small {
  max-width: 220px;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
  font-size: 11px;
  line-height: 1.35;
}

.journeySection {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.8fr);
  gap: 7vw;
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  padding: 130px 0;
}

.sectionIntro h2,
.sectionIntroSlim h2,
.visitHeading h2,
.ledgerHeader h2,
.scopeSection h2,
.safetySection h2,
.programMap h2,
.formatIntro h2,
.logisticsSection h2,
.institutionMolly h2,
.institutionContact h2,
.footer h2 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.sectionIntro > p:last-child {
  margin-top: 24px;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: 15px;
}

.sectionIntro > .journeyLead {
  max-width: 680px;
  margin-top: 28px;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 24px);
  letter-spacing: -.015em;
  line-height: 1.5;
}

.journeyList {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.journeyList::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 23px;
  width: 1px;
  background: color-mix(in srgb, var(--green) 36%, transparent);
  content: "";
}

.motionReady .journeyList::before,
.motionReady .mobilePath ol::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}

.motionReady .journeyList:has(> li.motionVisible)::before,
.motionReady .mobilePath ol:has(> li.motionVisible)::before {
  transform: scaleY(1);
}

.journeyList li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  min-height: 0;
  padding-bottom: 38px;
  transition: color .2s ease;
}

.journeyNumber {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-self: start;
  width: 47px;
  height: 47px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--paper);
  font-family: Georgia, serif;
  font-size: 15px;
  transition: color .24s ease, background-color .24s ease, transform .24s ease;
}

.journeyList h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.journeyList p {
  max-width: 590px;
  margin-top: 8px;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  font-size: 15px;
  line-height: 1.62;
}

.journeyArrow {
  color: var(--orange-text);
  font-size: 24px;
  transition: transform .24s ease;
}

.decisionSection {
  padding: 120px max(32px, calc((100vw - 1380px) / 2));
  background: var(--white);
}

.sectionIntroSlim {
  max-width: 770px;
}

.decisionRows {
  margin-top: 62px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.decisionRow {
  display: grid;
  grid-template-columns: minmax(250px, .9fr) minmax(70px, .4fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: 30px;
  min-height: 148px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  transition: background-color .24s ease;
}

.decisionPrompt {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
}

.decisionPrompt span {
  color: var(--orange-text);
  font-family: Georgia, serif;
  font-size: 18px;
}

.decisionPrompt p {
  max-width: 410px;
  font-size: 15px;
  font-weight: 600;
}

.decisionConnector {
  display: flex;
  align-items: center;
}

.decisionConnector i {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--green);
}

.decisionConnector i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transition: transform .28s ease;
}

.motionReady .decisionRow .decisionConnector i {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .62s cubic-bezier(.22, 1, .36, 1) var(--plan-motion-delay, 0ms);
}

.motionReady .decisionRow .decisionConnector i::after {
  transform: scale(.45);
}

.motionReady .decisionRow.motionVisible .decisionConnector i,
.motionReady .decisionRow.motionVisible .decisionConnector i::after {
  transform: none;
}

.decisionAnswer {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.decisionAnswer h3 {
  min-width: 0;
  font-family: Georgia, serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.decisionAnswer p {
  color: color-mix(in srgb, var(--ink) 60%, transparent);
  font-size: 12px;
}

.decisionAnswer strong {
  white-space: nowrap;
  font-size: 15px;
}

.inlineCta {
  display: flex;
  justify-content: space-between;
  max-width: 470px;
  margin-top: 34px;
  margin-left: auto;
  padding: 17px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: color .22s ease, border-color .22s ease;
}

.inlineCta span,
.twoDoors a span,
.priceTickets a span,
.mobileInstitution > a span {
  display: inline-block;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}

.mollyBranch {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(80px, .28fr) minmax(330px, .8fr);
  align-items: center;
  gap: 0;
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding: 130px 0;
}

.mollyPhoto {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 690px;
  border-radius: 48% 48% 6px 6px;
}

.mollyPhoto img {
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.branchLine {
  display: flex;
  align-items: center;
}

.branchLine span {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--amber);
}

.motionReady .branchLine span {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .72s cubic-bezier(.22, 1, .36, 1) .08s;
}

.motionReady .branchLine.motionVisible span {
  transform: scaleX(1);
}

.branchLine span::before,
.branchLine span::after {
  position: absolute;
  top: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.branchLine span::before { left: 0; }
.branchLine span::after { right: 0; }

.mollyCopy {
  padding: 52px;
  background: var(--sage);
  transition: background-color .28s ease;
}

.mollyCopy h2 {
  margin-top: 15px;
  font-family: Georgia, serif;
  font-size: clamp(35px, 3.6vw, 56px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.mollyCopy > p:not(.kicker) {
  margin-top: 24px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.mollyCopy > .mollyProfile,
.mollyCopy > .mollyHealth {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.55;
}

.mollyCopy > .mollyProfile {
  color: var(--green-dark);
  font-weight: 700;
}

.mollyCopy > .mollyPending {
  margin-top: 20px;
  padding: 10px 12px;
  border-left: 3px solid var(--amber);
  color: color-mix(in srgb, var(--ink) 68%, transparent);
  background: color-mix(in srgb, var(--white) 55%, transparent);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
}

.mollyCopy ul {
  display: grid;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}

.mollyCopy li::before {
  margin-right: 9px;
  color: var(--green);
  content: "✓";
}

.twoDoors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
}

.twoDoors > div {
  min-height: 430px;
  padding: clamp(55px, 7vw, 110px);
  background: var(--green-dark);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
}

.twoDoors > div:last-child {
  color: var(--ink);
  background: var(--amber);
}

.twoDoors .kicker {
  color: #b8ccc4;
}

.twoDoors > div:last-child .kicker {
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.twoDoors h2 {
  max-width: 530px;
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.twoDoors p:not(.kicker) {
  max-width: 480px;
  margin-top: 23px;
  color: rgba(255, 255, 255, .72);
}

.twoDoors > div:last-child p:not(.kicker) {
  color: color-mix(in srgb, var(--ink) 73%, transparent);
}

.twoDoors a {
  display: flex;
  justify-content: space-between;
  max-width: 390px;
  margin-top: 36px;
  padding: 16px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  transition: padding-left .22s ease, color .22s ease;
}

.experienceStrip {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 8vw;
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  padding: 110px 0;
}

.experienceStrip > div {
  display: grid;
}

.experienceStrip strong {
  margin-top: 10px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: clamp(58px, 8vw, 105px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1;
}

.experienceStrip > div span {
  max-width: 340px;
  color: color-mix(in srgb, var(--ink) 64%, transparent);
  font-size: 13px;
}

.experienceStrip ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
  margin: 0;
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  list-style: none;
}

.experienceStrip li {
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  font-size: 13px;
  font-weight: 620;
  overflow-wrap: anywhere;
  transition: color .2s ease, padding-left .2s ease;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 7vw;
  padding: 110px max(32px, calc((100vw - 1380px) / 2)) 28px;
  color: var(--white);
  background: #101d1a;
}

.footer .kicker { color: #9fb9ae; }

.footerLead {
  max-width: 670px;
  margin-top: 23px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.footerActions {
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 14px;
}

.footerActions .primaryButton {
  border-color: var(--amber);
  color: var(--ink) !important;
  background: var(--amber);
}

.textButtonLight {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  font-weight: 650;
}

.footerActions > span {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.footerBottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Dla rodzica */

.parentHero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 8vw;
  width: min(100% - 64px, 1280px);
  min-height: 680px;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.parentHero > div {
  max-width: 720px;
}

.parentHero h1 {
  font-size: clamp(53px, 6.2vw, 94px);
}

.parentHero > div > p:not(.kicker) {
  max-width: 620px;
  margin-top: 28px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 19px;
}

.parentHero .primaryButton { margin-top: 32px; }

.parentHero figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 48% 48% 5px 5px;
}

.parentHero figure img {
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.parentHero figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px;
  border-radius: 3px;
  background: rgba(251, 250, 246, .92);
  font-size: 11px;
  text-align: center;
}

.visitBoard {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 7vw;
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--green-dark);
}

.visitHeading .kicker { color: #a9c3b9; }

.visitHeading > p:last-child {
  margin-top: 27px;
  color: rgba(255, 255, 255, .67);
}

.draftBadge {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 11px;
  border: 1px solid var(--amber);
  border-radius: 999px;
  color: #efb283;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.visitBoard ol {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.visitBoard li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  min-height: 112px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.visitBoard li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .22); }

.visitBoard li span {
  color: var(--amber);
  font-family: Georgia, serif;
  font-size: 20px;
}

.visitBoard li p {
  color: rgba(255, 255, 255, .82);
}

.offerLedger {
  padding: 125px max(32px, calc((100vw - 1380px) / 2));
  background: var(--white);
}

.ledgerHeader {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: end;
  gap: 60px;
}

.ledgerHeader > p {
  color: color-mix(in srgb, var(--ink) 65%, transparent);
  font-size: 14px;
}

.ledgerTable {
  margin-top: 60px;
  border-top: 2px solid var(--ink);
}

.ledgerTable article {
  display: grid;
  grid-template-columns: 54px minmax(300px, 1.5fr) minmax(150px, .45fr) minmax(110px, auto);
  align-items: start;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
}

.ledgerNumber {
  color: var(--orange-text);
  font-family: Georgia, serif;
  font-size: 18px;
}

.ledgerTable h3 {
  min-width: 0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.ledgerTable article div p {
  max-width: 660px;
  margin-top: 7px;
  color: color-mix(in srgb, var(--ink) 62%, transparent);
  font-size: 13px;
}

.ledgerTable article > span:nth-last-child(2) {
  color: color-mix(in srgb, var(--ink) 62%, transparent);
  font-size: 12px;
}

.ledgerTable article > strong {
  justify-self: end;
  white-space: nowrap;
  font-size: 15px;
}

.scopeSection {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 7vw;
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 120px 0;
}

.scopeSection > div:first-child > p:last-child {
  margin-top: 24px;
  color: color-mix(in srgb, var(--ink) 68%, transparent);
}

.scopeSection > ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.scopeSection > ul li {
  padding: 18px 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  font-family: Georgia, serif;
  font-size: 22px;
}

.methodsNote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 7vw;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  background: var(--paper-deep);
}

.methodsNote strong { font-family: Georgia, serif; font-size: 20px; }
.methodsNote p { color: color-mix(in srgb, var(--ink) 66%, transparent); font-size: 13px; }

.safetySection {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(380px, 1.2fr);
  align-items: center;
  gap: 8vw;
  padding: 120px max(32px, calc((100vw - 1200px) / 2));
  background: var(--sage);
}

.safetyPortrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 4px 4px;
}

.safetyPortrait img {
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.safetySection ul {
  display: grid;
  gap: 0;
  margin: 35px 0 0;
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  list-style: none;
}

.safetySection li {
  padding: 16px 0 16px 26px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  font-size: 14px;
}

.safetySection li::before {
  margin-left: -26px;
  margin-right: 12px;
  color: var(--green);
  content: "—";
}

.safetyIntro {
  max-width: 720px;
  margin-top: 17px !important;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 14px;
  line-height: 1.6;
}

/* Dla placówek */

.institutionShell {
  --paper: #f3e8d2;
  --amber: #e57d35;
  --green: #235b53;
}

.institutionHero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(420px, .75fr);
  gap: 6vw;
  width: min(100% - 64px, 1380px);
  min-height: 720px;
  margin: 0 auto;
  padding: 75px 0 110px;
}

.institutionTitle {
  align-self: center;
}

.institutionTitle > .kicker {
  position: relative;
  top: -14px;
}

.institutionTitle h1 {
  font-size: clamp(90px, 12vw, 175px);
  line-height: .72;
}

.institutionTitle h1 span {
  color: var(--amber);
  font-style: italic;
}

.institutionTitle > p:not(.kicker) {
  max-width: 580px;
  margin-top: 48px;
  font-size: 19px;
}

.institutionTitle .darkButton { margin-top: 30px; }

.institutionHero figure {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  border-radius: 48% 48% 4px 4px;
}

.institutionHero figure img {
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.institutionHero figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 14px 17px;
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.institutionQuickFacts {
  position: absolute;
  right: 42%;
  bottom: 32px;
  display: grid;
  width: min(370px, 35vw);
  min-width: 320px;
  padding: 24px 26px;
  border: 1px solid var(--ink);
  background: var(--paper);
  transform: rotate(-2deg);
}

.institutionQuickFacts span {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.institutionQuickFacts span:last-child { border: 0; }

.programMap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 8vw;
  padding: 125px max(32px, calc((100vw - 1380px) / 2));
  color: var(--white);
  background: var(--green-dark);
}

.programMap .kicker { color: #a8c4ba; }

.programIntro,
.programTopics {
  min-width: 0;
}

.programMap .programIntro h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.programDescription {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.programDescription p {
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.68;
}

.programTopics h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.programMap ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  list-style: none;
}

.programMap li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  min-height: 0;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.programMap li:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, .28); }
.programMap li:nth-child(even) { padding-left: 20px; }

.programMap li span { color: var(--amber); font-family: Georgia, serif; }
.programMap li p {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.institutionMolly {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 8vw;
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 130px 0;
}

.institutionMolly figure {
  overflow: hidden;
  height: 590px;
  min-height: 0;
  border-radius: 3px 44% 3px 44%;
  background: color-mix(in srgb, var(--amber) 22%, var(--white));
}

.institutionMolly figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.institutionMollyCopy > p:not(.kicker) {
  max-width: 680px;
  margin-top: 20px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 15px;
  line-height: 1.65;
}

.institutionDogotherapist {
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
  background: color-mix(in srgb, var(--amber) 12%, var(--white));
}

.institutionDogotherapist span {
  color: color-mix(in srgb, var(--ink) 62%, transparent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.institutionDogotherapist strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.institutionDogotherapist small {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.formatSection {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  padding: 130px 0;
}

.formatIntro > p:last-child {
  margin-top: 25px;
  color: color-mix(in srgb, var(--ink) 67%, transparent);
}

.priceTickets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.priceTickets article {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 36px;
  border: 1px solid var(--ink);
  background: var(--white);
  transition: transform .26s cubic-bezier(.22, 1, .36, 1), background-color .26s ease;
}

.priceTickets article > span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.priceTickets h3 {
  margin-top: 40px;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.priceTickets strong {
  margin-top: 20px;
  color: var(--amber);
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 400;
}

.priceTickets a {
  display: flex;
  justify-content: space-between;
  align-self: end;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.logisticsSection {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
  background: var(--amber);
}

.logisticsSection ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.logisticsSection li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 40%, transparent);
  font-weight: 620;
}

.logisticsSection li span { font-family: Georgia, serif; }

.institutionContact {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: center;
  gap: 7vw;
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 120px 0;
}

.institutionContact > div:last-child {
  display: grid;
  gap: 16px;
}

.institutionContact > div:last-child > a:last-child {
  padding: 15px 0;
  border-bottom: 1px solid var(--ink);
  text-align: center;
  font-weight: 700;
}

/* Samodzielna kompozycja mobilna 390 px */

.mobilePreviewStage {
  --paper-deep: #e7dfd1;
  --green: #315e52;
  --sage: #d8e1d7;
  --orange-text: #8d3518;
  --white: #fbfaf6;
  min-height: 100vh;
  padding: 28px 0;
  color: #172723;
  background: #162722;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mobileCanvas {
  position: relative;
  width: min(100%, 390px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  overflow-x: clip;
  background: #f2eee5;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .28);
}

.mobileHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(23, 39, 35, .2);
}

.mobileBrand {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.05;
}

.mobileBrand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.mobileBrand > span { display: grid; gap: 3px; }
.mobileBrand strong { font-family: Georgia, serif; font-size: 16px; font-weight: 500; }
.mobileBrand small { max-width: 125px; color: rgba(23, 39, 35, .62); font-size: 8px; font-weight: 750; letter-spacing: .06em; line-height: 1.25; text-transform: uppercase; }
.mobileHeader > a:last-child { padding: 8px 11px; border: 1px solid rgba(23, 39, 35, .4); border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; }

.mobilePracticeSwitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(23, 39, 35, .28);
}

.mobilePracticeSwitch a {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 78px;
  padding: 11px 13px 12px;
  background: #dfe7de;
  transition: background-color .2s ease, color .2s ease;
}

.mobilePracticeSwitch a + a {
  border-left: 1px solid rgba(23, 39, 35, .28);
  background: #e9b086;
}

.mobilePracticeSwitch span {
  color: rgba(23, 39, 35, .62);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mobilePracticeSwitch strong {
  margin-top: 4px;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.mobileHeroImage {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.mobileHero {
  display: flex;
  flex-direction: column;
  background: #f2eee5;
}

.mobileHeroCopy { order: 1; }
.mobileHeroImage { order: 2; }

.mobileHeroImage img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}
.mobileHeroImage::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 -90px 80px -70px rgba(15, 35, 30, .65); }
.mobileHeroImage span { position: absolute; z-index: 2; right: 15px; bottom: 13px; color: white; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.mobileHeroCopy {
  position: relative;
  padding: 28px 20px 34px;
}

.mobileHeroCopy::before {
  position: absolute;
  top: -7px;
  left: 20px;
  width: 14px;
  height: 14px;
  border: 4px solid #f2eee5;
  border-radius: 50%;
  background: #c8783d;
  content: "";
}

.mobileHeroCopy > p:first-child,
.mobileQuestion > p:first-child,
.mobilePath > p,
.mobileTherapy > p,
.mobileMolly > div > p:first-child,
.mobileConcerns > p,
.mobileClosing > p,
.mobileInstitution > p {
  color: #315e52;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mobileHeroCopy h1 {
  margin-top: 13px;
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.mobileHeroCopy > strong {
  display: block;
  color: #315e52;
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
}

.mobileHeroCopy > p:nth-of-type(2) {
  margin-top: 16px;
  color: rgba(23, 39, 35, .7);
  font-size: 14px;
  line-height: 1.5;
}

.mobileHeroCopy > .mobileDogRule {
  margin-top: 13px;
  padding: 10px 12px;
  border-left: 3px solid #315e52;
  color: #173d35;
  background: #d8e1d7;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.mobileHeroCopy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  min-height: 76px;
  padding: 13px 16px;
  color: #fff;
  background: #173d35;
  font-size: 13px;
  font-weight: 750;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.mobileHeroCopy > a > span { display: grid; gap: 2px; }
.mobileHeroCopy > a strong { color: #dce9e4; font-size: 11px; letter-spacing: .04em; }
.mobileHeroCopy > a i { color: #e9a16c; font-family: Georgia, serif; font-size: 23px; font-style: normal; }

.mobileTrust {
  padding: 26px 20px 30px;
  color: #172723;
  background: #d8e1d7;
}

.mobileTrust > p {
  color: #315e52;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mobileTrust ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid rgba(23, 39, 35, .2);
  list-style: none;
}

.mobileTrust li {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 92px;
  padding: 15px 12px 14px 0;
  border-bottom: 1px solid rgba(23, 39, 35, .2);
}

.mobileTrust li:nth-child(even) {
  padding-right: 0;
  padding-left: 12px;
  border-left: 1px solid rgba(23, 39, 35, .2);
}

.mobileTrust li span {
  color: #315e52;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mobileTrust li strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.mobileQuestion {
  padding: 30px 20px;
  background: #fbfaf6;
}

.mobileQuestion h2,
.mobileTherapy h2,
.mobileMolly h2,
.mobileConcerns h2,
.mobileClosing h2,
.mobileInstitution h2 {
  margin-top: 11px;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.mobileQuestion > div,
.mobileTherapy > div {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding: 13px 0;
  border-top: 1px solid rgba(23, 39, 35, .22);
  border-bottom: 1px solid rgba(23, 39, 35, .22);
  font-size: 12px;
}

.mobileQuestion > p:nth-of-type(2) {
  margin-top: 16px;
  color: rgba(23, 39, 35, .65);
  font-size: 12px;
  line-height: 1.55;
}

.mobileConcerns {
  padding: 36px 20px 40px;
  color: white;
  background: #173d35;
}

.mobileConcerns > p { color: #a9c3b9; }

.mobileConcerns h2 {
  margin-top: 12px;
  font-size: 34px;
}

.mobileConcerns ol {
  display: grid;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.mobileConcerns li {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 11px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.mobileConcerns li > span {
  color: #e9a16c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.mobileConcerns li > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.mobileConcerns > a {
  display: grid;
  align-items: center;
  min-height: 68px;
  margin-top: 18px;
  padding: 13px 15px;
  color: #172723;
  background: #e9a16c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.mobilePath {
  padding: 34px 20px;
  color: white;
  background: #173d35;
}

.mobilePath > p { color: #a9c3b9; }

.mobilePath ol {
  position: relative;
  display: grid;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.mobilePath ol::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 1px;
  background: rgba(255, 255, 255, .3);
  content: "";
}

.mobilePath li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 56px;
}

.mobilePath li span {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #86a89c;
  border-radius: 50%;
  color: #efaa75;
  background: #173d35;
  font-family: Georgia, serif;
  font-size: 12px;
}

.mobilePath li strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }

.mobileTherapy { padding: 34px 20px; }
.mobileTherapy > a { display: inline-block; margin-top: 18px; padding-bottom: 6px; border-bottom: 1px solid #172723; font-size: 11px; font-weight: 750; transition: color .2s ease, border-color .2s ease; }

.mobileMolly {
  position: relative;
  min-height: 470px;
  color: white;
  background: #203a34;
}

.mobileMolly img { height: 300px; object-fit: cover; object-position: center 28%; transition: transform .8s cubic-bezier(.22, 1, .36, 1); }
.mobileMolly > div { padding: 27px 20px 34px; }
.mobileMolly > div > p:first-child { color: #a9c3b9; }
.mobileMolly > div > span { display: block; color: rgba(255, 255, 255, .75); font-size: 12px; line-height: 1.55; }
.mobileMollyLead { margin-top: 16px; }
.mobileMollyFact { margin-top: 12px; }
.mobileMolly > div > small {
  display: block;
  margin-top: 17px;
  padding-left: 10px;
  border-left: 2px solid #e9a16c;
  color: rgba(255, 255, 255, .65);
  font-size: 9px;
  line-height: 1.45;
}

.mobileInstitution {
  padding: 38px 20px;
  background: #d9894d;
}

.mobileInstitution > p { color: rgba(23, 39, 35, .68); }
.mobileInstitution > span { display: block; margin-top: 13px; font-size: 13px; line-height: 1.45; }
.mobileInstitution > a { display: flex; justify-content: space-between; margin-top: 25px; padding: 14px 0; border-top: 1px solid rgba(23, 39, 35, .42); border-bottom: 1px solid rgba(23, 39, 35, .42); font-size: 11px; font-weight: 750; transition: color .2s ease, border-color .2s ease; }

.mobileClosing {
  padding: 40px 20px;
  color: white;
  background: #101d1a;
}

.mobileClosing > p { color: #a9c3b9; }
.mobileClosing > span { display: block; margin-top: 17px; color: rgba(255, 255, 255, .72); font-size: 12px; line-height: 1.58; }
.mobileClosing > a {
  display: grid;
  place-items: center;
  min-height: 58px;
  margin-top: 24px;
  color: #172723;
  background: #e9a16c;
  font-size: 13px;
  font-weight: 800;
}

.mobileMenu {
  display: grid;
  padding: 30px 20px;
  background: #fbfaf6;
}

.mobileMenu a { padding: 16px 0; border-bottom: 1px solid rgba(23, 39, 35, .2); font-family: Georgia, serif; font-size: 21px; transition: color .2s ease, padding-left .2s ease; }

.mobileFooter {
  display: grid;
  gap: 5px;
  padding: 30px 20px 48px;
  color: white;
  background: #101d1a;
  font-size: 11px;
}

.mobileFooter strong { margin-bottom: 8px; font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.mobileFooter span { color: rgba(255, 255, 255, .58); }

.mobileDock {
  position: fixed;
  z-index: 30;
  right: 50%;
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: 1fr 100px;
  width: min(calc(100% - 20px), 370px);
  min-height: 62px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  color: white;
  background: #173d35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transform: translateX(50%);
}

.mobileDock a:first-child { display: grid; align-content: center; padding: 8px 16px; }
.mobileDock a:first-child span { color: #a9c3b9; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.mobileDock a:first-child strong { font-size: 15px; }
.mobileDock a:last-child { display: grid; place-items: center; color: #172723; background: #d9894d; font-size: 12px; font-weight: 800; }

.desktopNav a:focus-visible,
.mobileDock a:focus-visible {
  z-index: 2;
  outline: 0;
  box-shadow: inset 0 0 0 3px #ffffff, inset 0 0 0 6px #172723;
}

.desktopNav a:not([aria-current="page"]):focus-visible::after {
  transform: scaleX(1);
}

.motionReady .twoDoors > div.motionVisible:has(a:focus-visible),
.motionReady .priceTickets article.motionVisible:has(a:focus-visible),
.twoDoors > div:has(a:focus-visible),
.priceTickets article:has(a:focus-visible) {
  transform: translateY(-3px);
}

@media (hover: hover) and (pointer: fine) {
  .brandLogo:hover img,
  .brandLogo:focus-visible img,
  .mobileBrand:hover img,
  .mobileBrand:focus-visible img {
    transform: rotate(-2deg) scale(1.035);
  }

  .desktopNav a:not([aria-current="page"]):hover {
    background: color-mix(in srgb, var(--paper-deep) 78%, var(--white));
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ink) 12%, transparent);
  }

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

  .desktopNav a:not([aria-current="page"]):hover > span,
  .desktopNav a:not([aria-current="page"]):hover > strong,
  .desktopNav a:not([aria-current="page"]):hover > small {
    transform: translateX(3px);
  }

  .headerContact:hover strong { color: var(--orange-text); }

  .primaryButton:hover,
  .darkButton:hover,
  .mobileHeroCopy > a:hover,
  .heroPrimaryCta:hover {
    border-color: var(--green);
    background: var(--green);
    transform: translateY(-2px);
  }

  .heroPrimaryCta:hover .heroCtaArrow {
    background: #e09a65;
    transform: translateX(3px);
  }

  .footerActions .primaryButton:hover {
    border-color: #e7a26d;
    background: #e7a26d;
  }

  .quietLink:hover,
  .inlineCta:hover,
  .mobileTherapy > a:hover,
  .mobileInstitution > a:hover {
    color: var(--orange-text);
    border-color: currentColor;
  }

  .quietLink:hover span,
  .inlineCta:hover span,
  .twoDoors a:hover span,
  .priceTickets a:hover span,
  .mobileInstitution > a:hover span {
    transform: translateX(5px);
  }

  .motionReady .twoDoors > div.motionVisible:has(a:hover),
  .motionReady .priceTickets article.motionVisible:has(a:hover),
  .twoDoors > div:has(a:hover),
  .priceTickets article:has(a:hover) {
    transform: translateY(-4px);
  }

  .priceTickets article:has(a:hover) {
    background: color-mix(in srgb, var(--sage) 35%, var(--white));
  }

  .twoDoors a:hover { padding-left: 8px; }
  .mobilePracticeSwitch a:hover { background: #f2eee5; }
  .mobileMenu a:hover { padding-left: 8px; color: var(--orange-text); }

  .supportCta:hover {
    background: color-mix(in srgb, var(--sage) 36%, var(--white));
    transform: translateY(-2px);
  }

  .supportCta:hover > i { transform: translateX(3px); }
}

.quietLink:focus-visible span,
.inlineCta:focus-visible span,
.twoDoors a:focus-visible span,
.priceTickets a:focus-visible span,
.mobileInstitution > a:focus-visible span {
  transform: translateX(5px);
}

.heroPrimaryCta:focus-visible .heroCtaArrow,
.supportCta:focus-visible > i {
  transform: translateX(3px);
}

.primaryButton:active,
.darkButton:active,
.mobileHeroCopy > a:active,
.heroPrimaryCta:active,
.supportCta:active {
  transform: translateY(0);
}

@media (min-width: 1051px) and (max-width: 1100px) {
  .institutionQuickFacts {
    position: relative;
    grid-column: 1 / -1;
    justify-self: start;
    right: auto;
    bottom: auto;
    width: min(370px, 100%);
    min-width: 0;
  }
}

@media (max-width: 1050px) {
  .header {
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 920px);
    min-height: 220px;
    padding: 12px 0 14px;
    row-gap: 10px;
  }

  .brandLogo img { width: 76px; height: 76px; }

  .practiceNavigation {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr .82fr;
    width: min(100% - 40px, 920px);
  }

  .heroCopy { padding-left: 0; padding-right: 5vw; }
  .hero h1 { font-size: clamp(53px, 7.8vw, 78px); }

  .supportLine { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .supportLine li { grid-column: auto; }

  .trustStrip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 20px;
  }

  .trustStrip > p {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 23%, transparent);
  }

  .trustStrip > p strong { max-width: none; }
  .trustList { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trustList li { border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent); }
  .trustList li:nth-child(odd) { border-left: 0; }

  .journeySection,
  .mollyBranch,
  .parentHero,
  .scopeSection,
  .formatSection,
  .institutionContact,
  .institutionMolly,
  .experienceStrip {
    width: min(100% - 40px, 920px);
  }

  .journeySection {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .decisionRow { grid-template-columns: .9fr 70px 1.1fr; }
  .decisionAnswer { grid-template-columns: 1fr; gap: 6px; }
  .decisionAnswer strong { justify-self: start; }

  .ledgerTable article {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 18px;
  }
  .ledgerTable article > div { grid-column: 2 / -1; min-width: 0; }
  .ledgerTable article > span:nth-last-child(2) { grid-column: 2; }
  .ledgerTable article > strong { grid-column: 3; }

  .mollyCopy { padding: 35px; }
  .institutionHero { grid-template-columns: 1fr .75fr; width: min(100% - 40px, 920px); }
  .institutionTitle > .kicker { top: -10px; }
  .institutionQuickFacts {
    position: relative;
    grid-column: 1 / -1;
    justify-self: start;
    right: auto;
    bottom: auto;
    width: min(370px, 100%);
    min-width: 0;
  }
  .programMap { grid-template-columns: 1fr; gap: 58px; }
  .programMap ol { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .safetySection {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .safetyPortrait {
    width: min(100%, 520px);
    justify-self: center;
  }

  .institutionMolly { grid-template-columns: 1fr; gap: 42px; }
  .institutionMolly figure { height: 520px; }
}

@media (max-width: 760px) {
  .header {
    width: calc(100% - 32px);
    min-height: 225px;
    column-gap: 10px;
  }

  .headerContact span { display: none; }
  .headerContact strong { font-size: 12px; }
  .brandLogo { gap: 7px; }
  .brandLogo img { width: 58px; height: 58px; }
  .brandLogo strong { font-size: 17px; }
  .brandLogo small { max-width: 116px; font-size: 9px; }
  .practiceNavigation { gap: 6px; }
  .practiceNavigation > p { font-size: 9px; letter-spacing: .08em; }
  .desktopNav { grid-template-columns: 1fr 1fr; }
  .desktopNav a { min-width: 0; min-height: 88px; padding: 10px 11px; }
  .desktopNav a > span { font-size: 8.5px; letter-spacing: .06em; }
  .desktopNav a > strong { font-size: 15px; }
  .desktopNav a > small { font-size: 9px; }

  .hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    padding-top: 28px;
  }

  .heroCopy { order: 1; padding: 31px 20px 42px; }
  .heroFigure { order: 2; min-height: 330px; border-radius: 0; }
  .hero h1 { font-size: 53px; }
  .heroLead { font-size: 17px; }
  .heroActions { align-items: stretch; gap: 9px; }
  .heroPrimaryCta { grid-template-columns: minmax(0, 1fr) 64px; min-height: 112px !important; }
  .heroCtaCopy { padding: 18px 19px; }
  .heroCtaCopy strong { font-size: 27px; }
  .quietLink { text-align: center; }
  .heroRoute { order: 3; min-height: 64px; margin: 0 20px; padding: 0; }

  .reassurance { padding: 85px 20px; }
  .reassurance h2 { font-size: 39px; }
  .concernsLead { margin-top: 23px !important; font-size: 14px; }
  .supportLine { grid-template-columns: 1fr; gap: 9px; margin-top: 26px !important; }
  .supportLine li,
  .supportLine li:nth-child(n) { grid-column: auto; min-height: 126px; padding: 18px; }
  .supportLine li > strong { font-size: 22px; }
  .supportCta { grid-template-columns: 1fr 48px; gap: 0; padding-left: 18px; }
  .supportCta > span { grid-column: 1; }
  .supportCta > strong { grid-column: 1; }
  .supportCta > i { grid-column: 2; grid-row: 1 / span 2; }

  .trustStrip > p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .trustList { grid-template-columns: 1fr; }
  .trustList li,
  .trustList li:nth-child(even) {
    min-height: 100px;
    padding: 17px 0;
    border-left: 0;
  }
  .trustList li > strong { font-size: 24px; }
  .trustList li > small { max-width: none; }

  .journeySection,
  .visitBoard,
  .programMap,
  .formatSection,
  .logisticsSection,
  .footer,
  .scopeSection,
  .safetySection,
  .institutionContact {
    grid-template-columns: 1fr;
  }

  .journeySection,
  .mollyBranch,
  .parentHero,
  .scopeSection,
  .formatSection,
  .institutionContact,
  .institutionMolly,
  .experienceStrip {
    width: 100%;
    padding: 82px 20px;
  }

  .sectionIntro h2,
  .sectionIntroSlim h2,
  .visitHeading h2,
  .ledgerHeader h2,
  .scopeSection h2,
  .safetySection h2,
  .programMap h2,
  .formatIntro h2,
  .logisticsSection h2,
  .institutionMolly h2,
  .institutionContact h2,
  .footer h2 { font-size: 39px; }

  .journeyList { margin-top: 25px; }
  .journeyList li { grid-template-columns: 44px 1fr; }
  .journeyArrow { display: none; }

  .decisionSection,
  .offerLedger,
  .visitBoard,
  .programMap,
  .logisticsSection,
  .footer,
  .safetySection { padding: 82px 20px; }

  .decisionRow { grid-template-columns: 1fr; gap: 13px; padding: 25px 0; }
  .decisionConnector { display: none; }
  .decisionAnswer { padding-left: 54px; }
  .inlineCta { margin-left: 0; }

  .mollyBranch { display: flex; flex-direction: column; padding: 82px 20px; }
  .mollyPhoto { width: 100%; }
  .branchLine { width: 1px; height: 60px; }
  .branchLine span { width: 1px; height: 100%; }
  .motionReady .branchLine span { transform: scaleY(0); transform-origin: top; }
  .motionReady .branchLine.motionVisible span { transform: scaleY(1); }
  .branchLine span::before { top: 0; left: -5px; }
  .branchLine span::after { top: auto; right: auto; bottom: 0; left: -5px; }
  .mollyCopy { padding: 32px 25px; }

  .twoDoors,
  .experienceStrip,
  .footer,
  .ledgerHeader,
  .methodsNote {
    grid-template-columns: 1fr;
  }

  .twoDoors > div { min-height: auto; padding: 70px 20px; }
  .experienceStrip ul { grid-template-columns: 1fr; margin-top: 34px; }
  .footerBottom { align-items: flex-start; flex-direction: column; gap: 8px; }

  .parentHero { display: flex; flex-direction: column; }
  .parentHero > div { order: 2; }
  .parentHero figure { order: 1; width: 100%; max-height: 520px; }
  .parentHero h1 { font-size: 49px; }

  .ledgerHeader { gap: 16px; }
  .ledgerTable article { grid-template-columns: 38px 1fr auto; gap: 12px; }
  .ledgerTable article > div { grid-column: 2 / -1; }
  .ledgerTable article > span:nth-last-child(2) { grid-column: 2; }
  .methodsNote { gap: 15px; }
  .safetyPortrait { max-height: 520px; }

  .institutionHero {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    padding: 42px 20px 82px;
  }

  .institutionTitle > .kicker { top: -6px; }
  .institutionTitle h1 { font-size: 90px; }
  .institutionHero figure { min-height: 470px; }
  .institutionQuickFacts {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    width: auto;
    min-width: 0;
    margin: 0;
    transform: none;
  }
  .institutionQuickFacts span:first-child { grid-column: 1 / -1; }
  .programMap ol, .priceTickets { grid-template-columns: 1fr; }
  .programMap ol { margin-top: 25px; }
  .programMap li:nth-child(odd) { border-right: 0; }
  .programMap li:nth-child(even) { padding-left: 0; }
  .priceTickets { margin-top: 28px; }
  .priceTickets article { min-height: 300px; }
  .institutionMolly { grid-template-columns: 1fr; gap: 38px; }
  .institutionMolly figure { height: 430px; min-height: 0; }
  .institutionHero figcaption { font-size: 21px; }
  .programMap .programIntro h2 { font-size: 39px; }
}

@media (max-width: 420px) {
  .heroPrimaryCta { grid-template-columns: minmax(0, 1fr) 56px; }
  .heroCtaCopy strong { font-size: 24px; }
  .mobilePreviewStage { padding: 0; }
  .mobileCanvas { box-shadow: none; }
  .mobileDock { bottom: max(6px, env(safe-area-inset-bottom, 0px)); }

  .ledgerTable article {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .ledgerTable article > div,
  .ledgerTable article > span:nth-last-child(2),
  .ledgerTable article > strong {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

  .ledgerTable article > strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

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

  .siteShell *,
  .siteShell *::before,
  .siteShell *::after,
  .mobilePreviewStage *,
  .mobilePreviewStage *::before,
  .mobilePreviewStage *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    animation-delay: 0s !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .motionReady [data-plan-motion] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .siteShell *,
  .siteShell *::before,
  .siteShell *::after,
  .mobilePreviewStage *,
  .mobilePreviewStage *::before,
  .mobilePreviewStage *::after {
    animation: none !important;
    animation-delay: 0s !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .motionReady [data-plan-motion] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Treści informacyjne i widok 404. */
.contentPage {
  width: min(100% - 64px, 1040px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 0;
}

.contentPageHeader {
  max-width: 820px;
  padding-bottom: 48px;
  border-bottom: 2px solid #172723;
}

.contentPageHeader h1 {
  margin: 8px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.contentPageHeader > p:last-child {
  max-width: 720px;
  color: color-mix(in srgb, #172723 74%, transparent);
  font-size: 18px;
}

.contentPageHeader .primaryButton { margin-top: 30px; }

.contentPageBody {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.contentPageBody section {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  gap: 48px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(23, 39, 35, .25);
}

.contentPageBody h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.contentPageBody p {
  grid-column: 2;
  margin: 0;
  color: rgba(23, 39, 35, .78);
}

.contentPageBody p + p { margin-top: 14px; }

.contentPageBody a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Kontakt i dojazd. */
.contactPage {
  width: min(100% - 64px, 1180px);
}

.contactPage .contentPageHeader {
  max-width: 940px;
}

.contactCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.contactCard {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 220px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  border-radius: 4px;
  background: var(--white);
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

a.contactCard:hover,
a.contactCard:focus-visible {
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-3px);
}

.contactCard > span {
  color: var(--orange-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

a.contactCard:hover > span,
a.contactCard:focus-visible > span {
  color: #efb283;
}

.contactCard > strong {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contactCard > small,
.contactCard address {
  margin-top: auto;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

a.contactCard:hover > small,
a.contactCard:focus-visible > small {
  color: rgba(255, 255, 255, .72);
}

.contactAddress {
  color: var(--white);
  background: var(--green);
}

.contactAddress > span { color: #d7e7df; }
.contactAddress address { color: rgba(255, 255, 255, .76); }

.contactDetails section > div {
  grid-column: 2;
}

.contactDetails section > div p {
  grid-column: auto;
}

.footerBottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footerBottom a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .contentPage { width: 100%; padding: 82px 20px; }
  .contentPageHeader h1 { font-size: 50px; }
  .contentPageBody section { grid-template-columns: 1fr; gap: 16px; }
  .contentPageBody p { grid-column: 1; }
  .contactCards { grid-template-columns: 1fr; }
  .contactCard { min-height: 190px; }
  .contactDetails section > div { grid-column: 1; }
}
