/* MARWA EL SHENNAWY ? Luxury corporate site */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aston Script';
    src: url('../fonts/aston-script/AstonScript.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --burgundy: #320e1c;
    --rose: #ccb0a2;
    --cream: #e9dcd3;
    --white: #ffffff;
    --black: #000000;
    --text: #2a2a2a;
    --muted: #6b5c58;
    --header-h: 96px;
    --header-h-scrolled: 62px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Montserrat', system-ui, sans-serif;
    --font-script: 'Aston Script', cursive;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }

.container {
    width: min(1320px, 92vw);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(50, 14, 28, 0.08);
    transition: height var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    height: var(--header-h-scrolled);
    box-shadow: 0 4px 24px rgba(50, 14, 28, 0.06);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-h);
    gap: 1rem;
    transition: height var(--transition);
}

.site-header.is-scrolled .header-inner {
    height: var(--header-h-scrolled);
}

.header-nav-left,
.header-nav-right {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.header-nav-right { justify-content: flex-end; }

.nav-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.nav-link.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    color: var(--white);
    background: linear-gradient(135deg, #1a0a10 0%, var(--burgundy) 55%, #5a2236 100%);
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 14px rgba(50, 14, 28, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
    animation: nav-cta-glow 2.8s ease-in-out infinite;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus-visible {
    color: var(--white);
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(50, 14, 28, 0.38);
    animation: none;
}

.nav-link.nav-cta.active {
    color: var(--white);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 4px 16px rgba(50, 14, 28, 0.35);
    animation: none;
}

.site-header.is-scrolled .nav-link.nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.66rem;
}

@keyframes nav-cta-glow {
    0%, 100% {
        box-shadow: 0 2px 14px rgba(50, 14, 28, 0.28);
    }
    50% {
        box-shadow: 0 2px 22px rgba(50, 14, 28, 0.48);
    }
}

.nav-item { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(50, 14, 28, 0.1);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 12px 40px rgba(50, 14, 28, 0.08);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.55rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
}

.header-logo-full,
.header-logo-icon {
    transition: opacity var(--transition), transform var(--transition), max-height var(--transition);
}

.header-logo-full {
    height: 58px;
    width: auto;
    max-width: min(320px, 46vw);
    object-fit: contain;
}

.header-logo-icon {
    position: absolute;
    height: 0;
    width: auto;
    max-width: 40px;
    opacity: 0;
    object-fit: contain;
    pointer-events: none;
}

.site-header.is-scrolled .header-logo-full {
    opacity: 0;
    transform: scale(0.92);
    height: 0;
    max-height: 0;
    overflow: hidden;
}

.site-header.is-scrolled .header-logo-icon {
    position: static;
    height: 38px;
    opacity: 1;
    pointer-events: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--burgundy);
    margin: 5px 0;
}

/* Mobile offcanvas */
.offcanvas-menu {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
    visibility: hidden;
}

.offcanvas-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.offcanvas-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity var(--transition);
}

.offcanvas-menu.is-open .offcanvas-backdrop { opacity: 1; }

.offcanvas-panel {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: min(360px, 88vw);
    height: 100%;
    background: var(--white);
    padding: 2rem 1.75rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
}

.offcanvas-menu.is-open .offcanvas-panel { transform: translateX(0); }

.offcanvas-close {
    position: relative;
    z-index: 3;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.offcanvas-nav {
    position: relative;
    z-index: 3;
}

.offcanvas-nav a,
.offcanvas-nav button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.85rem 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    border-bottom: 1px solid rgba(50, 14, 28, 0.08);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

.offcanvas-nav a.offcanvas-cta {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, #1a0a10 0%, var(--burgundy) 55%, #5a2236 100%);
    border-bottom: none;
    font-weight: 600;
    letter-spacing: 0.16em;
    box-shadow: 0 4px 18px rgba(50, 14, 28, 0.28);
}

.offcanvas-nav a.offcanvas-cta:hover,
.offcanvas-nav a.offcanvas-cta:focus-visible {
    filter: brightness(1.08);
    color: var(--white);
}

.offcanvas-sub { padding-left: 1rem; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 3rem) 0 4rem;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 14, 28, 0.65) 0%, rgba(50, 14, 28, 0.15) 55%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1320px, 92vw);
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 1.4vw, 0.92rem);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 0 0 1.75rem;
    opacity: 1;
    line-height: 1.4;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 1.25rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    font-family: inherit;
}

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

.btn-light:hover {
    background: var(--white);
    color: var(--burgundy);
    opacity: 1;
}

.btn-dark {
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-dark:hover {
    background: var(--burgundy);
    color: var(--white);
    opacity: 1;
}

/* Sections */
.section {
    padding: 5.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 1rem;
}

.section-desc {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Fullscreen feature panels (Shahira-style stack) */
.feature-stack {
    display: block;
}

.feature-panel {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: var(--white);
}

.feature-panel:hover {
    opacity: 1;
}

.feature-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.feature-panel.is-inview img {
    transform: scale(1);
}

.feature-panel.is-inview:hover img {
    transform: scale(1.03);
}

.feature-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 14, 28, 0.72) 0%, rgba(50, 14, 28, 0.2) 45%, transparent 70%);
}

.feature-content {
    position: relative;
    z-index: 1;
    width: min(1320px, 92vw);
    margin: 0 auto;
    padding: 4rem 0;
}

.feature-content > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-panel.is-inview .feature-content > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.feature-panel.is-inview .feature-content > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}

.feature-panel.is-inview .feature-content > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.feature-panel.is-inview .feature-content > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.52s;
}

.feature-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 0.85rem;
}

.feature-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    font-weight: 400;
}

.feature-desc {
    max-width: 420px;
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.92;
}

.feature-panel.is-inview .feature-desc {
    opacity: 0.92;
}

