/* ================================================
   GENTAGLOW – style.css
   ================================================ */

/* ── TOKENS ──────────────────────────────────── */
:root {
    --cream:      #FAF7F2;
    --champagne:  #F5EED8;
    --gold:       #C9A96E;
    --gold-l:     #E8D5A3;
    --gold-d:     #8B6530;
    --rose:       #F0C8D4;
    --rose-d:     #D4899A;
    --white:      #FFFFFF;
    --dark:       #1A120A;
    --mid:        #6B5744;
    --light:      #A09080;
    --glass:      rgba(255,255,255,0.55);
    --glass-b:    rgba(201,169,110,0.18);
    --font-script:'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans:  'Montserrat', sans-serif;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --radius:     20px;
    --radius-lg:  32px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--font-sans);
    font-weight: 300;
    overflow-x: hidden;
}

::selection {
    background: rgba(201,169,110,0.25);
}

/* ── CURSOR ──────────────────────────────────── */
#cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9990;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

#cursor-ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,169,110,0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9989;
    transform: translate(-50%, -50%);
    transition: all 0.15s;
}

/* ── NAVIGATION ──────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s var(--ease), transform 0.35s var(--ease);
}

nav.nav-hidden {
    transform: translateY(-100%);
}

nav.scrolled {
    background: rgba(250,247,242,0.92);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding: 12px 48px;
    border-bottom: 1px solid rgba(201,169,110,0.12);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--gold-d);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-logo-item a::after {
    display: none;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
    color: white !important;
    padding: 10px 28px;
    border-radius: 99px;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(139,101,48,0.28);
    white-space: nowrap;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139,101,48,0.4);
}

/* ── HERO ────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(155deg, #FAF7F2 0%, #F5EED8 45%, #FAF0F3 100%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    pointer-events: none;
}

.hero-location {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(80px, 12vw, 150px);
    color: var(--gold-d);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0;
    filter: drop-shadow(0 4px 40px rgba(139,101,48,0.1));
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    font-style: italic;
    color: var(--mid);
    margin-top: 12px;
    margin-bottom: 52px;
    opacity: 0;
    letter-spacing: 0.05em;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 52px;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    color: white;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 99px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 40px rgba(139,101,48,0.28);
    opacity: 0;
    pointer-events: all;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(139,101,48,0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero-scroll span {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--light);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1;   }
}

/* ── SHARED SECTION STYLES ───────────────────── */
section {
    padding: 64px 56px;
    scroll-margin-top: 100px;
}

.eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(48px, 6vw, 90px);
    color: var(--gold-d);
    line-height: 1.05;
    margin-bottom: 24px;
}

.section-lead {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: #000000;
    line-height: 1.8;
    max-width: 560px;
    text-align: center;
    margin: 0 auto;
}

#about .section-lead {
    text-align: center;
    margin: 0 auto 8px;
    max-width: none;
}

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

#about .gold-divider {
    margin: 0 auto 24px;
}

.gold-divider {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
}

/* Center divider for centered sections */
#treatments .gold-divider,
#gallery .gold-divider,
#prices .gold-divider,
#reviews .gold-divider,
#booking .gold-divider {
    margin: 0 auto 24px;
}

/* ── ABOUT ───────────────────────────────────── */
#about {
    background: var(--white);
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: -48px;
}

.about-features-wrapper {
    width: 100%;
    margin-top: -35px;
}

.about-img-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139,101,48,0.15);
    border: 4px solid rgba(201,169,110,0.25);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s var(--ease);
}

.about-img:hover {
    transform: scale(1.03);
}

.about-name-card {
    text-align: center;
    padding: 12px 20px;
    background: var(--cream);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius);
    width: 280px;
}

.about-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--gold-d);
    margin-bottom: 4px;
}

.about-role {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light);
}

