/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== Atlas Beauty — Espresso & Burgundy-Metal palette ===== */
    --gold: #a53a4d;          /* burgundy-metal — primary accent (from logo) */
    --gold-light: #cf7a89;    /* rose-metal highlight */
    --gold-deep: #6f1f2f;     /* deep burgundy */
    --brass: #ad8752;         /* warm brass — secondary accent */
    --brass-light: #ddc190;   /* pale brass highlight */
    --pink: #ad8752;          /* (mobile CTA — now brass, kept var name for compatibility) */
    --dark: #18130f;          /* charcoal espresso — deep sections */
    --dark-2: #241a15;        /* secondary deep */
    --gray: #8a7a6c;          /* warm taupe */
    --ivory: #f4eee3;         /* stone / bone background */
    --light: #ece1cf;         /* secondary stone */
    --radius: 18px;
    --shadow: 0 20px 60px rgba(24,19,15,0.10);
    --ease: cubic-bezier(.22,.9,.32,1);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    direction: rtl;
    background: var(--ivory);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', 'Vazirmatn', serif;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--brass);
    display: inline-block;
}

.eyebrow-light { color: var(--brass-light); }
.eyebrow-light::before { background: var(--brass-light); }

.section-title {
    font-family: 'Noto Serif Arabic', 'Vazirmatn', serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title.light { color: #fff; }
.section-title span {
    background: linear-gradient(100deg, var(--gold-deep), var(--gold) 35%, var(--brass-light) 50%, var(--gold) 65%, var(--gold-deep));
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 6s linear infinite;
}

@keyframes shine {
    to { background-position: -250% center; }
}

.section-sub { color: var(--gray); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    box-shadow: 0 8px 30px rgba(165, 58, 77, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--ease);
}

.btn-gold:hover::after { transform: translateX(120%); }

.btn-gold:hover {
    transform: translateY(-3px) perspective(600px) rotateX(3deg);
    box-shadow: 0 20px 50px rgba(165, 58, 77, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--brass);
}

.btn-ghost:hover {
    background: var(--brass);
    color: #fff;
    transform: translateY(-3px);
}

.btn-block { width: 100%; display: block; }

/* ===== FLOAT BOOK BUTTON (Mobile) ===== */
.float-book {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--brass), var(--gold-deep));
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(109, 31, 47, 0.45);
    z-index: 999;
    display: none;
    animation: pulseBtn 2.6s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 8px 30px rgba(109, 31, 47, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(109, 31, 47, 0.7); }
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(244,238,227,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(165,58,77,0.14);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; }

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(24,19,15,0.35);
    background: var(--dark);
    flex-shrink: 0;
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-text {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}
.brand-text small {
    display: block;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: -2px;
}

.main-nav { display: flex; gap: 26px; }

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; right: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--dark); }
.nav-link:hover::after { width: 100%; }

.nav-cta { font-size: 0.85rem; padding: 10px 28px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 28px; height: 2.5px;
    background: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 60px;
    background:
        radial-gradient(ellipse 80% 60% at 30% 0%, rgba(165,58,77,0.10) 0%, transparent 60%),
        var(--ivory);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(173,135,82,0.16), transparent 70%);
    border-radius: 50%;
}

/* Engraved watermark — the signature motif echoing the stone-carved logo */
.hero::after {
    content: 'ATLAS';
    position: absolute;
    left: -40px;
    bottom: -60px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 13rem;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(111,31,47,0.10);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title { font-family: 'Noto Serif Arabic', serif; font-size: 3rem; font-weight: 800; line-height: 1.45; margin-bottom: 20px; }

.hero-title .script { color: var(--gold); font-weight: 700; font-style: italic; font-family: 'Playfair Display', serif; }

.hero-desc { color: var(--gray); font-size: 1.1rem; max-width: 500px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 48px; }

.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.85rem; color: var(--gray); }

/* ===== Hero Visual / Carved-stone plaque signature ===== */
.hero-visual { position: relative; perspective: 1200px; }

