/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    /* Colors - Black & White Theme */
    --color-bg: #050505;
    --color-surface: #0d0d0d;
    --color-surface-hover: #1a1a1a;
    --color-text-main: #ffffff;
    --color-text-muted: #999999;
    --color-accent: #ffffff;
    --glow-spread: 0 0 20px rgba(255, 255, 255, 0.3);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --max-width: 1400px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Components (Buttons & Utilities)
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--color-accent);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    box-shadow: var(--glow-spread);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-accent);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: all 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    box-shadow: var(--glow-spread);
}

/* Hover Underline Effect */
.hover-underline {
    position: relative;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* ==========================================================================
   Header Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(7, 7, 7, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 1025px) {
    /* Entire block removed from layout — desktop uses header button only */
    .nav-links__mobile-book-wrap {
        display: none !important;
    }
}

.nav-actions__desktop-book-wrap {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px; /* Offset nav */
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,7,0.4) 0%, rgba(7,7,7,0.8) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: orbPulse 8s alternate infinite ease-in-out;
}

@keyframes orbPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-45%, -55%) scale(1.2); opacity: 1; }
}

.hero-indicators {
    display: flex;
    flex-direction: row;
    gap: 40px;
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: auto;
    top: auto;
    transform: none;
    z-index: 2;
}

.indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    opacity: 0.4;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.indicator.active {
    opacity: 1;
}

.indicator span {
    font-size: 0.9rem;
    font-weight: 800;
}

.indicator .line {
    height: 1px;
    width: 40px;
    background-color: var(--color-accent);
    transform-origin: left;
    transform: scaleX(0.5);
    transition: var(--transition-smooth);
}

.indicator.active .line {
    transform: scaleX(1);
    width: 60px;
}

.indicator p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.indicator.active p {
    color: var(--color-accent);
}

/* ==========================================================================
   Services Section 
   ========================================================================== */
.services {
    padding: 120px 5%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 15px;
}

.services-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Make featured service span two columns */
.service-card:nth-child(1) {
    grid-column: span 2;
}
.service-card:nth-child(1) .image-container {
    aspect-ratio: 16/10;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.image-container {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    background-color: var(--color-surface);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.service-card:hover .image-container img {
    transform: scale(1.05);
    filter: grayscale(40%); /* Slight color reveal on hover */
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.book-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.book-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .book-link i {
    transform: translateX(10px);
}

/* ==========================================================================
   Banner Section
   ========================================================================== */
.banner {
    padding: 120px 5%;
    margin: 80px auto 100px;
    background: linear-gradient(135deg, var(--color-surface) 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 1200px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content h2 {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-content span {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-accent);
}

.banner-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    max-width: var(--max-width);
    margin: 0 auto 60px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--color-text-muted);
}

.footer-brand .footer-contact {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 22rem;
}

.footer-brand .footer-contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-brand .footer-contact a:hover {
    color: var(--color-text-main);
    border-bottom-color: var(--color-accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links ul li strong {
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    color: var(--color-text-muted);
}

.footer-bottom {
    text-align: center;
    color: #444;
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations Base Classes
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.clip-text-anim {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.clip-text-inner {
    display: inline-block;
    transform: translateY(110%);
}


/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    display: flex;
    padding: 100px 5%;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 50px;
    align-items: center;
}

.reviews-header {
    flex: 0 0 300px;
}

.reviews-header h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.reviews-carousel-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.reviews-carousel-column .reviews-carousel {
    flex: 0 0 auto;
    width: 100%;
}

.reviews-carousel {
    flex: 1;
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
    position: relative;
    outline: none;
}

.reviews-carousel:focus-visible {
    box-shadow: 0 0 0 2px rgba(var(--color-accent-rgb), 0.45);
    border-radius: var(--border-radius);
}

.reviews-carousel-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
}

.reviews-carousel-ui[hidden] {
    display: none !important;
}

.reviews-carousel-ui__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    min-height: 10px;
}

.reviews-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.reviews-carousel-dot:hover,
.reviews-carousel-dot:focus-visible {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.15);
    outline: none;
}

.reviews-carousel-dot:focus-visible {
    box-shadow: 0 0 0 2px rgba(var(--color-accent-rgb), 0.5);
}

.reviews-carousel-dot.is-active {
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(var(--color-accent-rgb), 0.45);
    transform: scale(1.2);
}

.reviews-carousel-ui__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviews-carousel-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-main);
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.reviews-carousel-btn:hover {
    border-color: rgba(var(--color-accent-rgb), 0.45);
    background: rgba(var(--color-accent-rgb), 0.12);
    color: var(--color-accent);
    transform: translateY(-1px);
}

.reviews-carousel-btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.reviews-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    min-width: 300px;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.review-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-accent);
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
}

