:root {
    --bg: #f5fbfd;
    --surface: #ffffff;
    --surface-alt: #d9edf2;
    --ink: #102235;
    --muted: #446175;
    --teal: #0f5a79;
    --teal-deep: #0a4e69;
    --teal-soft: #4a99ab;
    --teal-mist: #9fc8d4;
    --coral: #ff9b7b;
    --coral-deep: #f48862;
    --coral-soft: #f6ddd2;
    --line: rgba(16, 34, 53, 0.12);
    --shadow: 0 18px 45px rgba(16, 34, 53, 0.1);
    --radius: 26px;
    --radius-sm: 16px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.65;
    letter-spacing: -0.01em;
    background: var(--bg);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(255, 155, 120, 0.14), transparent 28rem),
        radial-gradient(circle at top right, rgba(71, 151, 169, 0.12), transparent 34rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background-repeat: no-repeat;
    background-size: 48rem 48rem, 56rem 56rem, 100% 100%;
}

.site-shell {
    position: relative;
    z-index: 0;
}

.site-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 155, 123, 0.14), transparent 26%),
        radial-gradient(circle at top right, rgba(74, 153, 171, 0.14), transparent 32%),
        rgba(245, 251, 253, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-transition.is-active,
html.translation-pending .site-transition {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-transition__inner {
    display: grid;
    place-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.site-transition__logo {
    width: min(260px, 56vw);
    animation: transition-pulse 1.2s ease-in-out infinite;
}

@keyframes transition-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.96;
    }
    50% {
        transform: translateY(-4px) scale(1.02);
        opacity: 1;
    }
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgba(245, 251, 253, 0.94);
    border-bottom: 1px solid rgba(16, 34, 53, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header--scrolled {
    box-shadow: 0 12px 35px rgba(16, 34, 53, 0.08);
    background: rgba(245, 251, 253, 0.98);
}

.topbar {
    background: var(--teal-deep);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.topbar__inner,
.header-main,
.nav-actions,
.hero__actions,
.section-card,
.metrics,
.cta-band,
.contact-layout,
.footer-bottom,
.footer-social,
.visit-popup__actions,
.translate-actions,
.field-grid {
    display: flex;
    gap: 1rem;
}

.topbar__inner,
.header-main,
.footer-bottom {
    justify-content: space-between;
    align-items: center;
}

.topbar__inner {
    padding: 0.45rem 0;
    flex-wrap: wrap;
}

.topbar__inner a {
    color: rgba(255, 255, 255, 0.9);
}

.topbar__hotline {
    font-weight: 600;
}

.header-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0.9rem 0;
    column-gap: 2rem;
    transition: padding 0.28s ease;
}

.brand img,
.footer-logo {
    width: min(230px, 100%);
}

.brand img {
    transition: width 0.28s ease, transform 0.28s ease;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.95rem;
    min-width: 0;
}

.site-nav ul,
.pill-list,
.footer-list,
.contact-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul {
    display: flex;
    gap: 0.2rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 1 1 auto;
}

.site-nav li {
    display: flex;
    flex: 0 0 auto;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--muted);
    white-space: nowrap;
    text-align: center;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding 0.28s ease,
        font-size 0.28s ease;
}

.site-nav a.is-active,
.site-nav a:hover,
.translate-btn:hover {
    color: var(--ink);
    background: rgba(16, 34, 53, 0.06);
}

.button,
.button--ghost,
.popup-amazon,
.translate-btn {
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background 0.2s ease;
}

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

.button:hover,
.button--ghost:hover,
.popup-amazon:hover,
.translate-btn:hover {
    transform: translateY(-1px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral), var(--coral-deep));
    color: #fff;
}

.button--ghost,
.popup-amazon,
.translate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 34, 53, 0.06);
    color: var(--ink);
}

.nav-actions {
    flex: 0 0 auto;
    align-items: center;
}

.nav-actions .button,
.nav-actions .button--ghost {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        padding 0.28s ease,
        font-size 0.28s ease;
}

.site-header--scrolled .header-main {
    padding: 0.58rem 0;
}

.site-header--scrolled .brand img {
    width: min(190px, 100%);
}

