/* Self-hosted Montserrat (variable font, wght 100-900) — no external CDN request */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/assets/fonts/montserrat-latin.woff2') format('woff2');
    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;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/assets/fonts/montserrat-latin-ext.woff2') format('woff2');
    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;
}

:root {
    --bg: #f7fbfb;
    --card: #ffffff;
    --text: #18323a;
    --muted: #60757b;
    --primary: #0f8f8f;
    --primary-dark: #087272;
    --soft: #e6f5f5;
    --border: #dceaea;
    --shadow: 0 18px 45px rgba(18, 73, 82, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

/* Smooth scrolling for navigation links */
html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

[data-section] {
    scroll-margin-top: 70px;
}

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

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

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 251, 251, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: grid;
    grid-template-columns: max-content minmax(390px, 1fr) max-content;
    align-items: center;
    padding: 16px 0;
    gap: 28px;
}

.header-inner {
    width: min(1280px, calc(100% - 40px));
}

.brand {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: max-content;
    justify-self: start;
}

.logo {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
}

.logo img {
    width: auto;
    height: 56px;
    display: block;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 3px;
    font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.12;
}

.brand-title {
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .012em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-doctor {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    width: 100%;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--muted);
    padding: 7px 8px;
    border: 1px solid rgba(220, 234, 234, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 26px rgba(18, 73, 82, 0.05);
}

.header-cta {
    justify-self: end;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary), #35bebe);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 999px;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.is-active {
    color: var(--primary-dark);
    background: var(--soft);
}

.nav-links a[aria-current="page"],
.nav-links a.is-active {
    box-shadow: inset 0 0 0 1px rgba(15, 143, 143, 0.12);
}

.nav-links a:hover {
    transform: translateY(-1px);
}

.mobile-header,
.mobile-menu-overlay {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(15, 143, 143, 0.22);
    transition: transform .2s ease, background .2s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero .btn {
    box-shadow: none;
}

.btn.secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: none;
}

.hero {
    padding: 86px 0 50px;
    background: var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 46px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    font-weight: 750;
    font-size: 15.5px;
    margin-bottom: 22px;
}

.pill img {
    width: 28px;
    height: 28px;
    display: block;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    margin: 0 0 24px;
}

.lead {
    font-size: 19px;
    color: var(--muted);
    max-width: 610px;
    margin-bottom: 32px;
}

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

.hero-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -80px -60px auto auto;
    width: 220px;
    height: 220px;
    background: var(--soft);
    border-radius: 50%;
}

.photo-placeholder {
    height: 360px;
    border-radius: 26px;
    background: linear-gradient(145deg, #dff4f4, #ffffff);
    position: relative;
    overflow: hidden;
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
    align-items: stretch;
}

.stat {
    background: #f7fcfc;
    border: 1px solid var(--border);
    border-radius: 18px;
    min-height: 74px;
    padding: 12px 8px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 16px;
    line-height: 1.22;
    color: var(--primary-dark);
}

.stat span {
    font-size: 13px;
    color: var(--muted);
}

section {
    padding: 40px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.045em;
    line-height: 1.1;
    margin: 0;
}

.section-head p {
    max-width: 520px;
    color: var(--muted);
    margin: 0;
}

.price-head {
    display: block;
    margin-bottom: 30px;
}

.price-head p {
    max-width: 920px;
    margin-top: 12px;
}

.contact-head {
    display: block;
}

.contact-head p {
    max-width: 620px;
    margin-top: 12px;
}

.about-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.about-intro span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.about-intro p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
}

.about-note {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 28px rgba(18, 73, 82, 0.05);
}

.about-note-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary-dark);
}

.about-note-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-note p {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.45;
}

.team-card {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 22px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--card);
    box-shadow: 0 16px 38px rgba(18, 73, 82, 0.07);
}

