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

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

:root {
  --pr-bg: #f8f3ec;
  --pr-surface: #fffdf9;
  --pr-white: #ffffff;
  --pr-text: #2e302c;
  --pr-muted: #5b5f56;
  --pr-olive: #9b977c;
  --pr-olive-dark: #5f654a;
  --pr-olive-deep: #485039;
  --pr-sand: #d2c698;
  --pr-blue: #babfbc;
  --pr-focus: #334e5c;
  --pr-line: rgba(46, 48, 44, 0.14);
  --pr-shadow: 0 24px 70px rgba(71, 67, 51, 0.12);
  --pr-content: 1240px;
  --pr-radius: 30px;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

body.pr-launch-body {
  margin: 0;
  min-width: 320px;
  color: var(--pr-text);
  background: var(--pr-bg);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.pr-launch-body img,
.pr-launch-body svg {
  display: block;
  max-width: 100%;
}

.pr-launch-body a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.pr-launch-body :focus-visible {
  outline: 3px solid var(--pr-focus);
  outline-offset: 4px;
}

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

.pr-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: var(--pr-white);
  background: var(--pr-focus);
}

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

.pr-site-shell {
  position: relative;
  overflow: hidden;
}

.pr-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 40px), var(--pr-content));
  min-height: 88px;
  margin: 18px auto 0;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 12px 34px rgba(67, 63, 49, 0.07);
  backdrop-filter: blur(16px);
}

.pr-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.pr-brand-logo {
  display: block;
  width: 188px;
  height: auto;
  mix-blend-mode: multiply;
}

.pr-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 650;
}

.pr-nav a {
  text-decoration: none;
}

.pr-nav a:hover {
  text-decoration: underline;
}

.pr-nav-dropdown {
  position: relative;
}

.pr-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pr-nav-dropdown-trigger svg {
  display: block;
  width: 12px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 2px;
  overflow: visible;
  stroke: currentColor;
}

.pr-nav-submenu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 15px);
  left: 50%;
  display: grid;
  min-width: 270px;
  padding: 10px;
  visibility: hidden;
  border: 1px solid var(--pr-line);
  border-radius: 18px;
  background: var(--pr-surface);
  box-shadow: 0 18px 44px rgba(67, 63, 49, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.pr-nav-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
  content: "";
}

.pr-nav-submenu a {
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.pr-nav-submenu a:hover,
.pr-nav-submenu a:focus-visible,
.pr-nav-submenu a[aria-current="page"] {
  background: #f0eadf;
  text-decoration: none;
}

.pr-nav-dropdown:hover .pr-nav-submenu,
.pr-nav-dropdown:focus-within .pr-nav-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pr-nav-dropdown.is-active > .pr-nav-dropdown-trigger {
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.35em;
}

.pr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 27px;
  border: 1px solid var(--pr-olive-dark);
  border-radius: 999px;
  color: var(--pr-white) !important;
  background: var(--pr-olive-dark);
  box-shadow: 0 12px 28px rgba(72, 80, 57, 0.17);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pr-button:hover {
  transform: translateY(-2px);
  background: var(--pr-olive-deep);
  box-shadow: 0 16px 32px rgba(72, 80, 57, 0.22);
}

.pr-button-small {
  min-height: 48px;
  padding: 11px 22px;
  font-size: 15px;
}

.pr-button-secondary {
  color: var(--pr-text) !important;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.pr-button-secondary:hover {
  color: var(--pr-white) !important;
}

.pr-menu-button,
.pr-mobile-menu {
  display: none;
}

.pr-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  width: min(calc(100% - 40px), var(--pr-content));
  min-height: calc(100svh - 106px);
  margin: 0 auto;
  padding: 76px 0 96px;
}

.pr-hero-copy,
.pr-hero-visual {
  position: relative;
  z-index: 2;
}

.pr-eyebrow {
  margin: 0 0 18px;
  color: var(--pr-olive-deep);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pr-hero h1,
.pr-section h2,
.pr-contact h2 {
  margin: 0;
  max-width: 880px;
  font-weight: 740;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.pr-hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 4.7vw, 4.55rem);
}

.pr-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--pr-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.62;
}