.site-header--scrolled .site-nav a {
    padding: 0.36rem 0.62rem;
    font-size: 0.8rem;
}

.site-header--scrolled .nav-actions .button,
.site-header--scrolled .nav-actions .button--ghost {
    padding: 0.68rem 1.05rem;
    font-size: 0.86rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    padding: 0.25rem;
}

.menu-toggle span {
    width: 2rem;
    height: 3px;
    border-radius: 999px;
    background: var(--ink);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 3.25rem 0 1.5rem;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 38rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1.5rem solid rgba(255, 155, 120, 0.4);
}

.hero-grid,
.content-split,
.feature-grid,
.card-grid,
.service-grid,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.page-hero {
    padding: 4.25rem 0 2rem;
}

.hero-copy,
.hero-panel,
.panel,
.section-block,
.contact-card,
.contact-meta,
.visit-popup__dialog {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 34, 53, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 2.25rem 2.3rem;
}

.hero-panel,
.panel,
.section-block,
.contact-card,
.contact-meta {
    padding: 1.65rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    font-family: "Playfair Display", serif;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 5.3rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: clamp(1.45rem, 2.6vw, 1.95rem);
    letter-spacing: -0.03em;
}

p,
li {
    color: var(--muted);
    line-height: 1.7;
}

.lead {
    font-size: 1.08rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image,
.panel-image,
.service-card img,
.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius) - 8px);
}

.hero-panel {
    background:
        linear-gradient(180deg, rgba(27, 90, 114, 0.95), rgba(16, 34, 53, 0.96)),
        var(--teal);
    color: #fff;
}

.hero-panel p,
.hero-panel li,
.hero-panel .eyebrow {
    color: rgba(255, 255, 255, 0.84);
}

.metrics {
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.metric {
    min-width: 9rem;
}

.metric strong {
    display: block;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
    color: #fff;
}

.metric span {
    font-size: 0.92rem;
}

.section {
    padding: 1.25rem 0 4rem;
}

.section-card {
    align-items: stretch;
    padding: 1rem 0;
}

.section-card > * {
    flex: 1;
}

.section-block--dark,
.cta-band,
.page-banner {
    background:
        linear-gradient(135deg, rgba(16, 34, 53, 0.96), rgba(27, 90, 114, 0.92));
    color: #fff;
}

.section-block--dark p,
.section-block--dark li,
.cta-band p,
.page-banner p {
    color: rgba(255, 255, 255, 0.82);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 34, 53, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card__body {
    padding: 1.3rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.05rem;
}

.pill-list li {
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    background: rgba(71, 151, 169, 0.15);
    color: var(--ink);
    font-weight: 600;
}

.content-split {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

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

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

.panel strong {
    color: var(--ink);
}

.page-banner {
    padding: 1.7rem 1.9rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-band {
    justify-content: space-between;
    align-items: center;
    padding: 1.7rem 1.9rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
    margin-bottom: 0;
}

.contact-layout {
    align-items: flex-start;
}

.contact-layout > * {
    flex: 1;
}

.contact-meta ul,
.footer-list {
    display: grid;
    gap: 0.65rem;
}

.contact-form label,
.field {
    display: grid;
    gap: 0.5rem;
}

.stack-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(16, 34, 53, 0.16);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    background: #fff;
    color: var(--ink);
}

.form-alert {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
}

.form-alert--success {
    background: rgba(60, 150, 92, 0.12);
    color: #1e6f3d;
}

.form-alert--error {
    background: rgba(196, 77, 77, 0.12);
    color: #8e2727;
}

.honeypot,
#google_translate_element {
    position: absolute;
    left: -9999px;
}

.form-note {
    font-size: 0.92rem;
}

.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(16, 34, 53, 0.08);
    background: rgba(245, 251, 253, 0.94);
}

.footer-grid {
    padding: 2rem 0;
    align-items: start;
}

.footer-copy {
    max-width: 28rem;
    font-size: 0.98rem;
}

.footer-newsletter {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.9rem;
}

.footer-newsletter__form {
    display: grid;
    gap: 0.8rem;
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 34, 53, 0.08);
}

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

