/* --- CSS Variables (Mapping from Tailwind Config) --- */
:root {
    --brand-gold: #C5A059;
    --brand-gold-light: #E5D1A5;
    --brand-dark: #0a1510; /* Deep Emerald Black */
    --brand-green: #132a22; /* Rich Emerald */
    --brand-cream: #fcfbf9;
    --brand-text: #2c3e50;
    
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Montserrat", sans-serif;
    
    --spacing-base: 1rem;
    --spacing-large: 4rem; /* ~ py-16 */
    --spacing-xl: 5rem;    /* ~ py-20 */
}

/* --- Base & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--brand-cream);
    color: var(--brand-text);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background-color: var(--brand-gold);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-gold); }

img, video {
    max-width: 100%;
    display: block;
}

a { text-decoration: none; color: inherit; }

/* --- Utility Classes (Replacing Tailwind Utils) --- */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.container-narrow { max-width: 56rem; /* max-w-4xl */ }
.container-medium { max-width: 64rem; /* max-w-5xl */ }
.container-large { max-width: 72rem; /* max-w-6xl */ }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.py-large { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .py-large { padding-top: 4rem; padding-bottom: 4rem; } }
.pb-large { padding-bottom: 4rem; }
.pt-large { padding-top: 4rem; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-gold);
    cursor: pointer;
    transition: color 0.3s;
}
@media (min-width: 768px) { .nav-logo { font-size: 1.5rem; margin-left: -1.5rem; } }
.nav-logo:hover { color: #fff; }

.nav-links {
    display: none;
}
@media (min-width: 768px) {
    display: flex;
    gap: 2rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.nav-links a:hover { color: var(--brand-gold); transition: color 0.3s; }

.nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--brand-gold);
    font-size: 1.5rem;
    cursor: pointer;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* JS Activated Classes */
.nav-glass {
    background: rgba(10, 21, 16, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-dark);
}

.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 0 1.5rem;
    text-center;
    margin-top: 3rem;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-badge p {
    color: var(--brand-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 1.875rem; /* text-3xl */
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    text-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.text-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--brand-gold), #fff);
}

.line-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
}
.line-decorator::before, .line-decorator::after {
    content: '';
    height: 1px;
    width: 50px;
    background-color: var(--brand-gold);
    margin: 0 15px;
}
.diamond {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--brand-gold);
    transform: rotate(45deg);
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1rem;
    color: rgba(252, 251, 249, 0.9);
    max-width: 48rem;
    margin: 2rem auto 0;
    line-height: 1.625;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }

.scroll-down-icon {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 1s infinite;
}
.scroll-down-icon i {
    color: var(--brand-gold);
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translate(-50%, 0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* --- Intro Section --- */
.intro-section {
    padding: 4rem 0;
    background-color: var(--brand-cream);
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .intro-section { padding: 5rem 0; } }

.intro-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    line-height: 1.625;
    font-style: italic;
}
@media (min-width: 768px) { .intro-quote { font-size: 1.875rem; } }

.divider-gold {
    width: 4rem;
    height: 1px;
    background-color: var(--brand-gold);
    margin: 0 auto;
}

/* --- Content Sections --- */
.content-section {
    background-color: var(--brand-cream);
    color: var(--brand-text);
    position: relative;
}
.border-top { border-top: 1px solid rgba(255,255,255,0.5); }

/* Images & Grids */
.full-width-media { width: 100%; }

.shadow-wrap { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-wrap-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.img-blend-bottom {
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
.img-blend-all {
    mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 80%, transparent 100%);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.hover-img-wrap {
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 0.125rem;
}
.hover-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.7s, opacity 0.3s;
}
.hover-img-wrap:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Typography & Layouts */
.section-header { text-center: center; margin-bottom: 2.5rem; }
.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--brand-dark);
    text-transform: uppercase;
}
@media (min-width: 768px) { .section-title { font-size: 3.75rem; } }

