:root {
  color-scheme: light;
  --navy-950: #071a38;
  --navy-900: #0b2854;
  --navy-800: #123b72;
  --blue-600: #35628f;
  --blue-100: #e9f0f7;
  --blue-50: #f4f8fb;
  --ink: #172235;
  --muted: #5f6d80;
  --line: #dbe4ed;
  --surface: #ffffff;
  --canvas: #f8fafc;
  --warm: #f6f4ef;
  --danger: #9c2f2f;
  --shadow-sm: 0 10px 28px rgba(7, 26, 56, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 26, 56, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  touch-action: pan-y;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 4%,
      rgba(53, 98, 143, 0.1),
      transparent 30rem
    ),
    linear-gradient(180deg, #fff 0, var(--canvas) 38rem);
  content: "";
  pointer-events: none;
}

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

main,
.parents,
section,
header,
footer,
.container,
.card,
.item,
form {
  min-width: 0;
}

h1,
h2,
h3,
h4,
p,
a,
span,
address {
  overflow-wrap: anywhere;
}

a {
  color: var(--navy-800);
  text-decoration: none;
}

a:hover {
  color: var(--blue-600);
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(53, 98, 143, 0.45);
  outline-offset: 3px;
}

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

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(219, 228, 237, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header.is-hidden {
  transform: translateY(-110%);
}

.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(7, 26, 56, 0.08);
}

.header > .container {
  width: min(calc(100% - 40px), 1460px);
}

.menu {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  justify-content: space-evenly;
}

.menu > a:first-child {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.logotyp {
  display: block;
  width: clamp(240px, 18vw, 276px);
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: left center;
}

.ulMenu {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  list-style: none;
}

.ulMenu li {
  min-width: 0;
}

.ulMenu a {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 8px;
  align-items: center;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.ulMenu li:last-child a {
  padding-inline: 17px;
  background: var(--navy-900);
  color: #fff;
}

.ulMenu a:hover {
  background: var(--blue-100);
  color: var(--navy-900);
}

.ulMenu a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--navy-950);
}

.ulMenu li:last-child a:hover {
  background: var(--navy-800);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.4rem;
}

.parents {
  display: flex;
  flex-direction: column;
}

.Home {
  display: grid;
  min-height: 650px;
  padding-block: 90px 80px;
  align-items: center;
  gap: clamp(44px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  order: 1;
}

.Home .title {
  max-width: 680px;
  min-width: 0;
}

.Home h1,
.blog-page-hero h1,
.blog-article-head h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.Home h1 {
  max-width: 11.5ch;
  text-wrap: balance;
}

.hero-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.Home h2 {
  margin: 24px 0 14px;
  color: var(--blue-600);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.Home .hero-intro {
  max-width: 62ch;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.Home > .img {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  justify-self: end;
  border: 1px solid rgba(219, 228, 237, 0.9);
  border-radius: var(--radius-lg);
  background: var(--blue-100);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.Home > .img::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7, 26, 56, 0.28));
  content: "";
  pointer-events: none;
}

.Home > .img img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.hero-location {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  min-width: 0;
  padding: 12px 15px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(7, 26, 56, 0.82);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.hero-location i {
  flex: 0 0 auto;
  color: #dce7f0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .bContact {
  margin: 0;
}

.bContact,
.btn-download-cv,
.blog-read-link {
  display: inline-flex;
  min-height: 50px;
  margin: 5px 8px 5px 0;
  padding: 12px 22px;
  align-items: center;
  gap: 9px;
  justify-content: center;
  border: 1px solid var(--navy-900);
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.bContact:hover,
.btn-download-cv:hover,
.blog-read-link:hover {
  background: var(--navy-800);
  box-shadow: 0 10px 24px rgba(11, 40, 84, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.bContact:disabled,
.bContact[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.Home .bContact + .bContact {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}

.parents-container,
.Services {
  padding-block: 88px;
}

#services {
  order: 2;
}

#about {
  order: 3;
}

#portfolio {
  order: 4;
}

#Experience {
  order: 5;
}

#references {
  order: 6;
}

#booking,
#booking-blog {
  order: 7;
}

#contact {
  order: 8;
}

