:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --chili-pepper: #9b2335;
    --chili-pepper-light: #b8384a;
    --chili-pepper-dark: #741827;
    --beige: #d4b896;
    --beige-light: #efe1ce;
    --beige-dark: #b99669;
    --cream: #f5f0eb;
    --charcoal: #181615;
    --charcoal-soft: #221f1d;
    --charcoal-card: rgba(35, 31, 29, 0.88);
    --black: #0c0a09;
    --gold: #c9a86c;
    --text-light: #f7f2ec;
    --text-muted: #c5b3a2;
    --border-soft: rgba(212, 184, 150, 0.16);
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.24);
    --shadow-strong: 0 36px 90px rgba(0, 0, 0, 0.35);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --nav-height: clamp(72px, 5vw, 84px);
    --container-max: 1200px;
    --section-space: clamp(4rem, 8vw, 7rem);
    --section-space-lg: clamp(5rem, 9vw, 8.5rem);
    --anchor-offset: calc(var(--nav-height) + 1.5rem);
    --body-text: clamp(0.98rem, 0.28vw + 0.92rem, 1.05rem);
    --small-text: clamp(0.84rem, 0.18vw + 0.8rem, 0.94rem);
    --nav-brand-size: clamp(1.66rem, 1.1vw + 1.24rem, 2.04rem);
    --nav-tagline-size: clamp(0.88rem, 0.34vw + 0.74rem, 1.04rem);
    --nav-link-size: clamp(0.86rem, 0.18vw + 0.78rem, 0.96rem);
    --nav-logo-crop-width: clamp(46px, 2.5vw + 18px, 52px);
    --nav-logo-crop-height: clamp(56px, 3vw + 22px, 64px);
    --nav-logo-image-width: clamp(62px, 3.2vw + 24px, 72px);
    --hero-logo-size: clamp(220px, 18vw, 320px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scroll-padding-top: var(--anchor-offset);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top, rgba(185, 150, 105, 0.08), transparent 35%),
        linear-gradient(180deg, #12100f 0%, #0c0a09 100%);
    color: var(--text-light);
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    position: fixed;
    inset: 0;
    width: 100%;
    overflow: hidden;
}

body.image-lightbox-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

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

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

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

.container {
    width: min(var(--container-max), calc(100% - 32px));
    margin: 0 auto;
}

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

.section {
    position: relative;
    padding: var(--section-space) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--section-space-lg) 0;
    }
}

main section[id],
.service-card[id] {
    scroll-margin-top: var(--anchor-offset);
}

.section-light {
    background: linear-gradient(180deg, rgba(31, 27, 25, 0.96) 0%, rgba(18, 16, 15, 0.98) 100%);
}

.section-beige {
    background:
        radial-gradient(circle at top right, rgba(185, 150, 105, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(41, 35, 32, 0.96) 0%, rgba(22, 19, 18, 0.98) 100%);
}

.section-featured-bg {
    isolation: isolate;
    overflow: hidden;
}

.section-featured-bg-media,
.section-featured-bg-overlay {
    position: absolute;
    inset: 0;
}

.section-featured-bg-media {
    background:
        linear-gradient(115deg, rgba(12, 10, 9, 0.42), rgba(12, 10, 9, 0.08)),
        url("assets/img/background.webp") center center/cover no-repeat;
    filter: saturate(1) brightness(0.98);
    transform: scale(1.02);
}

.section-featured-bg-overlay {
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.34) 0%, rgba(8, 7, 6, 0.12) 46%, rgba(8, 7, 6, 0.36) 100%),
        linear-gradient(180deg, rgba(9, 8, 7, 0.2) 0%, rgba(9, 8, 7, 0.34) 55%, rgba(9, 8, 7, 0.56) 100%);
}

.section-featured-bg-glow {
    position: absolute;
    inset: auto 6% 10% auto;
    z-index: 0;
    width: min(34vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 35, 53, 0.16) 0%, rgba(155, 35, 53, 0.05) 40%, transparent 74%);
    filter: blur(26px);
}