.about-right {
    padding-top: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-right .eyebrow {
    text-align: center;
}

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

.about-right .gold-divider {
    margin: 0 auto 24px;
}

.about-right .about-extra {
    text-align: center;
}

.about-extra {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    color: var(--mid);
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
    margin-bottom: 36px;
}

.about-feature {
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid rgba(201,169,110,0.12);
    transition: all 0.35s var(--ease);
    text-align: left;
}

.about-feature:hover {
    border-color: rgba(201,169,110,0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139,101,48,0.08);
}

.feature-icon {
    display: none;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 12px;
    color: var(--light);
    line-height: 1.5;
}

.about-collab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: var(--cream);
    border: 1px solid rgba(201,169,110,0.2);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.about-collab:hover {
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139,101,48,0.1);
}

.about-collab-title {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
}

.about-collab-brands {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-collab-logo {
    height: 92px;
    width: auto;
    object-fit: contain;
}

.about-collab-logo-gg {
    height: 147px;
}

.about-collab-x {
    font-size: 14px;
    color: var(--gold-d);
}

.about-collab-services {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #000000;
    font-weight: 400;
}

.about-collab-divider {
    color: rgba(201,169,110,0.5);
}

.feature-desc {
    font-size: 12px;
    color: var(--light);
    line-height: 1.5;
}

/* ── Treatments ────────────────────────────────── */
#treatments {
    background: linear-gradient(155deg, var(--cream), var(--champagne));
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 64px auto 0;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-b);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(139,101,48,0.12);
    border-color: rgba(201,169,110,0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    display: none;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(-6deg);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13px;
    color: var(--light);
    line-height: 1.7;
}

.service-price {
    margin-top: 20px;
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--gold-d);
    font-style: italic;
}

/* ── GALLERY ─────────────────────────────────── */
#gallery {
    background: var(--white);
    text-align: center;
}

.gallery-grid {
    columns: 3;
    column-gap: 14px;
    max-width: 1100px;
    margin: 64px auto 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s var(--ease);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(139,101,48,0.15);
}

.gallery-placeholder {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

.gallery-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-script);
    font-size: 32px;
    color: rgba(139,101,48,0.25);
    pointer-events: none;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139,101,48,0.7), transparent);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    border-radius: var(--radius);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-style: italic;
    color: white;
    font-size: 15px;
}

