:root {
    --color-primary: #1e5f8a;
    --color-primary-dark: #164a6b;
    --color-accent: #3a8fb7;
    --color-bg: #f4f8fb;
    --color-bg-muted: #e8f1f7;
    --color-text: #1a2b3c;
    --color-text-muted: #5a6b7d;
    --color-white: #ffffff;
    --color-border: #d4e3ed;
    --shadow-sm: 0 2px 8px rgba(26, 43, 60, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 43, 60, 0.1);
    --shadow-lg: 0 16px 48px rgba(26, 43, 60, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --container: 1120px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-white);
}

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

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

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

a:hover {
    color: var(--color-primary-dark);
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

h1, h2, h3 {
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 1rem;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 1.375rem;
    height: 2px;
    margin-inline: auto;
    background: var(--color-white);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    display: flex;
    flex-direction: column;
    color: inherit;
}

.logo:hover {
    color: inherit;
}

.logo-title {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.logo-subtitle {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.hero {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-white) 60%);
    padding-block: 4rem 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 52ch;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: -0.5rem 0 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #fbfbfb;
}

.home-hero .hero-bg {
    display: none;
}

.home-hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    align-items: stretch;
    min-height: clamp(24rem, 52vh, 34rem);
}

.home-hero-media {
    overflow: hidden;
    min-height: 100%;
}

.home-hero-photo {
    width: 100%;
    height: 100%;
    min-height: clamp(24rem, 52vh, 34rem);
    display: block;
    object-fit: cover;
    object-position: 58% center;
}

.home-hero-copy {
    display: flex;
    align-items: center;
    background: #fbfbfb;
    padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 5vw, 4rem);
    padding-right: max(1.5rem, calc((100vw - var(--container)) / 2));
}

.home-hero-split .hero-content {
    max-width: 34rem;
    width: 100%;
}