.team-photo {
    height: 360px;
    align-self: start;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(145deg, #dff4f4, #f7fcfc);
    border: 1px solid var(--border);
}

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

.team-content {
    min-width: 0;
}

.team-role {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.team-content h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.team-bio {
    margin: 0;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.68;
}

.team-content > .team-bio {
    margin-top: 16px;
}

.team-bio-group {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(220, 234, 234, 0.82);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(247, 252, 252, 0.88), rgba(255, 255, 255, 0.72));
}

.training-block {
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: transparent;
}

.education-block {
    max-width: 720px;
}

.training-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 17px;
}

.training-title svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.training-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    column-gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border);
}

.education-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
}

.training-list.education-list li {
    grid-template-columns: 100px minmax(0, 1fr);
}

.education-list .training-year {
    white-space: nowrap;
}

.education-field {
    display: block;
    margin-top: 6px;
    padding-left: 12px;
    border-left: 2px solid var(--border);
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 700;
}

.training-list li {
    break-inside: avoid;
    min-height: 58px;
    padding: 13px 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.42;
    box-shadow: none;
}

.training-year {
    min-height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

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

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 10px 28px rgba(18, 73, 82, 0.06);
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--soft);
    display: grid;
    place-items: center;
    font-size: 23px;
    margin-bottom: 16px;
    overflow: hidden;
}

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

.icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.icon:has(svg) {
    width: 78px;
    height: 78px;
    border-radius: 24px;
}

.svg-icon {
    width: 117px;
    height: 117px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.image-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--border);
    padding: 6px;
}

.image-icon img {
    border-radius: 13px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

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

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.info-row span:first-child {
    color: var(--muted);
}

.info-row span:last-child {
    font-weight: 700;
    text-align: right;
}

/* Clickable links for phone and email rows */
.info-row a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color .15s ease;
}

.info-row a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-panel {
    position: relative;
    padding: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(430px, 1fr);
    gap: 32px;
    align-items: stretch;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-left {
    gap: 20px;
}

.contact-panel .info-list {
    flex: 1;
    gap: 0;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(18, 73, 82, 0.05);
}

.contact-row {
    display: grid;
    grid-template-columns: 40px minmax(92px, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
}

.contact-row:first-child {
    padding-top: 0;
}

.contact-row:nth-of-type(3) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}

.contact-icon,
.hours-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--soft);
    color: var(--primary-dark);
    flex: 0 0 auto;
}

.contact-icon svg,
.hours-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-label {
    color: var(--muted);
    font-weight: 700;
}

.contact-value {
    font-weight: 800;
    text-align: right;
}

.info-row .contact-value .contact-value-line {
    display: block;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-align: inherit;
}

.contact-row .contact-value-address .contact-value-line {
    text-align: inherit;
}

.contact-value-copy {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.contact-value-copy a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.copy-button {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--soft);
    color: var(--primary-dark);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.copy-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-1px);
}

.copy-button::after {
    content: "Zkopírováno";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--primary-dark);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(18, 73, 82, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity .18s ease, transform .18s ease;
}

.copy-button.is-copied::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.copy-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 16px 0 12px;
    padding-top: 0;
    border-top: 0;
    color: var(--text);
}

.hours-title h4 {
    margin: 0;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hours-list {
    overflow: hidden;
    background: #f7fcfc;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.hours-row {
    min-height: 44px;
    padding: 10px 18px;
    align-items: center;
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row span:first-child {
    color: var(--muted);
    font-weight: 700;
}

.contact-right {
    gap: 22px;
}

.contact-right .contact-map {
    flex: 1 1 auto;
    min-height: 380px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.visit-info-card {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(18, 73, 82, 0.07);
    overflow: hidden;
}

.visit-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 80px;
    padding: 16px 20px;
    color: inherit;
}

.visit-info-item + .visit-info-item {
    border-top: 1px solid var(--border);
}

.visit-info-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary-dark);
}

.visit-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-dark);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.visit-info-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.visit-info-content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.visit-info-content strong {
    font-size: 15px;
    line-height: 1.2;
    color: var(--text);
}

.visit-info-content span {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.4;
}