.section-featured-bg > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-label,
.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--beige);
    font-size: clamp(0.76rem, 0.14vw + 0.73rem, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.section-subtitle,
.section-text,
.intro-text p,
.service-description,
.service-summary,
.highlight-card p,
.trust-card p,
.step-item p,
.testimonial-text,
.faq-answer p,
.contact-item p,
.schedule-note,
.panel-list li {
    color: var(--text-muted);
    font-size: var(--body-text);
}

.section-text + .section-text,
.intro-text p + p {
    margin-top: 1rem;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.grid-two {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: clamp(50px, 2.2vw, 54px);
    padding: clamp(0.82rem, 1.2vw, 0.9rem) clamp(1.15rem, 2vw, 1.5rem);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: clamp(0.76rem, 0.18vw + 0.72rem, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal;
}

.btn i {
    width: 16px;
    height: 16px;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:focus-visible,
.text-link:focus-visible,
.faq-question:focus-visible,
.nav-links a:focus-visible,
.contact-link:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid var(--beige);
    outline-offset: 3px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--chili-pepper) 0%, var(--chili-pepper-light) 100%);
    box-shadow: 0 18px 35px rgba(155, 35, 53, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 24px 40px rgba(155, 35, 53, 0.36);
}

.btn-secondary {
    color: var(--beige-light);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(239, 225, 206, 0.26);
    backdrop-filter: blur(18px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(239, 225, 206, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 36px;
    color: var(--beige-light);
    font-weight: 600;
}

.text-link::after {
    content: "→";
    transition: transform 0.25s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(4px);
}

.nav-floating {
    position: fixed;
    top: calc(var(--safe-top) + 14px);
    left: 50%;
    z-index: 1000;
    width: min(var(--container-max), calc(100% - 20px));
    transform: translateX(-50%);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.7rem, 1.5vw, 1rem);
    width: 100%;
    margin: 0;
    position: relative;
    min-height: var(--nav-height);
    padding: clamp(0.7rem, 1vw, 0.9rem) clamp(0.85rem, 1.4vw, 1rem);
    border: 1px solid rgba(239, 225, 206, 0.12);
    border-radius: 999px;
    background: rgba(19, 16, 15, 0.8);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.55rem, 1vw, 0.8rem);
    min-width: 0;
}

.nav-brand-text {
    display: grid;
    gap: 0.02rem;
    line-height: 1;
}

.nav-logo-crop {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: var(--nav-logo-crop-width);
    height: var(--nav-logo-crop-height);
    flex: 0 0 var(--nav-logo-crop-width);
    overflow: hidden;
}

.nav-brand-title {
    color: var(--beige-light);
    font-family: "Cormorant Garamond", serif;
    font-size: var(--nav-brand-size);
}

.nav-brand-tagline {
    color: rgba(239, 225, 206, 0.78);
    font-family: "Cormorant Garamond", serif;
    font-size: var(--nav-tagline-size);
    font-style: italic;
    letter-spacing: 0.01em;
}

.nav-logo-img,
.footer-logo-img,
.hero-logo {
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-logo-img {
    width: var(--nav-logo-image-width);
    max-width: none;
    height: auto;
    transform: translateY(2px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.14));
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(239, 225, 206, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--beige-light);
    cursor: pointer;
}

.nav-toggle i {
    width: 20px;
    height: 20px;
}

.nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid rgba(239, 225, 206, 0.12);
    border-radius: 24px;
    background: rgba(17, 14, 13, 0.96);
    box-shadow: var(--shadow-soft);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-links.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 0.75rem;
    min-height: 44px;
    border-radius: 14px;
    color: var(--beige-light);
    font-size: var(--nav-link-size);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 1024px) {
    .nav-content {
        padding: 0.82rem 1.2rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0.15rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .nav-links a {
        padding: 0.68rem 0.75rem;
        min-height: 40px;
        white-space: nowrap;
    }
}

@media (min-width: 1280px) {
    .nav-content {
        padding: 0.9rem 1.5rem;
    }

    .nav-links {
        gap: 0.2rem;
    }

    .nav-links a {
        padding: 0.72rem 0.8rem;
    }
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--nav-height) + 5.75rem) 0 4.5rem;
    isolation: isolate;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background:
        linear-gradient(115deg, rgba(12, 10, 9, 0.66), rgba(12, 10, 9, 0.2)),
        url("assets/img/background-feng.webp") center center/cover no-repeat;
    transform: scale(1);
    filter: saturate(0.92) brightness(0.8);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.56) 0%, rgba(8, 7, 6, 0.22) 46%, rgba(8, 7, 6, 0.6) 100%),
        linear-gradient(180deg, rgba(9, 8, 7, 0.42) 0%, rgba(9, 8, 7, 0.64) 55%, rgba(9, 8, 7, 0.84) 100%);
}

.hero-glow {
    position: absolute;
    inset: auto auto 10% 6%;
    z-index: 0;
    width: min(36vw, 440px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 35, 53, 0.16) 0%, rgba(155, 35, 53, 0.05) 40%, transparent 74%);
    filter: blur(26px);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.2rem;
    align-items: center;
}

@media (min-width: 1280px) {
    .hero-content {
        grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.48fr);
        gap: 4.25rem;
    }
}

.hero-copy {
    display: grid;
    align-content: start;
    gap: 1.1rem;
    max-width: 680px;
    min-width: 0;
    padding: clamp(1.4rem, 2vw, 2.2rem);
    border: 1px solid rgba(239, 225, 206, 0.06);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(17, 14, 13, 0.24) 0%, rgba(17, 14, 13, 0.08) 100%);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
}

