:root {
    --bg: #0d0b0b;
    --bg-soft: #171311;
    --surface: #efe5d8;
    --surface-strong: #e2d2be;
    --panel: rgba(24, 20, 18, 0.82);
    --panel-solid: #1c1715;
    --line: rgba(216, 177, 79, 0.24);
    --text: #f7f0e6;
    --text-dark: #221c18;
    --muted: #bea98e;
    --gold: #deb545;
    --gold-deep: #a67722;
    --success: #d5b467;
    --danger: #ffb0a3;
    --container: min(1180px, calc(100% - 2.5rem));
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --header-height: 92px;
    --brand-docked-width: clamp(64px, 6vw, 78px);
    --brand-header-gap: clamp(0.75rem, 1.4vw, 1.15rem);
    --brand-shift-x: 0px;
    --brand-shift-y: 0px;
    --brand-scale: 1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.page-scroll-locked,
body.page-scroll-locked {
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(222, 181, 69, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(166, 119, 34, 0.1), transparent 22%),
        var(--surface);
}

body.page-scroll-locked {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
select,
input {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

address {
    font-style: normal;
}

[hidden] {
    display: none !important;
}

.site-shell {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-heading h2,
.statement-card h2,
.experience-copy h2,
.booking-banner h2,
.contact-card h2,
.hero-panel h2,
.result-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.section-heading p:last-child,
.hero-copy p,
.hero-panel p,
.statement-card p,
.service-body p,
.experience-copy p,
.booking-banner p,
.team-card-body p,
.contact-card p,
.result-card p {
    line-height: 1.75;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(13, 11, 11, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
}

.loading-overlay.is-visible {
    display: grid;
}

.loading-spinner {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--gold);
    animation: spin 0.85s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    background: rgba(12, 10, 10, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: calc(var(--header-height) - 2rem);
    padding-left: calc(var(--brand-docked-width) + var(--brand-header-gap));
}

.brand {
    position: absolute;
    top: calc(50% + 0.2rem);
    left: 0.25rem;
    translate: 0 -50%;
    display: inline-flex;
    align-items: center;
    color: var(--text);
    z-index: 2;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    padding: 0;
    transform-origin: center center;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    will-change: transform;
}

.brand-logo {
    width: var(--brand-docked-width);
    height: auto;
    display: block;
}

.is-js body:not(.logo-ready) .brand-badge {
    opacity: 0;
}

.is-js body.logo-ready:not(.logo-docked) .brand-badge {
    transform: translate(var(--brand-shift-x), var(--brand-shift-y)) scale(var(--brand-scale));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.site-nav a,
.site-nav button {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-cta,
.btn-primary,
.btn-secondary,
.btn-secondary-link,
.btn-secondary-outline,
.btn-danger-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.btn-primary {
    padding: 0.95rem 1.45rem;
    background: linear-gradient(135deg, var(--gold), #f1cf73);
    color: #1a1411;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(166, 119, 34, 0.28);
}

.btn-primary:hover,
.nav-cta:hover,
.btn-secondary:hover,
.btn-secondary-link:hover,
.btn-secondary-outline:hover,
.btn-danger-outline:hover {
    transform: translateY(-2px);
}

.btn-secondary,
.btn-secondary-link,
.btn-secondary-outline {
    padding: 0.95rem 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.btn-danger-outline {
    padding: 0.95rem 1.45rem;
    color: var(--danger);
    border: 1px solid rgba(255, 176, 163, 0.28);
    background: rgba(255, 176, 163, 0.06);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
}

.hero-media,
.hero-scrim {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92);
}

.hero-scrim {
    background:
        linear-gradient(90deg, rgba(13, 11, 11, 0.9) 0%, rgba(13, 11, 11, 0.58) 48%, rgba(13, 11, 11, 0.4) 100%),
        linear-gradient(180deg, rgba(13, 11, 11, 0.2) 0%, rgba(13, 11, 11, 0.78) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
    gap: 2rem;
    align-content: end;
    align-items: end;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 5.5rem;
}

.hero-brand-stage {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1.9rem;
}

.hero-copy {
    max-width: 640px;
    padding-bottom: 1rem;
}

.hero-brand {
    width: clamp(250px, 30vw, 360px);
    aspect-ratio: 960 / 1003;
}

.hero-copy .eyebrow {
    margin-top: 0;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.6rem, 8vw, 7.4rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.hero-lead {
    max-width: 560px;
    margin: 1.75rem 0 0;
    font-size: 1.06rem;
    color: rgba(247, 240, 230, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(247, 240, 230, 0.86);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-panel {
    justify-self: end;
    max-width: 380px;
    padding: 2.2rem;
    border: 1px solid rgba(222, 181, 69, 0.14);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(23, 18, 16, 0.9), rgba(12, 10, 10, 0.82));
    box-shadow: var(--shadow);
}

.panel-kicker {
    margin: 0 0 0.8rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-panel-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-panel-list div {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel-list span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-panel-list a {
    color: var(--text);
}

.statement-section,
.services-section,
.experience-section,
.booking-section,
.team-section,
.result-section,
.contact-section {
    padding: 6rem 0;
}

.statement-section {
    position: relative;
    z-index: 2;
    padding-top: 0;
    background:
        linear-gradient(180deg, rgba(13, 11, 11, 0.04), transparent),
        var(--surface);
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: -4.5rem;
}

.statement-card {
    position: relative;
    overflow: hidden;
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 250, 245, 0.88);
    border: 1px solid rgba(34, 28, 24, 0.08);
    box-shadow: 0 24px 52px rgba(87, 61, 26, 0.1);
}

.statement-card-accent {
    background:
        radial-gradient(circle at top right, rgba(222, 181, 69, 0.25), transparent 36%),
        #f2e3cf;
}

.statement-number {
    display: inline-flex;
    margin-bottom: 1.5rem;
    color: rgba(34, 28, 24, 0.35);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.services-section {
    background: var(--surface);
}

.services-section .section-heading,
.team-section .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fffaf5;
    border: 1px solid rgba(34, 28, 24, 0.06);
    box-shadow: 0 18px 35px rgba(87, 61, 26, 0.08);
}

.service-card img {
    height: 260px;
    object-fit: cover;
}

.service-body {
    padding: 1.35rem;
}

.service-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.service-title-row h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.service-title-row span {
    color: var(--gold-deep);
    font-weight: 800;
}

.service-collection {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2.3rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #201b18, #0d0b0b);
    color: var(--text);
}

.service-collection h3 {
    margin: 0 0 0.9rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    line-height: 0.96;
}

.service-price-list {
    display: grid;
    gap: 0.75rem;
}

.service-price-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(222, 181, 69, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.service-price-list strong {
    color: var(--gold);
}

.experience-section {
    background:
        radial-gradient(circle at top left, rgba(222, 181, 69, 0.16), transparent 28%),
        var(--bg);
    color: var(--text);
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.4rem;
    align-items: center;
}

.experience-image {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.experience-image img {
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.experience-notes {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.experience-notes div {
    padding: 1rem 1.1rem;
    border-left: 2px solid rgba(222, 181, 69, 0.48);
    background: rgba(255, 255, 255, 0.04);
}

.note-label {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.booking-section {
    background: linear-gradient(180deg, rgba(13, 11, 11, 0.08), transparent);
}

.booking-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2.6rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(222, 181, 69, 0.2), transparent 30%),
        #211a17;
    color: var(--text);
    box-shadow: var(--shadow);
}

.booking-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
}

.team-section {
    background: var(--surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.team-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #fffaf5;
    box-shadow: 0 18px 35px rgba(87, 61, 26, 0.08);
}

.team-card img {
    height: 460px;
    object-fit: cover;
}

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

.team-card-body h3 {
    margin: 0 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
}

.result-section {
    background: linear-gradient(180deg, rgba(222, 181, 69, 0.12), transparent);
}

.result-card {
    padding: 2.4rem;
    border-radius: var(--radius-xl);
    background: #fff8ef;
    border: 1px solid rgba(34, 28, 24, 0.08);
    box-shadow: 0 18px 35px rgba(87, 61, 26, 0.08);
}

.result-code {
    font-weight: 800;
    color: var(--gold-deep);
}

.contact-section {
    padding-top: 6rem;
    background: var(--surface);
}

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

.contact-card,
.contact-image {
    overflow: hidden;
    border-radius: var(--radius-xl);
    min-height: 420px;
}

.contact-card {
    padding: 2rem;
    background: #fffaf5;
    border: 1px solid rgba(34, 28, 24, 0.06);
    box-shadow: 0 18px 35px rgba(87, 61, 26, 0.08);
}

.contact-card-dark {
    background: linear-gradient(180deg, #18120f, #090808);
    color: var(--text);
}

.contact-links {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.contact-links a {
    color: inherit;
    font-weight: 700;
}

.contact-image img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.btn-secondary-link {
    color: var(--text-dark);
    border: 1px solid rgba(34, 28, 24, 0.14);
    background: rgba(34, 28, 24, 0.04);
}

.site-footer {
    padding: 2rem 0 3rem;
    background: var(--surface);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(34, 28, 24, 0.1);
}

.footer-logo {
    width: 108px;
    height: auto;
}

.footer-copy p {
    margin: 0;
    font-weight: 800;
}

.footer-copy span {
    color: rgba(34, 28, 24, 0.7);
}

.modal-criniera .modal-content {
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(222, 181, 69, 0.18), transparent 35%),
        #171311;
    box-shadow: var(--shadow);
}

.modal-criniera .modal-header,
.modal-criniera .modal-footer {
    border: 0;
    padding: 1.6rem 1.6rem 1rem;
}

.modal-criniera .modal-body {
    flex: 1 1 auto;
    padding: 0 1.6rem 1.6rem;
}

.modal-criniera .close {
    color: var(--text);
    opacity: 1;
    text-shadow: none;
}

.modal-criniera h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    line-height: 0.95;
}

.modal-intro {
    color: rgba(247, 240, 230, 0.8);
}

.form-privacy-note {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(247, 240, 230, 0.78);
}

.form-privacy-note a {
    color: var(--gold);
    font-weight: 700;
}

.form-privacy-note a:hover,
.form-privacy-note a:focus {
    color: #f0d48a;
}

.modal-success-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.25rem;
    border-radius: 22px;
    border: 1px solid rgba(222, 181, 69, 0.26);
    background:
        radial-gradient(circle at top right, rgba(222, 181, 69, 0.16), transparent 40%),
        rgba(255, 255, 255, 0.04);
}

.modal-success-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(222, 181, 69, 0.14);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.modal-success-card h4 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.95;
    color: var(--text);
}

.modal-success-card p {
    margin: 0;
    color: rgba(247, 240, 230, 0.84);
    line-height: 1.65;
}

.modal-result-code {
    font-weight: 800;
    color: var(--gold);
}

.modal-criniera .modal-footer.modal-footer-single {
    justify-content: flex-end;
}

.modal-criniera .modal-footer.modal-footer-single > * {
    min-width: 180px;
    margin: 0;
}

.booking-modal-layout {
    display: grid;
    gap: 1rem;
}

.booking-visual {
    display: none;
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.booking-visual img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.booking-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 8, 8, 0.1), rgba(10, 8, 8, 0.84));
}

.booking-visual-copy {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.2rem;
    color: var(--text);
}

.booking-visual-kicker {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(247, 240, 230, 0.72);
}

.booking-visual-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.92;
}

.booking-visual-copy small {
    font-size: 0.84rem;
    color: rgba(247, 240, 230, 0.8);
}

.booking-form-stack {
    display: grid;
    gap: 0;
}

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

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-control {
    height: auto;
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 0.95rem 1rem;
}

.form-control:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(222, 181, 69, 0.52);
    box-shadow: 0 0 0 0.2rem rgba(222, 181, 69, 0.15);
}

.form-control option {
    color: #111;
}

.summary-box,
.waitlist-panel {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(222, 181, 69, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(247, 240, 230, 0.86);
}

.manage-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.manage-footer-actions {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 1100px) {
    .hero-grid,
    .statement-grid,
    .experience-grid,
    .booking-banner,
    .contact-grid,
    .service-collection {
        grid-template-columns: 1fr;
    }

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

    .statement-grid {
        margin-top: -3rem;
    }

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

    .contact-card,
    .contact-image {
        min-height: auto;
    }
}

@media (max-width: 860px) {
    :root {
        --container: min(100% - 1.5rem, 1180px);
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        top: calc(var(--header-height) - 0.5rem);
        left: 0.75rem;
        right: 0.75rem;
        display: grid;
        gap: 0.85rem;
        padding: 1.2rem;
        border-radius: 22px;
        background: rgba(12, 10, 10, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-header.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a,
    .site-nav button {
        justify-content: flex-start;
        font-size: 0.88rem;
    }

    .hero-grid {
        align-items: end;
        padding-bottom: 2rem;
    }

    .hero-pills {
        gap: 0.6rem;
    }

    .hero-panel {
        justify-self: stretch;
        max-width: none;
    }

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

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

@media (max-width: 640px) {
    body.modal-screen-active .site-header {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .statement-section,
    .services-section,
    .experience-section,
    .booking-section,
    .team-section,
    .result-section,
    .contact-section {
        padding: 4.5rem 0;
    }

    .statement-grid {
        margin-top: -2rem;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 18vw, 5rem);
    }

    .brand-badge {
        padding: 0;
    }

    .brand-logo {
        width: clamp(56px, 16vw, 68px);
    }

    .hero-brand-stage {
        margin-top: 1.2rem;
        margin-bottom: 1.35rem;
    }

    .hero-copy .eyebrow {
        margin-top: 0;
    }

    .hero-brand {
        width: min(72vw, 240px);
        aspect-ratio: 960 / 1003;
    }

    .hero-pills span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-actions,
    .booking-banner-actions,
    .contact-actions,
    .manage-footer,
    .manage-footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .modal-criniera .modal-dialog {
        margin: 0.5rem;
        min-height: calc(100dvh - 1rem);
        max-width: calc(100% - 1rem);
    }

    .modal-criniera .modal-content {
        min-height: calc(100dvh - 1rem);
        max-height: calc(100dvh - 1rem);
        border-radius: 22px;
    }

    .modal-criniera .modal-header,
    .modal-criniera .modal-footer {
        padding-top: 1rem;
        padding-bottom: 0.85rem;
    }

    .modal-criniera .modal-body {
        padding-top: 0.35rem;
        padding-bottom: 1rem;
        overflow-y: auto;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
    }

    .modal-criniera h3 {
        font-size: 1.8rem;
    }

    .modal-criniera .modal-header .eyebrow {
        margin-bottom: 0.35rem;
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .modal-criniera .form-group label {
        margin-bottom: 0.35rem;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .modal-criniera .form-control {
        min-height: 48px;
        padding: 0.75rem 0.85rem;
        font-size: 0.95rem;
    }

    #bookingModal .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    #bookingModal .booking-modal-layout {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        min-height: 100%;
    }

    #bookingModal .booking-visual {
        display: block;
        flex: 0 0 auto;
        min-height: 180px;
        max-height: 30dvh;
        border-radius: 18px;
    }

    #bookingModal .booking-visual img {
        min-height: 180px;
    }

    #bookingModal .booking-visual-copy {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
    }

    #bookingModal .booking-visual-copy strong {
        font-size: 1.7rem;
    }

    #bookingModal .booking-form-stack {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1 1 auto;
    }

    .summary-box,
    .waitlist-panel {
        margin-top: 0.85rem;
        padding: 0.85rem 0.95rem;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    #bookingModal .modal-footer,
    #customerModal .modal-footer,
    #lookupModal .modal-footer {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    #bookingModal .modal-footer > *,
    #customerModal .modal-footer > *,
    #lookupModal .modal-footer > * {
        width: 100%;
        margin: 0;
    }

    #customerModal .modal-footer.modal-footer-single {
        display: flex;
    }

    #customerModal .modal-footer.modal-footer-single > * {
        min-width: 0;
        width: 100%;
    }

    .team-card img {
        height: 360px;
    }

    .service-card img {
        height: 220px;
    }

    .modal-criniera .modal-header,
    .modal-criniera .modal-footer,
    .modal-criniera .modal-body {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}