.special-title {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.special-title h2,
.footer h2,
.blog-related h2 {
  margin: 0 0 15px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.special-title p {
  margin: 0 auto;
  color: var(--muted);
}

.services-extra {
  max-width: 900px;
  margin-top: 58px;
  margin-bottom: 0;
}

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

.card,
.item {
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.card > i,
.references .card > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 1.25rem;
}

.card h3,
.item h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 1.3rem;
  line-height: 1.25;
}

.card p,
.item p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.about-content {
  max-width: 1100px;
  margin: 0 auto;
}

.about-content .card {
  display: grid;
  padding: 0;
  align-items: center;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1.1fr);
}

.about-subheading {
  margin: 0 0 15px;
  color: var(--navy-800);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 750;
  line-height: 1.35;
}

.about-content .card > .img {
  height: 100%;
  min-height: 540px;
  grid-row: 1 / span 5;
}

.about-content .card > .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .card > h3,
.about-content .card > span,
.about-content .card > p,
.about-content .card > .link {
  margin-right: 38px;
  margin-left: 38px;
}

.about-content .card > h3 {
  margin-top: 36px;
  margin-bottom: 2px;
  font-size: 1.8rem;
}

.about-content .card > span {
  color: var(--blue-600);
  font-weight: 700;
}

.about-content .bio {
  margin-top: 20px;
}

.about-content .link {
  margin-bottom: 34px;
}

#portfolio {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  background: var(--navy-950);
}

#portfolio .special-title h2,
#portfolio .item h3 {
  color: #fff;
}

#portfolio .flex {
  align-items: stretch;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
}

.portfolio-overview {
  display: grid;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
}

.portfolio-times {
  grid-column: 1;
  grid-row: 1;
}

.portfolio-length {
  grid-column: 1;
  grid-row: 2;
}

.portfolio-prices {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.portfolio-payment {
  grid-column: 1 / -1;
}

#portfolio .item {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

#portfolio .item p {
  color: #d4deea;
}

#portfolio .price .portfolio-card-intro {
  margin-bottom: 22px;
  color: var(--muted);
}

#portfolio .price {
  background: #fff;
}

#portfolio .price h3 {
  color: var(--navy-950);
}

.price-list {
  margin: 8px 0 24px;
}

.price-row {
  display: flex;
  padding: 13px 0;
  align-items: baseline;
  gap: 16px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--ink);
}

.price-row > div {
  min-width: 0;
}

.price-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--navy-900);
  font-size: 1.06rem;
}

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

.portfolio-secondary-action {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}

.visit-duration {
  margin-bottom: 5px !important;
}

.portfolio-information {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-information > h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

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

.portfolio-info-block {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.portfolio-info-block h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.12rem;
}

.portfolio-info-block p {
  margin: 0;
  color: #d4deea;
}

.portfolio-info-block .portfolio-info-extra {
  margin-top: 12px;
  color: #fff;
  font-weight: 700;
}

#portfolio .obs {
  margin-top: 34px;
  margin-bottom: 0;
}

#portfolio .obs p {
  color: #d4deea;
  font-size: 0.9rem;
}

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

.Experience .card h3 {
  color: var(--blue-600);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.Experience .card span {
  display: inline-block;
  margin: 2px 0;
  color: var(--blue-600);
  font-size: 0.83rem;
  font-weight: 700;
}

.Experience .card h4 {
  margin: 8px 0 12px;
  color: var(--navy-950);
  font-size: 1.15rem;
}

.references {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  background: var(--warm);
}

.references .flex {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#booking .special-title {
  max-width: 900px;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

#booking h2,
#booking p {
  color: #fff;
}

#booking .bContact {
  border-color: #fff;
  background: #fff;
  color: var(--navy-900);
}