.pr-launch-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 11px 16px;
  border: 1px solid rgba(95, 101, 74, 0.16);
  border-radius: 999px;
  background: rgba(210, 198, 152, 0.28);
  font-size: 15px;
}

.pr-launch-note-icon {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pr-olive-dark);
  box-shadow: 0 0 0 5px rgba(95, 101, 74, 0.13);
}

.pr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pr-visual-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.37);
  box-shadow: var(--pr-shadow);
}

.pr-visual-frame::before {
  position: absolute;
  z-index: -1;
  inset: -50px -30px -60px -60px;
  border-radius: 46% 54% 40% 60%;
  background: radial-gradient(circle at 75% 30%, rgba(186, 191, 188, 0.62), transparent 44%), radial-gradient(circle at 25% 75%, rgba(210, 198, 152, 0.52), transparent 46%);
  content: "";
  filter: blur(10px);
}

.pr-visual-frame > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 38px;
  object-fit: cover;
  object-position: center;
}

.pr-image-caption {
  margin: 12px 4px 0;
  color: var(--pr-muted);
  font-size: 12px;
  font-style: normal;
}

.pr-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(95, 101, 74, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.pr-orbit span {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pr-sand);
  box-shadow: 0 0 0 7px rgba(210, 198, 152, 0.18);
}

.pr-orbit-one {
  top: 11%;
  right: -18%;
  width: 550px;
  height: 260px;
  transform: rotate(-22deg);
}

.pr-orbit-two {
  bottom: 7%;
  left: -22%;
  width: 370px;
  height: 160px;
  transform: rotate(18deg);
}

.pr-star {
  position: absolute;
  z-index: 1;
  width: 22px;
  fill: rgba(95, 101, 74, 0.34);
}

.pr-star-one {
  top: 24%;
  left: 49%;
  animation: pr-float 8s ease-in-out infinite;
}

.pr-section {
  width: min(calc(100% - 40px), var(--pr-content));
  margin: 0 auto;
  padding: 110px 0;
}

.pr-offer {
  border-top: 1px solid var(--pr-line);
}

.pr-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.pr-section h2,
.pr-contact h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

.pr-section-heading > p {
  margin: 0 0 7px;
  color: var(--pr-muted);
}

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

.pr-service-card,
.pr-service-cta {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(46, 48, 44, 0.09);
  border-radius: var(--pr-radius);
}

.pr-service-card {
  display: flex;
  flex-direction: column;
}

.pr-service-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pr-service-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(67, 63, 49, 0.08);
}

.pr-card-olive { background: #e5e4d8; }
.pr-card-sand { background: #f1eacf; }
.pr-card-blue { background: #e8efed; }
.pr-card-cream { background: #f3e8dd; }
.pr-card-white { background: var(--pr-surface); }

.pr-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(46, 48, 44, 0.22);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 750;
}

.pr-service-card h3,
.pr-service-cta h3 {
  margin: auto 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.pr-service-card p {
  margin: 0;
  color: var(--pr-muted);
  font-size: 15px;
}

.pr-service-cta {
  display: flex;
  flex-direction: column;
  color: var(--pr-white);
  background: var(--pr-olive-dark);
}

.pr-service-cta .pr-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.pr-service-cta h3 {
  max-width: 330px;
  margin: auto 0 20px;
}

.pr-service-cta a {
  font-size: 21px;
  font-weight: 750;
}

.pr-service-cta-wide {
  grid-column: 1 / -1;
  min-height: 230px;
}

.pr-medical-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--pr-muted);
  font-size: 13px;
}

.pr-place {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  border-top: 1px solid var(--pr-line);
}

.pr-place-visual {
  position: relative;
}

.pr-place-visual img {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  border-radius: 44% 44% 30px 30px;
  object-fit: cover;
  box-shadow: var(--pr-shadow);
}

.pr-place-copy > p:not(.pr-eyebrow) {
  margin: 28px 0 0;
  color: var(--pr-muted);
  font-size: 18px;
}

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

.pr-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 630;
}

.pr-benefits span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--pr-white);
  background: var(--pr-olive-dark);
  font-size: 14px;
}