/* Legacy 2-col feature grid (kept for other pages if needed) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.feature-block {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}

.feature-block img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-block:hover img { transform: scale(1.04); }

.feature-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 14, 28, 0.7), transparent 60%);
}

.feature-block .feature-content {
    width: 100%;
    padding: 2.5rem;
    margin: 0;
}

/* Explore row */
.explore-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(50, 14, 28, 0.1);
    border-bottom: 1px solid rgba(50, 14, 28, 0.1);
}

.explore-item {
    padding: 2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(50, 14, 28, 0.1);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    transition: background var(--transition);
}

.explore-item:last-child { border-right: none; }
.explore-item:hover { background: var(--cream); opacity: 1; }

/* Page hero */
.page-hero {
    padding: calc(var(--header-h) + 4rem) 0 3rem;
    text-align: center;
    background: var(--cream);
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0;
}

.page-hero p {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--muted);
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-breadcrumb--light {
    color: var(--muted);
}

.page-breadcrumb--light a {
    color: var(--burgundy);
}

.page-breadcrumb--light a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Gallery */
.gallery-section { margin-bottom: 4rem; }

.gallery-section-title {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(50, 14, 28, 0.12);
}

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

.album-section-header .gallery-section-title {
    margin-bottom: 0.65rem;
}

.album-section-lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 540px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.album-grid-related {
    grid-template-columns: repeat(4, 1fr);
}

.album-card {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    color: var(--burgundy);
    transition: transform 0.45s ease;
}

.album-card:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.album-card-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #ddd;
}

.album-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.album-card:hover .album-card-media img {
    transform: scale(1.05);
}

.album-card-body {
    padding: 1.25rem 1.15rem 1.4rem;
}

.album-card-title {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.45rem;
    line-height: 1.35;
}

.album-card-meta {
    margin: 0 0 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.album-card-cta {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.15rem;
}

.album-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.album-hero--tall {
    min-height: 92vh;
    min-height: 92dvh;
}

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

.album-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 14, 28, 0.78) 0%, rgba(50, 14, 28, 0.25) 55%, transparent 100%);
}

.album-hero-content {
    position: relative;
    z-index: 1;
    padding: calc(var(--header-h) + 3rem) 0 3.5rem;
}

.album-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.album-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.album-hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    opacity: 0.9;
}

.album-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.85rem;
    max-width: 18ch;
    line-height: 1.15;
}

.album-hero-desc {
    max-width: 520px;
    margin: 0 0 0.85rem;
    font-weight: 300;
    opacity: 0.92;
}

.album-hero-meta {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
}

.album-gallery-section {
    padding-top: 3rem;
}

/* Modern masonry gallery */
.album-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.album-masonry-item {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    break-inside: avoid;
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    overflow: hidden;
}

.album-masonry-item:hover {
    opacity: 1;
}

.album-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.album-masonry-item:hover img {
    transform: scale(1.02);
    filter: brightness(1.04);
}

.album-empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 0;
}

.album-back {
    margin-top: 3rem;
    text-align: center;
}

.album-related {
    background: var(--cream);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.album-related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.album-related-header .gallery-section-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

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

.album-carousel-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(50, 14, 28, 0.25);
    background: var(--white);
    color: var(--burgundy);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.album-carousel-btn:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
    opacity: 1;
}

.album-carousel {
    overflow: hidden;
}

.album-carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.album-carousel-track::-webkit-scrollbar {
    display: none;
}

.album-carousel-slide {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    scroll-snap-align: start;
    min-width: 240px;
}

.album-carousel-slide:hover {
    opacity: 1;
}

.gallery-subheading {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 2rem 0 1rem;
}

.couture-collection {
    margin-bottom: 3rem;
}

.couture-collection:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    border: none;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.collection-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 1rem;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(50, 14, 28, 0.75), transparent 55%);
    color: var(--white);
}

.collection-card-title {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

/* Coming soon */
.coming-soon {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
    background: var(--cream);
}

.coming-soon h1 {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--burgundy);
    margin: 0 0 1rem;
}

.coming-soon--section {
    min-height: auto;
    padding: 4rem 1.5rem 5rem;
}

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

.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.6rem;
    color: var(--burgundy);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-text p { color: var(--muted); margin-bottom: 1rem; }

.about-section-title {
    font-size: 1.35rem;
    color: var(--burgundy);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.about-section-title--center {
    text-align: center;
}

.about-prose {
    max-width: 820px;
    margin: 0 auto;
}

.about-prose p {
    color: var(--muted);
    margin: 0 0 1.15rem;
    line-height: 1.75;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-story--alt {
    background: var(--cream);
}

.about-values {
    background:
        linear-gradient(180deg, rgba(233, 220, 211, 0.35) 0%, rgba(255, 255, 255, 0) 28%),
        var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.about-value-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    min-height: 100%;
    padding: 2rem 1.6rem 1.85rem;
    background: linear-gradient(165deg, #f7f1ec 0%, #efe4db 100%);
    border: 1px solid rgba(50, 14, 28, 0.08);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 42px;
    height: 2px;
    background: var(--burgundy);
    opacity: 0.55;
    transition: width var(--transition), opacity var(--transition);
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(50, 14, 28, 0.18);
    box-shadow: 0 18px 40px rgba(50, 14, 28, 0.08);
}

.about-value-card:hover::before {
    width: 72px;
    opacity: 1;
}

.about-value-icon {
    display: grid;
    place-items: center;
    width: 3.4rem;
    height: 3.4rem;
    color: var(--burgundy);
    border: 1px solid rgba(50, 14, 28, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.about-value-icon svg {
    width: 1.55rem;
    height: 1.55rem;
}

.about-value-card:hover .about-value-icon {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.about-value-card h3 {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0.15rem 0 0;
}

.about-value-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    font-size: 0.92rem;
}

.about-experience {
    background: var(--cream);
}

.about-experience-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.about-experience-inner > p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 1.75rem;
}

.about-experience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
}

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    opacity: 1;
}

/* Forms */
.form-section {
    padding: calc(var(--header-h) + 3rem) 0 5rem;
}

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

.form-card {
    background: var(--cream);
    padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(50, 14, 28, 0.15);
    background: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--burgundy);
}

textarea.form-control { min-height: 120px; resize: vertical; }

.form-side-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

/* Contact page */
.contact-body {
    padding: 4rem 0 5.5rem;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.15fr);
    gap: 2.5rem 3.5rem;
    align-items: start;
}

