/* --- THEME VARIABLES --- */
:root {
    --bg-color: #070707;
    --surface-color: #111111;
    --text-main: #EAEAEA;
    --text-muted: #888888;
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.3);
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--gold);
    color: var(--bg-color);
}

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

h1, h2, h3 {
    font-family: var(--font-head);
    font-weight: 400;
}

.subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.nav-brand {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.1em;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

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

.nav-cta {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-image-container {
        width: 60%;
    }
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-color) 20%, transparent 100%);
}

.hero-content {
    max-width: 800px;
    padding-top: 5rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 400px;
    font-weight: 300;
}

/* --- VISION (About) --- */
.vision {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 900px) {
    .vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }
}

.vision-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--gold);
}

.vision-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.stat-line {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-family: var(--font-head);
}

.gold-text {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

/* --- EXPERTISE (Services) --- */
.expertise {
    padding: 5rem 0 8rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

@media (min-width: 768px) {
    .service-row {
        grid-template-columns: 80px 1fr 450px;
        gap: 4rem;
    }
}

.service-number {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--gold);
}

.service-details h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-details p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 400px;
}

/* FIX: Image will now scale proportionally instead of clipping */
.service-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.4s ease;
}

.service-row:hover .service-image img {
    filter: grayscale(0%);
}

/* --- FOOTER --- */
.footer {
    padding: 6rem 0 4rem;
    background-color: var(--surface-color);
    text-align: center;
}

.footer h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 4rem;
}

.magnetic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 6rem;
}

.magnetic-btn:hover {
    background-color: var(--gold);
    color: var(--bg-color);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
    gap: 2rem;
}

.meta-col p {
    color: var(--text-main);
    font-size: 0.9rem;
}

.meta-col .disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}