/* ===== VARIABLES ===== */
:root {
    --gold:        #a88757;
    --gold-light:  #c4a47a;
    --gold-pale:   #f5ede0;
    --dark:        #2c2c2c;
    --text:        #4a4a4a;
    --text-light:  #7a7a7a;
    --white:       #ffffff;
    --bg:          #ffffff;
    --bg-warm:     #faf8f5;
    --bg-section:  #f5f1ec;
    --border:      #e8dfd3;
    --border-light:#f0ebe4;
    --navy:        #1e2d40;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --transition:   0.3s ease;
    --radius:       10px;
    --radius-lg:    16px;
    --shadow-sm:    0 2px 12px rgba(44,44,44,.07);
    --shadow-md:    0 8px 32px rgba(44,44,44,.11);
    --shadow-lg:    0 20px 60px rgba(44,44,44,.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background-color: #1c1c1c; overflow-x: clip; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; z-index: 1; background-color: var(--bg); }
.section-warm { background: var(--bg-warm); }
.section-alt  { background: var(--bg-section); }
.text-center  { text-align: center; }
.mt-3 { margin-top: 1rem; }

/* ===== TYPOGRAPHY ===== */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}
.section-label::before,
.section-label::after {
    content: '—';
    margin: 0 .5rem;
    opacity: .5;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.25rem auto;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 4px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn-gold:hover {
    background: #8f6f44;
    border-color: #8f6f44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168,135,87,.3);
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}
.btn-nav {
    background: var(--gold);
    color: var(--white);
    padding: .55rem 1.3rem;
    font-size: .85rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold);
}
.btn-nav:hover { background: #8f6f44; border-color: #8f6f44; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; border-radius: 4px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
    transition: background .35s ease, box-shadow .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(44,44,44,.1);
}

/* Navbar always has white background */
.nav-container {
    display: flex;
    align-items: center;
    position: relative;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--dark);
    font-weight: 400;
    transition: color .3s;
}
.logo-text strong { color: var(--gold); font-weight: 700; }
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .15rem;
    white-space: nowrap;
}
.nav-link {
    display: block;
    padding: .45rem .85rem;
    color: var(--text);
    font-size: .875rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: .02em;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link.active { color: var(--gold) !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex; align-items: center;
    padding: .45rem .85rem;
    color: var(--text);
    font-size: .875rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    background: none; border: none; cursor: pointer;
    font-family: inherit;
    letter-spacing: .02em;
}
.nav-dropdown-toggle:hover { color: var(--gold) !important; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: .4rem 0;
    z-index: 100;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
    display: block;
    padding: .55rem 1.1rem;
    font-size: .865rem;
    color: var(--text);
    transition: var(--transition);
}
.nav-dropdown-item:hover { background: var(--bg-warm); color: var(--gold); }
.nav-dropdown-item.active { color: var(--gold); font-weight: 600; }

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c1c1c;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}
.hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1c1c1c 0%, #2a2218 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.50) 0%, rgba(0,0,0,.75) 100%);
    pointer-events: none;
    z-index: 0;
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(168,135,87,0.11) 1px, transparent 1px);
    background-size: 30px 30px;
}
.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 160px 24px 120px;
    width: 100%;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold-light);
    display: block;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .03em;
    text-transform: none;
    margin-bottom: 1.6rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-title-solid {
    display: block;
    color: var(--white);
}
.hero-title-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}
.hero-subtitle {
    font-size: clamp(.92rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,.90);
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
    margin: 0 auto 2.5rem;
    max-width: 560px;
    line-height: 1.78;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-hero {
    padding: 1rem 2.4rem;
    font-size: .95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.4);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3;transform:scaleY(.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ===== STATS ===== */
.stats {
    background: var(--dark);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
    flex: 1 1 0;
    max-width: 25%;
    min-width: 160px;
    border-right: 1px solid rgba(255,255,255,.08);
    color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-label { font-size: .82rem; opacity: .65; font-weight: 400; letter-spacing: .03em; }

/* ===== ABOUT ===== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-split.reversed .about-image-col { order: 2; }
.about-split.reversed .about-text-col  { order: 1; }
.about-image-col {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.about-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}
.about-img-ph {
    width: 100%;
    height: 560px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--border) 100%);
}
.about-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.about-body {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.about-body p { margin-bottom: 1rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SERVICES ===== */
.svc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.svc-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s ease;
    width: calc(25% - 1.125rem);
    min-width: 220px;
    display: flex;
    flex-direction: column;
}
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.svc-card-media {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.svc-card:hover .svc-card-media img { transform: scale(1.06); }
.svc-card-icon {
    font-size: 2.5rem;
    line-height: 1;
}
.svc-card-body {
    padding: 1.5rem;
    flex: 1;
}
.svc-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}
.svc-card-body p {
    font-size: .86rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== HOME CONTACT ===== */
.home-contact { background: var(--bg-section); }
.home-contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}
.hci-details { display: flex; flex-direction: column; gap: 0; }
.hci-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border-light);
}
.hci-item:last-child { border-bottom: none; }
.hci-icon {
    width: 40px; height: 40px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.hci-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    margin-bottom: .2rem;
}
.hci-value {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark);
    transition: color .2s;
}
a.hci-value:hover { color: var(--gold); }