.contact-aside-title {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.contact-aside-lead {
    margin: 0 0 2rem;
    color: var(--muted);
    line-height: 1.75;
}

.contact-details {
    display: grid;
    gap: 0.85rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    background: #f7f1ec;
    border: 1px solid rgba(50, 14, 28, 0.08);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-detail:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: rgba(50, 14, 28, 0.18);
    box-shadow: 0 14px 30px rgba(50, 14, 28, 0.07);
}

.contact-detail-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    border: 1px solid rgba(50, 14, 28, 0.2);
    color: var(--burgundy);
    background: rgba(255, 255, 255, 0.7);
}

.contact-detail-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-detail-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.contact-detail-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-detail-value {
    color: var(--burgundy);
    font-weight: 400;
    word-break: break-word;
}

.contact-social {
    margin-top: 1.75rem;
}

.contact-social-label {
    display: block;
    margin-bottom: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-social-icon {
    display: grid;
    place-items: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    border: 1px solid rgba(50, 14, 28, 0.2);
    color: var(--burgundy);
    background: #f7f1ec;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-social-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.contact-social-icon:hover {
    opacity: 1;
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-aside-cta {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(50, 14, 28, 0.1);
}

.contact-aside-cta p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-map {
    width: 100%;
    margin: 0;
    line-height: 0;
    background: #e8e0d8;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: min(52vh, 420px);
    border: 0;
    filter: grayscale(0.15) contrast(1.02);
}

.contact-form-panel {
    background: var(--white);
    border: 1px solid rgba(50, 14, 28, 0.08);
    padding: clamp(1.75rem, 3vw, 2.75rem);
    box-shadow: 0 24px 60px rgba(50, 14, 28, 0.06);
}

.contact-form-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(50, 14, 28, 0.08);
}

.contact-form-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.contact-form-header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-alert,
.contact-feedback {
    margin-bottom: 1.25rem;
    padding: 0.95rem 1.1rem;
    background: #f3ebe4;
    border-left: 3px solid var(--burgundy);
    color: var(--burgundy);
    font-size: 0.9rem;
}

.contact-feedback.is-success {
    background: #f0ebe7;
    border-left-color: var(--burgundy);
    color: var(--burgundy);
}

.contact-feedback.is-error {
    background: #f8ecec;
    border-left-color: #8a2f2f;
    color: #8a2f2f;
}

.contact-field-error {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: #8a2f2f;
}

.contact-form .form-control.is-invalid {
    border-color: #8a2f2f;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.15rem;
}

.contact-form .form-control {
    background: #fbf8f6;
    border-color: rgba(50, 14, 28, 0.12);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.contact-form .form-control:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(50, 14, 28, 0.06);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-submit {
    margin-top: 0.35rem;
    min-width: 12rem;
}

.page-contact .alert-success,
.page-appointment .alert-success {
    display: none;
}

/* Footer */
.site-footer {
    background: var(--burgundy);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.65fr) repeat(3, minmax(120px, 1fr)) minmax(200px, 1.25fr);
    gap: 2rem 2.25rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-col--brand {
    min-width: 0;
}

.footer-brand-logo {
    display: inline-block;
    margin: 0 0 1.15rem;
    line-height: 0;
}

.footer-brand-logo img {
    display: block;
    height: 3.25rem;
    width: auto;
    max-width: 100%;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
    max-width: 22rem;
}

.footer-col--brand .footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 1.35rem 0 0;
}

.footer-social-icon {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.footer-social-icon:hover {
    opacity: 1;
    color: var(--burgundy);
    background: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.footer-social-fallback {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-col h3 {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
    font-size: 0.82rem;
    color: var(--cream);
    opacity: 0.85;
}

.footer-col a:hover { opacity: 1; }

.footer-newsletter-lead {
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-family: inherit;
}

.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }

.footer-newsletter .btn {
    width: 100%;
    color: var(--white);
    border-color: var(--white);
}

.footer-newsletter .btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.newsletter-feedback {
    margin-top: 0.9rem;
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
    border: 1px solid transparent;
    animation: newsletterFeedbackIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.newsletter-feedback.is-success {
    color: #f4ebe4;
    background: rgba(233, 220, 211, 0.12);
    border-color: rgba(233, 220, 211, 0.35);
}

.newsletter-feedback.is-error {
    color: #f8d7da;
    background: rgba(192, 57, 43, 0.18);
    border-color: rgba(248, 215, 218, 0.35);
}

@keyframes newsletterFeedbackIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

.footer-copy {
    margin: 0;
    letter-spacing: 0.06em;
    opacity: 0.9;
    text-align: center;
    width: 100%;
}

.footer-legal {
    display: none;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Policy page */
.policy-container {
    max-width: 760px;
    margin: 0 auto;
}

.policy-container h2 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 2rem 0 0.75rem;
}

.policy-container p,
.policy-container li {
    color: var(--muted);
    font-size: 0.95rem;
}

.policy-container ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.policy-container a {
    color: var(--burgundy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Lightbox + album viewer */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.album-viewer {
    position: fixed;
    inset: 0;
    z-index: 3200;
    background: rgba(8, 4, 6, 0.96);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.album-viewer.is-open {
    opacity: 1;
    visibility: visible;
}

.album-viewer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    color: var(--cream);
}

.album-viewer-title {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.album-viewer-count {
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    opacity: 0.75;
}

.album-viewer-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.album-viewer-close:hover {
    opacity: 1;
    border-color: var(--white);
}

.album-viewer-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0 4.5rem 1.5rem;
}

.album-viewer-stage img {
    max-width: min(1100px, 92vw);
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.album-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.album-viewer-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
}

.album-viewer-prev { left: 1rem; }
.album-viewer-next { right: 1rem; }

/* Fade in (legacy) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 991px) {
    .header-nav-left,
    .header-nav-right .nav-link:not(.nav-cta) { display: none; }

    .header-nav-right {
        gap: 0.75rem;
    }

    .header-nav-right .nav-cta {
        display: inline-flex;
        padding: 0.55rem 0.85rem;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .menu-toggle { display: block; }

    .header-inner { grid-template-columns: auto 1fr auto; }

    .feature-grid,
    .about-split,
    .form-split,
    .contact-layout { grid-template-columns: 1fr; }

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

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .explore-row { grid-template-columns: repeat(2, 1fr); }

    .explore-item {
        border-bottom: 1px solid rgba(50, 14, 28, 0.1);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 1.75rem 1.25rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .footer-col.footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-brand-logo img {
        height: 2.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-copy {
        text-align: center;
        width: 100%;
    }

    .feature-block { min-height: 380px; }

    .feature-panel {
        min-height: 85vh;
        min-height: 85dvh;
    }

    .feature-content {
        padding: 3rem 0;
    }

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

    .album-grid-related {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-masonry {
        column-count: 2;
    }

    .album-carousel-slide {
        flex-basis: calc((100% - 1.25rem) / 2);
    }

    .album-viewer-stage {
        padding: 0 3.25rem 1.25rem;
    }

    .album-hero--tall {
        min-height: 85vh;
        min-height: 85dvh;
    }
}

@media (max-width: 575px) {
    .explore-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .about-values-grid { grid-template-columns: 1fr; }
    .album-grid,
    .album-grid-related { grid-template-columns: 1fr; }
    .album-masonry { column-count: 1; }
    .album-carousel-slide { flex-basis: 82%; }
    .album-viewer-stage { padding: 0 0.75rem 1rem; }
    .album-viewer-nav {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
    .album-viewer-prev { left: 0.4rem; }
    .album-viewer-next { right: 0.4rem; }
}

/* ?? Book appointment (two-step + Calendy calendar) ?? */
.appointment-booking-section {
    padding: 3.5rem 0 5rem;
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(50, 14, 28, 0.05), transparent 55%),
        linear-gradient(180deg, #f8f2ec 0%, #f3ebe4 48%, #efe5dc 100%);
}
.appointment-booking-wrap {
    max-width: 1040px;
    margin: 0 auto;
}
.appointment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}
.appointment-step {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #9a857c;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.appointment-step-num {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    border: 1px solid rgba(50, 14, 28, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.appointment-step.is-active,
.appointment-step.is-done {
    color: var(--burgundy);
}
.appointment-step.is-active .appointment-step-num,
.appointment-step.is-done .appointment-step-num {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
}
.appointment-step-line {
    width: 3rem;
    height: 1px;
    background: rgba(50, 14, 28, 0.18);
}
.appointment-panel {
    background: #fff;
    border: 1px solid rgba(50, 14, 28, 0.08);
    box-shadow: 0 18px 48px rgba(50, 14, 28, 0.06);
    padding: 2rem 1.75rem;
}
.appointment-panel-header {
    margin-bottom: 1.5rem;
}
.appointment-panel-header h2 {
    margin: 0 0 0.4rem;
    font-size: 1.45rem;
    color: var(--burgundy);
}
.appointment-panel-header p {
    margin: 0;
    color: #6f5c56;
    line-height: 1.65;
}
.appointment-panel-header--row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.appointment-panel-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}
.appointment-deposit-note {
    margin: 0.25rem 0 0;
    padding: 0.9rem 1rem;
    background: rgba(50, 14, 28, 0.04);
    border: 1px solid rgba(50, 14, 28, 0.08);
    color: #5c4d49;
    font-size: 0.92rem;
    line-height: 1.6;
}
.appointment-booking-success {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(50, 14, 28, 0.08);
    padding: 3rem 2rem;
    box-shadow: 0 18px 48px rgba(50, 14, 28, 0.06);
}
.appointment-booking-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--burgundy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.appointment-booking-success h2 {
    margin: 0 0 0.65rem;
    color: var(--burgundy);
}
.appointment-booking-success p {
    color: #5c4d49;
    line-height: 1.75;
    margin: 0 0 1.5rem;
}

.calendy-shell {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    background: #fff;
    border: 1px solid rgba(50, 14, 28, 0.08);
    border-radius: 1rem;
    box-shadow: 0 18px 48px rgba(50, 14, 28, 0.08);
    overflow: hidden;
    min-height: 540px;
    margin-top: 0.35rem;
}
.calendy-shell--has-times {
    grid-template-columns: minmax(210px, 260px) minmax(300px, 1.15fr) minmax(220px, 260px);
}
.calendy-info {
    background: linear-gradient(180deg, #fbf6f9 0%, #fff 55%);
    border-inline-end: 1px solid rgba(50, 14, 28, 0.08);
    padding: 1.75rem 1.35rem;
}
.calendy-picker-head {
    margin-bottom: 1.1rem;
}
.calendy-picker-hint {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    color: #8a736c;
    line-height: 1.5;
}
.calendy-main-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--burgundy);
    margin: 0;
}
.calendy-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.25rem;
    border-radius: 999px;
    background: rgba(50, 14, 28, 0.04);
}
.calendy-month-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.02em;
}
.calendy-nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--burgundy);
    box-shadow: 0 1px 4px rgba(50, 14, 28, 0.08);
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
}
.calendy-nav-btn:hover:not(:disabled) {
    background: var(--burgundy);
    color: #fff;
}
.calendy-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.45rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a857c;
}
.calendy-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}
.calendy-times {
    border-inline-start: 1px solid rgba(50, 14, 28, 0.08);
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: none;
    background: linear-gradient(180deg, #fff 0%, #faf6f3 100%);
}
.calendy-times-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a736c;
    font-weight: 700;
}
.calendy-times-date {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--burgundy);
}
.calendy-times-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    overflow-y: auto;
    padding-inline-end: 0.15rem;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 22rem;
}
.calendy-time-btn {
    width: 100%;
    border: 1.5px solid rgba(50, 14, 28, 0.16);
    background: #fff;
    color: var(--burgundy);
    border-radius: 0.75rem;
    padding: 0.85rem 0.9rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.calendy-time-btn:hover:not(:disabled) {
    background: rgba(50, 14, 28, 0.05);
    border-color: rgba(50, 14, 28, 0.35);
    transform: translateY(-1px);
}
.calendy-time-btn--picked,
.calendy-time-btn--selected {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
    box-shadow: 0 10px 22px rgba(50, 14, 28, 0.22);
}
.calendy-times-empty {
    border-inline-start: 1px solid rgba(50, 14, 28, 0.08);
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf6f3;
}
.calendy-times-empty-card {
    text-align: center;
    max-width: 14rem;
    color: #8a736c;
}
.calendy-times-empty-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(50, 14, 28, 0.08);
    color: var(--burgundy);
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
}
.calendy-times-empty-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}
.calendy-confirm {
    margin-top: 1rem;
    display: grid;
    gap: 0.55rem;
    padding: 1rem 0.15rem 0.15rem;
    border-top: 1px solid rgba(50, 14, 28, 0.1);
}
.site-map {
    width: 100%;
    margin: 0;
    background: #efe5dc;
}
.site-map-header {
    padding: 3rem 1.25rem 1.35rem;
    text-align: center;
}
.site-map-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a736c;
    font-weight: 700;
}
.site-map-title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    color: var(--burgundy);
    font-weight: 500;
}
.site-map-address {
    margin: 0;
    color: #5c4d49;
    font-size: 0.95rem;
}
.site-map iframe,
.contact-map iframe {
    display: block;
    width: 100%;
    height: min(52vh, 420px);
    border: 0;
    filter: grayscale(0.12) contrast(1.02);
}
.site-map-actions {
    margin: 0.85rem 0 0;
}
.site-map-link {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--burgundy);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.site-map-link:hover {
    color: #5a1a2d;
}
.whatsapp-float {
    position: fixed;
    left: 1.15rem;
    right: auto;
    bottom: 1.15rem;
    z-index: 1040;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    animation: whatsapp-pulse 2.2s ease-out infinite;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: whatsapp-ring 2.2s ease-out infinite;
    pointer-events: none;
}
.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.5);
    animation: none;
}
.whatsapp-float:hover::before {
    animation: none;
    opacity: 0.85;
}
.whatsapp-float svg {
    width: 1.55rem;
    height: 1.55rem;
    display: block;
    position: relative;
    z-index: 1;
}
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55); }
}
@keyframes whatsapp-ring {
    0% { transform: scale(1); opacity: 0.75; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 991.98px) {
    .calendy-shell,
    .calendy-shell--has-times {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .calendy-info {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(50, 14, 28, 0.08);
    }
    .calendy-times,
    .calendy-times-empty {
        border-inline-start: 0;
        border-top: 1px solid rgba(50, 14, 28, 0.08);
    }
    .calendy-times-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: none;
    }
}
@media (max-width: 575.98px) {
    .calendy-times-list {
        grid-template-columns: 1fr;
    }
    .whatsapp-float {
        left: 0.85rem;
        right: auto;
        bottom: 0.85rem;
    }
}

.calendy-info-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.35rem;
    text-align: center;
}
.calendy-info-logo {
    height: auto;
    width: min(100%, 11.5rem);
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.calendy-info-host {
    display: none;
}
.calendy-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1.35;
    margin: 0 0 1.15rem;
}
.calendy-info-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}
.calendy-info-meta li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: #5c4d49;
    line-height: 1.5;
}
.calendy-info-ico {
    color: var(--burgundy);
    width: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    text-align: center;
}
.calendy-info-summary {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(50, 14, 28, 0.08);
}
.calendy-info-summary-label {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a736c;
}
.calendy-info-summary p {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    color: var(--burgundy);
}
.calendy-main {
    display: contents;
}
.calendy-picker {
    padding: 1.5rem 1.35rem 1.25rem;
}
.calendy-main-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--burgundy);
    margin: 0 0 1.15rem;
}
.calendy-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.calendy-month-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--burgundy);
}
.calendy-nav-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(50, 14, 28, 0.14);
    background: #fff;
    color: #5c4d49;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease;
}
.calendy-nav-btn:hover:not(:disabled) {
    background: rgba(50, 14, 28, 0.06);
    color: var(--burgundy);
}
.calendy-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.calendy-weekdays,
.calendy-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}
.calendy-weekdays {
    margin-bottom: 0.35rem;
}
.calendy-weekdays span {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: #9a857c;
    line-height: 1.25;
    padding: 0.35rem 0.1rem;
    white-space: nowrap;
}
.calendy-day {
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #4a3b37;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
}
.calendy-day--empty {
    visibility: hidden;
    pointer-events: none;
}
.calendy-day--muted {
    color: #d2c4bc;
}
.calendy-day--available {
    background: rgba(50, 14, 28, 0.08);
    color: var(--burgundy);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.calendy-day--available:hover {
    background: rgba(50, 14, 28, 0.14);
    transform: scale(1.05);
}
.calendy-day--today::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--burgundy);
}
.calendy-day--selected,
.calendy-day--available.calendy-day--selected {
    background: var(--burgundy);
    color: #fff;
    box-shadow: 0 8px 18px rgba(50, 14, 28, 0.28);
}
.calendy-day--selected.calendy-day--today::after {
    background: #fff;
}
.calendy-tz {
    margin: 1.15rem 0 0;
    font-size: 0.82rem;
    color: #8a736c;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.calendy-times {
    border-inline-start: 1px solid rgba(50, 14, 28, 0.08);
    padding: 1.35rem 1.1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: 560px;
}
.calendy-times[hidden],
.calendy-times-empty[hidden],
.calendy-confirm[hidden] {
    display: none !important;
}
.calendy-times-head {
    margin-bottom: 0.85rem;
}
.calendy-times-date {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--burgundy);
}
.calendy-times-hint {
    margin: 0;
    font-size: 0.78rem;
    color: #8a736c;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.calendy-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #6b8f71;
    display: inline-block;
}
.calendy-times-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    padding-inline-end: 0.15rem;
    flex: 1 1 auto;
    min-height: 0;
}
.calendy-time-btn {
    width: 100%;
    border: 1.5px solid rgba(50, 14, 28, 0.28);
    background: #fff;
    color: var(--burgundy);
    border-radius: 0.45rem;
    padding: 0.7rem 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.calendy-time-btn:hover:not(:disabled) {
    background: rgba(50, 14, 28, 0.05);
}
.calendy-time-btn--picked,
.calendy-time-btn--selected {
    background: rgba(50, 14, 28, 0.08);
    border-color: var(--burgundy);
}
.calendy-time-btn--disabled,
.calendy-time-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: #e2d8d1;
    color: #9a857c;
}
.calendy-confirm {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.55rem;
    padding: 0.85rem 0.75rem 0.35rem;
    border-top: 1px solid rgba(50, 14, 28, 0.1);
    background: linear-gradient(180deg, rgba(50, 14, 28, 0.03), transparent);
    position: sticky;
    bottom: 0;
}
.calendy-confirm-caption {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a736c;
}
.calendy-confirm-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.55rem 0.75rem;
    border: 1.5px solid rgba(50, 14, 28, 0.22);
    background: #fff;
    color: var(--burgundy);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.45rem;
}
.calendy-confirm-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.1rem;
    padding: 0.9rem 1rem;
    background: var(--burgundy) !important;
    border: 1px solid var(--burgundy) !important;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(50, 14, 28, 0.28);
}
.calendy-confirm-btn:hover:not(:disabled) {
    background: #4a1528 !important;
    border-color: #4a1528 !important;
    color: #fff !important;
}
.calendy-confirm-btn:disabled,
.calendy-confirm-btn.is-loading {
    opacity: 0.78;
    cursor: wait;
    pointer-events: none;
}
.calendy-confirm-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: calendyConfirmSpin 0.7s linear infinite;
}
.calendy-confirm-spinner[hidden] {
    display: none !important;
}
@keyframes calendyConfirmSpin {
    to { transform: rotate(360deg); }
}
.calendy-confirm-note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #8a736c;
    text-align: center;
}