.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.price-list {
    display: grid;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.price-row:first-child {
    padding-top: 0;
}

.price-service {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.price-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 14px;
    background: var(--soft);
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.price-row strong {
    color: var(--primary-dark);
    text-align: right;
    white-space: nowrap;
}

.pricing-payment-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 18px;
    padding: 14px 20px;
    border: 1px solid #d8ece8;
    border-radius: 16px;
    background: #eef8f6;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
}

.payment-note-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-dark);
}

.payment-note-icon svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.price-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.insurance-panel {
    margin-top: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: linear-gradient(145deg, var(--soft), #f7fcfc);
}

.insurance-copy h3,
.price-cta h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.insurance-copy p,
.price-cta p {
    margin: 0;
    color: var(--muted);
}

.insurance-copy {
    max-width: min(920px, 100%);
    margin-bottom: 24px;
}

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

.insurance-pending {
    position: relative;
    margin: 20px 0 0;
    padding: 18px 20px 18px 54px;
    border: 1px solid rgba(15, 143, 143, 0.32);
    border-left: 5px solid var(--primary);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 28px rgba(18, 73, 82, 0.08);
}

.insurance-pending::before {
    content: "i";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.insurance-pending strong,
.insurance-pending span {
    display: block;
}

.insurance-pending strong {
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 1.35;
}

.insurance-pending span {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.55;
}

.insurance-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .2s ease, box-shadow .2s ease;
}

.insurance-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.insurance-logo-placeholder {
    box-sizing: border-box;
    width: 100%;
    height: 180px;
    border: 1px solid #e1ece9;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.insurance-logo-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 55, 55, 0.06);
}

.insurance-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.insurance-logo-placeholder img.insurance-logo-vzp {
    max-width: min(240px, 74%);
    max-height: 84px;
    width: auto;
}

.insurance-logo-placeholder img.insurance-logo-vozp,
.insurance-logo-placeholder img.insurance-logo-cpzp,
.insurance-logo-placeholder img.insurance-logo-ozp,
.insurance-logo-placeholder img.insurance-logo-zpmv {
    max-width: min(320px, 88%);
    max-height: 108px;
    width: auto;
}

.insurance-card strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.insurance-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.price-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--primary), #4fc7c7);
    color: white;
    box-shadow: var(--shadow);
}

.price-cta p {
    color: rgba(255, 255, 255, .88);
}

.price-cta .btn {
    background: white;
    color: var(--primary-dark);
    box-shadow: none;
    flex: 0 0 auto;
}

@media (max-width: 1020px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 42px 1fr;
        gap: 10px 12px;
    }

    .contact-row:first-child {
        padding-top: 10px;
    }

    .contact-label {
        align-self: center;
    }

    .info-row .contact-value {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 54px;
    }

    .contact-panel .contact-row > .contact-value-address {
        text-align: left;
    }

    .contact-value-copy {
        justify-content: flex-start;
    }

    .visit-info-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 0;
    }

    .visit-info-item {
        min-height: 0;
        padding: 16px 18px;
    }

    .visit-info-item + .visit-info-item {
        border-top: 1px solid var(--border);
    }
}

/* Map container in the office section */
.map-container iframe {
    border: 0;
}

.map-container {
    height: 320px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #dff4f4, #f0fafa);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 15px;
}

.booking {
    background: linear-gradient(135deg, var(--primary), #4fc7c7);
    color: white;
    border-radius: 32px;
    padding: 20px 28px;
    box-shadow: var(--shadow);
}

.booking h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
}

.booking h2 {
    color: white;
    margin-bottom: 14px;
}

.booking p {
    color: rgba(255, 255, 255, .88);
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.5;
}

.booking .btn {
    background: white;
    color: var(--primary-dark);
    box-shadow: none;
    padding: 12px 18px;
}

.site-footer {
    margin-top: 56px;
    padding: 46px 0 38px;
    border-top: 1px solid rgba(220, 234, 234, 0.75);
}

.footer-shell {
    width: min(1280px, calc(100% - 40px));
    color: var(--muted);
}

