:root {
    color-scheme: light;
    --ink: #173329;
    --ink-soft: #4d665c;
    --green: #2f7b52;
    --green-dark: #245f40;
    --green-soft: #e9f3ec;
    --green-pale: #f5f9f6;
    --coral: #d84a43;
    --coral-dark: #b93b36;
    --cream: #fffaf2;
    --white: #ffffff;
    --line: #dce9e0;
    --shadow: 0 22px 60px rgba(23, 51, 41, 0.10);
    --shadow-soft: 0 12px 32px rgba(23, 51, 41, 0.07);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

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

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

a {
    color: var(--green-dark);
    text-underline-offset: 4px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.75rem, 6vw, 5.55rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

h2 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.55rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.14rem;
    line-height: 1.3;
}

.skip-link {
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    transform: translateY(-160%);
}

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

.site-header {
    border-bottom: 1px solid rgba(220, 233, 224, 0.84);
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(15px);
}

.site-header__inner {
    width: min(1380px, calc(100% - 40px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    flex: 0 0 auto;
}

.site-logo img {
    width: min(330px, 31vw);
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.4vw, 24px);
}

.site-nav a,
.header-phone {
    color: var(--ink);
    font-size: 0.91rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.site-nav a {
    padding: 30px 0 26px;
    border-bottom: 3px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--green);
    border-color: var(--coral);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.button {
    min-height: 50px;
    border: 1px solid var(--green);
    border-radius: 999px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 12px 26px rgba(47, 123, 82, 0.18);
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    border-color: var(--green-dark);
    background: var(--green-dark);
    box-shadow: 0 15px 30px rgba(47, 123, 82, 0.24);
    transform: translateY(-2px);
}

.button--small {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 0.87rem;
}

.button--outline {
    color: var(--green-dark);
    background: transparent;
    box-shadow: none;
}

.button--outline:hover {
    color: var(--white);
}

.button--white {
    color: var(--green-dark);
    border-color: var(--white);
    background: var(--white);
    box-shadow: none;
}

.button--white:hover {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.54);
    background: transparent;
    box-shadow: none;
}

.button--ghost:hover {
    color: var(--green-dark);
    border-color: var(--white);
    background: var(--white);
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button-row--center {
    justify-content: center;
}

.section {
    padding: clamp(72px, 9vw, 128px) 0;
}

.section--soft {
    background: var(--green-pale);
}

.section--compact {
    padding-top: 42px;
    padding-bottom: 82px;
}

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

.eyebrow {
    margin-bottom: 16px;
    color: var(--coral-dark);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #d7efdf;
}

.hero {
    min-height: min(820px, calc(100vh - 88px));
    padding-top: clamp(58px, 7vw, 96px);
    background:
        radial-gradient(circle at 8% 12%, rgba(216, 74, 67, 0.08), transparent 26rem),
        linear-gradient(125deg, var(--cream), var(--white) 52%, var(--green-pale));
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.17fr) minmax(330px, 0.83fr);
    align-items: center;
    gap: clamp(40px, 8vw, 105px);
}

.hero__content {
    max-width: 760px;
}

.hero__lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero__points {
    margin: 34px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    list-style: none;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 650;
}

.hero__points li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero__points li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    content: "";
}

.hero__portrait {
    max-width: 475px;
    margin-left: auto;
    position: relative;
}

.hero__portrait::before {
    width: 90%;
    height: 88%;
    border-radius: 50% 50% 46% 54% / 60% 40% 60% 40%;
    background: #d9ebdc;
    position: absolute;
    right: -15%;
    bottom: -6%;
    content: "";
}

.portrait-frame {
    border: 12px solid rgba(255, 255, 255, 0.9);
    border-radius: 48% 48% 20px 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.portrait-frame img {
    width: 100%;
    aspect-ratio: 0.84;
    object-fit: cover;
    object-position: 50% 17%;
}

.portrait-note {
    max-width: 340px;
    border: 1px solid rgba(220, 233, 224, 0.9);
    border-radius: 18px;
    padding: 16px 18px;
    display: grid;
    gap: 2px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
    position: absolute;
    right: -24px;
    bottom: 26px;
}

.portrait-note span {
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

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

.section-heading > p {
    max-width: 380px;
    margin-bottom: 5px;
    color: var(--ink-soft);
}

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

.service-card {
    min-height: 290px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card__number,
.audience-grid article > span {
    margin-bottom: 56px;
    color: var(--coral-dark);
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.service-card p,
.audience-grid p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.text-link {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-weight: 850;
    text-decoration: none;
}

.text-link:hover {
    color: var(--coral-dark);
}

.about-teaser {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 10vw, 150px);
}

.about-teaser > div:last-child {
    color: var(--ink-soft);
    font-size: 1.14rem;
}

.booking-banner {
    border-radius: var(--radius-lg);
    padding: clamp(34px, 6vw, 76px);
    color: var(--white);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15), transparent 18rem),
        var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.booking-banner > div:first-child {
    max-width: 650px;
}

.booking-banner h2 {
    margin-bottom: 12px;
}

.booking-banner p:not(.eyebrow) {
    margin-bottom: 0;
    color: #d7e7dc;
}

.contact-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr auto;
    align-items: center;
    gap: 28px;
}

.contact-strip > div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.contact-strip span,
.contact-details span {
    color: var(--coral-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-strip strong,
.contact-strip a:not(.button) {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.page-hero {
    padding-top: clamp(70px, 9vw, 130px);
    padding-bottom: clamp(60px, 7vw, 96px);
    background:
        radial-gradient(circle at 85% 0%, rgba(47, 123, 82, 0.09), transparent 28rem),
        var(--cream);
}

.page-hero__inner {
    max-width: 1010px;
}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1.17rem;
}

.page-hero .button {
    margin-top: 28px;
}

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

.audience-grid article {
    min-height: 330px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    background: var(--white);
}

.audience-grid article > span {
    margin-bottom: 45px;
}

.audience-grid .text-link {
    margin-top: 16px;
}

.editorial-image {
    display: grid;
    gap: 38px;
}

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

.editorial-image img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.centered-cta {
    max-width: 850px;
    border-radius: var(--radius-lg);
    padding: clamp(38px, 6vw, 70px);
    background: var(--green-pale);
    text-align: center;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(45px, 8vw, 110px);
}

.profile-layout__image img {
    width: 100%;
    border-radius: 48% 48% var(--radius) var(--radius);
    box-shadow: var(--shadow);
}

.prose {
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.prose h2,
.prose h3 {
    color: var(--ink);
}

.prose h2:not(:first-child) {
    margin-top: 52px;
}

.prose blockquote {
    margin: 36px 0 0;
    border-left: 4px solid var(--coral);
    padding: 8px 0 8px 24px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

.prose--wide {
    max-width: 920px;
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline li {
    border-top: 1px solid var(--line);
    padding: 22px 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
}

.timeline li:last-child {
    border-bottom: 1px solid var(--line);
}

.timeline time {
    color: var(--coral-dark);
    font-weight: 900;
}

.consultation-list {
    display: grid;
    gap: 18px;
}

.consultation-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 80px);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.consultation-card__meta {
    display: grid;
    align-content: start;
    gap: 12px;
}

.consultation-card__meta span {
    color: var(--coral-dark);
    font-size: 0.74rem;
    font-weight: 900;
}

.consultation-card__meta strong {
    color: var(--green-dark);
}

.consultation-card p {
    color: var(--ink-soft);
}

.info-box {
    margin-top: 24px;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: grid;
    gap: 3px;
    background: var(--green-soft);
}

.split-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.split-cta > div {
    max-width: 760px;
}

.procedure-grid {
    margin: 32px 0 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.procedure-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    color: var(--ink-soft);
    background: var(--green-pale);
}

.procedure-grid article > span {
    color: var(--coral-dark);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.procedure-grid h3 {
    margin-top: 18px;
    color: var(--ink);
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr);
    align-items: start;
    gap: 28px;
}

.pricing-list {
    border-top: 1px solid var(--line);
}

.pricing-list article {
    border-bottom: 1px solid var(--line);
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.pricing-list h2 {
    margin-bottom: 4px;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0;
}

.pricing-list span {
    color: var(--ink-soft);
    font-size: 0.87rem;
}

.pricing-list article > strong {
    color: var(--coral-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-aside {
    border-radius: var(--radius);
    padding: 30px;
    background: var(--green-pale);
}

.pricing-aside h2 {
    font-size: 2rem;
}

.pricing-aside ul {
    margin: 0 0 26px;
    padding-left: 20px;
    color: var(--ink-soft);
}

.pricing-aside li + li {
    margin-top: 9px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(36px, 7vw, 90px);
}

.contact-details {
    display: grid;
    gap: 30px;
}

.contact-details > div {
    border-bottom: 1px solid var(--line);
    padding-bottom: 26px;
    display: grid;
    gap: 8px;
}

.contact-details strong,
.contact-details a {
    color: var(--ink);
    font-size: 1.07rem;
    font-weight: 800;
}

.contact-details p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.contact-details .access-note {
    border: 0;
    border-radius: var(--radius-sm);
    padding: 20px;
    background: var(--cream);
}

.public-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(25px, 5vw, 48px);
    display: grid;
    gap: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.public-form h2 {
    margin-bottom: 0;
}

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

.public-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 0.91rem;
    font-weight: 800;
}

.public-form label small {
    color: var(--ink-soft);
    font-weight: 500;
}

.public-form input,
.public-form select,
.public-form textarea {
    width: 100%;
    border: 1px solid #c9d9ce;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
}

.public-form input,
.public-form select {
    min-height: 49px;
}

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

.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
    border-color: var(--green);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(47, 123, 82, 0.12);
}

.check-label {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    gap: 10px !important;
    font-weight: 550 !important;
}

.check-label input {
    width: 19px;
    min-height: 19px;
    margin-top: 2px;
    accent-color: var(--green);
}

.form-success,
.form-error {
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.form-success {
    color: #185838;
    background: #e7f5eb;
}

.form-error {
    color: #8b2723;
    background: #fdecea;
}

.form-note {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.5fr);
    align-items: start;
    gap: 24px;
}

.calendar-card,
.booking-request {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.calendar-card {
    padding: clamp(20px, 4vw, 38px);
}

.calendar-toolbar {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 14px;
}

.calendar-toolbar h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
}

.calendar-nav {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--green-pale);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
}

.calendar-nav:hover {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.calendar-nav--disabled {
    opacity: 0.35;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.calendar-weekdays {
    margin-bottom: 7px;
}

.calendar-weekdays span {
    color: var(--ink-soft);
    font-size: 0.73rem;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
}

.calendar-empty,
.calendar-day {
    min-height: 132px;
}

.calendar-day {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 9px;
    background: var(--white);
}

.calendar-day > strong {
    margin-bottom: 7px;
    display: block;
    font-size: 0.82rem;
}

.calendar-day--past {
    color: #9aaba2;
    background: #fafcfa;
}

.slot-list {
    display: grid;
    gap: 5px;
}

.slot {
    min-height: 28px;
    border-radius: 7px;
    padding: 4px 5px;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
}

.slot--available {
    color: #155435;
    border: 1px solid #b9d9c4;
    background: #e6f5eb;
}

.slot--available:hover,
.slot--available.is-selected {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.slot--reserved {
    color: #78877f;
    border: 1px solid #e2e8e4;
    background: #eff2f0;
}

.calendar-legend {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot--available {
    background: #76b98e;
}

.legend-dot--reserved {
    background: #bcc7c0;
}

.calendar-empty-state {
    margin-top: 24px;
    border-radius: var(--radius-sm);
    padding: 17px;
    display: grid;
    gap: 3px;
    background: var(--cream);
    text-align: center;
}

.calendar-empty-state span {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.booking-request {
    position: sticky;
    top: 112px;
    overflow: hidden;
}

.public-form--booking {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.booking-placeholder,
.booking-confirmation {
    padding: clamp(26px, 4vw, 38px);
}

.booking-placeholder > span,
.booking-confirmation > span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    font-size: 0.82rem;
    font-weight: 900;
}

.booking-placeholder h2,
.booking-confirmation h2 {
    margin-bottom: 8px;
    font-size: 1.65rem;
}

.booking-placeholder p,
.booking-confirmation p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.booking-placeholder hr {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.booking-confirmation {
    background: var(--green-pale);
}

.booking-confirmation .button {
    margin-top: 24px;
}

.legal-content {
    max-width: 870px;
}

.legal-content h2 {
    margin-top: 44px;
    margin-bottom: 12px;
    font-size: 2rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--ink-soft);
}

.site-footer {
    padding: 72px 0 22px;
    color: #dcebe1;
    background: var(--ink);
}

.footer-grid,
.footer-bottom {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.8fr;
    gap: 60px;
}

.footer-logo {
    width: min(380px, 100%);
    border-radius: 4px;
}

.footer-grid p {
    max-width: 430px;
    margin: 18px 0 0;
    color: #b8cec0;
}

.footer-grid h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.79rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-grid address {
    color: #b8cec0;
    font-style: normal;
}

.footer-grid a {
    margin-bottom: 8px;
    display: block;
    color: #dcebe1;
}

.footer-grid address a {
    margin: 4px 0 0;
    display: inline;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(220, 235, 225, 0.16);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #9eb6a6;
    font-size: 0.78rem;
}

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

:focus-visible {
    outline: 3px solid rgba(216, 74, 67, 0.38);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .site-header__inner {
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .site-logo img {
        width: 310px;
    }

    .site-nav {
        width: 100%;
        order: 3;
    }

    .site-nav a {
        padding: 5px 0 10px;
    }

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

    .contact-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-strip .button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-request {
        position: static;
    }
}

@media (max-width: 860px) {
    h1 {
        font-size: clamp(2.7rem, 10vw, 4.5rem);
    }

    .site-header {
        position: static;
    }

    .site-header__inner {
        width: min(100% - 28px, 1380px);
    }

    .site-logo img {
        width: min(310px, 65vw);
    }

    .header-phone {
        display: none;
    }

    .site-nav {
        padding-top: 4px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .site-nav a {
        flex: 0 0 auto;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid,
    .profile-layout,
    .pricing-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero__portrait {
        max-width: 420px;
        margin: 0 auto;
    }

    .section-heading,
    .booking-banner,
    .split-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading {
        display: grid;
        gap: 0;
    }

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

    .about-teaser {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .consultation-card__meta {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

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

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        gap: 12px;
    }

    .site-logo {
        width: 100%;
    }

    .site-logo img {
        width: 100%;
        max-width: 340px;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .button {
        width: 100%;
    }

    .site-nav {
        gap: 18px;
    }

    .section__inner {
        width: min(100% - 28px, 1220px);
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .hero__points {
        display: grid;
    }

    .portrait-note {
        max-width: calc(100% - 20px);
        right: 10px;
        bottom: 12px;
    }

    .service-grid,
    .audience-grid,
    .contact-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .audience-grid article {
        min-height: auto;
    }

    .service-card__number,
    .audience-grid article > span {
        margin-bottom: 30px;
    }

    .booking-banner {
        border-radius: var(--radius);
    }

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

    .calendar-card {
        padding: 16px 10px;
    }

    .calendar-weekdays,
    .calendar-grid {
        gap: 3px;
    }

    .calendar-day,
    .calendar-empty {
        min-height: 95px;
    }

    .calendar-day {
        padding: 5px 3px;
    }

    .slot {
        min-height: 25px;
        padding: 3px 2px;
        font-size: 0.64rem;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