.appointment-thanks-section {
    padding: 3rem 0 5rem;
    background:
        radial-gradient(ellipse 70% 50% at 90% 0%, rgba(50, 14, 28, 0.05), transparent 55%),
        linear-gradient(180deg, #f8f2ec 0%, #f3ebe4 48%, #efe5dc 100%);
}
.appointment-thanks {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(50, 14, 28, 0.08);
    box-shadow: 0 18px 48px rgba(50, 14, 28, 0.06);
    padding: 2.75rem 2rem;
    text-align: center;
}
.appointment-thanks-icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: var(--burgundy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1rem;
}
.appointment-thanks-title {
    margin: 0 0 0.55rem;
    color: var(--burgundy);
    font-size: 1.75rem;
}
.appointment-thanks-lead {
    margin: 0 0 1.35rem;
    color: #5c4d49;
    line-height: 1.7;
}
.appointment-thanks-email-hint {
    display: grid;
    gap: 0.35rem;
    text-align: left;
    margin: 0 0 1.5rem;
    padding: 1rem 1.1rem;
    background: rgba(50, 14, 28, 0.05);
    border: 1px solid rgba(50, 14, 28, 0.1);
    color: #5c4d49;
    line-height: 1.65;
}
.appointment-thanks-email-hint strong {
    color: var(--burgundy);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.appointment-thanks-email-hint a {
    color: var(--burgundy);
    text-decoration: underline;
}
.appointment-thanks-card {
    text-align: left;
    border: 1px solid #eadfd7;
    background: #faf6f3;
    padding: 1.25rem 1.2rem;
    margin-bottom: 1.25rem;
}
.appointment-thanks-card h3 {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a736c;
}
.appointment-thanks-dl {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1.25rem;
}
.appointment-thanks-dl dt {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a736c;
}
.appointment-thanks-dl dd {
    margin: 0;
    color: var(--burgundy);
    font-size: 0.98rem;
    line-height: 1.45;
}
.appointment-thanks-dl-full {
    grid-column: 1 / -1;
}
.appointment-thanks-deposit {
    margin: 0 0 1.5rem;
    color: #5c4d49;
    line-height: 1.65;
}
.appointment-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
@media (max-width: 575.98px) {
    .appointment-thanks {
        padding: 2rem 1.15rem;
    }
    .appointment-thanks-dl {
        grid-template-columns: 1fr;
    }
}
.calendy-times-empty {
    padding: 2.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #9a857c;
    gap: 0.65rem;
    border-inline-start: 1px solid rgba(50, 14, 28, 0.08);
}
.calendy-shell:not(.calendy-shell--has-times) .calendy-times-empty {
    display: none;
}
.calendy-times-empty p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 14rem;
    line-height: 1.6;
}
@media (max-width: 991.98px) {
    .calendy-shell,
    .calendy-shell--has-times {
        grid-template-columns: 1fr;
    }
    .calendy-info {
        border-inline-end: none;
        border-bottom: 1px solid rgba(50, 14, 28, 0.08);
    }
    .calendy-times,
    .calendy-times-empty {
        border-inline-start: none;
        border-top: 1px solid rgba(50, 14, 28, 0.08);
        max-height: none;
    }
    .calendy-shell:not(.calendy-shell--has-times) .calendy-times-empty {
        display: flex;
    }
    .appointment-panel-header--row {
        flex-direction: column;
    }
}
@media (max-width: 575.98px) {
    .appointment-panel {
        padding: 1.35rem 1.1rem;
    }
    .calendy-picker {
        padding: 1.15rem 1rem;
    }
    .calendy-day {
        font-size: 0.82rem;
    }
    .calendy-weekdays span {
        font-size: 0.58rem;
        white-space: normal;
    }
}

/* ?? Booking calendar polish overrides ?? */
.calendy-shell {
    border-radius: 1rem;
    box-shadow: 0 18px 48px rgba(50, 14, 28, 0.08);
}
.calendy-picker-hint {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    color: #8a736c;
    line-height: 1.5;
}
.calendy-month-nav {
    padding: 0.35rem 0.25rem;
    border-radius: 999px;
    background: rgba(50, 14, 28, 0.04);
}
.calendy-times-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a736c;
    font-weight: 700;
}
.calendy-times-list {
    gap: 0.55rem;
    max-height: 22rem;
}
.calendy-time-btn {
    border-radius: 0.75rem;
    padding: 0.85rem 0.9rem;
}
.calendy-time-btn--picked,
.calendy-time-btn--selected {
    background: var(--burgundy) !important;
    border-color: var(--burgundy) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(50, 14, 28, 0.22);
}
.calendy-times-empty-card {
    text-align: center;
    max-width: 14rem;
    color: #8a736c;
    margin: 0 auto;
}
.calendy-times-empty-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(50, 14, 28, 0.08);
    color: var(--burgundy);
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
}
.site-map {
    width: 100%;
    margin: 0;
    background: #efe5dc;
}
.site-map-header {
    padding: 3rem 1.25rem 1.35rem;
    text-align: center;
}
.site-map-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a736c;
    font-weight: 700;
}
.site-map-title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    color: var(--burgundy);
    font-weight: 500;
}
.site-map-address {
    margin: 0;
    color: #5c4d49;
    font-size: 0.95rem;
}
.site-map iframe {
    display: block;
    width: 100%;
    height: min(52vh, 420px);
    border: 0;
    filter: grayscale(0.12) contrast(1.02);
}
/* WhatsApp float styles defined earlier in this file */

