/* ============================================
   V-Pro Beauty — Luxury Dark CSS
   Mobile-first · Cormorant Garamond + DM Sans
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Backgrounds */
    --bg-dark:      #080808;
    --bg-card:      #141414;
    --bg-section:   #0e0e0e;
    --bg-section2:  #111111;
    --bg-overlay:   rgba(8, 8, 8, 0.96);

    /* Gold palette */
    --gold:         #C9A84C;
    --gold-mid:     #D4A853;
    --gold-light:   #e8c06a;
    --gold-dark:    #9e7e36;
    --gold-subtle:  rgba(201, 168, 76, 0.08);
    --gold-border:  rgba(201, 168, 76, 0.22);
    --gold-border2: rgba(201, 168, 76, 0.45);

    /* Text */
    --text-light:   #f2f0eb;
    --text-dim:     #c8c4ba;
    --text-muted:   #706d65;
    --text-faint:   #3a3835;

    /* Borders */
    --border:       #1e1e1e;
    --border-mid:   #2a2a2a;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Layout */
    --container:    1140px;
    --container-pad: 1.25rem;
    --header-h:     64px;

    /* Effects */
    --radius:       3px;
    --radius-lg:    6px;
    --transition:   0.3s ease;
    --shadow-deep:  0 8px 40px rgba(0, 0, 0, 0.7);
    --shadow-gold:  0 4px 24px rgba(201, 168, 76, 0.15);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/* ---- Ornament / divider ---- */
.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-border));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold-border)); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background-color: var(--gold);
    color: #08080a;
}
.btn--gold:hover {
    background-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    border: 1px solid var(--gold-border2);
    color: var(--gold);
    background: transparent;
}
.btn--outline:hover {
    background-color: var(--gold-subtle);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn--lg {
    padding: 1.1rem 2.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
}

/* ---- Section common ---- */
.section { padding-block: 6rem; }
.section--dark { background-color: var(--bg-section); }

.section__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Gold ornament line before label */
.section__label::before {
    content: '— ';
    color: var(--gold-dark);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 6.5vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}
.section__title em {
    font-style: italic;
    color: var(--gold);
}

/* ===================================
   HEADER / NAV
   =================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    /* Elevated above carousel (z-index 0) but below nav__menu (9000) */
    z-index: 500;
    height: var(--header-h);
    border-bottom: 1px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition);
    /* IMPORTANT: backdrop-filter is on ::before, NOT on .header itself.
       backdrop-filter on .header creates a stacking context that traps
       position:fixed children (nav__menu) inside it. */
}
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
.header.scrolled {
    border-bottom-color: var(--gold-border);
    box-shadow: 0 1px 32px rgba(0,0,0,0.6);
}

.nav {
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav__logo-img {
    height: 34px;
    width: auto;
}
.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nav__logo-text em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

/* Hamburger */
.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 6px;
    z-index: 200;
}
.nav__toggle-bar {
    display: block;
    height: 1px;
    background-color: var(--text-light);
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}
.nav__toggle-bar:last-child { width: 70%; margin-left: auto; }
.nav__toggle.is-active .nav__toggle-bar:last-child { width: 100%; margin-left: 0; }
.nav__toggle.is-active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav__toggle.is-active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav__menu {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    /* Must be > header (500) and carousel, below grain (9999) */
    z-index: 9000;
    overflow-y: auto;
}
.nav__menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.nav__menu.is-open { transform: translateX(0); }

.nav__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.75rem;
    color: var(--text-muted);
    line-height: 1;
    transition: color var(--transition);
    font-family: var(--font-heading);
    font-weight: 300;
}
.nav__close:hover { color: var(--gold); }

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.nav__link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    padding: 0.4rem 1rem;
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background-color: var(--gold);
    transition: width var(--transition), left var(--transition);
}
.nav__link:hover { color: var(--text-light); }
.nav__link:hover::after { width: 50%; left: 25%; }
.nav__link.active { color: var(--gold); }

.nav__cta-desktop { display: none; }

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Decorative geometric frame */
.hero::before {
    content: '';
    position: absolute;
    top: var(--header-h); right: 0;
    bottom: 0; left: 55%;
    border-left: 1px solid var(--gold-border);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: calc(var(--header-h) + 3rem);
    right: 2rem;
    width: 60px; height: 60px;
    border-top: 1px solid var(--gold-border2);
    border-right: 1px solid var(--gold-border2);
    pointer-events: none;
}

