:root {
    --bg-color: #FAF9F6; /* Warm off-white */
    --text-color: #0f172a; /* Deep navy/slate */
    --accent: #b45309; /* Bronze/Gold */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

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

/* Custom Cursor */
* {
    cursor: none;
}
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, background 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: multiply;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Typography */
h1, h2, h3, h4, blockquote {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

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

.menu-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: none;
}

/* Premium Hero Redesign */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #FAF9F6 0%, #F5F4F0 100%);
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 83, 9, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
    font-family: var(--font-body);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.25);
}

.btn-hero-secondary {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.btn-hero-secondary:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 10px;
    background: white;
}

.hero-image-container img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Floating Glassmorphism Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.badge-top {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 40px;
    right: -40px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(180, 83, 9, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.badge-text p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}


/* Marquee */
.marquee-section {
    padding: 30px 0;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
    overflow: hidden;
    white-space: nowrap;
    background: white;
}

.marquee {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Impact Numbers */
.impact {
    padding: 120px 0;
    background: var(--text-color);
    color: white;
}

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

.impact-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

.impact-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.impact-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Expertise / Bento */
.expertise {
    padding: 150px 0;
    background: white;
}

.section-title {
    margin-bottom: 80px;
    max-width: 600px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: #475569;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 340px);
    gap: 30px;
}

.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(180, 83, 9, 0.12);
}

.bento-item.large {
    grid-row: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-item .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    color: white;
    z-index: 2;
    transition: background 0.4s ease;
}

.bento-item:hover .content {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(180, 83, 9, 0.1) 100%);
}

.bento-item h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
}

.bento-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.bento-item:hover .read-more {
    color: #f59e0b;
    gap: 12px;
}

/* Methodology */
.methodology-editorial {
    padding: 150px 0;
    background: var(--bg-color);
    border-top: 1px solid #cbd5e1;
}

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

.method-item {
    padding: 60px 0;
    border-bottom: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.method-item h4 {
    flex: 1;
    font-size: 2.5rem;
    color: var(--accent);
}

.method-item p {
    flex: 2;
    font-size: 1.4rem;
    color: #475569;
    line-height: 1.5;
}

/* Industries */
.industries {
    padding: 150px 0;
}

.industries h2 {
    font-size: 4rem;
    margin-bottom: 80px;
    text-align: center;
}

.industry-list {
    border-top: 1px solid #cbd5e1;
}

.industry-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #cbd5e1;
    transition: background 0.3s ease;
}

.industry-row:hover {
    background: white;
}

.industry-text {
    flex: 1;
    padding-right: 40px;
    position: relative;
}

.industry-text span {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.industry-text h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.industry-text p {
    font-size: 1.2rem;
    color: #475569;
}

.industry-img {
    flex: 1;
    height: 400px;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-row.visible .industry-img {
    clip-path: inset(0 0 0 0);
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quote */
.quote-section {
    padding: 150px 5%;
    text-align: center;
    background: var(--text-color);
    color: white;
}

blockquote {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto 40px;
}

cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1.1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Insights */
.insights {
    padding: 150px 0;
    background: white;
}

.insights .section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 100%;
}

.insights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.insight-article {
    cursor: pointer;
}

.img-wrapper {
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-article:hover img {
    transform: scale(1.05);
}

.meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 10px;
}

.insight-article h3 {
    font-size: 1.8rem;
    line-height: 1.3;
}


/* Footer */
footer {
    padding: 100px 5% 50px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.link-group a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; padding-top: 120px; }
    .hero-text { margin-bottom: 60px; }
    .hero-image { position: relative; width: 100%; height: 50vh; }
    .impact-grid, .insights-row { grid-template-columns: 1fr; gap: 40px; }
    .bento-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto;
    }
    .bento-item {
        height: 350px;
    }
    .method-item { flex-direction: column; align-items: flex-start; gap: 20px; }
    .industry-row { flex-direction: column; gap: 40px; }
    .industry-img { width: 100%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero h1 { font-size: 3.5rem; }
    .footer-content { flex-direction: column; gap: 60px; }
}