.visit-popup {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 80;
}

.visit-popup.is-open {
    display: grid;
}

.visit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 34, 53, 0.72);
}

.visit-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), 980px);
    padding: 1.75rem;
}

.visit-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: var(--coral-deep);
    font-size: 2rem;
    cursor: pointer;
}

.visit-popup__actions {
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.visit-popup__scan {
    text-align: center;
}

.visit-popup__scan img {
    width: 180px;
    margin: 0.75rem auto 0;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.visit-popup__footer {
    margin-bottom: 0;
    text-align: center;
}

.translate-actions {
    flex-wrap: wrap;
    margin-top: 1rem;
}

.split-media {
    min-height: 23rem;
}

.page-hero {
    padding: 3.25rem 0 2.1rem;
    background: linear-gradient(135deg, #fbf8f5 0%, #eef7fb 65%, #f5e3db 100%);
}

.page-hero::before {
    right: -12rem;
    bottom: -16rem;
    width: 26rem;
    border-width: 1rem;
    opacity: 0.55;
}

.page-hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.page-hero h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.04;
}

.page-hero .lead {
    font-size: 1.02rem;
}

.page-hero .hero-copy,
.page-hero .panel,
.page-hero .contact-card,
.page-hero .contact-meta {
    background: rgba(255, 255, 255, 0.94);
}

.page-hero .section-block:not(.section-block--dark) {
    background: rgba(255, 255, 255, 0.94);
}

.page-shell {
    display: grid;
    gap: 2.2rem;
}

.subpage-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 1.6rem;
    align-items: stretch;
}

.subpage-hero__copy,
.subpage-hero__panel {
    height: 100%;
}

.subpage-hero__media {
    min-height: 100%;
}

.subpage-hero__media img {
    min-height: 100%;
}

.page-stack {
    display: grid;
    gap: 1.35rem;
}

.page-stack p:last-child,
.page-stack h2:last-child,
.page-stack h3:last-child {
    margin-bottom: 0;
}

.page-section {
    padding: 0 0 4rem;
}

.page-section--tight {
    padding-top: 0.25rem;
}

.page-card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.page-card-grid.page-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card-grid .panel,
.page-card-grid .section-block {
    min-height: 100%;
}

.page-cta {
    justify-content: space-between;
    align-items: center;
}

.contact-hero,
.contact-stage,
.contact-quick-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
}

.contact-hero__intro {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 34, 53, 0.08);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow);
    padding: 2.4rem 2.5rem;
}

.contact-hero__aside {
    height: 100%;
}

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

.contact-quick-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1rem 1.05rem;
}