.contact-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.contact-layout {
  display: grid;
  align-items: stretch;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
}

.contact-information,
.contact-message-column {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.contact-card,
.contact-location-card,
.contact-directions-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-location-card {
  display: flex;
  flex-direction: column;
}

.contact-card {
  display: grid;
  padding: 24px;
  grid-template-rows: auto minmax(0, 1fr);
}

.contact-card-heading {
  margin-bottom: 12px;
}

.contact-form-heading {
  margin-bottom: 25px;
}

.contact-card-heading > span,
.contact-form-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card-heading h3,
.contact-form-heading h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.contact-form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-detail-list {
  display: grid;
  min-height: 0;
  grid-auto-rows: auto;
}

.contact-detail {
  display: grid;
  min-width: 0;
  padding: 10px 0;
  align-items: center;
  border-top: 1px solid var(--line);
  gap: 13px;
  grid-template-columns: 42px minmax(0, 1fr);
}

.contact-detail:first-child {
  border-top: 0;
}

.contact-detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 0.96rem;
  place-items: center;
}

.contact-detail > div {
  min-width: 0;
}

.contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.contact-detail p,
.contact-detail address {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.65;
}

.contact-detail a {
  color: var(--navy-800);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.clinic-map-frame {
  overflow: hidden;
  width: 100%;
  height: 340px;
  background: #e9eef4;
}

.clinic-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(35%) contrast(1.02) saturate(0.9);
}

.contact-directions-card {
  flex: 1 1 auto;
  min-width: 0;
  padding: 34px;
}

.contact-directions-figure {
  display: block;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  background: transparent;
}

.directions-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.directions-description-title {
  margin: 0 0 16px;
  color: var(--navy-900);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 760;
  line-height: 1.25;
}

.directions-description {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.contact-map-footer {
  display: flex;
  min-height: 82px;
  padding: 17px 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 18px;
}

.contact-map-footer strong,
.contact-map-footer span {
  display: block;
}

.contact-map-footer strong {
  color: var(--navy-900);
}

.contact-map-footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.map-directions-link {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 13px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 750;
  gap: 8px;
  text-decoration: none;
}

.map-directions-link:hover {
  border-color: var(--blue-600);
  background: var(--blue-100);
}

.contact-form {
  min-width: 0;
  padding: 38px;
}

.contact-form .bContact {
  width: 100%;
  justify-content: center;
}

.contact-notice {
  display: flex;
  margin: 22px 0 0;
  padding: 15px;
  border: 1px solid #ead8c0;
  border-radius: 12px;
  background: #fffaf2;
  color: #76532a;
  font-size: 0.84rem;
  gap: 10px;
  line-height: 1.55;
}

.contact-notice i {
  margin-top: 3px;
}

form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #cbd6e1;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(53, 98, 143, 0.14);
}

.error-message {
  display: none;
  padding: 5px 2px 0;
  color: var(--danger);
  font-size: 0.88rem;
}

.error-message.visible {
  display: block;
}

.form-verification {
  display: grid;
  min-height: 94px;
  margin: 18px 0;
  align-content: start;
  gap: 7px;
}

.form-verification .cf-turnstile {
  min-height: 65px;
  max-width: 100%;
}

.form-verification p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-protection-unavailable {
  margin: 18px 0;
  padding: 13px 15px;
  border: 1px solid #e2b4ad;
  border-radius: var(--radius-sm);
  background: #fff2f0;
  color: #843628;
  font-size: 0.92rem;
  line-height: 1.5;
}

.obs {
  color: var(--danger);
}

.footer {
  width: 100%;
  max-width: none;
  padding: 70px max(20px, calc((100% - var(--container)) / 2));
  background: #edf2f7;
}

