/* ============================================
   FANTASTIS BARBERSHOP — Premium CSS
   Aesthetic: Luxury Editorial Dark
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

:root {
    --ink: #0d0d0d;
    --paper: #f5f0eb;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --white: #ffffff;
    --gray-100: #f0ece6;
    --gray-200: #ddd8d0;
    --gray-400: #9a9390;
    --gray-600: #5a5550;
    --dark: #111010;
    --dark-card: #1a1916;
    --dark-border: rgba(255,255,255,0.07);

    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    --nav-h: 72px;
}

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

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

body {
    font-family: var(--ff-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============ CUSTOM CURSOR ============ */
.custom-cursor {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}
.custom-cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}
.custom-cursor.expand {
    width: 60px; height: 60px;
    border-color: var(--gold-light);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
}
.logo-sub {
    font-size: 0.52rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-top: 1px;
}
.nav-links {
    display: flex;
    gap: 36px;
    margin-left: auto;
}
.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 9px 22px;
    border: 1px solid var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--ink);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 60%),
                linear-gradient(160deg, #0d0d0d 0%, #1a1610 50%, #0d0c0a 100%);
}
.hero-grain {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(201,168,76,0.025) 0px,
        rgba(201,168,76,0.025) 1px,
        transparent 1px,
        transparent 80px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 24px;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) { animation-delay: 0.65s; }
.hero-title .italic { font-style: italic; color: var(--gold); }

.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-ghost {
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}
.hero-scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
}
.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; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

.hero-badge {
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    background: rgba(201,168,76,0.05);
    backdrop-filter: blur(10px);
}
.badge-inner span:first-child {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}
.badge-time {
    font-family: var(--ff-display);
    font-size: 1rem !important;
    color: var(--white) !important;
    letter-spacing: 0.05em !important;
}

/* ============ INFO STRIP ============ */
.info-strip {
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.03em;
    flex: 1;
    justify-content: center;
}
.strip-item i { font-size: 0.9rem; flex-shrink: 0; }
.strip-item a { color: var(--ink); }
.strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* ============ ABOUT ============ */
.about {
    padding: 130px 0;
    background: var(--dark);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-title.light { color: var(--white); }

.section-sub {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 540px;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header .section-sub { margin: 0 auto; }

.about-text {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--dark-border);
}
.stat { text-align: center; }
.stat-num {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--dark-border);
}

.about-img-wrap {
    position: relative;
    height: 520px;
}
.img-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
}
.img-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: 0 0 0 1px var(--gold);
}

/* ============ PILLARS ============ */
.pillars {
    padding: 80px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.pillar {
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid var(--dark-border);
    transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,168,76,0.04); }
.pillar-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.1rem;
    transition: background 0.3s, border-color 0.3s;
}
.pillar:hover .pillar-icon {
    background: var(--gold-dim);
    border-color: var(--gold);
}
.pillar h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.pillar p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============ SERVICES ============ */
.services {
    padding: 130px 0;
    background: var(--dark);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dark-border);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    overflow: hidden;
}
.service-card {
    background: var(--dark-card);
    padding: 40px 32px;
    position: relative;
    transition: background 0.3s;
    cursor: default;
}
.service-card:hover {
    background: #1f1e1b;
}
.service-card.featured {
    background: linear-gradient(135deg, #1f1c14, #1a1810);
}
.service-card.special {
    background: linear-gradient(135deg, #1a1915, #161510);
}
.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,0.2);
}
.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.service-card:hover .card-icon {
    transform: scale(1.1);
}
.service-card h3 {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ============ BOOKING ============ */
.booking {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}
.booking-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #100e08 0%, #1a1610 50%, #0e0c08 100%);
}
.booking-grain {
    position: absolute;
    inset: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.booking-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.booking-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 20px;
}
.booking-desc strong { color: var(--gold-light); font-weight: 500; }

