@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-steel: #2c1a12;      /* Deep Brown */
    --bg-graphite: #3d2418;   /* Medium Brown */
    --bg-midnight: #1a0f0a;   /* Very Dark Brown */
    
    --accent-silver: #fef08a; /* Soft Yellow */
    --accent-red: #8b4513;    /* Saddle Brown */
    --accent-yellow: #eab308; /* Vivid Yellow */
    --grad-ry: linear-gradient(135deg, #a16207, #eab308); /* Dark golden brown to yellow */
    
    --text-primary: #fefce8;  /* Off-white yellow tint */
    --text-secondary: #d6d3d1; /* Soft readable contrast */
    
    --glass-bg: rgba(234, 179, 8, 0.03);
    --glass-bg-hover: rgba(234, 179, 8, 0.08);
    --glass-border: rgba(234, 179, 8, 0.15);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-steel);
    background-image: radial-gradient(circle at 50% 0%, var(--bg-graphite) 0%, var(--bg-steel) 100%);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Typography Utility */
.text-accent { 
    background: var(--grad-ry);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-silver { color: var(--accent-silver); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-ry);
    color: #1a0f0a;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(234, 179, 8, 0.5);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--accent-yellow);
    border: 1px solid var(--accent-red);
}

.btn-outline:hover {
    background: rgba(139, 69, 19, 0.2);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* Glassmorphism System */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.glass-panel:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(234, 179, 8, 0.4);
}

/* Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(44, 26, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: var(--transition-smooth);
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.top-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    color: #fff;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-ry);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 32px;
    height: 32px;
}

/* Main Content Area */
.main-wrapper {
    flex-grow: 1;
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* Hero Section */
.hero {
    height: calc(100vh - 80px);
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-graphite) url('images/photo-1614164185128-e4ec99c436d7.png') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 26, 18, 0.95) 0%, rgba(44, 26, 18, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    background: var(--grad-ry);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Sections General */
.section {
    padding: 8rem 5%;
    position: relative;
}

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

.section-header p {
    color: var(--accent-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Grids - Fluid Design */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

/* Watch Cards */
.watch-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.watch-img-wrap {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.watch-card img {
    max-height: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.watch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.watch-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Content Blocks */
.content-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
    flex-wrap: wrap;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.content-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-red);
    z-index: -1;
    opacity: 0.5;
}

.content-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
    border-radius: 4px;
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.content-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(44, 26, 18, 0.9), rgba(26, 15, 10, 0.9)), url('images/photo-1507679799987-c73779587ccf.png') center/cover fixed;
    padding: 10rem 5%;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

/* Forms */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(234, 179, 8, 0.05);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 5% 8rem;
}

.legal-container h1 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.legal-container > p.text-center {
    margin-bottom: 4rem;
    color: var(--accent-yellow);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    color: var(--accent-silver);
}

.legal-container p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Modal Styling */
.watch-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 26, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    padding: 1rem;
}

.watch-modal.active {
    display: flex;
    opacity: 1;
}

.watch-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover { color: var(--accent-yellow); }

.watch-modal-body {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.watch-modal-img {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.watch-modal-img img {
    max-height: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.watch-modal-info {
    flex: 1;
    min-width: 300px;
}

.watch-modal-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent-silver);
}

.watch-modal-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #000;
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    grid-column: 1 / -1;
}

@media(min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 350px;
}

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

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

.footer-links ul li a {
    color: var(--text-secondary);
}

.footer-links ul li a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive Overrides */
@media (max-width: 992px) {
    .top-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(44, 26, 18, 0.98);
        flex-direction: column;
        padding: 2rem 5%;
        text-align: center;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .top-nav.mobile-open {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .watch-modal-body {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}