.pr-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
  width: min(calc(100% - 40px), var(--pr-content));
  margin-bottom: 20px;
  padding: clamp(48px, 7vw, 88px);
  border-radius: 42px;
  color: var(--pr-white);
  background: var(--pr-olive-dark);
}

.pr-contact .pr-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.pr-contact-copy > p:not(.pr-eyebrow) {
  max-width: 640px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.82);
}

.pr-button-light {
  border-color: var(--pr-white);
  color: var(--pr-text) !important;
  background: var(--pr-white);
}

.pr-button-light:hover {
  color: var(--pr-white) !important;
  background: transparent;
}

.pr-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pr-button-light-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--pr-white) !important;
  background: transparent;
  box-shadow: none;
}

.pr-button-light-secondary:hover {
  color: var(--pr-text) !important;
  background: var(--pr-white);
}

.pr-contact-details {
  display: grid;
  align-content: start;
  gap: 24px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.pr-contact-details div {
  display: grid;
  gap: 3px;
}

.pr-contact-details span,
.pr-contact-details small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.pr-contact-details strong,
.pr-contact-details a {
  font-size: 18px;
  font-weight: 690;
}

.pr-route-link {
  width: max-content;
  margin-top: 6px;
  font-weight: 750;
}

.pr-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(calc(100% - 40px), var(--pr-content));
  margin: 0 auto;
  padding: 42px 0;
  color: var(--pr-muted);
  font-size: 14px;
}

.pr-footer p {
  margin: 0;
}

.pr-footer-info {
  display: grid;
  gap: 8px;
}

.pr-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-weight: 700;
}

.pr-footer-links a {
  text-decoration: none;
}

.pr-footer-links a:hover {
  text-decoration: underline;
}

.pr-footer-small {
  text-align: right;
}

/* Pricing page */
.pr-nav a[aria-current="page"],
.pr-mobile-menu a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.35em;
}

.pr-pricing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  width: min(calc(100% - 40px), var(--pr-content));
  margin: 0 auto;
  padding: 105px 0 78px;
  border-bottom: 1px solid var(--pr-line);
}

.pr-pricing-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.pr-pricing-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 740;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.pr-pricing-hero-copy > p:not(.pr-eyebrow) {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--pr-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.pr-pricing-orbit {
  top: 2%;
  right: -14%;
  width: 520px;
  height: 220px;
  transform: rotate(-16deg);
}

.pr-pricing-section {
  width: min(calc(100% - 40px), var(--pr-content));
  margin: 0 auto;
  padding: 72px 0 110px;
}

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

.pr-price-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 42px);
  overflow: hidden;
  border: 0;
  border-radius: var(--pr-radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 14px 36px rgba(67, 63, 49, 0.035);
}