/* ?? Schedule picker (booking step 2 redesign) ?? */
.sched-shell {
    margin-top: 0.25rem;
    border: 1px solid rgba(50, 14, 28, 0.1);
    background: #fff;
    overflow: hidden;
}
.sched-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, #faf6f3 0%, #fff 100%);
    border-bottom: 1px solid rgba(50, 14, 28, 0.08);
}
.sched-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.sched-meta-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(50, 14, 28, 0.05);
    color: #5c4d49;
    font-size: 0.82rem;
    line-height: 1.3;
}
.sched-meta-key {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8a736c;
}
.sched-meta-summary {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 600;
}
.sched-meta-summary[hidden] { display: none !important; }
.sched-meta-dot { color: #c4b2a8; font-weight: 400; }

.sched-board {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    min-height: 28rem;
}
.sched-shell:not(.sched-shell--has-times) .sched-board {
    grid-template-columns: 1fr;
}
.sched-shell:not(.sched-shell--has-times) .sched-time {
    display: none;
}

.sched-date,
.sched-time {
    padding: 1.35rem 1.35rem 1.5rem;
}
.sched-date {
    border-inline-end: 1px solid rgba(50, 14, 28, 0.08);
}
.sched-time {
    background: #faf7f4;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.sched-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}
.sched-step-num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--burgundy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.sched-section-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1.3;
}
.sched-section-hint {
    margin: 0.2rem 0 0;
    font-size: 0.84rem;
    color: #8a736c;
    line-height: 1.45;
}

.sched-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(50, 14, 28, 0.04);
}
.sched-month-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.01em;
}
.sched-nav-btn {
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--burgundy);
    box-shadow: 0 1px 4px rgba(50, 14, 28, 0.1);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.sched-nav-btn:hover:not(:disabled) {
    background: var(--burgundy);
    color: #fff;
}
.sched-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.sched-weekdays,
.sched-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}
.sched-weekdays {
    margin-bottom: 0.45rem;
}
.sched-weekdays span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9a857c;
    padding: 0.25rem 0;
}