.footer-main {
    display: grid;
    grid-template-columns: max-content 1px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(220, 234, 234, 0.85);
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: max-content;
}

.footer-logo {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
}

.footer-logo img {
    width: auto;
    height: 56px;
    display: block;
    object-fit: contain;
}

.footer-brand-copy {
    display: grid;
    gap: 3px;
    font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.12;
}

.footer-brand-copy span:first-child {
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .012em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-brand-copy span:last-child {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.footer-divider {
    width: 1px;
    height: 58px;
    background: var(--border);
}

.footer-contact-list {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    align-items: center;
    justify-content: start;
    column-gap: 34px;
    min-width: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary-dark);
}

.footer-contact-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-item span:last-child {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.footer-contact-item strong {
    color: var(--text);
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.footer-contact-item small {
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 650;
    line-height: 1.2;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    font-size: 14px;
    font-weight: 650;
    color: var(--muted);
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease;
}

.footer-legal a + a::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 12px;
    border-radius: 50%;
    vertical-align: middle;
    background: currentColor;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-bottom-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.footer-ico {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.footer-ico strong {
    color: inherit;
    font-weight: inherit;
}

.footer-ico::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 16px;
    border-radius: 50%;
    vertical-align: middle;
    background: currentColor;
}

.footer-cta {
    padding: 13px 18px;
    white-space: nowrap;
    box-shadow: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.legal-page main {
    overflow: hidden;
}

.legal-page .site-footer {
    margin-top: 0;
}

.legal-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.92) 48%, rgba(247, 251, 251, 0.22) 100%),
        url("/assets/images/room-tst.webp") right center / cover no-repeat;
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.42));
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    padding: 64px 0;
}

.legal-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.legal-breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
}

.legal-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.legal-hero p {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.55;
}

.legal-content {
    padding: 58px 0 74px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.legal-content-inner {
    max-width: 940px;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.legal-updated svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.legal-lead {
    max-width: 760px;
    margin: 0 0 34px;
    color: var(--text);
    font-size: 18px;
    font-weight: 550;
    line-height: 1.75;
}

.legal-text-card {
    max-width: 820px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(18, 73, 82, 0.05);
}

.legal-text-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    font-weight: 550;
    line-height: 1.8;
}

.legal-text-card p + p {
    margin-top: 16px;
}

.legal-section-list {
    display: grid;
    gap: 28px;
}

.legal-section-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.legal-section-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--primary-dark);
}

.legal-section-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.legal-section-item h2 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 20px;
    line-height: 1.3;
}

.legal-section-item p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.legal-home-link {
    margin-top: 38px;
}

