:root {
    --primary: #1e272e;
    --nav-bg: #11181e;
    --accent: #b08d57;
    --accent-hover: #967544;
    --light-bg: #fdfdfd;
    --dark: #2d3436;
    --text-muted: #636e72;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Master Box Reset */
*, *::before, *::after { box-sizing: border-box !important; margin: 0; padding: 0; }

html, body { 
    overflow-x: hidden !important; 
    width: 100%; 
    max-width: 100%;
    position: relative; 
    -webkit-text-size-adjust: 100%;
}

.site-wrapper {
    overflow: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body { font-family: 'Montserrat', sans-serif; line-height: 1.7; color: var(--dark); background-color: #fff; }
img { max-width: 100%; height: auto; display: block; }
main { width: 100%; display: block; overflow-x: hidden; }

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

/* UI */
.btn { background: var(--accent); color: white !important; padding: 14px 35px; font-weight: 700; border-radius: 2px; text-decoration: none; display: inline-block; transition: var(--transition); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; border: none; cursor: pointer; }
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.gold-divider { width: 60px; height: 2px; background: var(--accent); margin: 25px 0; }
.gold-divider.center { margin: 25px auto; }
.sub-title { display: block; text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; color: var(--accent); font-weight: 700; margin-bottom: 10px; text-align: center; }

/* Header */
header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.1); background: #fff; width: 100%; }
.header-top { background: var(--primary); padding: 16px 0; border-bottom: 1px solid rgba(176, 141, 87, 0.2); }
.header-top-flex { display: flex; justify-content: space-between; align-items: center; }
.header-logo-group { display: flex; align-items: center; gap: 18px; text-decoration: none !important; }
.header-logo { height: 55px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); }
.header-top-right { display: flex; align-items: center; gap: 25px; }
.fb-icon-nav { height: 32px; width: 32px; display: block; }
.phone-link-top { color: white; font-weight: 700; font-size: 1.15rem; text-decoration: none; }

/* Nav Bar */
.nav-bar { background: var(--nav-bg); padding: 5px 0; }
nav ul { display: flex; list-style: none; justify-content: center; align-items: center; gap: 30px; }

/* Desktop Link Styling */
nav ul li a { 
    color: #fff; 
    padding: 10px 0; 
    font-weight: 400; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    text-decoration: none; 
    position: relative; 
    transition: var(--transition); 
}
nav ul li a::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 1px; 
    bottom: 5px; 
    left: 0; 
    background-color: var(--accent); 
    transition: var(--transition); 
}

/* Reverse Out Animation Logic */
nav ul li a.active::after { width: 100%; }
nav ul li a.active { color: var(--accent); }
nav ul:hover li a.active::after { width: 0; }
nav ul:hover li a.active { color: #fff; }
nav ul li a:hover::after, 
nav ul:hover li a.active:hover::after { width: 100%; }
nav ul li a:hover, 
nav ul:hover li a.active:hover { color: var(--accent); }

.nav-book-btn { background: var(--accent); padding: 8px 18px !important; font-weight: 700 !important; color: white !important; border-radius: 2px; }
.nav-book-btn::after { display: none !important; }

/* Hamburger Menu */
.menu-toggle { display: none; cursor: pointer; padding: 10px; }
.bar { display: block; width: 25px; height: 3px; background-color: white; margin: 5px auto; transition: 0.3s; }

/* Footer */
footer { background: var(--primary); color: #fff; text-align: center; padding: 60px 0; border-top: 4px solid var(--accent); width: 100%; overflow: hidden; }
footer .container { display: flex; flex-direction: column; align-items: center; gap: 15px; }
footer p { font-size: 0.95rem; margin-bottom: 5px; color: #fff !important; }
footer a { color: #fff !important; text-decoration: none !important; }
[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; }
.fb-icon-footer { height: 35px; width: 35px; margin-top: 15px; }

.footer-contact { display: flex; justify-content: center; align-items: center; gap: 12px; max-width: 100%; }
.footer-pipe { color: var(--accent); opacity: 0.7; }

/* Mobile Safeties */
@media (max-width: 768px) {
    .header-top-flex { flex-direction: column; gap: 12px; }
    .header-logo-group { flex-direction: column; gap: 8px; }
    
    .menu-toggle { display: block; margin: 5px auto; }
    
    nav ul { display: none; flex-direction: column; width: 100%; }
    nav ul.active { display: flex; }
    nav ul li a { display: block; padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
    nav ul li a::after { display: none; }

    .footer-contact { flex-direction: column; gap: 8px; width: 100%; padding: 0 10px; }
    .footer-pipe { display: none; }
    
    /* Elegant single-line scaling for the long email address */
    .email-link { font-size: 0.8rem; white-space: nowrap; } 
}