.contact-quick-card span {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-quick-card strong,
.contact-quick-card strong a {
    color: #fff;
    line-height: 1.4;
}

.contact-quick-card--wide {
    grid-column: 1 / -1;
}

.contact-stage {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    align-items: start;
}

.contact-stage__details {
    gap: 1.2rem;
}

.contact-card__intro h2 {
    font-size: clamp(1.85rem, 3vw, 2.4rem);
}

[class*="page-card-grid"] .panel,
[class*="page-card-grid"] .section-block,
.contact-stage .panel,
.contact-stage .contact-card {
    overflow: hidden;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

[data-reveal="left"] {
    transform: translateX(-28px);
}

[data-reveal="right"] {
    transform: translateX(28px);
}

[data-reveal="scale"] {
    transform: translateY(18px) scale(0.97);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.float-gentle {
    animation: float-gentle 3.6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

@media (max-width: 980px) {
    .header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 0;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        flex: 0 0 auto;
        z-index: 61;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding: 1.1rem 1rem 1.4rem;
        border-radius: 0 0 24px 24px;
        background: #ffffff;
        box-shadow: 0 20px 45px rgba(16, 34, 53, 0.12);
        max-height: calc(100svh - 110px);
        overflow-y: auto;
        z-index: 60;
    }

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

    .site-nav ul,
    .nav-actions,
    .hero-grid,
    .content-split,
    .contact-layout,
    .section-card,
    .cta-band,
    .footer-bottom {
        flex-direction: column;
    }

    .site-nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        width: 100%;
        flex: 0 0 auto;
    }

    .site-nav li {
        width: 100%;
    }

    .site-nav a {
        width: 100%;
        justify-content: flex-start;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-radius: 18px;
    }

    .nav-actions {
        width: 100%;
        gap: 0.75rem;
    }

    .nav-actions .button,
    .nav-actions .button--ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-grid,
    .service-grid,
    .feature-grid,
    .card-grid,
    .card-grid--thirds,
    .content-split,
    .field-grid,
    .subpage-hero__grid,
    .contact-hero,
    .contact-stage,
    .contact-quick-grid,
    .page-card-grid.page-card-grid--two,
    .page-card-grid.page-card-grid--three,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .field-grid {
        flex-direction: column;
    }

    .hero-copy,
    .hero-panel,
    .panel,
    .section-block,
    .contact-card,
    .contact-meta {
        padding: 1.35rem;
    }

    .page-hero {
        padding: 3rem 0 2rem;
    }

    .page-hero::before {
        right: -13rem;
        bottom: -16rem;
        width: 20rem;
    }

    .page-section {
        padding-bottom: 3rem;
    }

    .brand img,
    .footer-logo {
        width: min(210px, 100%);
    }

    .topbar__inner {
        justify-content: center;
        gap: 0.25rem 1rem;
        text-align: center;
    }

    .site-footer {
        padding: 1.5rem 0 2rem;
    }

    .footer-grid {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .footer-grid > div {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(16, 34, 53, 0.08);
    }

    .footer-grid > div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .footer-bottom {
        gap: 0.75rem;
        align-items: flex-start;
        text-align: left;
    }

    .footer-social {
        gap: 0.9rem;
    }

    .translate-actions {
        gap: 0.6rem;
    }

    .translate-btn {
        flex: 0 0 auto;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .brand img,
    .footer-logo {
        width: min(170px, 100%);
    }

    .topbar {
        font-size: 0.68rem;
    }

    .topbar__inner {
        padding: 0.4rem 0;
        flex-direction: row;
    }

    .header-main {
        padding: 0.8rem 0;
    }

    .site-header--scrolled .header-main {
        padding: 0.62rem 0;
    }

    .page-hero h1 {
        font-size: clamp(2.15rem, 9.2vw, 3rem);
    }

    .site-transition__logo {
        width: min(180px, 46vw);
    }

    .page-hero h2,
    .contact-card__intro h2 {
        font-size: clamp(1.75rem, 7vw, 2.15rem);
    }

    .page-hero .lead,
    .lead {
        font-size: 0.98rem;
    }

    .contact-hero__intro {
        padding: 1.6rem 1.35rem;
    }

    .menu-toggle {
        margin-left: auto;
        padding: 0.35rem 0.35rem 0.35rem 0.75rem;
    }

    .menu-toggle span {
        width: 1.75rem;
    }

    .site-nav {
        padding: 0.9rem 0.85rem 1.2rem;
    }

    .site-nav a {
        padding: 0.8rem 0.9rem;
        font-size: 0.93rem;
    }

    .site-header--scrolled .brand img {
        width: min(150px, 100%);
    }

    .site-header--scrolled .site-nav a {
        font-size: 0.9rem;
    }

    .home-hero__text h1 {
        font-size: clamp(2.7rem, 10vw, 3.5rem);
    }

    .home-section__header h2,
    .home-message__text h2,
    .home-boutique__text h2,
    .home-appointment__info h2,
    .home-appointment__form h3,
    .visit-popup__dialog h2 {
        font-size: clamp(1.95rem, 8vw, 2.6rem);
    }

    .home-hero__subtitle,
    .home-section__header p,
    .home-message__text p,
    .home-boutique__text p,
    .home-appointment__info p,
    .home-service-card p,
    .home-option-card p,
    .home-step p,
    .home-contact-list li,
    .home-hours-card span,
    .footer-list li,
    .footer-bottom p,
    .footer-social a,
    .translate-btn {
        font-size: 0.93rem;
    }
}

.home-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #fbf8f5 0%, #f5f6f4 34%, #f7e2d8 100%);
}

.home-hero__content,
.home-message__content,
.home-boutique__content,
.home-appointment__content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.home-hero__content {
    grid-template-columns: 1fr 0.95fr;
}

.home-hero__text h1,
.home-message__text h2,
.home-boutique__text h2,
.home-appointment__info h2 {
    font-family: "Playfair Display", serif;
}

.home-hero__text h1 {
    font-size: clamp(3.15rem, 6vw, 4.95rem);
    line-height: 1.03;
    margin-bottom: 1.25rem;
    color: var(--teal-deep);
    font-weight: 600;
    letter-spacing: -0.055em;
}

.home-hero__text h1 em,
.home-message__text h2 em,
.home-boutique__text h2 em {
    color: var(--coral-deep);
    font-style: italic;
    font-weight: 500;
}

.home-badge,
.home-section__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-badge {
    background: #fff;
    color: var(--teal-soft);
    box-shadow: 0 6px 20px rgba(45, 74, 62, 0.1);
    margin-bottom: 1.25rem;
}

.home-hero__subtitle {
    max-width: 34rem;
    font-size: 1.03rem;
    line-height: 1.7;
    font-weight: 400;
    color: #6d706b;
    margin-bottom: 2rem;
}

.home-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 0.95rem 1.7rem;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
}

.home-btn--primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: #fff;
    box-shadow: 0 10px 25px rgba(10, 78, 105, 0.22);
}

.home-btn--secondary {
    background: #fff;
    color: var(--teal-deep);
    border-color: var(--teal-deep);
}

.home-btn--light {
    background: #fff;
    color: var(--teal-deep);
    width: 100%;
}

.home-btn--full {
    width: 100%;
}

.home-hero__media {
    position: relative;
}

.home-hero__image {
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(45, 74, 62, 0.18);
}

.home-hero__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.home-stat {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    box-shadow: 0 12px 30px rgba(45, 74, 62, 0.13);
}

.home-stat span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--coral-deep);
    margin-bottom: 0.2rem;
}