.sched-day,
.calendy-day.sched-day {
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    background: transparent;
    color: #4a3b37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: default;
    padding: 0;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.sched-day-num {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
}
.sched-day--empty,
.calendy-day--empty.sched-day {
    visibility: hidden;
    pointer-events: none;
    border: 0;
}
.sched-day--muted,
.calendy-day--muted.sched-day {
    color: #d2c4bc;
    background: transparent;
}
.sched-day--available,
.calendy-day--available.sched-day {
    background: #fff;
    border-color: rgba(50, 14, 28, 0.14);
    color: var(--burgundy);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(50, 14, 28, 0.04);
}
.sched-day--available::after,
.calendy-day--available.sched-day::after {
    content: "";
    position: absolute;
    bottom: 0.35rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: #6b8f71;
}
.sched-day--available:hover,
.calendy-day--available.sched-day:hover {
    border-color: var(--burgundy);
    background: rgba(50, 14, 28, 0.05);
    transform: translateY(-1px);
}
.sched-day--today .sched-day-num,
.calendy-day--today.sched-day .sched-day-num {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}
.sched-day--selected,
.calendy-day--selected.sched-day,
.calendy-day--available.calendy-day--selected.sched-day {
    background: var(--burgundy) !important;
    border-color: var(--burgundy) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(50, 14, 28, 0.25);
}
.sched-day--selected::after,
.calendy-day--selected.sched-day::after {
    background: #fff !important;
}

.sched-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.1rem;
    font-size: 0.78rem;
    color: #8a736c;
}
.sched-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.sched-legend-swatch {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.2rem;
    display: inline-block;
}
.sched-legend-swatch.is-open {
    background: #fff;
    border: 1px solid rgba(50, 14, 28, 0.2);
    box-shadow: inset 0 -2px 0 #6b8f71;
}
.sched-legend-swatch.is-closed {
    background: transparent;
    border: 1px solid #e2d8d1;
}
.sched-tz {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: #9a857c;
}