.home-hero h1 {
    background: linear-gradient(135deg, var(--color-text) 20%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
}

.hero-blob-1 {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    right: -4rem;
    background: rgba(58, 143, 183, 0.28);
}

.hero-blob-2 {
    width: 22rem;
    height: 22rem;
    bottom: -6rem;
    left: -5rem;
    background: rgba(30, 95, 138, 0.16);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0.75rem -0.75rem -0.75rem 0.75rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
    z-index: 0;
}

.hero-image-wrap .hero-image {
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.home-experience {
    padding-block: 4.5rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.experience-lead {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.experience-note {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    padding-left: 1rem;
    border-left: 3px solid var(--color-accent);
    margin-bottom: 0;
}

.experience-features {
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    padding: 1rem 1.15rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(58, 143, 183, 0.35);
}

.feature-marker {
    flex-shrink: 0;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.feature-item p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
}

.home-specializations {
    position: relative;
}

.home-specializations .section-header::before {
    content: '';
    display: block;
    width: 3.5rem;
    height: 4px;
    margin: 0 auto 1.25rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.home-specializations .section-header.left::before {
    margin-inline: 0;
}

.side-image-wrap {
    position: relative;
}

.side-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0.75rem 0.75rem -0.75rem -0.75rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--color-accent), var(--color-primary-dark));
    z-index: 0;
}

.side-image-wrap .side-image {
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.split-content {
    padding-block: 0.5rem;
}

.split-content .btn {
    margin-top: 0.5rem;
}

.home-surgery-centered {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.home-surgery-prose {
    margin-bottom: 1.5rem;
}

.home-surgery-centered .btn {
    margin-top: 0.25rem;
}

.card-with-image {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-with-image:hover .card-image img {
    transform: scale(1.06);
}

.home-cta .cta-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-cta .cta-box::before {
    content: '';
    position: absolute;
    width: 16rem;
    height: 16rem;
    top: -6rem;
    right: -4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.home-cta .cta-box::after {
    content: '';
    position: absolute;
    width: 10rem;
    height: 10rem;
    bottom: -4rem;
    left: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.home-cta .cta-box > * {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

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

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-light:hover {
    background: var(--color-bg);
    color: var(--color-primary-dark);
}

.section {
    padding-block: 4rem;
}

.section-muted {
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.section-header.left {
    text-align: left;
    margin-inline: 0;
}

.section-intro {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-grid.reverse {
    direction: rtl;
}

.split-grid.reverse > * {
    direction: ltr;
}

.prose p,
.prose ul {
    color: var(--color-text-muted);
}

.prose ul {
    padding-left: 1.25rem;
}

.prose li + li {
    margin-top: 0.35rem;
}

.side-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-with-image {
    padding: 0;
}

.card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}

.card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.card-body h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.card p,
.card-body p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.cta-section {
    padding-bottom: 5rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    color: var(--color-white);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.page-hero {
    background: var(--color-bg);
    padding-block: 3.5rem 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.contacts-hero {
    position: relative;
    overflow: hidden;
    padding-block: 4rem 3rem;
    background: linear-gradient(160deg, #e8f4fa 0%, var(--color-white) 50%, #f2f8fc 100%);
    border-bottom: none;
}

.contacts-hero-inner {
    position: relative;
    z-index: 1;
}

.contacts-hero h1 {
    background: linear-gradient(135deg, var(--color-text) 20%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contacts-section-header::before {
    content: '';
    display: block;
    width: 3.5rem;
    height: 4px;
    margin-bottom: 1rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.contacts-visits {
    padding-block: 4.5rem 3.5rem;
}

.contacts-surgery {
    padding-block: 4rem;
}

.contacts-surgery .surgery-grid {
    max-width: none;
}

.page-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 60ch;
    margin-bottom: 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.location-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(58, 143, 183, 0.35);
}

.location-card.highlight {
    border-color: rgba(58, 143, 183, 0.45);
    background: linear-gradient(160deg, #f0f8fc 0%, var(--color-white) 70%);
    box-shadow: var(--shadow-md);
}

.location-card.highlight::before {
    height: 4px;
}

.location-body {
    padding: 1.35rem 1.35rem 1.4rem;
}

.location-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.location-header h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: var(--color-primary-dark);
    line-height: 1.3;
}

.location-city-badge {
    flex-shrink: 0;
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: var(--color-bg-muted);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    white-space: nowrap;
}

.location-details {
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.location-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-details-row > div:only-child {
    grid-column: 1 / -1;
}

.location-detail-block {
    padding-bottom: 0.85rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid var(--color-border);
}

.location-meta {
    padding: 0.75rem 0.85rem;
    background: var(--color-bg);
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.location-card.highlight .location-meta {
    background: rgba(255, 255, 255, 0.85);
}

.location-details dt {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.location-details dt svg {
    color: var(--color-accent);
}

.location-details dd {
    margin: 0;
    font-weight: 500;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.location-address span {
    flex: 1;
}

.map-link {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    color: var(--color-primary);
    transition: color 0.15s ease;
}

.map-link:hover {
    color: var(--color-primary-dark);
}

.location-details a {
    font-weight: 600;
}

.location-phone a {
    color: var(--color-primary);
}

.location-phone a:hover {
    color: var(--color-primary-dark);
}

.contacts-footer {
    padding-block: 3rem 5rem;
}

.contacts-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contacts-note {
    max-width: 52ch;
}

.contacts-note-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contacts-note p:last-child {
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.contacts-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.contact-main {
    padding-block: 4rem 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.contact-card-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2.5rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: var(--shadow-sm);
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-email {
    margin-bottom: 1rem;
}

.contact-email a {
    font-size: clamp(1.0625rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    word-break: break-all;
}

.contact-email a:hover {
    color: var(--color-primary);
}

.contact-note {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 36ch;
    margin-inline: auto;
}

.contact-aside {
    display: grid;
    gap: 1rem;
}

.contact-info-card {
    padding: 1.35rem 1.4rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(58, 143, 183, 0.35);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    color: var(--color-primary);
    background: var(--color-bg-muted);
}

.contact-info-card h2 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.contact-info-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 0.85rem;
}

.contact-info-link {
    font-size: 0.9375rem;
    font-weight: 600;
}

.contact-footer {
    padding-block: 0 5rem;
}

.info-note {
    text-align: center;
    max-width: 640px;
}

.info-note p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 3rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-name {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer-role,
.footer-org {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 1.25rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .hero-grid,
    .home-hero-split,
    .split-grid,
    .experience-grid,
    .cards-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-split {
        min-height: auto;
    }

    .home-hero-photo {
        min-height: clamp(16rem, 42vw, 22rem);
    }

    .home-hero-copy {
        padding: 2rem 1rem 2.5rem;
    }

    .hero-image-wrap {
        max-width: 100%;
        margin-inline: auto;
    }

    .split-grid.reverse {
        direction: ltr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-inner {
        flex-direction: column;
    }

    .contacts-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.75rem 1.5rem;
    }

    .contacts-note {
        max-width: none;
    }

    .contacts-buttons {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 0.75rem 1rem 1rem;
        background: var(--color-text);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-md);
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: var(--radius);
        font-size: 1rem;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-block: 2.5rem 2rem;
    }

    .section {
        padding-block: 3rem;
    }
}