.hero__bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(201, 168, 76, 0.04) 0%, transparent 45%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(8,8,8,1) 0%,
        rgba(8,8,8,0.9) 50%,
        rgba(8,8,8,0.6) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: var(--header-h);
    text-align: center;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.hero__tagline::before,
.hero__tagline::after {
    content: '';
    width: 2rem; height: 1px;
    background-color: var(--gold-border2);
}

.hero__name {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 14vw, 8rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero__name em {
    display: block;
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.hero__services {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.hero__scroll-hint span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold-border2));
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5) translateY(-8px); }
    60% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ===================================
   ABOUT
   =================================== */
.about { background-color: var(--bg-section2); }

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about__image-wrap { display: flex; justify-content: center; }

.about__image-placeholder {
    width: 210px;
    height: 270px;
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-border2);
    font-size: 3.5rem;
    position: relative;
}
/* Corner ornaments on placeholder */
.about__image-placeholder::before,
.about__image-placeholder::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
}
.about__image-placeholder::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}
.about__image-placeholder::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.about__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about__text {
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    line-height: 1.85;
    font-size: 0.95rem;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-left: 0;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.about__highlight i {
    font-size: 1rem;
    color: var(--gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.85;
}
.about__highlight strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}
.about__highlight span {
    font-size: 0.775rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ===================================
   SERVICES
   =================================== */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: var(--border-mid);
    border: 1px solid var(--border-mid);
}

.service-card {
    background-color: var(--bg-section);
    padding: 2rem 1.75rem;
    transition: background-color var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    transition: width 0.5s ease;
}
.service-card:hover { background-color: #101010; }
.service-card:hover::before { width: 100%; }

.service-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 1rem;
}
.service-card__icon i {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.9;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.service-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-card__price {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===================================
   PRICING / ACCORDION
   =================================== */
.pricing { background-color: var(--bg-dark); }

.accordion {
    border-bottom: 1px solid var(--border-mid);
    overflow: hidden;
}
.accordion:first-of-type { border-top: 1px solid var(--border-mid); }

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background-color: transparent;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    transition: color var(--transition);
}
.accordion__trigger:hover { color: var(--gold-mid); }
.accordion__trigger[aria-expanded="true"] { color: var(--gold); }

.accordion__trigger-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gold-border);
}
.accordion__trigger-icon i { color: var(--gold); font-size: 0.8rem; }
.accordion__trigger[aria-expanded="true"] .accordion__trigger-icon {
    background-color: var(--gold-subtle);
    border-color: var(--gold-border2);
}

.accordion__trigger > span:nth-child(2) { flex: 1; }

.accordion__arrow {
    color: var(--text-muted);
    font-size: 0.65rem;
    transition: transform var(--transition), color var(--transition);
    flex-shrink: 0;
}
.accordion__trigger[aria-expanded="true"] .accordion__arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.accordion__body {
    overflow: hidden;
    max-height: 1200px;
    transition: max-height 0.45s ease;
}
.accordion__body--closed { max-height: 0; }

/* Price list */
.price-list { padding: 0 0 1rem; }

.price-list__item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.5rem 1.25rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}
.price-list__item:last-child { border-bottom: none; }

.price-list__name {
    font-size: 0.875rem;
    color: var(--text-dim);
    font-weight: 300;
}

.price-list__meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.04em;
}
.price-list__meta i { font-size: 0.65rem; opacity: 0.7; }

.price-list__price {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gold-mid);
    white-space: nowrap;
    text-align: right;
    letter-spacing: 0.04em;
}

/* ===================================
   GALLERY
   =================================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 2.5rem;
    background-color: var(--border-mid);
}

.gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-card);
    position: relative;
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.88) saturate(0.9);
}
.gallery__item:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
}

/* Hover overlay */
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }

/* Empty placeholder (when image missing / before loading) */
.gallery__item:not(:has(img[src])),
.gallery__item img[src="assets/images/gallery-1.jpg"]:not([complete]) {
    background-color: var(--bg-card);
}

.gallery__cta { text-align: center; }

/* ===================================
   BOOKING CTA BANNER
   =================================== */
.booking-cta {
    position: relative;
    padding-block: 6rem;
    background-color: var(--bg-card);
    overflow: hidden;
    text-align: center;
}
.booking-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%, var(--gold-border) 30%,
        var(--gold-border) 70%, transparent 100%);
    pointer-events: none;
}

.booking-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.booking-cta__inner { position: relative; z-index: 1; }

.booking-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 7vw, 4rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.booking-cta__title em { font-style: italic; color: var(--gold); }

.booking-cta__text {
    color: var(--text-muted);
    max-width: 420px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
}

