:root {
    --primary-black: #050505;
    --secondary-dark: #111111;
    --accent-dark: #1a1a1a;
    --saffron: #FF9933;
    /* A warmer, richer saffron glow */
    --saffron-glow: rgba(255, 153, 51, 0.6); 
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    /* Montserrat for bold headings, Playfair for elegant accents */
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif; 
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-black);
    color: var(--text-white);
    font-family: var(--font-heading);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--saffron);
}

.highlight-glow {
    color: var(--saffron);
    text-shadow: 0 0 15px var(--saffron-glow);
}

.saffron-text {
    color: var(--saffron);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.cta-button-small {
    text-decoration: none;
    color: var(--text-white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: 0px; /* Square corners look more premium */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

/* Hero Section - The Realistic Premium Look */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crucial: Scale slightly for a slow zoom effect */
    animation: slowZoom 20s infinite alternate; 
}

/* Heavy gradient overlay to make the image look moody and premium */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at 70% 50%, rgba(0,0,0,0.4) 0%, rgba(5,5,5,0.9) 60%, rgba(0,0,0,1) 100%),
                linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 5%;
}

.premium-tag {
    font-family: var(--font-accent);
    color: var(--saffron);
    font-style: italic;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button-main {
    text-decoration: none;
    background-color: var(--saffron);
    color: var(--primary-black);
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.cta-button-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--saffron-glow);
}

/* Impact Section */
.impact-section {
    padding: 120px 5%;
    background-color: var(--primary-black);
    border-bottom: 1px solid var(--accent-dark);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.impact-card {
    background: linear-gradient(145deg, var(--secondary-dark), var(--primary-black));
    padding: 50px 30px;
    border: 1px solid var(--accent-dark);
    transition: all 0.4s ease;
    position: relative;
}

.impact-card:hover {
    border-color: var(--saffron);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8);
}

.icon-box {
    margin-bottom: 25px;
}

.impact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

/* saffron-highlight for key words in impact headings */
.impact-key {
    color: var(--saffron);
    font-weight: 900;
    display: inline-block;
    margin-right: 8px;
    text-shadow: 0 0 8px var(--saffron-glow);
    transform-origin: center;
    will-change: transform, opacity, text-shadow;
}

/* play a subtle pop + glow once when the reveal triggers */
.reveal.active .impact-key {
    animation: saffronPop 800ms cubic-bezier(.2,.8,.2,1) both;
}

/* micro-interaction on hover for accessibility */
.impact-card:hover .impact-key {
    transform: translateY(-2px) scale(1.03);
}

/* keyframes for pop + glow */
@keyframes saffronPop {
    0% {
        transform: scale(0.88);
        opacity: 0;
        text-shadow: 0 0 0 rgba(255,153,51,0);
    }
    60% {
        transform: scale(1.14);
        opacity: 1;
        text-shadow: 0 0 18px var(--saffron-glow);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 8px var(--saffron-glow);
    }
}

.impact-card p {
    color: var(--text-muted);
}

/* Reality Section */
.reality-section {
    padding: 120px 5%;
    background-color: var(--secondary-dark);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.visual-content {
    flex: 1;
}

.image-frame {
    position: relative;
    z-index: 2;
}

.reality-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    /* Grayscale tone with saffron tint for premium feel */
    filter: grayscale(30%) sepia(10%) hue-rotate(320deg);
    border-radius: 4px;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 20px 0 30px;
}

.text-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.premium-list {
    list-style: none;
}

.premium-list li {
    padding: 15px 0;
    border-top: 1px solid var(--accent-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.premium-list li::before {
    content: '■'; /* Square bullet looks more technical/premium */
    color: var(--saffron);
    margin-right: 15px;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
    /* Using image_0.png heavily darkened for contact bg context */
    background: url('image_0.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.92); /* Almost solid black overlay */
}

.z-index-2 { position: relative; z-index: 2; }
.text-center { text-align: center; }

.contact-headline {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-sub {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-style: italic;
}

.mail-box-premium {
    display: inline-block;
    border: 2px solid var(--saffron);
    padding: 20px 40px;
    transition: all 0.3s ease;
}

.mail-box-premium:hover {
    background-color: var(--saffron);
}

.mail-link-premium {
    font-size: 1.8rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mail-link-premium:hover {
    color: var(--primary-black);
}

.small-note {
    margin-top: 30px;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    padding: 40px;
    background-color: #000;
    text-align: center;
    border-top: 1px solid var(--accent-dark);
}

.footer-logo {
    color: var(--saffron);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.fade-in-down {
    animation: fadeInDown 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.5s forwards; /* Added delay */
    opacity: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content h1 { font-size: 3.5rem; }
    .split-layout { flex-direction: column; gap: 50px; }
    .frame-accent { display: none; }
    .text-content h2 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.8rem; }
    .cta-button-small { display: none; }
    .contact-headline { font-size: 2.2rem; }
    .mail-link-premium { font-size: 1.2rem; }
}