.app-download {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: var(--white);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    min-width: 160px;
}
.app-btn:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
}
.app-btn i { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.app-btn .app-label { display: block; font-size: 0.65rem; color: var(--gray-400); letter-spacing: 0.05em; }
.app-btn .app-store { display: block; font-size: 0.85rem; font-weight: 600; }

.booking-contact {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--dark-border);
}
.booking-contact p {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.2s;
}
.wa-link:hover { opacity: 0.8; }
.wa-link i { font-size: 1.2rem; }

.hours-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 40px;
}
.hours-card h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.88rem;
}
.hour-row:last-child { border-bottom: none; }
.hour-row span:first-child { color: var(--gray-400); font-weight: 400; }
.hour-row span:last-child { color: var(--white); font-weight: 500; }
.hour-row.friday span:last-child { color: var(--gold-light); }
.hour-row.closed span:last-child { color: rgba(255,255,255,0.25); }

/* ============ RATINGS ============ */
.ratings {
    padding: 100px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}
.ratings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: center;
}
.rating-block {
    text-align: center;
}
.rating-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 auto 16px;
}
.rating-score {
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.rating-score.highlight { color: var(--gold); }
.rating-stars { color: var(--gold); font-size: 0.9rem; margin: 8px 0; letter-spacing: 2px; }
.rating-block p { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }

.testimonial-block {
    position: relative;
    padding: 48px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
}
.quote-mark {
    font-family: var(--ff-display);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.5;
    position: absolute;
    top: 32px;
    left: 40px;
    font-style: italic;
}
.testimonial-text {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--white); }
.testimonial-author span { font-size: 0.75rem; color: var(--gray-400); }

/* ============ CONTACT ============ */
.contact {
    padding: 130px 0;
    background: var(--dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}
.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.ci-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.contact-item p, .contact-item a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 44px;
}
.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.map-wrap {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    height: 440px;
    position: relative;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 40px;
    background: var(--ink);
    border-top: 1px solid var(--dark-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--dark-border);
}
.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.footer-logo span:first-child {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
}
.footer-logo span:last-child {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-top: 2px;
}
.footer-brand p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    font-family: var(--ff-display);
}
.footer-links h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-600);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 0.85rem; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0s; }
.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.15s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============ MOBILE NAV DROPDOWN ============ */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(13,13,13,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, transform 0.3s;
        border-bottom: 1px solid var(--dark-border);
    }
    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-links li { width: 100%; }
    .nav-link {
        display: block;
        padding: 18px 40px;
        border-bottom: 1px solid var(--dark-border);
        font-size: 0.9rem;
    }

    .container { padding: 0 24px; }

    .hero-title { font-size: 3rem; }
    .hero-badge { display: none; }

    .info-strip { flex-direction: column; gap: 0; }
    .strip-item { padding: 14px 24px; width: 100%; }
    .strip-divider { width: 100%; height: 1px; background: rgba(0,0,0,0.15); }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-wrap { height: 340px; }
    .img-accent { display: none; }

    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar { border-right: none; border-bottom: 1px solid var(--dark-border); }
    .pillar:nth-child(odd) { border-right: 1px solid var(--dark-border); }
    .pillar:nth-last-child(-n+2) { border-bottom: none; }

    .services-grid { grid-template-columns: 1fr; }

    .booking-grid { grid-template-columns: 1fr; gap: 48px; }

    .ratings-grid { grid-template-columns: 1fr; gap: 40px; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .map-wrap { height: 300px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .stats-row { gap: 24px; }
    .stat-num { font-size: 2.2rem; }

    .custom-cursor, .custom-cursor-dot { display: none; }
}

@media (max-width: 480px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-right: none; }
    .pillar:nth-child(odd) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .app-download { flex-direction: column; }
    .app-btn { min-width: unset; }
    .stats-row { flex-direction: column; gap: 24px; }
    .stat-divider { width: 60px; height: 1px; }
    .hero-actions { flex-direction: column; align-items: center; }
}