/* Gallery standalone page */
.section-gallery-page { padding-top: 120px; }
@media (max-width: 768px) { .section-gallery-page { padding-top: 88px; } }

/* ===== GALLERY ===== */
.gallery-grid { columns: 3; column-gap: .75rem; }
.gallery-item {
    break-inside: avoid;
    margin-bottom: .75rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img { width: 100%; transition: transform .45s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(168,135,87,.25);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    z-index: 1;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    background: rgba(168,135,87,.8);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(20,16,12,.97);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: var(--white);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(168,135,87,.6);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    touch-action: manipulation;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev  { left: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
@media (max-width: 768px) {
    .lightbox-img { max-width: 100vw; max-height: 72vh; border-radius: 0; }
    .lightbox { padding: 0; }
    .lightbox-close { top: .75rem; right: .75rem; width: 40px; height: 40px; }
    .lightbox-prev  { left: .5rem; width: 40px; height: 40px; }
    .lightbox-next  { right: .5rem; width: 40px; height: 40px; }
}

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}
.review-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-pale);
    line-height: 1;
    position: absolute;
    top: 1rem; right: 1.5rem;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: .95rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: .92rem; line-height: 1.75; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--dark); font-size: .9rem; }
.review-role { font-size: .78rem; color: var(--text-light); }

/* ===== PACKAGES ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; }
.package-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    transition: var(--transition);
}
.package-card:hover { box-shadow: var(--shadow-md); }
.package-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}
.package-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: .3rem 1.1rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.package-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.package-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); margin: 1rem 0; line-height: 1; }
.package-price span { font-size: .9rem; font-weight: 400; color: var(--text-light); }
.package-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; }
.package-features { margin-bottom: 2rem; }
.package-features li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .88rem; margin-bottom: .55rem; color: var(--text);
}
.package-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.package-card .btn { width: 100%; justify-content: center; }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.7fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.7; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.contact-details li:last-child { border-bottom: none; }
.contact-icon {
    width: 42px; height: 42px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .78rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
.contact-detail-text a { color: var(--dark); font-weight: 500; transition: color .2s; }
.contact-detail-text a:hover { color: var(--gold); }

/* ===== FORM ===== */
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
.booking-form h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--dark); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,135,87,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-consent { margin-bottom: 1.25rem; }
.form-group.form-consent label,
.consent-label {
    display: flex !important;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    font-size: .82rem !important;
    font-weight: 400 !important;
    color: var(--text-light) !important;
    line-height: 1.55;
    margin-bottom: 0 !important;
}
.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: .15rem;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}
.consent-label a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.consent-label a:hover { color: var(--gold-light); }
.form-submit { width: 100%; padding: 1rem; font-size: .95rem; justify-content: center; text-align: center; }
.form-spinner { display: none; }
.form-spinner.visible { display: inline-block; }
.form-message { display: none; padding: 1rem; border-radius: 6px; margin-top: 1rem; font-weight: 500; text-align: center; }
.form-message.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.form-message.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    background: linear-gradient(160deg, var(--dark) 0%, #3a2e25 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a88757' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-title { color: var(--white); }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before, .page-hero .section-label::after { color: var(--gold); }
.page-hero .section-lead { color: rgba(255,255,255,.65); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.5); justify-content: center; margin-bottom: .75rem; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--gold); padding: 72px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== EQUIPMENT ===== */
.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.equip-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1.75rem; transition: var(--transition); }
.equip-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.equip-icon { font-size: 2rem; margin-bottom: .75rem; }
.equip-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--dark); margin-bottom: .4rem; }
.equip-card p { color: var(--text-light); font-size: .85rem; line-height: 1.6; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 72px 0 0; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.4fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.7rem; color: var(--white); display: inline-block; margin-bottom: .75rem; }
.footer-logo strong { color: var(--gold); }
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 270px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-nav h4, .footer-contact h4, .footer-legal h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-nav li, .footer-contact li { margin-bottom: .55rem; }
.footer-nav a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-legal a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); display: block; margin-bottom: .55rem; }
.footer-legal a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }

