:root {
    --bg-pure: #000000;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --accent-red: #8B0000; /* Deep Crimson/Wine Red */
    --accent-gold: #CD7F32; /* Brushed Bronze/Gold */
    --font-heading: 'Bodoni Moda', serif;
    --font-text: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-pure);
}

body {
    background-color: var(--bg-pure);
    color: var(--text-primary);
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(205, 127, 50, 0.1);
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.sub-headline {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.section-padding {
    padding: 15vh 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 0 5vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.6; /* dim it to make text readable */
    animation: slowPan 30s infinite alternate linear;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

@keyframes slowPan {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: var(--font-text);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #cccccc;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-pure);
}

/* Grids */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
}

.align-start {
    align-items: start;
}

.full-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Founder */
.founder-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.founder-text h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    font-family: var(--font-text);
    font-weight: 300;
    line-height: 1.4;
}

/* Services */
.service-card {
    border: 1px solid #1a1a1a;
    padding: 2.5rem;
    transition: var(--transition);
    background: rgba(10,10,10,0.5);
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1); /* Deep red glow */
}

.service-img-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-family: var(--font-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gallery */
.filter-menu {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-gold);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 10px;
    gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    cursor: pointer;
    overflow: hidden;
    grid-row-end: span 30; /* Rough masonry simulation */
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: grayscale(20%);
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Bookings Form */
.booking-section {
    background: linear-gradient(to right, rgba(139, 0, 0, 0.05), transparent);
}

.booking-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #050505;
    padding: 3rem;
    border: 1px solid #1a1a1a;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.input-group input, .input-group select, .input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: var(--text-primary);
    padding: 0.75rem 0;
    font-family: var(--font-text);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-group select {
    color: var(--text-muted);
}
.input-group select option {
    background: var(--bg-pure);
    color: var(--text-primary);
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-bottom-color: var(--accent-red);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
}

/* Footer */
.footer {
    border-top: 1px solid #1a1a1a;
    padding: 4rem 0;
}

.grid-3-col-footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.low-contrast {
    color: #555;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-gold);
}

.text-right {
    text-align: right;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 1px solid #1a1a1a;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--text-primary);
    font-family: var(--font-text);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}
.close-modal:hover {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .grid-2-col, .grid-3-col, .grid-3-col-footer {
        grid-template-columns: 1fr;
    }
    .grid-2-col { gap: 4rem; }
    .masonry-grid { grid-template-columns: 1fr; }
    .text-right { text-align: left; }
    .social-links { align-items: flex-start; }
    .founder-asset { order: -1; }
    .hero-title { font-size: 3.5rem; }
}