.sched-times-empty,
.sched-times-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.sched-times-empty[hidden],
.sched-times-panel[hidden],
.sched-confirm[hidden] {
    display: none !important;
}
.sched-empty {
    margin: auto;
    text-align: center;
    max-width: 14rem;
    color: #8a736c;
}
.sched-empty-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px dashed rgba(50, 14, 28, 0.25);
    color: var(--burgundy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.sched-empty p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.sched-times-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    overflow-y: auto;
    padding-right: 0.15rem;
    max-height: 24rem;
}
.sched-time-btn,
.calendy-time-btn.sched-time-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(50, 14, 28, 0.14);
    background: #fff;
    color: var(--burgundy);
    border-radius: 0.85rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.sched-time-label {
    font-size: 1rem;
    font-weight: 700;
}
.sched-time-action {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8a736c;
}
.sched-time-btn:hover:not(:disabled),
.calendy-time-btn.sched-time-btn:hover:not(:disabled) {
    border-color: var(--burgundy);
    background: #fff;
    box-shadow: 0 8px 18px rgba(50, 14, 28, 0.08);
}
.sched-time-btn.is-picked,
.sched-time-btn.calendy-time-btn--picked,
.calendy-time-btn.sched-time-btn.is-picked,
.calendy-time-btn.sched-time-btn.calendy-time-btn--picked {
    background: var(--burgundy) !important;
    border-color: var(--burgundy) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(50, 14, 28, 0.22);
}
.sched-time-btn.is-picked .sched-time-action,
.sched-time-btn.calendy-time-btn--picked .sched-time-action {
    color: rgba(255, 255, 255, 0.8);
}
.sched-time-btn:disabled,
.calendy-time-btn.sched-time-btn:disabled,
.calendy-time-btn--disabled.sched-time-btn {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
    box-shadow: none;
}