/* ===== ADMIN ===== */
.admin-body { font-family: var(--font-body); background: #f4f5f7; min-height: 100vh; }
.admin-sidebar { width: 256px; background: var(--dark); position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 100; display: flex; flex-direction: column; }
.admin-logo { padding: 1.6rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07); color: var(--white); font-family: var(--font-display); font-size: 1.25rem; }
.admin-logo strong { color: var(--gold); }
.admin-nav { padding: .75rem 0; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: .75rem; padding: .8rem 1.5rem; color: rgba(255,255,255,.58); font-size: .875rem; font-weight: 500; transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(255,255,255,.06); border-left-color: var(--gold); }
.admin-nav a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.admin-main { margin-left: 256px; }
.admin-header { background: var(--white); border-bottom: 1px solid #e5e7eb; padding: 1.1rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 10; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.admin-header h1 { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
.admin-content { padding: 1.75rem 2rem; }
.admin-card { background: var(--white); border-radius: var(--radius); border: 1px solid #e5e7eb; overflow: hidden; }
.admin-card-header { padding: 1.1rem 1.5rem; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h2 { font-size: .95rem; font-weight: 600; color: var(--dark); }
.admin-card-body { padding: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f9fafb; padding: .75rem 1rem; text-align: left; font-size: .76rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; }
.admin-table td { padding: .8rem 1rem; border-top: 1px solid #f3f4f6; font-size: .875rem; vertical-align: middle; }
.admin-table tr:hover td { background: #fafafa; }
.badge { display: inline-block; padding: .22rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 600; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef9c3; color: #854d0e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }
.badge-info    { background: #dbeafe; color: #1e40af; }
.btn-danger  { background: #ef4444; color: var(--white); border: 2px solid #ef4444; }
.btn-danger:hover  { background: #dc2626; border-color: #dc2626; }
.btn-success { background: #22c55e; color: var(--white); border: 2px solid #22c55e; }
.btn-success:hover { background: #16a34a; border-color: #16a34a; }
.btn-primary { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-primary:hover { background: #8f6f44; border-color: #8f6f44; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.75rem; }
.stat-card { background: var(--white); border-radius: var(--radius); border: 1px solid #e5e7eb; padding: 1.4rem; display: flex; align-items: center; gap: 1rem; }
.stat-card-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-card-icon.blue  { background: #eff6ff; }
.stat-card-icon.green { background: #f0fdf4; }
.stat-card-icon.amber { background: #fffbeb; }
.stat-card-icon.red   { background: #fef2f2; }
.stat-card-num { font-size: 1.7rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-card-lbl { font-size: .76rem; color: #9ca3af; margin-top: .2rem; }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark) 0%, #3a2e25 100%); padding: 2rem; }
.login-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo .logo-text { color: var(--dark); }
.alert { padding: .8rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: .875rem; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* Block editor styles */
.block-list { display: flex; flex-direction: column; gap: 0; }
.block-item { border-bottom: 1px solid #f0f0f0; }
.block-item:last-child { border-bottom: none; }
.block-header { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; cursor: pointer; user-select: none; transition: background .2s; }
.block-header:hover { background: #fafafa; }
.block-drag { color: #d1d5db; cursor: grab; font-size: 1.1rem; }
.block-icon { font-size: 1.3rem; }
.block-label { font-weight: 600; font-size: .9rem; color: var(--dark); flex: 1; }
.block-type-tag { font-size: .72rem; background: #f3f4f6; color: #6b7280; padding: .2rem .6rem; border-radius: 50px; }
.block-toggle { color: #9ca3af; font-size: .7rem; transition: transform .2s; }
.block-item.open .block-toggle { transform: rotate(180deg); }
.block-body { display: none; padding: 1.25rem 1.5rem; background: #fafafa; border-top: 1px solid #f0f0f0; }
.block-item.open .block-body { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid  { columns: 2; column-gap: .5rem; }
    .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .stat-item { max-width: 50%; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .stat-item:last-child { border-bottom: none; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .footer-brand  { grid-column: 1 / -1; }
    .hero-inner { padding: 120px 24px 80px; }
    .admin-sidebar { width: 220px; }
    .admin-main    { margin-left: 220px; }
    .stats-row     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; height: 100vh; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: .4rem; z-index: 999; overflow-y: auto; transform: none; white-space: normal; }
    .nav-menu.open { display: flex; }
    .nav-link { font-size: 1.1rem; padding: .7rem 1.5rem; color: rgba(255,255,255,.85) !important; }
    .nav-dropdown-toggle { font-size: 1.1rem; padding: .7rem 1.5rem; color: rgba(255,255,255,.85) !important; }
    .nav-dropdown-menu { position: static; background: transparent; border: none; box-shadow: none; padding: 0; min-width: 0; text-align: center; }
    .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { display: block; }
    .nav-dropdown-item { font-size: 1rem; color: rgba(255,255,255,.7) !important; padding: .4rem 1rem; }
    .nav-dropdown-item:hover { background: transparent; color: var(--gold) !important; }
    .nav-toggle { display: flex; z-index: 1000; }
    .hero-inner { padding: 120px 24px 80px; }
    .hero-inner { padding: 120px 24px 80px; }
    .hero-scroll { left: 50%; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .booking-form h3 { text-align: center; }
    .cta-band .btn { width: 100%; max-width: 320px; justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-split .about-image-col { order: 1 !important; }
    .about-split .about-text-col  { order: 2 !important; }
    .about-img { height: 280px; }
    .about-img-ph { height: 280px; }
    .about-img-wrapper { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid  { columns: 1; column-gap: 0; }
    .gallery-item  { margin-bottom: 8px; border-radius: 8px; }
    .reviews-grid  { grid-template-columns: 1fr; }
    .equipment-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .home-contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-form { padding: 1.5rem; }
    .hero-title { font-size: 2rem; }
    .gallery-grid { columns: 1; }
    .gallery-item { margin-bottom: 8px; }
}