.section-subtitle {
    color: var(--brand-gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

.flex-row { display: flex; flex-direction: column; }
@media (min-width: 768px) { .flex-row { flex-direction: row; } }

.gap-large { gap: 3rem; }

.col-half { width: 100%; }
@media (min-width: 768px) { .col-half { width: 50%; } }

.col-40 { width: 100%; }
@media (min-width: 1024px) { .col-40 { width: 41.66%; } }

.col-60 { width: 100%; }
@media (min-width: 1024px) { .col-60 { width: 58.33%; } }

.space-y > * + * { margin-top: 1.5rem; }

.text-justify { text-align: justify; }
.text-light { font-weight: 300; }

/* Drop Cap & Quotes */
.drop-cap:first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 4rem;
    padding-right: 1rem;
    padding-top: 0.25rem;
    font-family: var(--font-serif);
    color: var(--brand-gold);
    font-weight: 700;
}

.highlight-box {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--brand-gold);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.italic-light { font-style: italic; font-weight: 300; color: #374151; }

.text-content-narrow {
    max-width: 56rem; /* max-w-4xl */
    margin: 0 auto;
    font-weight: 300;
    color: #4b5563;
    text-align: justify;
    line-height: 1.75;
}
.quote-border {
    font-style: italic;
    color: var(--brand-dark);
    border-left: 4px solid var(--brand-gold);
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.emphasis-text {
    font-weight: 700;
    color: var(--brand-dark);
    margin-top: 1rem;
    text-align: center;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.caption-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-gold);
}

/* --- Section 2 Specifics --- */
.full-video-container {
    width: 100%;
    position: relative;
    height: 80vh;
    background-color: var(--brand-dark);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}
.full-video-container video { width: 100%; height: 100%; object-fit: cover; }
.overlay-light { position: absolute; inset: 0; background-color: rgba(0,0,0,0.1); }

.text-gold { color: var(--brand-gold); }

.quote-box {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--brand-gold);
    position: relative;
}
.quote-icon {
    color: rgba(197, 160, 89, 0.3);
    font-size: 2.25rem;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}
.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--brand-dark);
    font-size: 1.125rem;
    padding-left: 1rem;
}

.highlight-blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brand-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--brand-gold);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* --- Section 3 Stats --- */
.italic-medium { font-style: italic; font-weight: 500; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-box {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    border-top: 4px solid var(--brand-gold);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0.125rem;
}
.stat-number {
    color: var(--brand-gold);
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
}
.stat-unit { font-size: 0.875rem; font-family: var(--font-sans); font-weight: 300; }
.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-top: 0.5rem;
}

.custom-list { list-style-type: disc; padding-left: 1.25rem; }
.custom-list li { margin-bottom: 0.5rem; }

/* --- Section 4 Specifics --- */
.quote-border-box {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 0.125rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.quote-italic-large {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--brand-dark);
    font-style: italic;
    text-align: center;
}

/* --- Section 5 Cards --- */
.card-image-bg {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--brand-gold);
    position: relative;
    overflow: hidden;
    border-radius: 0.125rem;
    transition: box-shadow 0.3s;
}
.card-image-bg:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.card-image-bg > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.card-content { position: relative; z-index: 10; }
.card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-header-small {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--brand-dark);
    text-transform: uppercase;
    font-weight: 700;
}

.max-w-700 { max-width: 700px; }

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.feature-box {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0.125rem;
}
.feature-box:hover { transform: translateY(-0.25rem); }
.icon-feature { color: var(--brand-gold); font-size: 1.875rem; margin-bottom: 1rem; }
.feature-title { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.75rem; color: #6b7280; text-align: justify; }

.border-top-light { border-top: 1px solid rgba(197, 160, 89, 0.1); }

/* --- Footer Hero --- */
.footer-hero {
    padding: 0;
    background-color: var(--brand-dark);
    color: #fff;
    text-align: center;
    position: relative;
    height: 100vh;
}
.bg-wrap { position: absolute; inset: 0; }
.bg-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--brand-dark), transparent, transparent);
}

.content-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 1.5rem;
}

.quote-final {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.625;
    margin-bottom: 2.5rem;
    max-width: 56rem;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) { .quote-final { font-size: 1.875rem; } }

.btn-share {
    padding: 1rem 3rem;
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}
.btn-share:hover {
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(197, 160, 89, 0.5);
}

/* --- Main Footer --- */
.main-footer {
    background-color: #000;
    color: rgba(255,255,255,0.6);
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-weight: 300;
    position: relative;
    z-index: 20;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) { .footer-content { flex-direction: row; } }

.footer-left { text-align: center; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-left { text-align: left; margin-bottom: 0; } }

.footer-logo { color: var(--brand-gold); font-family: var(--font-serif); font-size: 1.125rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.footer-sub { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .footer-right { flex-direction: row; gap: 2rem; text-align: left; }
}

/* --- Animations (Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}