.hero-copy h1 {
    font-family: "Prata", "Cormorant Garamond", serif;
    font-size: clamp(2.35rem, 3.3vw + 1rem, 4.1rem);
    max-width: 11.4ch;
    margin-bottom: 0.15rem;
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 400;
    text-wrap: balance;
    text-wrap: pretty;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.hero-lead {
    max-width: 50ch;
    color: var(--beige-light);
    font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.08rem);
    line-height: 1.72;
}

.hero-meta {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.2rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.hero-highlights span {
    padding: 0.48rem 0.74rem;
    border: 1px solid rgba(239, 225, 206, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(247, 242, 236, 0.82);
    font-size: clamp(0.8rem, 0.14vw + 0.77rem, 0.88rem);
    backdrop-filter: blur(8px);
}

.hero .rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0;
    color: rgba(239, 225, 206, 0.9);
    font-size: clamp(0.8rem, 0.18vw + 0.76rem, 0.86rem);
}

.stars {
    display: inline-flex;
    gap: 0.1rem;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    stroke: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.hero-buttons .btn,
.contact-buttons .btn {
    min-width: min(100%, 180px);
}

.hero-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    max-width: 39rem;
    margin-top: 0.15rem;
    padding: 0.78rem 0.95rem;
    border: 1px solid rgba(239, 225, 206, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: rgba(247, 242, 236, 0.88);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.hero-notice i {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: var(--beige);
    opacity: 0.9;
}

.hero-notice p {
    margin: 0;
    color: inherit;
    font-size: clamp(0.8rem, 0.14vw + 0.77rem, 0.88rem);
    line-height: 1.55;
}

.hero-notice-link {
    display: inline-flex;
    align-items: center;
    margin-left: 0.45rem;
    color: var(--beige-light);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.hero-notice-link:hover,
.hero-notice-link:focus-visible {
    color: #fff;
}

.hero-panel {
    display: grid;
    gap: 0.8rem;
    align-self: center;
    align-content: center;
    max-width: 292px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-logo {
    width: min(100%, calc(var(--hero-logo-size) * 0.82));
    height: auto;
    margin: 0 auto;
    opacity: 0.76;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.14));
}

.hero-panel-card,
.contact-card,
.schedule-box,
.steps-card,
.trust-card,
.testimonial-card,
.faq-item,
.highlight-card,
.service-card {
    border: 1px solid var(--border-soft);
    background: var(--charcoal-card);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.hero-panel-card {
    padding: 1.2rem 1.15rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(28, 24, 22, 0.6) 0%, rgba(22, 19, 18, 0.76) 100%);
    border-color: rgba(239, 225, 206, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-panel-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

.hero-panel-link {
    display: block;
    border-radius: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.hero-panel-link:focus-visible {
    outline: 2px solid rgba(239, 225, 206, 0.9);
    outline-offset: 4px;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 11, 10, 0.82);
    backdrop-filter: blur(8px);
}

.image-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 980px);
    max-height: 88vh;
}

.image-lightbox-image {
    display: block;
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.image-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(17, 14, 13, 0.7);
    color: var(--text-light);
    cursor: pointer;
}

.image-lightbox-close:focus-visible {
    outline: 2px solid rgba(239, 225, 206, 0.9);
    outline-offset: 4px;
}

.panel-title {
    margin-bottom: 0.45rem;
    color: var(--text-light);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.2rem, 0.65vw + 1rem, 1.34rem);
}

.panel-list {
    padding-left: 0.95rem;
    display: grid;
    gap: 0.45rem;
}

.hero-panel-card .panel-list li {
    font-size: clamp(0.9rem, 0.2vw + 0.84rem, 0.94rem);
    line-height: 1.58;
}

.nav-floating.is-over-hero {
    top: calc(var(--safe-top) + 18px);
}

.nav-floating.is-over-hero .nav-content {
    min-height: 76px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-color: rgba(239, 225, 206, 0.1);
    background: rgba(19, 16, 15, 0.62);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.nav-floating.is-over-hero .nav-logo-crop {
    width: clamp(42px, 2.2vw + 16px, 48px);
    height: clamp(52px, 2.5vw + 18px, 58px);
    flex-basis: clamp(42px, 2.2vw + 16px, 48px);
}

.nav-floating.is-over-hero .nav-brand-title {
    font-size: clamp(1.34rem, 0.8vw + 1.04rem, 1.68rem);
}

.nav-floating.is-over-hero .nav-brand-tagline {
    font-size: clamp(0.68rem, 0.18vw + 0.64rem, 0.76rem);
}

.nav-floating.is-over-hero .nav-logo-img {
    width: clamp(58px, 2.9vw + 18px, 66px);
}

.nav-floating.is-over-hero .nav-links a {
    color: rgba(247, 242, 236, 0.9);
}

.intro-block {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .intro-block {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        gap: 3rem;
    }
}

.highlight-grid,
.trust-grid,
.testimonials-grid {
    display: grid;
    gap: clamp(1rem, 1.6vw, 1.35rem);
}

@media (min-width: 768px) {
    .highlight-grid,
    .trust-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .highlight-grid,
    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1100px;
        margin: 0 auto;
    }
}

@media (min-width: 1728px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: none;
    }
}

.highlight-card,
.trust-card,
.testimonial-card {
    border-radius: var(--radius-md);
    padding: clamp(1.35rem, 1vw + 1.05rem, 1.7rem);
    height: 100%;
    min-width: 0;
}

.highlight-card h3,
.trust-card h3,
.step-item h3,
.testimonial-author,
.contact-item h3,
.schedule-box h3 {
    color: var(--text-light);
}

.highlight-card h3,
.trust-card h3,
.contact-item h3 {
    font-size: clamp(1.34rem, 0.9vw + 1.02rem, 1.55rem);
    margin-bottom: 0.8rem;
}

.trust-card i {
    width: 22px;
    height: 22px;
    color: var(--beige);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    gap: 1.8rem;
}

@media (min-width: 1280px) {
    .services-grid {
        gap: 2.2rem;
    }
}

.service-card {
    --service-card-min-height: auto;
    display: grid;
    gap: clamp(1rem, 1.8vw, 1.5rem);
    align-items: stretch;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
}

@media (min-width: 1280px) {
    .service-card {
        --service-card-min-height: 40rem;
        grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
        align-items: stretch;
        overflow: visible;
    }

    .service-image::after {
        height: 28%;
        opacity: 0.5;
    }

    .service-media {
        padding: clamp(1rem, 0.8vw + 0.8rem, 1.35rem);
    }
}

.service-media,
.service-content {
    min-width: 0;
    min-height: var(--service-card-min-height);
    border: 1px solid var(--border-soft);
    background: var(--charcoal-card);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.service-media {
    display: flex;
    align-items: stretch;
    padding: 0.95rem;
    border-radius: calc(var(--radius-lg) - 4px);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 58%),
        linear-gradient(180deg, rgba(37, 32, 30, 0.92) 0%, rgba(24, 21, 20, 0.96) 100%);
}

.service-image {
    --service-image-position: 50% 42%;
    --service-image-scale: 1.06;
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 260px;
    min-width: 0;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 16px);
    background: rgba(255, 255, 255, 0.025);
    isolation: isolate;
}