.footer > .container {
  width: 100%;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo .logotyp {
  width: min(460px, 82vw);
  height: auto;
}

.made {
  padding: 19px 20px;
  background: var(--navy-950);
  color: #cbd6e1;
  text-align: center;
}

.made-line {
  margin: 0;
  font-size: 0.86rem;
}

.made-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 3px;
  border-radius: 50%;
  background: var(--blue-600);
}

.made a {
  color: #fff;
}

.blog-index-view,
.blog-article-view {
  padding-block: 80px;
}

.blog-page-hero {
  max-width: 800px;
  margin-bottom: 56px;
}

.blog-eyebrow,
.blog-meta-date {
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-page-intro {
  color: var(--muted);
  font-size: 1.1rem;
}

.blog-featured {
  display: grid;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1.15fr 0.85fr;
}

.blog-featured-media img,
.blog-article-cover {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.blog-featured-body,
.blog-article-head,
.blog-article-content {
  padding: 40px;
}

.blog-featured h2 {
  color: var(--navy-950);
  font-size: 2rem;
}

.blog-row,
.blog-related-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.blog-row h2,
.blog-related-item h3 {
  margin: 0 0 8px;
}

.blog-article-shell {
  max-width: 900px;
  margin: auto;
}

.blog-article {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.blog-article-content {
  padding-top: 0;
  color: var(--muted);
}

.blog-back-link {
  font-weight: 700;
}

.blog-image-fallback {
  min-height: 300px;
  background: linear-gradient(135deg, var(--blue-100), #d6e1eb);
}

.blog-empty-state {
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

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

@media (max-width: 1360px) {
  .menu {
    min-height: 84px;
  }

  .menu > a:first-child {
    margin-right: auto;
  }

  .menu-toggle {
    display: inline-grid;
    flex: 0 0 46px;
    place-items: center;
    order: 3;
  }

  .ulMenu {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    max-width: calc(100% - 40px);
    max-height: calc(100dvh - 100px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

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

  .ulMenu li:last-child {
    grid-column: 1 / -1;
  }

  .ulMenu a {
    width: 100%;
    padding: 12px 15px;
    justify-content: flex-start;
    font-size: 0.94rem;
    line-height: 1.3;
    white-space: normal;
  }
}

@media (max-width: 1120px) {
  .Experience .flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .Home {
    min-height: auto;
    padding-block: 64px;
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .Home > .img {
    width: min(100%, 560px);
    max-width: none;
    justify-self: center;
  }

  .cards,
  .flex,
  #portfolio .flex,
  .portfolio-overview,
  .portfolio-info-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-times,
  .portfolio-length,
  .portfolio-prices,
  .portfolio-payment {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-layout {
    gap: 24px;
  }

  .contact-information,
  .contact-message-column {
    display: contents;
  }

  .contact-location-card {
    grid-column: 1;
    order: 2;
  }

  .contact-directions-card {
    order: 5;
  }

  .contact-directions-figure {
    height: auto;
    min-height: 0;
    margin-top: 0;
    grid-column: 1;
    order: 3;
  }

  .directions-image {
    height: auto;
  }

  .contact-card {
    order: 1;
    grid-template-rows: auto auto;
  }

  .contact-form {
    order: 4;
  }

  .contact-detail-list {
    grid-auto-rows: auto;
  }

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

  .about-content .card > .img {
    min-height: 430px;
    grid-row: auto;
  }

  .about-content .card > h3,
  .about-content .card > span,
  .about-content .card > p,
  .about-content .card > .link {
    margin-right: 28px;
    margin-left: 28px;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header > .container {
    width: 100%;
    padding-inline: 14px;
  }

  .menu {
    min-height: 80px;
    gap: 12px;
  }

  .menu > a:first-child {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .logotyp {
    width: clamp(180px, 56vw, 220px);
    max-width: 100%;
    height: auto;
  }

  .menu-toggle {
    flex: 0 0 46px;
  }

  .ulMenu.active {
    grid-template-columns: 1fr;
  }

  .Home {
    padding-block: 48px 64px;
    gap: 34px;
  }

  .Home h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3.25rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
  }

  .Home h2 {
    margin-top: 20px;
    line-height: 1.35;
  }

  .Home .hero-intro {
    margin-bottom: 25px;
    font-size: 1rem;
  }

  .hero-eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    white-space: normal;
  }

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

  .hero-actions .bContact {
    width: 100%;
  }

  .Home > .img {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .Home > .img img {
    object-position: 50% 42%;
  }

  .hero-location {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .parents-container,
  .Services {
    padding-block: 64px;
  }

  .card,
  .item,
  form {
    padding: 24px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-heading {
    margin-bottom: 30px;
  }

  .contact-map-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .map-directions-link {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-block: 48px;
  }

  .Experience .flex,
  .references .flex {
    grid-template-columns: 1fr;
  }

  #booking .special-title {
    padding: 34px 22px;
  }

  .price-row {
    gap: 10px;
  }

  .price-row span {
    font-size: 0.92rem;
  }

  .portfolio-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portfolio-actions .bContact {
    width: 100%;
  }

  .blog-featured-body,
  .blog-article-head,
  .blog-article-content {
    padding: 26px;
  }
}

/* Professionell scroll-reveal: låg rörelse, kort varaktighet och endast med JS. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Indexerbara kunskaps-, behandlings- och lokalsidor. */
.seo-page {
  max-width: 980px;
  padding-block: 42px 96px;
}

.company-page {
  max-width: var(--container);
}

.company-page-content {
  display: grid;
  gap: 34px;
}

.company-overview {
  max-width: 850px;
  margin: -18px 0 12px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.company-section,
.company-info-card,
.company-inquiry {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.company-section,
.company-info-card {
  padding: clamp(28px, 5vw, 48px);
}

.company-section h2,
.company-info-card h2,
.company-inquiry h2 {
  margin: 0 0 16px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.company-section p,
.company-info-card p,
.company-inquiry-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.company-service-grid {
  display: grid;
  margin-top: 30px;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-service-card {
  display: flex;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  flex-direction: column;
}

.company-service-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  place-items: center;
}

.company-service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.3;
}

.company-service-card p {
  margin: 0;
  font-size: 0.96rem;
}

.company-service-card .company-service-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.company-pricing {
  display: grid;
  align-items: start;
  background: var(--navy-950);
  color: #fff;
  gap: 28px 44px;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.company-pricing h2,
.company-pricing p {
  color: #fff;
}

.company-price-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
}

.company-price-row {
  display: flex;
  padding: 20px 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  justify-content: space-between;
  gap: 20px;
}

.company-price-row + .company-price-row {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-price-row strong,
.company-price-row span {
  display: block;
}

.company-price-row span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.company-price-row b {
  flex: 0 0 auto;
  color: #fff;
  text-align: right;
}

.company-pricing-note {
  margin: 0;
  grid-column: 1 / -1;
}

.company-information-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-info-card p:last-child,
.company-tax p:last-of-type,
.company-more p:last-child {
  margin-bottom: 0;
}

.company-tax {
  border-left: 5px solid var(--blue-600);
  background: var(--blue-50);
}

.company-tax-links-intro {
  margin-top: 26px;
}

.company-tax-links {
  display: grid;
  margin: 12px 0 0;
  padding-left: 22px;
  gap: 10px;
}

.company-tax-links a {
  color: var(--navy-800);
  font-weight: 700;
}

.company-more {
  text-align: center;
}

.company-more p {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.company-inquiry {
  display: grid;
  overflow: hidden;
  background: var(--blue-50);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.company-inquiry-intro {
  padding: clamp(30px, 5vw, 48px);
}

.company-inquiry-intro .hero-eyebrow {
  margin-bottom: 16px;
  color: var(--blue-600);
}

.company-required-note {
  margin-top: 28px;
  font-size: 0.9rem;
}

.company-inquiry-form {
  margin: 18px;
  padding: clamp(26px, 4vw, 38px);
  align-self: stretch;
}

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

.company-form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 750;
}

.company-form-group label span {
  margin-left: 3px;
  color: #a33a2a;
}

.company-field-help {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.company-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.company-inquiry-form .bContact {
  width: 100%;
  justify-content: center;
}

.contact-form-status,
.company-form-status {
  display: none;
  margin: 16px 0 0;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form-status.is-visible,
.company-form-status.is-visible {
  display: block;
}

.contact-form-status.is-success,
.company-form-status.is-success {
  border: 1px solid #a7cfb4;
  background: #eef8f1;
  color: #205d34;
}

.contact-form-status.is-error,
.company-form-status.is-error {
  border: 1px solid #e2b4ad;
  background: #fff2f0;
  color: #843628;
}

.company-inquiry-form [aria-invalid="true"] {
  border-color: #b64b3a;
  outline: 3px solid rgba(182, 75, 58, 0.12);
}

@media (max-width: 980px) {
  .company-service-grid {
    grid-template-columns: 1fr;
  }

  .company-service-card {
    padding: 26px;
  }

  .company-pricing,
  .company-inquiry {
    grid-template-columns: 1fr;
  }

  .company-information-grid {
    grid-template-columns: 1fr;
  }
}

.breadcrumbs {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #91a0b2;
  content: "/";
}

.seo-page-hero {
  max-width: 820px;
  margin-bottom: 48px;
}

.seo-page-hero h1 {
  max-width: 900px;
  margin: 14px 0 22px;
  color: var(--navy-950);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.seo-page-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.seo-page-content {
  display: grid;
  gap: 24px;
}

.seo-content-section,
.medical-review,
.page-sources,
.seo-profile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.seo-content-section {
  padding: clamp(28px, 5vw, 46px);
}

.seo-content-section h2,
.page-sources h2 {
  margin: 0 0 16px;
  color: var(--navy-950);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.seo-content-section p:last-child {
  margin-bottom: 0;
}

.seo-price-section .price-list {
  margin-top: 24px;
}

.seo-profile-card {
  display: grid;
  margin: 0 0 34px;
  overflow: hidden;
  grid-template-columns: minmax(240px, 0.72fr) 1fr;
}

.seo-profile-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1121 / 1420;
  object-fit: contain;
  object-position: center top;
}

.seo-profile-card figcaption {
  display: flex;
  padding: 42px;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: white;
}

.seo-profile-card figcaption strong {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
}

.seo-profile-card figcaption span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.medical-review,
.page-sources {
  margin-top: 28px;
  padding: 26px 30px;
}

.medical-review {
  border-left: 5px solid var(--blue-600);
  background: var(--blue-50);
}

.medical-review p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.page-sources ul {
  margin: 0;
  padding-left: 20px;
}

.page-sources li + li {
  margin-top: 8px;
}

.seo-page-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 14px;
}

.seo-secondary-action {
  border-color: var(--line);
  background: var(--surface);
  color: var(--navy-900);
}

.seo-contact-details address {
  margin-bottom: 20px;
  font-style: normal;
  white-space: normal;
}

.seo-directions-figure {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.seo-directions-figure img {
  width: 100%;
  height: auto;
}

.booking-panel,
.location-panel {
  background: linear-gradient(145deg, #fff, var(--blue-50));
}

@media (max-width: 720px) {
  .seo-page {
    padding-block: 28px 70px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .seo-page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

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

  .seo-profile-card img {
    height: auto;
  }

  .seo-profile-card figcaption {
    padding: 28px;
  }

  .seo-page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-page-actions .bContact {
    width: 100%;
  }

  .company-page-content {
    gap: 24px;
  }

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

  .company-inquiry-form {
    margin: 0 14px 14px;
  }

  .company-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .company-price-row b {
    text-align: left;
  }
}