@media (max-width: 1120px) {
    header {
        background: transparent;
        border-bottom: 0;
        backdrop-filter: none;
    }

    .nav {
        display: none;
    }

    .mobile-header {
        width: min(100% - 28px, 1120px);
        min-height: 86px;
        margin: 10px auto;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border: 1px solid rgba(220, 234, 234, 0.9);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 16px 38px rgba(18, 73, 82, 0.10);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-brand {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .mobile-logo {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        display: grid;
        place-items: center;
    }

    .mobile-logo img {
        width: auto;
        height: 49px;
        display: block;
        object-fit: contain;
    }

    .mobile-brand-copy {
        min-width: 0;
        display: grid;
        gap: 4px;
        font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        line-height: 1.12;
    }

    .mobile-brand-copy span:first-child {
        color: var(--text);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: .012em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mobile-brand-copy span:last-child {
        color: var(--muted);
        font-size: 13.5px;
        font-weight: 500;
        white-space: nowrap;
    }

    .mobile-menu-toggle,
    .mobile-menu-close {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border: 0;
        border-radius: 17px;
        display: grid;
        place-items: center;
        background: var(--soft);
        color: var(--primary-dark);
        cursor: pointer;
        transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-close:hover {
        background: #d9f0ef;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(18, 73, 82, 0.08);
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        grid-area: 1 / 1;
        border-radius: 999px;
        background: currentColor;
        transition: transform .26s ease, opacity .2s ease;
    }

    .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(-6px);
    }

    .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(6px);
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: block;
        padding: 10px 14px 16px;
        background: rgba(247, 251, 251, 0.96);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .28s ease, visibility .28s ease;
    }

    .mobile-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-panel {
        height: 100%;
        overflow-y: auto;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 24px 60px rgba(18, 73, 82, 0.14);
        display: flex;
        flex-direction: column;
        transform: translateY(16px);
        transition: transform .32s ease;
    }

    .mobile-menu-overlay.is-open .mobile-menu-panel {
        transform: translateY(0);
    }

    .mobile-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .mobile-menu-close svg {
        width: 23px;
        height: 23px;
        stroke: currentColor;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-menu-handle {
        width: 48px;
        height: 5px;
        margin: 22px auto 20px;
        border-radius: 999px;
        background: #d9e8e8;
    }

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

    .mobile-nav-item {
        min-height: 76px;
        padding: 14px 16px;
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) 28px;
        gap: 14px;
        align-items: center;
        border: 1px solid rgba(220, 234, 234, 0.9);
        border-radius: 24px;
        background: #ffffff;
        color: var(--muted);
        font-size: 18px;
        font-weight: 800;
        box-shadow: 0 10px 28px rgba(18, 73, 82, 0.05);
        transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .mobile-nav-item.is-active,
    .mobile-nav-item[aria-current="page"] {
        background: var(--soft);
        border-color: #cde6e6;
        color: var(--primary-dark);
    }

    .mobile-nav-item:hover:not(.is-active):not([aria-current="page"]) {
        background: #fbfefe;
        border-color: var(--border);
        color: var(--primary-dark);
    }

    .mobile-nav-item:active {
        transform: translateY(-1px);
    }

    .mobile-nav-icon {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 17px;
        background: var(--soft);
        color: var(--primary-dark);
    }

    .mobile-nav-icon svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-nav-chevron {
        justify-self: end;
        color: var(--primary-dark);
        font-size: 30px;
        line-height: 1;
    }

    .mobile-cta {
        margin-top: auto;
        min-height: 94px;
        padding: 16px;
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) 42px;
        gap: 14px;
        align-items: center;
        border: 1px solid var(--border);
        border-radius: 26px;
        background: linear-gradient(145deg, #f7fcfc, #ffffff);
        box-shadow: 0 16px 38px rgba(18, 73, 82, 0.08);
    }

    .mobile-cta-icon {
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        border-radius: 17px;
        background: var(--soft);
        color: var(--primary-dark);
    }

    .mobile-cta-icon svg {
        width: 23px;
        height: 23px;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-cta strong,
    .mobile-cta span span {
        display: block;
    }

    .mobile-cta strong {
        color: var(--text);
        font-size: 16px;
        line-height: 1.25;
    }

    .mobile-cta span span {
        margin-top: 4px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.35;
    }

    .mobile-cta-arrow {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--primary);
        color: white;
        font-size: 28px;
        line-height: 1;
    }
}

@media (max-width: 960px) {
    .footer-main {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        padding-bottom: 28px;
    }

    .footer-divider {
        display: none;
    }

    .footer-contact-list {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .footer-bottom-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 860px) {

    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .legal-hero {
        min-height: 240px;
        background:
            linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.9) 72%, rgba(247, 251, 251, 0.48) 100%),
            url("/assets/images/room-tst.webp") center / cover no-repeat;
    }

    .legal-hero-inner {
        padding: 48px 0;
    }

    .legal-content {
        padding: 44px 0 58px;
    }

    .legal-section-item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 18px;
    }

    .legal-section-icon {
        width: 54px;
        height: 54px;
    }

    .legal-section-icon svg {
        width: 26px;
        height: 26px;
    }

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

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 12px;
    }

    .about-header,
    .team-card {
        grid-template-columns: 1fr;
    }

    .about-header {
        align-items: start;
    }

    .team-card {
        gap: 22px;
        padding: 20px;
        border-radius: var(--radius);
    }

    .team-photo {
        height: 300px;
    }

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

    .stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 64px;
    }

    .stat strong {
        display: inline;
        font-size: 22px;
        line-height: 1.2;
    }

    .price-card,
    .insurance-panel,
    .price-cta,
    .contact-panel {
        border-radius: var(--radius);
        padding: 24px;
    }

    .contact-panel .info-list {
        border-radius: var(--radius);
        padding: 20px;
    }

    .contact-row {
        grid-template-columns: 42px 1fr;
        gap: 10px 12px;
    }

    .contact-row:first-child {
        padding-top: 10px;
    }

    .contact-label {
        align-self: center;
    }

    .info-row .contact-value {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 54px;
    }

    .contact-panel .contact-row > .contact-value-address {
        text-align: left;
    }

    .contact-value-copy {
        justify-content: flex-start;
    }

    .price-row {
        grid-template-columns: minmax(0, 1fr) max-content;
        gap: 16px;
        align-items: center;
        padding: 14px 0;
    }

    .price-row strong {
        padding-left: 0;
        text-align: right;
        white-space: nowrap;
        font-size: 18px;
        line-height: 1.25;
    }

    .price-service {
        font-size: 18px;
        line-height: 1.25;
    }

    .insurance-panel,
    .price-cta {
        grid-template-columns: 1fr;
    }

    .price-cta {
        display: grid;
    }

    .price-cta .btn {
        justify-self: start;
    }

    .hero {
        padding-top: 54px;
    }

    /* Smaller map height on mobile */
    .map-container,
    .contact-right .contact-map {
        height: 260px;
        min-height: 260px;
        flex: 0 0 260px;
    }

    .hours-title h4 {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .hours-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 14px 0 8px;
        padding-top: 0;
        border-top: 0;
        color: var(--text);
        font-weight: 800;
        font-size: 20px;
    }

    .hours-icon {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: var(--soft);
        font-size: 18px;
    }

    .info-row.hours-row {
        padding: 11px 18px;
    }
}