.service-image::before {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    width: clamp(70px, 9vw, 112px);
    aspect-ratio: 1;
    background: url("assets/img/logo.png") center/contain no-repeat;
    opacity: 0.36;
    filter: brightness(0.58) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(9, 8, 7, 0.32));
    pointer-events: none;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--service-image-position);
    transform: scale(var(--service-image-scale));
    transform-origin: center;
    filter: saturate(0.92) contrast(1.02) brightness(0.94);
}

#drainage-lymphatique .service-image {
    --service-image-position: 50% 42%;
    --service-image-scale: 1.08;
}

#reflexologie-japonaise .service-image {
    --service-image-position: 52% 38%;
    --service-image-scale: 1.08;
}

#ma-danyang .service-image {
    --service-image-position: 32% 24%;
    --service-image-scale: 1.38;
}

#ma-danyang .service-image::after {
    inset: 0;
    height: auto;
    background:
        radial-gradient(circle at 84% 14%, rgba(43, 23, 18, 0.92) 0%, rgba(43, 23, 18, 0.72) 11%, rgba(43, 23, 18, 0) 23%),
        linear-gradient(180deg, rgba(9, 8, 7, 0.02) 0%, rgba(9, 8, 7, 0.3) 100%);
}

#reflexologie-chinoise .service-image {
    --service-image-position: 54% 38%;
    --service-image-scale: 1.1;
}

#empreinte-ming .service-image {
    --service-image-position: 50% 34%;
    --service-image-scale: 1.12;
}

#sevrage .service-image {
    --service-image-position: 50% 50%;
    --service-image-scale: 1;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1vw + 0.85rem, 1.35rem);
    padding: clamp(1.3rem, 1.2vw + 1rem, 1.7rem);
    min-width: 0;
    border-radius: calc(var(--radius-lg) - 4px);
}

@media (min-width: 768px) {
    .service-card {
        --service-card-min-height: 36rem;
    }

    .service-body {
        padding: 1.8rem;
    }

    .service-media {
        padding: 1rem;
    }
}

.service-top {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(239, 225, 206, 0.08);
}