/* ===================================
   CONTACT
   =================================== */
.contact { background-color: var(--bg-section2); }

.contact__grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.contact__item:last-child { border-bottom: none; padding-bottom: 0; }

.contact__item i {
    font-size: 1rem;
    color: var(--gold);
    width: 20px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
    opacity: 0.85;
}
.contact__item strong {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.contact__item span,
.contact__item a {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 300;
}
.contact__item a { transition: color var(--transition); }
.contact__item a:hover { color: var(--gold); }

.contact__booking {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    position: relative;
}
/* Corner decorations */
.contact__booking::before,
.contact__booking::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
}
.contact__booking::before { top: -1px; left: -1px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.contact__booking::after  { bottom: -1px; right: -1px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.contact__booking p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.8;
    max-width: 260px;
}

.contact__map {
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
}
.contact__map iframe {
    display: block;
    width: 100%;
    height: 260px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-mid);
    padding-block: 2.5rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer__logo em { font-style: italic; color: var(--gold); font-weight: 300; }

.footer__nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__nav a {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__copy {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.footer__privacy {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    transition: color var(--transition);
}
.footer__privacy:hover { color: var(--gold); }

.footer__socials {
    display: flex;
    gap: 0.75rem;
}
.footer__socials a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: border-color var(--transition), color var(--transition);
}
.footer__socials a:hover { border-color: var(--gold-border2); color: var(--gold); }

/* ===================================
   TABLET  (≥ 768px)
   =================================== */
@media (min-width: 768px) {
    :root { --container-pad: 2.5rem; }

    .about__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
    }
    .about__image-wrap { flex-shrink: 0; }
    .about__image-placeholder {
        width: 280px;
        height: 350px;
    }

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

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

    .contact__grid {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact__info { flex: 1; }
    .contact__booking { flex: 1; min-height: 260px; }
    .contact__map iframe { height: 400px; }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .price-list__item { grid-template-columns: 1fr auto 90px; }
}

/* ===================================
   DESKTOP  (≥ 1024px)
   =================================== */
@media (min-width: 1024px) {
    :root {
        --container-pad: 3.5rem;
        --header-h: 72px;
    }

    .nav__toggle { display: none; }
    .nav__cta-desktop { display: inline-flex; }

    .nav__menu {
        position: static;
        transform: none !important;
        background: none;
        flex-direction: row;
        gap: 0;
        overflow: visible;
    }
    .nav__menu::before { display: none; }
    .nav__close { display: none; }
    .nav__list {
        flex-direction: row;
        gap: 0;
    }
    .nav__link {
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.5rem 1rem;
        color: var(--text-muted);
        font-size: 0.7rem;
    }
    .nav__link:hover { color: var(--gold-mid); }
    .nav__link::after { bottom: -2px; }
    .nav__cta { display: none; }

    .hero__content { text-align: left; }
    .hero__tagline { justify-content: flex-start; }

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

    .gallery__grid { gap: 3px; }
    .gallery__item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* ===================================
   ACCESSIBILITY / UTILITIES
   =================================== */
:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ===================================
   SERVICE CARDS AS LINKS
   =================================== */
a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===================================
   PAGE HERO (service pages)
   =================================== */
.page-hero {
    position: relative;
    padding-top: calc(var(--header-h) + 5rem);
    padding-bottom: 5rem;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.page-hero__bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 45%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 6.5rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.page-hero__title em {
    font-style: italic;
    color: var(--gold);
}

.page-hero__desc {
    max-width: 520px;
    margin-inline: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--gold); }

/* ===================================
   PRICING — page variant (no accordion)
   =================================== */
.price-list--page {
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--border-mid);
}
.price-list--page .price-list__item {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-cta {
    text-align: center;
    padding-top: 1rem;
}

/* ===================================
   SERVICE GALLERY (full width)
   =================================== */
.svc-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 2rem;
}

.svc-gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-card);
    cursor: zoom-in;
}
.svc-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.9) saturate(0.9);
    pointer-events: none;
}
.svc-gallery__item:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1);
}

@media (min-width: 600px) {
    .svc-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .svc-gallery { grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .page-hero__inner { text-align: left; }
    .breadcrumb { justify-content: flex-start; }
    .page-hero__desc { margin-inline: 0; }
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(4, 4, 4, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: min(90vw, 1000px);
    max-height: 88vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
    transition: opacity 0.2s ease;
}
.lightbox__img.is-loading { opacity: 0; }

.lightbox__close {
    position: absolute;
    top: 1.5rem; right: 1.75rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1;
    transition: color var(--transition);
    z-index: 10;
    cursor: pointer;
}
.lightbox__close:hover { color: var(--gold); }

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 200;
    color: var(--text-muted);
    line-height: 1;
    padding: 1rem;
    transition: color var(--transition);
    cursor: pointer;
    z-index: 10;
    user-select: none;
}
.lightbox__prev { left: 0.5rem; }
.lightbox__next { right: 0.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--gold); }