.mirror-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(24,19,15,0.28), 0 4px 0 rgba(173,135,82,0.5) inset;
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
    border: 6px solid var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    padding: 3px;
}

.mirror-glass {
    background: linear-gradient(155deg, #2a2018 0%, #171310 60%, #100c09 100%);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* light-sweep across the "mirror" — burgundy-metal shine matching the logo */
.mirror-glass::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(100deg, transparent, rgba(207,122,137,0.35), transparent);
    transform: skewX(-18deg);
    animation: mirrorSweep 5.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes mirrorSweep {
    0%, 30% { left: -60%; }
    60%, 100% { left: 130%; }
}

.mirror-glass .logo-plaque {
    position: relative;
    z-index: 1;
    width: 78%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.img-placeholder {
    background: #efe6d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a9987e;
    font-size: 0.9rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.img-placeholder span {
    position: relative;
    z-index: 1;
    padding: 8px 16px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
}

.ph-hero { min-height: 480px; }

.mirror-badge {
    position: absolute;
    bottom: -20px; right: -10px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(24,19,15,0.22);
    text-align: center;
    border: 1px solid rgba(173,135,82,0.25);
}

.mirror-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold-deep); }
.mirror-badge span { font-size: 0.9rem; color: var(--brass); }
.mirror-badge em { font-size: 0.75rem; color: var(--gray); font-style: normal; }

.floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(24,19,15,0.15);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(173,135,82,0.2);
}

.card-1 { bottom: 60px; right: -20px; }
.card-2 { top: 40px; left: -20px; }

.dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: inline-block; box-shadow: 0 0 0 3px rgba(165,58,77,0.18); }

/* Ribbon */
.ribbon-divider { position: relative; z-index: 3; margin-bottom: -2px; }
.ribbon-divider svg { display: block; width: 100%; height: auto; fill: var(--ivory); }
.booking .ribbon-top svg { fill: var(--dark); }

/* ===== ABOUT ===== */
.about { padding: 90px 0; background: #fff; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage .img-placeholder { min-height: 200px; border-radius: 16px; }
.ph-1 { grid-row: span 2; min-height: 420px; }
.ph-2 { min-height: 200px; }
.ph-3 { min-height: 200px; }

.lead-quote {
    font-family: 'Noto Serif Arabic', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    border-right: 4px solid var(--gold);
    padding-right: 20px;
    margin: 20px 0;
}

.body-text { color: var(--gray); font-size: 1rem; margin-bottom: 16px; }

.feature-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--gray); }
.feature-list .icon { color: var(--gold); font-size: 1.2rem; }

/* ===== VIDEO SHOWCASE ===== */
.video-showcase { padding: 90px 0; background: var(--light); }

.video-frame {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 6px solid #fff;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #111;
}

.video-fallback-msg {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #eee;
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
}

.video-frame.video-error .video-fallback-msg { display: flex; }
.video-frame.video-error video { display: none; }

/* ===== SERVICES ===== */
.services { padding: 90px 0; background: var(--light); }

.section-head { text-align: center; margin-bottom: 48px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(173,135,82,0.16);
    transition: transform 0.15s ease-out, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(24,19,15,0.14);
    border-color: var(--gold-light);
}

.service-no {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-deep);
    background: rgba(165,58,77,0.10);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.service-card h3 { font-family: 'Noto Serif Arabic', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 12px; }
.service-price { font-weight: 600; color: var(--gold); font-size: 0.9rem; }

/* ===== INSTAGRAM HIGHLIGHTS (new) ===== */
.instagram-highlights { padding: 90px 0 100px; background: var(--dark); position: relative; overflow: hidden; }
.instagram-highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 10%, rgba(165,58,77,0.18), transparent 60%);
    pointer-events: none;
}

.insta-scroller {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 10px 4px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    position: relative;
    z-index: 2;
}

.insta-scroller::-webkit-scrollbar { height: 8px; }
.insta-scroller::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.insta-scroller::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 10px; }