.pr-price-card-sand { background: #f1eacf; }
.pr-price-card-blue { background: #e8efed; }
.pr-price-card-olive { background: #e5e4d8; }
.pr-price-card-cream { background: #f3e8dd; }

.pr-price-number {
  position: absolute;
  top: 20px;
  right: 25px;
  margin: 0;
  color: rgba(46, 48, 44, 0.28);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.pr-price-card h2 {
  margin: 0 46px 30px 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.pr-price-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 0;
  border-spacing: 0;
  font-size: 15px;
}

.pr-price-table th,
.pr-price-table td {
  padding: 15px 14px;
  border: 0;
  border-bottom: 1px solid rgba(46, 48, 44, 0.12);
  text-align: left;
  vertical-align: middle;
}

.pr-price-table th:first-child,
.pr-price-table td:first-child {
  padding-left: 2px;
}

.pr-price-table th:nth-child(2),
.pr-price-table td:nth-child(2) {
  width: 108px;
}

.pr-price-table th:last-child,
.pr-price-table td:last-child {
  width: 88px;
  padding-right: 2px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.pr-price-table th {
  color: var(--pr-muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pr-price-table td:nth-child(2) {
  color: var(--pr-muted);
  font-variant-numeric: tabular-nums;
}

.pr-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.pr-pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(30px, 7vw, 90px);
  margin-top: 18px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius);
  background: var(--pr-surface);
}

.pr-pricing-note h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.7vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.pr-pricing-note > p {
  align-self: end;
  margin: 0;
  color: var(--pr-muted);
}

/* Service pages */
.pr-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  width: min(calc(100% - 40px), var(--pr-content));
  margin: 0 auto;
  padding-top: 42px;
  color: var(--pr-muted);
  font-size: 13px;
}

.pr-breadcrumbs a {
  text-decoration: none;
}

.pr-breadcrumbs a:hover {
  text-decoration: underline;
}

.pr-service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  width: min(calc(100% - 40px), var(--pr-content));
  margin: 0 auto;
  padding: 62px 0 104px;
}

.pr-service-hero-copy,
.pr-service-hero-visual {
  position: relative;
  z-index: 2;
}

.pr-service-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  font-weight: 740;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.pr-service-hero .pr-lead {
  max-width: 650px;
}

.pr-service-hero-visual {
  margin: 0;
}

.pr-service-arch {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50% 50% 34px 34px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: var(--pr-shadow);
}

.pr-service-arch::before {
  position: absolute;
  z-index: -1;
  inset: -30px -26px -32px -36px;
  border-radius: 48% 52% 38% 62%;
  background: radial-gradient(circle at 65% 35%, rgba(186, 191, 188, 0.52), transparent 46%), radial-gradient(circle at 25% 80%, rgba(210, 198, 152, 0.46), transparent 44%);
  content: "";
  filter: blur(12px);
}

.pr-service-arch img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: 50% 50% 25px 25px;
  object-fit: cover;
  object-position: center;
}

.pr-service-integracja-sensoryczna .pr-service-arch img {
  object-position: 56% center;
}

.pr-service-orbit {
  top: 4%;
  right: -17%;
  width: 500px;
  height: 210px;
  transform: rotate(-18deg);
}

.pr-service-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(48px, 8vw, 105px);
  border-top: 1px solid var(--pr-line);
}

.pr-service-intro h2,
.pr-service-approach h2,
.pr-first-visit h2,
.pr-service-pricing h2,
.pr-other-services h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 740;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.pr-service-intro-copy > p:not(.pr-eyebrow) {
  margin: 24px 0 0;
  color: var(--pr-muted);
}

.pr-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pr-signal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(46, 48, 44, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.pr-signal-list span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--pr-white);
  background: var(--pr-olive-dark);
  font-size: 12px;
}

.pr-service-approach,
.pr-service-pricing,
.pr-other-services {
  border-top: 1px solid var(--pr-line);
}

.pr-section-heading-compact {
  align-items: start;
}

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

.pr-approach-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--pr-radius);
  background: #e8efed;
}

.pr-approach-card:nth-child(2) {
  background: #f1eacf;
}

.pr-approach-card:nth-child(3) {
  background: #e5e4d8;
}

.pr-approach-card > span {
  color: var(--pr-olive-deep);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.pr-approach-card h3 {
  margin: 82px 0 12px;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.pr-approach-card p {
  margin: 0;
  color: var(--pr-muted);
  font-size: 15px;
}

.pr-first-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
  border-top: 1px solid var(--pr-line);
}

.pr-first-visit-visual {
  margin: 0;
}

.pr-first-visit-visual img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 44% 44% 28px 28px;
  object-fit: cover;
  box-shadow: var(--pr-shadow);
}

.pr-first-visit-lead {
  margin: 25px 0 0;
  color: var(--pr-muted);
}

.pr-step-list {
  display: grid;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  counter-reset: pr-step;
  list-style: none;
}

.pr-step-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  counter-increment: pr-step;
}

.pr-step-list li::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--pr-white);
  background: var(--pr-olive-dark);
  content: counter(pr-step);
  font-size: 13px;
  font-weight: 750;
}

.pr-step-list strong {
  font-size: 17px;
}

.pr-step-list p {
  margin: 5px 0 0;
  color: var(--pr-muted);
  font-size: 14px;
}

.pr-prepare-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f1eacf;
  font-size: 14px;
}

.pr-service-pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.pr-text-link {
  font-weight: 730;
}

.pr-service-price-card {
  max-width: 850px;
  padding: clamp(28px, 4vw, 48px);
  background: #e5e4d8;
}

.pr-service-price-card .pr-price-table {
  font-size: 16px;
}

.pr-other-services {
  padding-top: 86px;
}