@media (max-width: 640px) {
    [data-section] {
        scroll-margin-top: 88px;
    }

    section {
        padding: 32px 0;
    }

    .hero {
        padding-bottom: 32px;
    }

    .about-note {
        align-items: flex-start;
    }

    .team-photo {
        height: 240px;
    }

    .training-list {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .legal-breadcrumb {
        font-size: 13px;
    }

    .legal-hero p,
    .legal-lead {
        font-size: 16px;
    }

    .legal-section-list {
        gap: 24px;
    }

    .legal-section-item {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 18px;
    }

    .contact-panel .info-list {
        padding: 16px;
    }

    .contact-row {
        gap: 8px 10px;
        padding: 12px 0;
    }

    .info-row .contact-value {
        padding-left: 50px;
    }

    .contact-value-copy {
        gap: 6px;
    }

    .contact-value-copy a[href^="mailto:"] {
        white-space: nowrap;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    .copy-button {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        border-radius: 10px;
    }

    .hours-title {
        margin-top: 10px;
        padding-top: 12px;
    }

    .price-row {
        gap: 12px;
    }

    .price-service {
        line-height: 1.25;
    }

    .price-row strong {
        line-height: 1.25;
        white-space: nowrap;
    }

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

    .site-footer {
        margin-top: 34px;
        padding: 28px 0;
    }
}

@media (max-width: 380px) {
    .mobile-header {
        padding: 12px 14px;
        gap: 10px;
    }

    .mobile-brand {
        gap: 4px;
    }

    .mobile-logo {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .mobile-logo img {
        width: auto;
        height: 45px;
    }

    .mobile-brand-copy span:first-child {
        font-size: 14px;
        letter-spacing: .008em;
    }

    .mobile-brand-copy span:last-child {
        font-size: 12.5px;
    }
}

@media (max-width: 420px) {
    .price-card {
        padding: 18px;
    }

    .price-row {
        gap: 10px;
    }

    .price-service,
    .price-row strong {
        font-size: 16px;
    }
}