.review-meta h4 {
    margin: 0;
    font-size: 1.1rem;
}

.review-rating {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 3px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Review Modal
   ========================================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--glow-spread);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* ==========================================================================
   Inner Pages (About / Contact)
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: 60vh;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.about-section, .contact-section {
    padding: 100px 5%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2, .contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 30px;
}

.about-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    filter: grayscale(100%);
    box-shadow: var(--glow-spread);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 60px 5%;
    text-align: center;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    text-shadow: var(--glow-spread);
}

.stat-box p {
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Contact Specific */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-list i {
    font-size: 2rem;
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.contact-list span {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.contact-list strong {
    color: var(--color-text-main);
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.contact-list a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-list a:hover {
    color: var(--color-text-main);
    border-bottom-color: var(--color-accent);
}

/* Futuristic Form */
.futuristic-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
}

.flex-row {
    display: flex;
    gap: 20px;
}

.flex-row input {
    flex: 1;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    padding: 16px 20px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.1), 0 0 15px rgba(255,255,255,0.2);
}

body.nav-menu-open {
    overflow: hidden;
}

/* Full-screen tap target behind menu (below links, above page) */
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s;
}

.nav-backdrop.nav-backdrop--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    .navbar.nav-open {
        z-index: 10060;
    }

    .navbar {
        flex-wrap: nowrap;
        gap: 10px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .navbar > .logo {
        min-width: 0;
        flex: 1 1 auto;
    }

    .navbar .logo a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .navbar .logo,
    .navbar .nav-actions {
        position: relative;
        z-index: 10065;
    }

    .navbar .nav-actions {
        flex-shrink: 0;
        align-items: center;
        gap: 0;
    }

    /* Hides header duplicate; menu link lives inside .nav-links (overlay) */
    .nav-actions__desktop-book-wrap {
        display: none !important;
    }

    .nav-links {
        display: none;
    }

    .navbar.nav-open .nav-links {
        display: flex !important;
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        padding: 100px 24px 48px;
        margin: 0;
        z-index: 10055;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .navbar.nav-open .nav-links a.hover-underline {
        font-size: 1.15rem;
        letter-spacing: 0.2em;
    }

    .navbar.nav-open .nav-links__mobile-book-wrap .nav-links__book.btn-primary {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        padding: 14px 26px;
        margin-bottom: 8px;
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin: 0;
        flex-shrink: 0;
        font-size: 1.35rem;
        font-family: inherit;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.04);
        color: var(--color-text-main);
        padding: 0;
        border-radius: 8px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        position: relative;
        z-index: 10066;
    }

    .hamburger:focus-visible {
        outline: 2px solid var(--color-accent);
        outline-offset: 2px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
    }
    
    .hero-image-wrapper {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .hero {
        padding: 0 8%;
        justify-content: flex-end;
        padding-bottom: 15vh;
    }
    
    .hero-indicators {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card:nth-child(1) {
        grid-column: span 1;
    }
    
    .navbar {
        background-color: var(--color-bg);
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar.scrolled {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo {
        font-size: 1.15rem;
        letter-spacing: 0.12em;
    }

    .footer-top {
        flex-direction: column;
    }
    
    .footer-links ul {
        flex-direction: column;
    }

    .reviews-section {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        padding: 70px 5%;
    }

    .reviews-header {
        flex: none;
    }

    .review-card {
        flex: 0 0 min(340px, 88vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-carousel {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--color-accent);
}

.cursor-outline {
    width: 30px; height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
}

@media (min-width: 1025px) {
    body, a, button, .service-card {
        cursor: none !important;
    }
}

/* Contact form (contact.php) flash messages */
.contact-flash {
    padding: 14px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-flash--ok {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}

.contact-flash--err {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}