.pr-other-services h2 {
  max-width: 720px;
}

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

.pr-other-services-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 90px;
  padding: 20px 22px;
  border: 1px solid var(--pr-line);
  border-radius: 20px;
  background: var(--pr-surface);
  font-weight: 720;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.pr-other-services-grid a:hover {
  transform: translateY(-2px);
  background: #f1eacf;
}

@keyframes pr-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(0, -12px, 0) rotate(12deg); }
}

@media (max-width: 980px) {
  .pr-nav { display: none; }
  .pr-menu-button {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--pr-line);
    border-radius: 50%;
    color: var(--pr-text);
    background: transparent;
    cursor: pointer;
  }
  .pr-menu-button > span:not(.pr-visually-hidden) {
    width: 19px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }
  .pr-menu-button[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .pr-menu-button[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .pr-mobile-menu:not([hidden]) {
    position: relative;
    z-index: 19;
    display: grid;
    gap: 10px;
    width: min(calc(100% - 40px), var(--pr-content));
    margin: 8px auto 0;
    padding: 18px;
    border: 1px solid var(--pr-line);
    border-radius: 24px;
    background: var(--pr-surface);
    box-shadow: var(--pr-shadow);
  }
  .pr-mobile-menu > a:not(.pr-button) {
    min-height: 48px;
    padding: 11px 12px;
    border-radius: 12px;
    font-weight: 680;
    text-decoration: none;
  }
  .pr-mobile-service-links {
    display: grid;
    gap: 4px;
    margin: -4px 0 4px 14px;
    padding: 7px 0 7px 13px;
    border-left: 1px solid var(--pr-line);
  }
  .pr-mobile-service-links a {
    padding: 7px 10px;
    border-radius: 9px;
    color: var(--pr-muted);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
  }
  .pr-mobile-service-links a[aria-current="page"] {
    color: var(--pr-text);
    background: #f0eadf;
  }
  .pr-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .pr-hero-copy { max-width: 760px; }
  .pr-hero-visual { width: min(85%, 690px); margin: 0 auto; }
  .pr-section-heading { grid-template-columns: 1fr; gap: 22px; }
  .pr-service-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-place { grid-template-columns: 1fr; }
  .pr-place-visual { width: min(82%, 650px); margin: 0 auto; }
  .pr-contact { grid-template-columns: 1fr; }
	.pr-pricing-hero { grid-template-columns: 1fr; align-items: start; }
	.pr-pricing-hero > .pr-button { width: max-content; }
  .pr-footer { grid-template-columns: 1fr; gap: 12px; }
  .pr-footer-small { text-align: left; }
  .pr-service-hero { grid-template-columns: 1fr; }
  .pr-service-hero-visual { width: min(84%, 680px); margin: 0 auto; }
  .pr-service-intro { grid-template-columns: 1fr; }
  .pr-first-visit { grid-template-columns: 1fr; }
  .pr-first-visit-visual { width: min(82%, 650px); margin: 0 auto; }
  .pr-other-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  body.pr-launch-body { font-size: 16px; }
  .pr-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    min-height: 76px;
    margin-top: 12px;
    padding: 10px 10px 10px 15px;
    border-radius: 20px;
  }
  .pr-header > .pr-button { display: none; }
  .pr-brand-logo { width: 158px; }
  .pr-mobile-menu:not([hidden]) { width: calc(100% - 24px); }
  .pr-hero,
  .pr-section { width: calc(100% - 40px); }
  .pr-hero { gap: 50px; padding: 58px 0 74px; }
  .pr-hero h1 { font-size: clamp(2.5rem, 11.5vw, 3.3rem); }
  .pr-lead { margin-top: 22px; font-size: 18px; }
  .pr-launch-note {
    align-items: flex-start;
    border-radius: 18px;
    line-height: 1.45;
  }
  .pr-launch-note-icon { margin-top: 6px; }
  .pr-actions { display: grid; }
  .pr-button { width: 100%; }
  .pr-hero-visual { width: 100%; }
  .pr-visual-frame { padding: 8px; border-radius: 34px; transform: none; }
  .pr-visual-frame > img { aspect-ratio: 4 / 3; border-radius: 27px; }
  .pr-orbit-one { right: -90%; }
  .pr-star-one { top: 36%; left: 90%; }
  .pr-section { padding: 78px 0; }
  .pr-section h2,
  .pr-contact h2 { font-size: clamp(2.35rem, 11vw, 3rem); }
  .pr-service-grid { grid-template-columns: 1fr; }
  .pr-service-card,
  .pr-service-cta { min-height: 245px; padding: 24px; }
  .pr-place { gap: 48px; }
  .pr-place-visual { width: 100%; }
  .pr-place-visual img { border-radius: 42% 42% 26px 26px; }
  .pr-contact {
    width: calc(100% - 24px);
    padding: 42px 20px;
    border-radius: 30px;
  }
  .pr-contact-details { padding: 22px; }
	.pr-contact-actions { display: grid; }
  .pr-contact-details strong,
  .pr-contact-details a { overflow-wrap: anywhere; }
	.pr-pricing-hero,
	.pr-pricing-section { width: calc(100% - 40px); }
	.pr-pricing-hero { gap: 32px; padding: 72px 0 58px; }
	.pr-pricing-hero h1 { font-size: clamp(3rem, 17vw, 4.3rem); }
	.pr-pricing-hero > .pr-button { width: 100%; }
	.pr-pricing-section { padding: 50px 0 78px; }
	.pr-pricing-grid { grid-template-columns: 1fr; }
	.pr-price-card { padding: 28px 24px; border-radius: 24px; }
	.pr-price-card h2 { margin-bottom: 20px; }
	.pr-price-table { font-size: 14px; }
	.pr-price-table th,
	.pr-price-table td { padding: 13px 10px; }
	.pr-price-table th:first-child,
	.pr-price-table td:first-child { padding-left: 2px; }
	.pr-price-table th:last-child,
	.pr-price-table td:last-child { padding-right: 2px; }
	.pr-price-table th:nth-child(2),
	.pr-price-table td:nth-child(2) { width: 78px; }
	.pr-price-table th:last-child,
	.pr-price-table td:last-child { width: 72px; }
  .pr-pricing-note { grid-template-columns: 1fr; gap: 20px; padding: 28px 22px; }
  .pr-breadcrumbs { width: calc(100% - 40px); padding-top: 30px; }
  .pr-service-hero { width: calc(100% - 40px); gap: 48px; padding: 48px 0 76px; }
  .pr-service-hero h1 { font-size: clamp(2.55rem, 12vw, 3.55rem); }
  .pr-service-hero-visual { width: 100%; }
  .pr-service-arch { padding: 8px; border-radius: 48% 48% 28px 28px; }
  .pr-service-arch img { border-radius: 48% 48% 21px 21px; }
  .pr-service-intro h2,
  .pr-service-approach h2,
  .pr-first-visit h2,
  .pr-service-pricing h2,
  .pr-other-services h2 { font-size: clamp(2.2rem, 10.5vw, 3rem); }
  .pr-signal-list { grid-template-columns: 1fr; }
  .pr-signal-list li { min-height: auto; }
  .pr-approach-grid { grid-template-columns: 1fr; }
  .pr-approach-card { min-height: 225px; padding: 24px; }
  .pr-approach-card h3 { margin-top: 62px; }
  .pr-first-visit-visual { width: 100%; }
  .pr-service-pricing-heading { display: grid; align-items: start; }
  .pr-service-price-card { padding: 28px 24px; }
  .pr-service-price-card .pr-price-table { font-size: 14px; }
  .pr-other-services { padding-top: 70px; }
  .pr-footer { width: calc(100% - 40px); padding: 34px 0; }
}

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

