/* B&G BROWS - Premium Design System */
:root {
    --primary: #C5A059; /* Metallic Gold */
    --primary-light: #E0C08D;
    --primary-dark: #8E6D3A;
    --secondary: #1A1A1A; /* Deep Black */
    --text-main: #2D2D2D;
    --text-muted: #707070;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF9F6;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .premium-font {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-close {
    display: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.nav-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}
.nav-links a:hover {
    color: var(--primary);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-cta {
    display: block;
}

.cta-btn {
    background: var(--secondary);
    color: white;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--secondary);
    transition: var(--transition);
    cursor: pointer;
}

.cta-btn:hover {
    background: transparent;
    color: var(--secondary);
    border-color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid white;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
}

/* --- Services --- */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-desc {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.bg-cream {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--bg-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.service-image img, .service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img, .service-card:hover .service-image video {
    transform: scale(1.1);
}

.service-info {
    padding: 2rem 0;
    text-align: center;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* --- Booking Form --- */
.booking-section {
    background: var(--bg-cream);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.booking-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-image {
    height: 550px;
    border: 1px solid var(--primary-light);
    padding: 15px;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-form {
    background: white;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #EAEAEA;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

select.form-control {
    appearance: none;
}

/* --- Locations --- */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-card {
    padding: 3rem;
    background: white;
    border: 1px solid var(--primary-light);
    transition: var(--transition);
}

.location-card:hover {
    background: var(--secondary);
    color: white;
}

.location-card:hover h3, .location-card:hover p {
    color: white;
}

.location-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
footer {
    background-color: var(--secondary);
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' stroke='%23C5A059' stroke-width='1.2' fill='none' fill-opacity='0' stroke-opacity='0.4'/%3E%3C/svg%3E");
    background-size: cover, 60px 60px;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0 3rem;
    border-top: 3px solid var(--primary);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about {
    max-width: 350px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-about p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    font-size: 1.2rem;
    color: white;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-socials a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-bottom ul {
    display: flex;
    gap: 2rem;
}

.footer-bottom ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom p a {
    transition: var(--transition);
}

.footer-bottom p a:hover {
    color: white !important;
    text-decoration: underline;
}

/* --- Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 3rem;
    border: 1px solid var(--bg-cream);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary);
}

/* --- Info Callouts --- */
.info-box {
    background: var(--secondary);
    color: white;
    padding: 3rem;
    margin-top: 2rem;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.deposit-note {
    background: #fff5e6;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* --- Page Headers --- */
.page-header {
    background-color: var(--secondary);
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' stroke='%23C5A059' stroke-width='1.5' fill='none' fill-opacity='0' stroke-opacity='0.8'/%3E%3C/svg%3E");
    background-size: cover, 60px 60px;
    background-attachment: fixed;
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 3px solid var(--primary);
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.page-header h1 {
    color: white;
    font-size: 4rem;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Filterable Gallery --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-light);
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container { max-width: 92%; }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .booking-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    
    .mobile-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-links li a {
        color: white;
        font-size: 1.5rem;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links.active .nav-close {
        display: block;
    }
    
    .nav-cta { display: none; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .section { padding: 5rem 0; }
    .section-header h2 { font-size: 2.5rem; }
    .locations-grid { grid-template-columns: 1fr; }
    .booking-form { padding: 2rem; }
    
    .hero { height: 85vh; }
    
    .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-us-image { height: 350px; }
    .booking-info h2 { font-size: 2.2rem; }

    .page-header h1 { font-size: 2.5rem; }
    .page-header { padding: 7rem 0 4rem; }

    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .filter-btn {
        flex: 1 1 calc(50% - 1rem);
        min-width: 140px;
        padding: 0.8rem 1rem;
        font-size: 0.7rem;
    }

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

@media (max-width: 480px) {
    .logo img { height: 45px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .cta-btn { width: 100%; text-align: center; }

    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-bottom ul { justify-content: center; }

    .section-header h2 { font-size: 2rem; }
    .service-image { height: 350px !important; }

    .filter-btn {
        flex: 1 1 100%; /* Full width filters on very small phones */
    }
}