@media (min-width: 768px) {
    .lightbox__prev { left: 1.5rem; }
    .lightbox__next { right: 1.5rem; }
}

/* ===================================
   HERO CAROUSEL
   =================================== */
.carousel {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.carousel__track {
    display: flex;
    height: 100%;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* ---- Slide ---- */
.carousel__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
}

.carousel__slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 6s ease;
    will-change: transform;
}
.carousel__slide.is-active .carousel__slide-bg {
    transform: scale(1);
}

.carousel__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 4, 4, 0.92) 0%,
        rgba(4, 4, 4, 0.55) 45%,
        rgba(4, 4, 4, 0.2)  100%
    );
}

/* ---- Slide content ---- */
.carousel__slide-content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-h) + 2rem);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.carousel__slide.is-active .carousel__slide-content {
    opacity: 1;
    transform: none;
}

.carousel__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.carousel__label::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background-color: var(--gold-border2);
    flex-shrink: 0;
}

.carousel__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 14vw, 7rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.carousel__title em {
    font-style: italic;
    color: var(--gold);
}

.carousel__desc {
    font-size: 0.875rem;
    color: var(--text-dim);
    max-width: 360px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.carousel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* ---- Prev / Next buttons ---- */
.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 200;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(8,8,8,0.35);
    backdrop-filter: blur(6px);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    line-height: 1;
    cursor: pointer;
    user-select: none;
}
.carousel__btn:hover {
    color: var(--gold);
    border-color: var(--gold-border2);
    background: rgba(8,8,8,0.6);
}
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }

/* ---- Dots ---- */
.carousel__dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.carousel__dot {
    width: 24px;
    height: 2px;
    background-color: rgba(255,255,255,0.25);
    transition: background-color var(--transition), width var(--transition);
    cursor: pointer;
}
.carousel__dot--active {
    background-color: var(--gold);
    width: 40px;
}

@media (min-width: 768px) {
    .carousel__btn--prev { left: 1.5rem; }
    .carousel__btn--next { right: 1.5rem; }
    .carousel__slide { align-items: center; padding-bottom: 0; }
    .carousel__slide-content { padding-top: var(--header-h); }
}
@media (min-width: 1024px) {
    .carousel__slide-content { text-align: left; }
    .carousel__label { justify-content: flex-start; }
    .carousel__btn { width: 52px; height: 52px; }
}

/* ===================================
   FOOTER CONTACT (address/phone/email)
   =================================== */
.footer__inner {
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.footer__contact a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer__contact a:hover { color: var(--gold); }

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--gold);
    padding: 0.9rem 1.25rem;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    max-height: 33vh;
    overflow: hidden;
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-banner__text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    min-width: 180px;
}
.cookie-banner__link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}
.cookie-banner__link:hover { color: var(--gold-light); }
.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.cookie-banner__btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}
.cookie-banner__reject {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: color var(--transition);
    padding: 0.45rem 0;
}
.cookie-banner__reject:hover { color: var(--text-light); }

/* ===================================
   PRIVACY PAGE
   =================================== */
.privacy__content {
    max-width: 780px;
    margin-inline: auto;
    padding-block: 3rem;
}

.privacy__block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-mid);
}
.privacy__block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy__heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}

.privacy__subheading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-mid);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy__text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.9rem;
}
.privacy__text--meta {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.75;
}

.privacy__link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.privacy__link:hover { color: var(--gold-light); }

.privacy__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.privacy__list li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding-left: 1rem;
    position: relative;
}
.privacy__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.privacy__list--rights {
    gap: 0.75rem;
}
.privacy__list--rights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 0;
}
.privacy__list--rights li::before { display: none; }
.privacy__list--rights li i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.privacy__card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-left: 2px solid var(--gold);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.privacy__table-wrap {
    overflow-x: auto;
}
.privacy__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.privacy__table th {
    text-align: left;
    color: var(--gold-mid);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border-mid);
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    text-transform: uppercase;
}
.privacy__table td {
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border-mid);
    line-height: 1.5;
}
.privacy__table tr:last-child td { border-bottom: none; }