.home-stat strong {
    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--teal-deep);
}

.home-stat--left {
    left: -1.25rem;
    bottom: -1.4rem;
}

.home-stat--right {
    top: 1.5rem;
    right: -1.25rem;
}

.home-trust {
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    padding: 1.6rem 0;
    position: relative;
}

.home-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.32;
}

.home-trust__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.home-trust__item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
}

.home-trust__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #efc4b2;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.home-trust__item strong,
.home-trust__item span {
    display: block;
}

.home-trust__item span {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.72);
}

.home-trust__item strong {
    font-size: 0.92rem;
    font-weight: 700;
}

.home-section {
    padding: 5.5rem 0;
}

.home-services {
    background: #fffdfa;
}

.home-section__header {
    max-width: 44rem;
    margin: 0 auto 3.2rem;
    text-align: center;
}

.home-section__tag {
    background: var(--coral-soft);
    color: var(--coral-deep);
    margin-bottom: 1rem;
}

.home-section__header h2,
.home-message__text h2,
.home-boutique__text h2,
.home-appointment__info h2,
.home-appointment__form h3 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--teal-deep);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.home-section__header p,
.home-message__text p,
.home-boutique__text p,
.home-appointment__info p {
    color: #6f726f;
    font-size: 1rem;
    line-height: 1.72;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.home-service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(196, 129, 106, 0.1);
    box-shadow: 0 14px 34px rgba(45, 74, 62, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(16, 34, 53, 0.12);
    border-color: rgba(244, 136, 98, 0.22);
}

.home-service-card__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--coral-soft), #f3cabb);
    color: var(--teal-deep);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.home-service-card h3,
.home-option-card h3,
.home-step h4 {
    font-size: 1.32rem;
    color: var(--teal-deep);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.home-service-card a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--teal-soft);
}

.home-service-card p,
.home-option-card p,
.home-step p,
.home-contact-list li,
.home-hours-card span,
.home-form-note,
.footer-list li,
.footer-bottom p,
.footer-social a,
.translate-btn {
    font-size: 0.97rem;
}