/* Gallery placeholder colors */
.gp1 { background: linear-gradient(135deg, #F5EED8, #E8D5A3); height: 280px; }
.gp2 { background: linear-gradient(135deg, #F0C8D4, #D4899A); height: 220px; }
.gp3 { background: linear-gradient(135deg, #E8D5C0, #C9A96E); height: 320px; }
.gp4 { background: linear-gradient(135deg, #FAF0F3, #F0C8D4); height: 240px; }
.gp5 { background: linear-gradient(135deg, #F5EED8, #FAF0F3); height: 300px; }
.gp6 { background: linear-gradient(135deg, #E8D5A3, #C9A96E); height: 200px; }
.gp7 { background: linear-gradient(135deg, #D4899A, #F0C8D4); height: 260px; }
.gp8 { background: linear-gradient(135deg, #C9A96E, #E8D5A3); height: 340px; }
.gp9 { background: linear-gradient(135deg, #F0C8D4, #FAF7F2); height: 220px; }

/* ── PRICES ──────────────────────────────────── */
#prices {
    background: linear-gradient(155deg, var(--champagne), var(--cream));
    text-align: center;
    padding: 64px 56px;
}

#prices .eyebrow,
#prices .section-title,
#prices .gold-divider {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricelist-wrapper {
    max-width: 680px;
    margin: 40px auto 0;
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    border: 1px solid rgba(201,169,110,0.2);
    box-shadow: 0 12px 50px rgba(139,101,48,0.07);
}

.pricelist-group {
    margin-bottom: 4px;
}

.pricelist-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(201,169,110,0.1);
    flex-wrap: wrap;
}

.pricelist-item:last-child {
    border-bottom: none;
}

.pricelist-name {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    white-space: normal;
    flex: 1;
}

.pricelist-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201,169,110,0.4);
    margin-bottom: 4px;
}

.pricelist-price {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--gold-d);
    white-space: nowrap;
}

.pricelist-divider {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    padding: 12px 0 10px;
}

.price-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ── REVIEWS ─────────────────────────────────── */
#reviews {
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.reviews-track-wrapper {
    overflow: hidden;
    margin: 0 -56px;
}

.reviews-track {
    display: flex;
    gap: 22px;
    margin-top: 64px;
    animation: reviewsScroll 35s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.review-card {
    background: var(--cream);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    width: 360px;
    flex-shrink: 0;
    text-align: left;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 16px;
    font-style: italic;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-d);
    font-weight: 500;
}

/* ── BOOKING ─────────────────────────────────── */
#booking {
    background: linear-gradient(155deg, var(--cream), var(--champagne));
    text-align: center;
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 48px 0;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 99px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.35s var(--ease);
}

.btn-whatsapp {
    background: var(--champagne);
    color: var(--gold-d);
    box-shadow: 0 8px 30px rgba(139,101,48,0.15);
}

.btn-whatsapp:hover { transform: translateY(-3px); }

.btn-instagram {
    background: var(--gold-d);
    color: var(--cream);
}

.btn-instagram:hover { transform: translateY(-3px); }

.btn-phone {
    background: var(--dark);
    color: var(--gold-l);
    box-shadow: 0 8px 30px rgba(26,18,10,0.28);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26,18,10,0.4);
}

.booking-form {
    background: var(--white);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-lg);
    padding: 52px;
    margin-top: 48px;
    text-align: left;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 32px;
    font-weight: 400;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--light);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 20px;
    border: 1.5px solid rgba(201,169,110,0.2);
    border-radius: 14px;
    background: var(--cream);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
    color: white;
    border: none;
    border-radius: 99px;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    box-shadow: 0 8px 30px rgba(139,101,48,0.22);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(139,101,48,0.32);
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--champagne), var(--rose));
    border-radius: var(--radius-lg);
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,169,110,0.2);
}

.map-placeholder span {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--light);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
    background: var(--dark);
    padding: 72px 56px 36px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 60px;
    color: var(--gold-l);
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,0.35);
    margin-bottom: 44px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201,169,110,0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-l);
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
    transform: translateY(-3px);
}

.footer-address {
    margin-bottom: 20px;
}

.footer-address a {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address a:hover {
    color: var(--gold-l);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-l);
}

.footer-links span {
    color: rgba(255,255,255,0.2);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 32px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
}

.footer-link {
    color: rgba(255,255,255,0.35);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold-l);
}

/* ── LIGHTBOX ────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,6,3,0.96);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s;
    background: none;
    border: none;
}

.lightbox-close:hover {
    opacity: 1;
}

.hero-logo-img {
    height: clamp(200x, 18vw, 300px);
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 40px rgba(139,101,48,0.15));
    opacity: 1;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-left {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.nav-logo-left:hover {
    opacity: 0.8;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease);
}

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

@media (max-width: 600px) {
    .pricelist-wrapper {
        padding: 36px 24px;
    }

    .pricelist-item {
        flex-direction: column;
        gap: 2px;
    }

    .pricelist-dots {
        display: none;
    }

    .pricelist-name {
        font-size: 12px;
    }

    .pricelist-price {
        font-size: 15px;
        color: var(--gold-d);
    }
}

.booking-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border: 1px solid rgba(201,169,110,0.3);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 32px auto 0;
    max-width: 480px;
    text-align: left;
}

.booking-notice-icon {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-notice p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-style: italic;
    color: var(--mid);
    line-height: 1.6;
}

.booking-notice strong {
    color: var(--gold-d);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left {
        position: static;
    }

    .about-img {
        height: 360px;
    }
}