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

:root {
    /* Brand Palette */
    --royal-red: #73000b;
    --royal-red-dark: #4a0006;
    --gold: #C5A059;
    --gold-light: #DFBB74;
    --gold-glow: rgba(197, 160, 89, 0.4);
    --ivory: #FFFFF0;
    --white: #FFFFFF;

    /* Dark Mode / Premium Corporate theme */
    --bg-dark: #050505;
    --bg-surface: #111111;
    --bg-surface-light: #1A1A1A;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Utilities */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px var(--gold-glow);
    --container-width: 1280px;
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Classes */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
}

.text-ivory {
    color: var(--ivory);
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

p.lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover {
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-primary::before {
    background: var(--white);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    line-height: 1.2;
}

.logo-text span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-top: 2px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Footer */
footer {
    background: var(--bg-surface);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-col p,
.footer-col a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #777;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icons a .custom-x-icon {
    fill: var(--white) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icons a:hover .custom-x-icon {
    fill: #C8A45D !important;
}

.social-icons a:hover {
    color: #C8A45D;
    border-color: #C8A45D;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(200, 164, 93, 0.2);
}

.social-handle a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.social-handle a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #C8A45D;
    transition: var(--transition-smooth);
}

.social-handle a:hover::after {
    width: 100%;
}

.social-handle a:hover {
    color: #C8A45D;
}

/* Mobile Menu Toggle (hidden on desktop) */
.mobile-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
}

.hamburger {
    width: 30px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Utility Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Branding Section */
.branding-hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.branding-services {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.b-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
    height: 100%;
}

.b-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-glow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(197, 160, 89, 0.05);
}

.b-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.b-card:hover i {
    transform: scale(1.1);
    color: var(--gold-light);
}

.b-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.b-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-strip {
    padding: 5rem 0;
    background: linear-gradient(90deg, #111, #1a1a1a, #111);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.highlight-strip h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.process-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap; 
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin-bottom: 2rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-surface-light);
    border: 1px solid var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition-smooth);
    position: relative;
}

.process-step:hover .step-icon {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-connector {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
    margin: 0 10px;
    margin-bottom: 3.5rem;
}

.branding-cta {
    padding: 6rem 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive basics */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-links.nav-active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-strip h3 {
        font-size: 1.5rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .step-connector {
        width: 1px;
        height: 60px;
        flex: none;
        margin: -1.5rem auto 1.5rem;
        background: linear-gradient(180deg, transparent, var(--gold-glow), transparent);
        display: block;
    }

    .process-step {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 200px;
        margin: 0 auto 1.5rem;
        row-gap: 1.2rem;
        column-gap: 1rem;
    }
}