@media (min-width: 768px) {
    .service-top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.9rem;
    }
}

.service-heading {
    max-width: 40rem;
    min-width: 0;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 0.65rem;
    padding: 0.22rem 0.7rem;
    border: 1px solid rgba(239, 225, 206, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--beige-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-top h3 {
    font-size: clamp(1.9rem, 1.9vw + 1.15rem, 2.55rem);
    margin-bottom: 0.55rem;
    overflow-wrap: anywhere;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    flex-shrink: 0;
    align-self: flex-start;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--beige-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tag-strong {
    background: rgba(155, 35, 53, 0.18);
    color: #fff;
}

.service-details {
    display: grid;
    gap: 1rem;
    margin-top: 0.2rem;
}

@media (min-width: 768px) {
    .service-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-details div {
    display: grid;
    gap: 0.55rem;
    padding: 1.15rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(239, 225, 206, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    min-width: 0;
}

.service-details dt {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--beige-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-details dt::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(177, 141, 89, 0.9);
    box-shadow: 0 0 0 4px rgba(177, 141, 89, 0.12);
}

.service-details dd {
    color: var(--text-muted);
    font-size: var(--body-text);
    line-height: 1.72;
}

.session-grid,
.practitioner-grid {
    align-items: center;
}

.session-copy {
    max-width: 35rem;
}

.session-copy .section-title {
    max-width: 12ch;
}

.session-copy .section-text {
    max-width: 52ch;
}

.session-copy .btn {
    margin-top: 0.45rem;
}

.practitioner-copy .btn {
    margin-top: 1rem;
}

.steps-card {
    position: relative;
    display: grid;
    gap: 1.15rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239, 225, 206, 0.1);
    background:
        linear-gradient(180deg, rgba(25, 21, 19, 0.86) 0%, rgba(20, 17, 16, 0.94) 100%);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
    .steps-card {
        gap: 1.25rem;
        padding: 2rem;
    }
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    align-items: center;
    padding: 1.1rem 1.1rem 1.1rem 0.2rem;
    border: 1px solid rgba(239, 225, 206, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.step-item:last-child {
    border-bottom: 1px solid rgba(239, 225, 206, 0.08);
}

.step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(239, 225, 206, 0.12);
    background: linear-gradient(180deg, rgba(155, 35, 53, 0.34) 0%, rgba(120, 28, 42, 0.18) 100%);
    color: var(--beige-light);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    font-size: 1rem;
    font-weight: 700;
}

.step-content {
    padding-top: 0;
}

.step-item h3 {
    font-size: clamp(1.22rem, 0.85vw + 0.96rem, 1.45rem);
    margin-bottom: 0.45rem;
}

.step-item p {
    line-height: 1.7;
}

.photo-albane {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(239, 225, 206, 0.14);
}

.photo-albane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.7rem;
}

.testimonial-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.testimonial-care,
.testimonial-effect,
.testimonial-marker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testimonial-care,
.testimonial-effect {
    padding: 0.2rem 0.65rem;
    border: 1px solid rgba(239, 225, 206, 0.1);
}

.testimonial-care {
    background: rgba(255, 255, 255, 0.035);
    color: var(--beige-light);
    font-weight: 700;
}

.testimonial-effect {
    background: rgba(155, 35, 53, 0.12);
    color: #f8ebe4;
    font-weight: 600;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    color: rgba(247, 242, 236, 0.9);
}

.testimonial-text strong {
    color: var(--text-light);
    font-weight: 700;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-marker {
    padding: 0.14rem 0.55rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(239, 225, 206, 0.74);
    font-weight: 600;
}

.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 1.15rem 1.35rem;
    border: 0;
    background: transparent;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: var(--body-text);
    font-weight: 600;
    min-width: 0;
    overflow-wrap: anywhere;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    color: var(--beige);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
    overflow: hidden;
    padding: 0 1.35rem 0;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding: 0 1.35rem 1.25rem;
}

.contact-grid {
    display: grid;
    gap: 1.4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
        gap: 2rem;
    }
}

.contact-card,
.schedule-box {
    border-radius: var(--radius-lg);
    padding: 1.6rem;
}

@media (min-width: 768px) {
    .contact-card,
    .schedule-box {
        padding: 2rem;
    }
}

.contact-card {
    display: grid;
    gap: 1.4rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 36px;
    color: var(--beige-light);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.contact-link i,
.schedule-box h3 i {
    width: 18px;
    height: 18px;
    color: var(--beige);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.schedule-box h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 0.9vw + 1.08rem, 1.7rem);
}

.schedule {
    display: grid;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(239, 225, 206, 0.08);
}

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

.schedule-row span:first-child {
    color: var(--text-light);
    font-weight: 600;
}

.schedule-row span:last-child,
.schedule-row.closed span {
    color: var(--text-muted);
    text-align: right;
}

.footer {
    padding: 2.5rem 0 4.5rem;
    border-top: 1px solid rgba(239, 225, 206, 0.08);
    background: rgba(10, 8, 8, 0.98);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    width: 78px;
    height: 78px;
    margin: 0 auto 0.8rem;
}

.footer-tagline {
    color: var(--text-muted);
}

.footer-ownership {
    margin-top: 0.45rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: var(--beige-light);
}

.footer-links a,
.footer-legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 2rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-credit-bar {
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(239, 225, 206, 0.08);
}

.footer-credit {
    color: var(--text-muted);
    font-size: 0.92rem;
    text-align: center;
}

.footer-credit a {
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: var(--beige-light);
}

.floating-call {
    position: fixed;
    right: calc(var(--safe-right) + 16px);
    bottom: calc(var(--safe-bottom) + 16px);
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--chili-pepper) 0%, var(--chili-pepper-light) 100%);
    box-shadow: 0 18px 32px rgba(155, 35, 53, 0.35);
}

.floating-call i {
    width: 20px;
    height: 20px;
    color: #fff;
}

@media (min-width: 1024px) {
    .floating-call {
        display: none;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero {
        align-items: flex-end;
        padding-top: calc(var(--nav-height) + 4.4rem);
        padding-bottom: 2.9rem;
    }

    .hero-glow {
        width: 58vw;
        inset: auto auto 19% -6%;
    }

    .hero-copy {
        gap: 1rem;
        padding: 1.2rem 1.15rem;
        border-radius: 30px;
    }

    .hero-copy h1 {
        font-size: clamp(2.18rem, 8.3vw, 3.2rem);
        max-width: 10.8ch;
        line-height: 1.04;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 0.97rem;
        line-height: 1.72;
    }

    .hero-meta {
        gap: 0.6rem;
    }

    .hero-highlights {
        margin: 0;
        gap: 0.5rem;
    }

    .hero-highlights span {
        font-size: 0.74rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0.1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-notice {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 0.65rem;
        padding: 0.78rem 0.85rem;
        border-radius: 16px;
    }

    .hero-panel {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-logo {
        width: min(100%, 150px);
        margin-bottom: 0.35rem;
    }

    .hero-panel-card {
        padding: 1rem;
        border-radius: 24px;
    }

    .nav-floating.is-over-hero {
        top: calc(var(--safe-top) + 12px);
    }

    .nav-floating.is-over-hero .nav-content {
        min-height: 72px;
        padding: 0.7rem 0.9rem;
    }

    .nav-logo-crop {
        width: 44px;
        height: 54px;
        flex-basis: 44px;
    }

    .nav-brand-title {
        font-size: 1.48rem;
    }

    .nav-brand-tagline {
        font-size: 0.72rem;
    }

    .nav-floating.is-over-hero .nav-logo-img {
        width: 60px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .highlight-card,
    .trust-card,
    .testimonial-card,
    .contact-card,
    .schedule-box,
    .steps-card {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .service-image {
        min-height: 220px;
    }

    .service-body {
        padding: 1.3rem;
    }

    .service-top h3 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 1rem;
    }

    .step-number {
        width: 42px;
        height: 42px;
    }

    .faq-question {
        align-items: flex-start;
        gap: 1rem;
    }

    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule-row span:last-child {
        text-align: left;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .hero {
        padding-top: calc(var(--nav-height) + 4.8rem);
        padding-bottom: 3.4rem;
    }

    .hero-copy {
        padding: 1.28rem 1.3rem;
    }

    .hero-copy h1 {
        max-width: 11.2ch;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        flex: 1 1 calc(50% - 0.5rem);
        width: auto;
    }

    .hero-buttons .btn:last-child {
        flex-basis: 100%;
    }

    .hero-notice {
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 479px) {
    :root {
        --anchor-offset: calc(var(--nav-height) + 1rem);
    }

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

    .nav-floating {
        width: calc(100% - 12px);
        top: calc(var(--safe-top) + 8px);
    }

    .nav-content {
        min-height: 68px;
        padding: 0.65rem 0.8rem;
        border-radius: 26px;
    }

    .nav-brand {
        gap: 0.6rem;
    }

    .nav-brand-title {
        font-size: 1.24rem;
    }

    .nav-brand-tagline {
        display: none;
    }

    .nav-logo-crop {
        width: 38px;
        height: 46px;
        flex-basis: 38px;
    }

    .nav-logo-img,
    .nav-floating.is-over-hero .nav-logo-img {
        width: 52px;
    }

    .nav-links {
        padding: 0.75rem;
        border-radius: 20px;
    }

    .hero-copy {
        padding: 1.15rem 1rem;
        border-radius: 24px;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(1.95rem, 10vw, 2.6rem);
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .btn {
        width: 100%;
        padding-inline: 1.1rem;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

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

@media (min-width: 768px) and (max-width: 1279px) {
    .services-grid {
        gap: 2rem;
    }

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

    .service-media {
        padding: 1rem;
    }

    .service-image {
        min-height: 300px;
        max-height: 340px;
    }

    .service-body {
        gap: 1.15rem;
        padding: 1.7rem;
    }

    .service-top {
        gap: 0.95rem;
        padding-bottom: 0.9rem;
    }

    .service-heading {
        max-width: 100%;
    }

    .service-top h3 {
        font-size: clamp(1.95rem, 1.3vw + 1.4rem, 2.35rem);
        margin-bottom: 0.4rem;
    }

    .service-summary,
    .service-description,
    .service-details dd {
        line-height: 1.68;
    }

    .service-tags {
        gap: 0.45rem;
    }

    .tag {
        min-height: 34px;
        padding: 0.3rem 0.78rem;
        font-size: 0.72rem;
    }

    .service-details {
        gap: 0.85rem;
    }

    .service-details div {
        padding: 0.95rem 0.95rem;
        border-radius: 18px;
    }

    .service-details dt {
        font-size: 0.74rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 4.3rem);
        padding-bottom: 3rem;
    }

    .hero-content {
        gap: 1.9rem;
    }

    .nav-floating {
        width: min(var(--container-max), calc(100% - 32px));
        top: 12px;
    }

    .nav-content {
        min-height: 72px;
        padding: 0.75rem 1rem;
        border-radius: 28px;
    }

    .nav-brand-title {
        font-size: 1.5rem;
    }

    .nav-brand-tagline {
        font-size: 0.74rem;
    }

    .nav-links {
        padding: 0.9rem;
    }

    .hero-copy {
        max-width: 100%;
        gap: 1rem;
        padding: 1.4rem;
        border-radius: 30px;
    }

    .hero-copy h1 {
        max-width: 11.5ch;
        font-size: clamp(2.4rem, 4.2vw, 3.45rem);
    }

    .hero-lead {
        max-width: 58ch;
        font-size: 0.98rem;
        line-height: 1.66;
    }

    .hero-meta {
        gap: 0.62rem;
    }

    .hero-highlights {
        gap: 0.55rem;
        margin-top: 0;
    }

    .hero-highlights span {
        padding: 0.5rem 0.78rem;
    }

    .hero .rating {
        gap: 0.55rem;
        margin-bottom: 0;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 0.1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-buttons .btn:last-child {
        grid-column: 1 / -1;
    }

    .hero-notice {
        max-width: 44rem;
    }

    .hero-panel {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        max-width: 100%;
        gap: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-logo-wrap {
        justify-content: center;
    }

    .hero-logo {
        width: clamp(132px, 18vw, 170px);
        margin: 0;
    }

    .hero-panel-card {
        padding: 1rem 1.1rem;
        border-radius: 24px;
    }

    .panel-title {
        margin-bottom: 0.35rem;
        font-size: 1.2rem;
    }

    .hero-panel-card .panel-list li {
        font-size: 0.92rem;
        line-height: 1.55;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    :root {
        --nav-height: clamp(70px, 4.3vw, 76px);
        --section-space-lg: clamp(4rem, 5vw, 5.8rem);
        --anchor-offset: calc(var(--nav-height) + 1.1rem);
        --nav-brand-size: clamp(1.58rem, 0.62vw + 1.24rem, 1.82rem);
        --nav-tagline-size: clamp(0.84rem, 0.26vw + 0.7rem, 0.92rem);
        --nav-link-size: clamp(0.78rem, 0.12vw + 0.74rem, 0.86rem);
        --nav-logo-crop-width: clamp(42px, 1.2vw + 28px, 48px);
        --nav-logo-crop-height: clamp(50px, 1.5vw + 34px, 58px);
        --nav-logo-image-width: clamp(58px, 1.9vw + 34px, 66px);
        --hero-logo-size: clamp(220px, 16vw, 260px);
    }

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

    .nav-floating {
        top: 10px;
        width: min(var(--container-max), calc(100% - 24px));
    }

    .nav-content {
        gap: 0.8rem;
        min-height: clamp(66px, 4vw, 72px);
        padding: 0.62rem 1rem;
        border-radius: 30px;
    }

    .nav-links a {
        padding: 0.6rem 0.58rem;
        min-height: 38px;
    }

    .nav-floating.is-over-hero {
        top: calc(var(--safe-top) + 10px);
    }

    .nav-floating.is-over-hero .nav-content {
        min-height: clamp(62px, 3.8vw, 68px);
        padding-top: 0.56rem;
        padding-bottom: 0.56rem;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + 3.4rem) 0 3.2rem;
    }

    .hero-bg {
        background-position: center 40%;
        background-size: cover;
        transform: none;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.7rem;
        max-width: 980px;
        margin: 0 auto;
    }

    .hero-copy {
        max-width: 760px;
        gap: 0.88rem;
        padding: 1.28rem 1.4rem;
        border-radius: 28px;
    }

    .hero-copy h1 {
        max-width: 12.5ch;
        font-size: clamp(2.3rem, 2vw + 1.15rem, 3.3rem);
    }

    .hero-lead {
        max-width: 60ch;
        font-size: clamp(0.95rem, 0.22vw + 0.9rem, 1rem);
        line-height: 1.62;
    }

    .hero-meta {
        gap: 0.56rem;
    }

    .hero-highlights {
        gap: 0.5rem;
    }

    .hero-highlights span {
        padding: 0.48rem 0.72rem;
    }

    .hero .rating {
        gap: 0.45rem;
        font-size: clamp(0.76rem, 0.12vw + 0.72rem, 0.82rem);
    }

    .star-icon {
        width: 15px;
        height: 15px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        margin-top: 0.1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-buttons .btn:last-child {
        grid-column: 1 / -1;
    }

    .hero-buttons .btn {
        min-height: 46px;
        padding: 0.8rem 1.15rem;
        font-size: clamp(0.74rem, 0.1vw + 0.72rem, 0.78rem);
    }

    .hero-notice {
        max-width: 44rem;
        padding: 0.72rem 0.88rem;
    }

    .btn i {
        width: 14px;
        height: 14px;
    }

    .hero-panel {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        max-width: 760px;
        gap: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-logo-wrap {
        justify-content: center;
    }

    .hero-logo {
        width: clamp(138px, 12vw, 172px);
        margin: 0;
    }

    .hero-panel-card {
        padding: 0.95rem 1.05rem;
        border-radius: 22px;
    }

    .panel-title {
        margin-bottom: 0.4rem;
        font-size: clamp(1.18rem, 0.3vw + 1.08rem, 1.28rem);
    }

    .hero-panel-card .panel-list li {
        font-size: clamp(0.9rem, 0.18vw + 0.84rem, 0.96rem);
        line-height: 1.58;
    }

    .service-image {
        min-height: 300px;
        max-height: 340px;
    }

    .service-body {
        padding: 1.85rem;
    }

    .service-top h3 {
        font-size: clamp(2.02rem, 0.8vw + 1.6rem, 2.45rem);
    }

    .service-details div {
        padding: 1rem;
    }
}

@media (min-width: 1024px) and (max-width: 1139px) {
    .nav-brand-tagline {
        display: none;
    }

    .nav-content {
        gap: 0.7rem;
    }

    .nav-links {
        gap: 0.05rem;
    }

    .nav-links a {
        padding-inline: 0.46rem;
        font-size: clamp(0.75rem, 0.06vw + 0.74rem, 0.8rem);
        letter-spacing: 0.08em;
    }
}

@media (min-width: 1180px) and (max-width: 1439px) {
    .hero-content {
        grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.5fr);
        gap: clamp(2.2rem, 2vw, 3.25rem);
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-panel {
        max-width: 296px;
    }

    .service-card {
        grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
        align-items: stretch;
    }

    .service-media {
        padding: 1rem;
    }

    .service-image {
        min-height: 100%;
        max-height: 460px;
        aspect-ratio: 5 / 6;
    }

    .service-body {
        padding: 1.7rem;
    }
}

@media (min-width: 1280px) {
    :root {
        --container-max: 1280px;
        --anchor-offset: calc(var(--nav-height) + 1.75rem);
    }

    .hero-content {
        gap: 5rem;
    }

    .highlight-grid,
    .trust-grid {
        gap: 1.25rem;
    }

    .faq-list {
        max-width: 940px;
    }
    .hero {
        padding-bottom: 5rem;
    }

    .hero-copy {
        max-width: 760px;
    }

    .service-card {
        grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
    }

    .service-media {
        padding: 1.1rem;
    }

    .service-image {
        min-height: 100%;
        max-height: 520px;
    }

    .service-body {
        gap: 1.2rem;
        padding: clamp(1.7rem, 1.1vw + 1.15rem, 2.2rem);
    }

    .service-top {
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .service-heading {
        max-width: 36rem;
    }

    .service-top h3 {
        font-size: clamp(2rem, 1.15vw + 1.32rem, 2.5rem);
    }

    .service-summary,
    .service-description,
    .service-details dd {
        line-height: 1.7;
    }

    .service-details {
        gap: 0.9rem;
    }

    .service-details div {
        padding: 1rem;
        border-radius: 18px;
    }

    .service-details dt {
        font-size: 0.74rem;
    }
}