.sched-confirm {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1.25rem;
    align-items: center;
    padding: 1rem 1.25rem 1.15rem;
    border-top: 1px solid rgba(50, 14, 28, 0.1);
    background: linear-gradient(180deg, #fff 0%, #faf6f3 100%);
}
.sched-confirm-copy { min-width: 0; }
.sched-confirm-caption {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8a736c;
}
.sched-confirm-preview {
    margin: 0;
    color: var(--burgundy);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}
.sched-confirm-btn,
.calendy-confirm-btn.sched-confirm-btn {
    min-width: 15rem;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.25rem;
    background: var(--burgundy) !important;
    border: 1px solid var(--burgundy) !important;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(50, 14, 28, 0.24);
}
.sched-confirm-btn:hover:not(:disabled) {
    background: #4a1528 !important;
    border-color: #4a1528 !important;
}
.sched-confirm-note {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.78rem;
    color: #8a736c;
    line-height: 1.45;
}

@media (max-width: 899px) {
    .sched-board {
        grid-template-columns: 1fr !important;
    }
    .sched-shell:not(.sched-shell--has-times) .sched-time {
        display: flex;
    }
    .sched-date {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(50, 14, 28, 0.08);
    }
    .sched-confirm {
        grid-template-columns: 1fr;
    }
    .sched-confirm-btn,
    .calendy-confirm-btn.sched-confirm-btn {
        width: 100%;
        min-width: 0;
    }
    .sched-times-list {
        max-height: none;
    }
}

@media (max-width: 575.98px) {
    .sched-meta,
    .sched-date,
    .sched-time,
    .sched-confirm {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .sched-weekdays span {
        font-size: 0.62rem;
    }
    .sched-day-num {
        font-size: 0.88rem;
    }
}

/* ?? Visit us (home + contact) ?? */
.visit-us {
    width: 100%;
    margin: 0;
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(50, 14, 28, 0.06), transparent 55%),
        linear-gradient(180deg, #f7f1ea 0%, #efe5dc 100%);
}
.visit-us-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.25fr);
    gap: 1.5rem;
    align-items: stretch;
}
.visit-us-card {
    background: #fff;
    border: 1px solid rgba(50, 14, 28, 0.08);
    box-shadow: 0 22px 50px rgba(50, 14, 28, 0.08);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
}
.visit-us-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8a736c;
}
.visit-us-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1.15;
}
.visit-us-lead {
    margin: 0 0 1.75rem;
    color: #5c4d49;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 28ch;
}
.visit-us-details {
    margin: 0 0 1.75rem;
    display: grid;
    gap: 1rem;
}
.visit-us-row {
    display: grid;
    gap: 0.25rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(50, 14, 28, 0.08);
}
.visit-us-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.visit-us-row dt {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8a736c;
}
.visit-us-row dd {
    margin: 0;
    color: var(--burgundy);
    font-size: 1rem;
    line-height: 1.5;
}
.visit-us-row a {
    color: inherit;
    text-decoration: none;
}
.visit-us-row a:hover {
    text-decoration: underline;
}
.visit-us-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.visit-us-btn {
    min-height: 2.85rem;
    padding-inline: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.visit-us-map {
    position: relative;
    min-height: 22rem;
    border: 1px solid rgba(50, 14, 28, 0.08);
    box-shadow: 0 22px 50px rgba(50, 14, 28, 0.08);
    overflow: hidden;
    background: #e8dfd6;
}
.visit-us-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 26rem;
    border: 0;
    filter: grayscale(0.08) contrast(1.02);
}
@media (max-width: 899px) {
    .visit-us {
        padding: 3.25rem 0;
    }
    .visit-us-grid {
        grid-template-columns: 1fr;
    }
    .visit-us-map iframe {
        min-height: 20rem;
    }
}