/* 0.4.0 — team, native disclosures and progressive navigation. */
.pr-nav { gap: 22px; }
.pr-nav > a, .pr-nav-dropdown > summary { padding-block: 10px; }
.pr-nav-dropdown > summary { cursor: pointer; list-style: none; }
.pr-nav-dropdown > summary::-webkit-details-marker { display: none; }
.pr-nav-dropdown:not([open]) .pr-nav-submenu { display: none; }
.pr-nav-dropdown[open] .pr-nav-submenu { visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%,0); }
.pr-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: .3em; }
.pr-header .pr-menu-button:not([data-ready]) { display: none; }
.pr-mobile-menu[hidden] { display: none !important; }
.pr-contact :focus-visible { outline-color: #fff5ce; }
.pr-site-shell { overflow: clip; }
.pr-about-intro { max-width: 1040px; padding-top: 42px; }
.pr-about-intro h1 { font-size: clamp(38px,5vw,66px); line-height: 1.1; letter-spacing: -.045em; margin: 0 0 28px; }
.pr-about-intro > p { max-width: 780px; }
.pr-team-jump { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.pr-team-jump a { padding: 12px 20px; border: 1px solid var(--pr-sand); border-radius: 999px; text-decoration: none; background: var(--pr-surface); }
.pr-team-jump a:hover { background: #eee7d8; }
.pr-team-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; margin-top: 32px; }
.pr-team-card { overflow: hidden; border: 1px solid var(--pr-line); border-radius: 26px; background: var(--pr-surface); }
.pr-team-photo { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; object-position: center 30%; background: #e7e0d2; }
.pr-team-card-copy { padding: 28px; }
.pr-team-card h3 { font-size: 24px; line-height: 1.25; margin: 0 0 16px; }
.pr-team-card p { font-size: 16px; }
.pr-team-card .pr-eyebrow { font-size: 11px; min-height: 38px; }
.pr-team-grid-single { max-width: 960px; grid-template-columns: 1fr; }
.pr-team-grid-single .pr-team-card { display: grid; grid-template-columns: 240px minmax(0,1fr); align-items: center; }
.pr-team-grid-single .pr-team-photo { height: 100%; max-height: 380px; }
.pr-person { display: grid; grid-template-columns: minmax(0,.65fr) minmax(0,1.35fr); gap: clamp(32px,5vw,76px); padding-top: 56px; border-top: 1px solid var(--pr-sand); scroll-margin-top: 36px; }
.pr-person-portrait { align-self: start; border-radius: 28px; overflow: hidden; }
.pr-person-copy h2 { font-size: clamp(30px,3vw,42px); margin-top: 0; }
.pr-person-copy h3 { font-size: 21px; margin: 28px 0 10px; }
.pr-person-copy li { margin-bottom: 10px; }
.pr-person-qualification { color: var(--pr-olive-deep); font-weight: 700; }
.pr-person-summary { font-size: 20px; }
.pr-profile-links { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 26px; }
.pr-faq { max-width: 1000px; }
.pr-faq details { border-bottom: 1px solid var(--pr-sand); padding: 8px 0; }
.pr-faq summary { padding: 18px 8px; font-size: 19px; font-weight: 700; cursor: pointer; }
.pr-faq details p { padding: 0 8px 18px; margin: 0; max-width: 78ch; }
.pr-faq summary::marker { color: var(--pr-olive-deep); }
.pr-text-link { text-underline-offset: .2em; }
@media (min-width: 981px) { .pr-mobile-menu:not([hidden]) { display: none; } }
@media (max-width: 980px) {
  .pr-team-grid { gap: 18px; }
  .pr-team-card-copy { padding: 20px; }
  .pr-team-card h3 { font-size: 21px; }
  .pr-person { grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: 30px; }
}
@media (max-width: 650px) {
  .pr-team-grid, .pr-person { grid-template-columns: 1fr; }
  .pr-team-card { max-width: 460px; margin-inline: auto; }
  .pr-team-grid-single .pr-team-card { grid-template-columns: 1fr; }
  .pr-team-grid-single .pr-team-photo { height: auto; max-height: none; }
  .pr-person-portrait { max-width: 440px; width: 100%; margin-inline: auto; }
  .pr-about-intro h1 { font-size: 39px; }
  .pr-team-card .pr-eyebrow { min-height: 0; }
  .pr-person { gap: 28px; }
  .pr-person-copy ul { padding-left: 22px; }
  .pr-team-jump { gap: 8px; }
}
/* Contrast fixes verified against the original contact and pricing panels. */
.pr-contact .pr-eyebrow, .pr-service-cta .pr-eyebrow, .pr-contact-details > div > span { color: #fff; opacity: 1; }
.pr-price-number { color: var(--pr-olive-deep); opacity: 1; }