.home-message {
    background: linear-gradient(180deg, #f7e8de 0%, #fbf6f2 100%);
}

.home-message__content {
    grid-template-columns: 0.9fr 1.1fr;
}

.home-message__media {
    position: relative;
}

.home-message__image {
    border-radius: 1.8rem;
    overflow: hidden;
    position: relative;
}

.home-message__image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.8rem;
    box-shadow: inset 0 0 0 3px rgba(240, 125, 88, 0.3);
}

.home-message__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.home-message__quote {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    max-width: 20rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: #fff;
    margin: 0;
    padding: 1.4rem 1.6rem;
    border-radius: 1rem;
    box-shadow: 0 16px 34px rgba(45, 74, 62, 0.25);
    font-family: "Playfair Display", serif;
    font-size: 1.07rem;
    line-height: 1.5;
    letter-spacing: -0.015em;
}

.home-checklist {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.home-checklist li {
    position: relative;
    padding-left: 1.7rem;
    font-size: 0.98rem;
}

.home-checklist li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal-soft);
    font-size: 1.3rem;
    line-height: 1;
}

.home-options {
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    color: #fff;
}

.home-section__header--light h2,
.home-section__header--light p {
    color: #fff;
}

.home-section__header--light p {
    color: rgba(255,255,255,0.75);
}

.home-section__tag--dark {
    background: rgba(255,255,255,0.09);
    color: #efc4b2;
}

.home-options__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.home-option-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.6rem;
    padding: 2rem;
    text-align: center;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.home-option-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.16);
}

.home-option-card__icon {
    width: 4.7rem;
    height: 4.7rem;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #efb69e, #f4cfc0);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
}

.home-option-card h3,
.home-option-card p {
    color: #fff;
}

.home-option-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.68;
}

.home-boutique {
    background: #fffdfa;
}

.home-boutique__content {
    grid-template-columns: 1.08fr 0.92fr;
}

.home-steps {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.home-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.home-step__num {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-soft), var(--teal));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    flex: 0 0 auto;
    margin-top: 0.15rem;
    font-size: 0.86rem;
}

.home-boutique__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home-boutique__gallery-main {
    grid-column: 1 / -1;
}

.home-boutique__gallery img {
    width: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    height: 220px;
}

.home-boutique__gallery-main img {
    height: 300px;
}

.home-appointment {
    background: linear-gradient(135deg, #fbf8f5 0%, #f4e4db 100%);
}

.home-appointment__content {
    grid-template-columns: 0.95fr 0.85fr;
}

.home-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0;
    display: grid;
    gap: 0.9rem;
}

.home-hours-card,
.home-appointment__form {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 16px 40px rgba(45, 74, 62, 0.1);
}

.home-hours-card {
    max-width: 24rem;
    padding: 1.2rem 1.4rem;
    display: grid;
    gap: 0.3rem;
    color: #6f726f;
}

.home-appointment__form {
    padding: 2rem;
}

.home-appointment__form h3 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 1.3rem;
}

.home-form-group {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.home-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6f726f;
}

.home-form-group input,
.home-form-group textarea {
    width: 100%;
    border: 1px solid rgba(53, 81, 66, 0.14);
    border-radius: 0.8rem;
    padding: 0.85rem 0.95rem;
    background: #fffaf7;
    font-size: 0.95rem;
}

.site-footer h3,
.contact-meta h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.footer-list li,
.footer-bottom p,
.footer-social a {
    line-height: 1.65;
}

.visit-popup__dialog h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.visit-popup__dialog p {
    font-size: 1rem;
}

.home-form-note {
    font-size: 0.8rem;
    color: #8a8c87;
    margin: 0.9rem 0 0;
    text-align: center;
}

@media (max-width: 980px) {
    .home-hero__content,
    .home-message__content,
    .home-boutique__content,
    .home-appointment__content,
    .home-trust__inner,
    .home-services__grid,
    .home-options__grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 2.8rem 0 1.75rem;
    }

    .home-section {
        padding: 4rem 0;
    }

    .home-stat--left,
    .home-stat--right {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

    .home-hero__media {
        display: grid;
    }

    .home-message__quote {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .home-boutique__gallery {
        grid-template-columns: 1fr;
    }

    .home-boutique__gallery-main {
        grid-column: auto;
    }
}