.insta-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: 26px;
    overflow: hidden;
    border: 3px solid var(--dark-2);
    box-shadow: 0 20px 45px rgba(0,0,0,0.45);
    aspect-ratio: 9 / 16;
    position: relative;
    background: #111;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.insta-card:hover { border-color: var(--gold); box-shadow: 0 25px 60px rgba(165,58,77,0.35); }
.insta-card img { width: 100%; height: 100%; object-fit: cover; }

.insta-card::after {
    content: '';
    position: absolute;
    top: 12px; right: 12px;
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
}

.insta-cta { text-align: center; margin-top: 8px; position: relative; z-index: 2; }
.insta-cta a { color: var(--brass-light); font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid var(--brass); padding-bottom: 3px; }

/* ===== GALLERY ===== */
.gallery { padding: 90px 0; background: var(--dark); }

.section-head.light .eyebrow { color: var(--brass-light); }
.section-head.light .section-title { color: #fff; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.g-item {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 0;
    position: relative;
    cursor: pointer;
}

.g-item::before {
    content: '🔍';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24,19,15,0.55);
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.g-item:hover::before { opacity: 1; }
.g-item:hover img { transform: scale(1.08); }
.g-item img { transition: transform 0.5s var(--ease); }

.g-tall { grid-row: span 2; }
.g-item span { font-size: 0.8rem; color: #aaa; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,8,6,0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: min(90vw, 900px);
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 46px; height: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; left: 24px; }
.lightbox-prev { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-next { top: 50%; left: 24px; transform: translateY(-50%); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 90px 0; background: #fff; }

.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s var(--ease); gap: 24px; }

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(173,135,82,0.18);
}

.testi-card p { font-size: 1.05rem; font-weight: 500; margin-bottom: 12px; }
.testi-card footer { color: var(--gray); font-size: 0.9rem; }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testi-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.testi-dots .active { background: var(--gold); width: 30px; border-radius: 10px; }

/* ===== BOOKING ===== */
.booking {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark), #0f0b08);
    position: relative;
}

.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.booking-copy .body-text.light { color: rgba(255,255,255,0.7); }

.booking-contact { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.booking-contact a {
    color: #fff;
    background: rgba(255,255,255,0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(173,135,82,0.2);
}
.booking-contact a:hover { background: rgba(173,135,82,0.2); }

.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--dark); }

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(165,58,77,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.hidden { display: none !important; }
.form-msg { margin-top: 12px; font-size: 0.9rem; text-align: center; }
.form-msg.success { color: #2e7d32; font-weight: 600; }
.form-msg.error { color: #c62828; font-weight: 600; }

/* ===== CONTACT ===== */
.contact { padding: 90px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { color: var(--gray); font-size: 1rem; }
.contact-list a { color: var(--gold-deep); font-weight: 600; }

.map-placeholder { min-height: 300px; border-radius: var(--radius); background: #e5dac6; }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 300px; border: 0; border-radius: var(--radius); }

/* ===== FOOTER ===== */
.site-footer { background: #100c09; color: rgba(255,255,255,0.7); padding: 48px 0 24px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-text { color: #fff; }
.footer-tag { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.3s ease; font-size: 0.9rem; }
.footer-links a:hover { color: var(--brass-light); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(165,58,77,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero::after { font-size: 9rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%; right: 0; left: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        border-top: 1px solid rgba(0,0,0,0.04);
    }
    .main-nav.active { display: flex; }
    .nav-cta { display: none; }
    .float-book { display: block; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.1rem; }
    .hero-stats { gap: 24px; }
    .hero-visual { order: -1; }

    .about-grid { grid-template-columns: 1fr; }
    .collage .img-placeholder { min-height: 150px; }
    .ph-1 { min-height: 250px; }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .testi-card { flex: 0 0 calc(100% - 16px); }
    .booking-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .floating-card { display: none; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
    .insta-card { flex-basis: 180px; }
    .hero::after { font-size: 6rem; bottom: -30px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; gap: 10px; }
    .booking-form { padding: 24px; }
    .insta-card { flex-basis: 150px; }
}
