:root {
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --gold-gradient: linear-gradient(180deg, #e1ba66, #e1ba66);
    --gold-solid: #e1ba66; 
    --gold-bright: #e1ba66;
    --white: #ffffff;
    --text-muted: #a0a0a0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(225, 186, 102, 0.2);
    transition: all 0.3s ease;
}

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

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.logo-jj {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 0.2em 0; /* More safety room to ensure no part of the letter is cut */
    margin-top: -10px; /* Lifted higher to align perfectly with text baseline */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.logo-name, .logo-surname {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.logo-surname {
    margin-top: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    flex: 1.5; /* Slightly less space to increase the side gaps */
    justify-content: center;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
}

.nav-cta-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-left: 2rem; /* Guaranteed extra gap from menu */
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #111;
    min-width: 220px;
    box-shadow: 0px 15px 30px 0px rgba(0,0,0,0.6);
    z-index: 1002;
    list-style: none;
    padding: 0.5rem 0;
    border: 1px solid rgba(225, 186, 102, 0.1);
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0; /* Remove gap */
}

/* Transparent bridge to prevent losing hover state */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px; /* Size of the bridge */
    display: block;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    color: var(--white);
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown-content li a:hover {
    background-color: rgba(225, 186, 102, 0.1);
    color: var(--gold-solid);
    padding-left: 1.8rem; /* Subtle slide effect */
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
        animation: dropdownFadeIn 0.2s ease-out;
    }
    
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(5px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mobile-cta-item {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: var(--gold-solid);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-portrait {
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 0 35px rgba(225, 186, 102, 0.3));
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.hero-text-overlay h1 {
    font-size: clamp(2.5rem, 10vw, 8rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: clamp(5px, 2vw, 15px);
    margin: 0;
    line-height: 1.3;
    padding: 0 0.3em;
    white-space: nowrap;
    font-weight: 700;
}

.hero-text-overlay .subtitle {
    font-size: clamp(0.7rem, 1.2vw, 1.1rem);
    color: var(--white);
    letter-spacing: clamp(6px, 1.5vw, 18px);
    text-transform: uppercase;
    margin-top: 1.5rem;
    opacity: 0.85;
    text-shadow: 0 0 10px rgba(0,0,0,0.9);
}

.hero-actions {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: 5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    line-height: 1.4;
    text-align: center;
}

.btn.primary {
    background: var(--gold-gradient);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(225, 186, 102, 0.2);
}

.btn.primary:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 186, 102, 0.4);
}

.btn.secondary {
    border: 1px solid var(--gold-solid);
    color: var(--gold-solid);
    background: transparent;
    padding: 1.1rem 1.8rem;
}

.btn.secondary:hover {
    background: var(--gold-gradient);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 186, 102, 0.2);
}

/* Booking Widget */
.booking-wrapper {
    margin-top: 3rem;
    margin-bottom: 6rem;
    width: 100%;
    min-height: 600px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(225, 186, 102, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* CTA Sections */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--gold-solid);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    padding-bottom: 0.1em;
    font-weight: 700;
}

.impact-text {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--white);
    line-height: 1.8;
    opacity: 0.9;
}

.impact-text b, .impact-text strong {
    color: var(--gold-solid);
}

/* Strategy Section New Layout */
.strategy-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 6rem;
    align-items: center;
}

.small-title {
    display: block;
    color: var(--gold-solid);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.strategy-description {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--white);
    opacity: 1;
}

.mission-box {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(225, 186, 102, 0.15);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mission-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold-solid);
    font-size: clamp(1.5rem, 3vw, 1.8rem) !important;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.mission-text {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: left;
}

.mission-cta {
    display: flex;
    justify-content: flex-start;
}

/* Strategy Inline Stats */
.strategy-inline-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(225, 186, 102, 0.1);
}

.inline-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inline-stat .stat-value {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.inline-stat .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column as requested */
    gap: 0;
    margin-top: 5rem;
    border: 1px solid rgba(225, 186, 102, 0.1);
}

.about-item {
    background: transparent;
    padding: 3rem 4rem; /* Adjusted for horizontal feel */
    border: 1px solid rgba(225, 186, 102, 0.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    display: flex;
    flex-direction: row; /* Icon and text side-by-side */
    align-items: center;
    gap: 3.5rem;
    height: auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.about-item.active {
    opacity: 1;
    transform: translateY(0);
}

.about-item:hover {
    background: rgba(225, 186, 102, 0.03);
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.4s ease;
}

.about-item:hover::before {
    height: 100%;
}

.about-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0; /* Removed for horizontal layout */
    opacity: 0.6;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.about-item-content {
    flex-grow: 1;
}

.about-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-solid);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 800px; /* Wider text for horizontal blocks */
}

@media (max-width: 768px) {
    .about-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 1.5rem;
    }
    
    .about-icon {
        width: 40px;
        height: 40px;
    }

    .about-item h3 {
        font-size: 1.3rem;
    }
}

.section-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-section.inverse {
    background-color: var(--dark-grey);
}

/* CTA Gate Section - Centered Version */
.cta-gate-section {
    padding: 140px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(225, 186, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-gate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: var(--gold-gradient);
    opacity: 0.4;
}

.gate-centered-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.gate-centered-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin: 1.5rem 0 2rem;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.gate-centered-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.gate-status-line {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(225, 186, 102, 0.03);
    border: 1px solid rgba(225, 186, 102, 0.1);
    border-radius: 100px;
    margin-bottom: 3.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.status-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-solid);
    font-weight: 600;
}

.gate-action .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cta-gate-section {
        padding: 100px 0;
    }
    .gate-centered-content p {
        font-size: 1.1rem;
    }
    .gate-action .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
}

/* Target Profiles Section */
.target-section {
    padding: 120px 0;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(225, 186, 102, 0.05);
}

.target-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

.target-item {
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(225, 186, 102, 0.05);
    padding: 3.5rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    text-align: left;
}

.target-item:hover {
    background: rgba(35, 35, 35, 0.5);
    border-color: rgba(225, 186, 102, 0.2);
    transform: translateY(-10px);
}

.target-item::after { display: none; } /* Remove old divider */

.target-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold-solid);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gold-solid);
    padding-bottom: 0.3rem;
}

.target-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.target-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .target-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .target-item {
        padding: 3rem 2rem;
    }
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: var(--black);
}

.section-title {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.project-card {
    display: flex;
    align-items: center;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(225, 186, 102, 0.05);
    padding: 3rem;
    gap: 4rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:nth-child(even) {
    transform: translateX(50px);
}

.project-card.active {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(225, 186, 102, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.project-card.active .project-image {
    transform: scale(1.1);
}

.icon-box {
    width: 100%;
    height: 100%;
    color: var(--gold-solid);
}

.icon-box svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.2;
    filter: drop-shadow(0 0 10px rgba(225, 186, 102, 0.1));
    transition: all 0.6s ease;
}

.project-card.active .icon-box svg {
    filter: drop-shadow(0 0 15px rgba(225, 186, 102, 0.4));
}

.project-info {
    flex-grow: 1;
}

.project-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.project-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
        transform: translateY(30px) !important;
    }
    
    .project-card.active {
        transform: translateY(0) !important;
    }
}

/* Collaboration Process Section - Enhanced with Animations */
.process-section {
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.process-progress-line {
    position: absolute;
    left: 50%;
    top: 250px;
    bottom: 120px;
    width: 2px;
    background: rgba(225, 186, 102, 0.1);
    transform: translateX(-50%);
    z-index: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Controlled by JS */
    background: var(--gold-gradient);
    box-shadow: 0 0 15px var(--gold-solid);
    transition: height 0.1s linear;
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .process-progress-line {
        left: 20px; /* Aligned with icon center on mobile */
        transform: none;
        top: 150px;
        bottom: 80px;
    }

    .process-step {
        flex-direction: column !important; /* Always stack vertically */
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 6rem;
        padding-left: 50px; /* Make room for the line and indicator */
    }

    .process-step:nth-child(even) {
        flex-direction: column !important;
    }

    .process-content {
        width: 100%;
        order: 2;
    }

    .process-visual {
        width: 100%;
        height: 250px; /* Smaller height for mobile */
        order: 1;
    }

    .process-visual .icon-box {
        width: 80px;
        height: 80px;
    }

    .process-number {
        font-size: 5rem;
        right: 10px;
        bottom: 10px;
    }
}

.process-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 12rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
}

.process-visual {
    flex: 1;
    height: 400px;
    background-color: #0d0d0d;
    background-image: 
        linear-gradient(rgba(225, 186, 102, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225, 186, 102, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    border: 1px solid rgba(225, 186, 102, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s ease;
}

.process-step.active .process-visual {
    border-color: rgba(225, 186, 102, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.process-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(225, 186, 102, 0.05), transparent 70%);
}

.process-visual .icon-box {
    width: 120px;
    height: 120px;
    z-index: 2;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step.active .icon-box {
    transform: scale(1);
    opacity: 1;
}

.process-visual .icon-box svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(225, 186, 102, 0.1));
}

.process-step.active .icon-box svg {
    filter: drop-shadow(0 0 20px rgba(225, 186, 102, 0.4));
}

.process-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(225, 186, 102, 0.02);
    position: absolute;
    right: -10px;
    bottom: -20px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
    transition: all 1s ease;
}

.process-step.active .process-number {
    color: rgba(225, 186, 102, 0.05);
}

.process-content h3 {
    font-size: 2rem;
    color: var(--gold-solid);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.process-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Trust Section */
.trust-section {
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.trust-image {
    position: relative;
    border-radius: 4px;
    background: #0d0d0d;
    border: 1px solid rgba(225, 186, 102, 0.15);
    aspect-ratio: 1 / 1;
    display: flex;
    max-width: 440px;
    margin-left: auto;
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 1.5rem;
    border-radius: 2px;
    z-index: 5;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-width: 140px;
}

.trust-badge .badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.trust-badge .badge-text {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    filter: sepia(20%) contrast(110%) brightness(90%);
    transition: all 0.5s ease;
}

.trust-image:hover img {
    filter: sepia(0%) contrast(100%) brightness(100%);
    opacity: 1;
}

.trust-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.trust-content .impact-title {
    font-size: 2.8rem; /* Slightly smaller to save space */
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.trust-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 620px;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.trust-stat {
    border-left: 2px solid rgba(225, 186, 102, 0.2);
    padding: 0.8rem 0 0.8rem 2rem;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    background: linear-gradient(90deg, rgba(225, 186, 102, 0.08), transparent);
    border-left-color: var(--gold-solid);
    padding-left: 2.5rem;
}

.trust-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--gold-solid);
    font-weight: 600;
}

.trust-stat .stat-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-white);
}

/* FAQ/Pricing Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.faq-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(15, 15, 15, 0.6));
    border: 1px solid rgba(225, 186, 102, 0.1);
    padding: 4rem;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.faq-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.faq-intro {
    font-size: 0.95rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.price-tiers, .guarantee-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.price-tier, .guarantee-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(225, 186, 102, 0.05);
}

.price-tier:last-child, .guarantee-item:last-child {
    border-bottom: none;
}

.price-tier .price {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.price-tier .tier-label, .guarantee-item .stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-solid);
    text-transform: uppercase;
    font-weight: 700;
}

.guarantee-item .stat-label {
    margin-bottom: 0.8rem;
}

.price-details {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.guarantee-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff;
}

@media (max-width: 1024px) {
    .trust-grid {
        gap: 3rem;
    }
    
    .trust-content .impact-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-bottom: 5rem;
    }

    .trust-content {
        order: 1;
    }

    .trust-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Case Studies Section - Refactored for Slider */
.cases-section {
    padding: 120px 0;
    background-color: #080808;
    position: relative;
    overflow: hidden;
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.slider-nav {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(225, 186, 102, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    border-color: var(--gold-solid);
    background: rgba(225, 186, 102, 0.1);
    color: var(--gold-solid);
}

.cases-slider-container {
    margin: 0 -1rem;
    padding: 1rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.cases-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.cases-slider {
    display: flex;
    gap: 2rem;
    width: max-content;
    align-items: stretch; /* Ensure all cards are the same height */
    padding-bottom: 20px; /* Extra room for shadow at the bottom */
}

.case-card {
    width: 350px; /* Base width */
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(225, 186, 102, 0.1);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    scroll-snap-align: start;
}

@media (min-width: 1100px) {
    .case-card {
        width: calc((1100px - 4rem) / 3);
    }
}

@media (max-width: 768px) {
    .cases-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .cases-slider-container {
        margin: 0 -2rem; /* Adjust to match container padding */
        padding: 0 2rem;
    }

    .cases-slider {
        gap: 1rem;
    }

    .case-card {
        width: calc(100vw - 4rem);
        max-width: none;
        padding: 2.5rem 1.5rem;
        scroll-snap-align: center;
    }

    .case-card h3 {
        min-height: auto;
        font-size: 1.3rem;
    }

    .case-card p {
        min-height: auto;
        font-size: 0.9rem;
    }

    .stat-val {
        font-size: 1.1rem;
    }
}

.case-card:hover {
    border-color: var(--gold-solid);
    box-shadow: 0 0 30px rgba(225, 186, 102, 0.15);
    background: linear-gradient(145deg, #222 0%, #0d0d0d 100%);
}

.case-content {
    flex-grow: 1; /* Pushes stats to the bottom */
    display: flex;
    flex-direction: column;
}

.case-card .tag {
    color: var(--gold-solid);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.case-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    min-height: 4rem; /* Ensures title area is uniform */
}

.case-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 7rem; /* Ensures description area is uniform */
}

.case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(225, 186, 102, 0.08);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-val {
    color: rgba(225, 186, 102, 0.7); /* Softened gold */
    font-size: 1.2rem; /* Slightly smaller */
    font-weight: 600; /* Less heavy */
}

.stat-desc {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(160, 160, 160, 0.6); /* More muted text */
}

.result-badge {
    background: rgba(225, 186, 102, 0.05); /* Subtler background */
    color: rgba(225, 186, 102, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(225, 186, 102, 0.1);
}

.case-card .result-label {
    margin-top: auto;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.case-card .result-label i {
    color: var(--gold-solid);
}

.case-card .view-case {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-solid);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.case-card:hover .view-case {
    opacity: 1;
}

/* Footer and Other Sections */
footer {
    padding: 100px 0 60px;
    text-align: center;
    border-top: 1px solid rgba(225, 186, 102, 0.1);
    background-color: var(--black);
}

footer .section-title {
    margin-bottom: 2.5rem;
    display: block;
    width: 100%;
    text-align: center;
}

.btn-nav-cta {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-nav-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 186, 102, 0.3);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(225, 186, 102, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand .logo-container {
    justify-content: center;
    width: 100%;
}

.footer-brand .brand-description {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 80px 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(225, 186, 102, 0.1);
    border-bottom: 1px solid rgba(225, 186, 102, 0.1);
    margin-bottom: 80px;
}

.lead-magnet-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.lead-magnet-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin: 1.5rem 0;
}

.lead-magnet-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.lead-magnet-form {
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.form-success-message {
    padding: 2rem;
    animation: fadeInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success-message h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.form-group-stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group-stacked input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(225, 186, 102, 0.1);
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-stacked input:focus {
    outline: none;
    border-color: var(--gold-solid);
    background: rgba(255, 255, 255, 0.05);
}

.form-group-stacked .btn {
    width: 100%;
    padding: 1.2rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1.2rem;
    background: #1a1a1a;
    border: 1px solid rgba(225, 186, 102, 0.2);
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--gold-solid);
}

/* Custom Checkbox Styles */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    user-select: none;
    text-align: left;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #1a1a1a;
    border: 1px solid rgba(225, 186, 102, 0.3);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #252525;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--gold-solid);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 600px) {
    .form-group-inline {
        flex-direction: column;
    }
    
    .lead-magnet-box h3 {
        font-size: 1.8rem;
    }
}

.footer-nav h4, .footer-contact h4 {
    color: var(--gold-solid);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--gold-solid);
}

.footer-contact p {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-links-footer a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.social-links-footer a:hover {
    color: var(--gold-solid);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(225, 186, 102, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-cookie {
    background: transparent;
    border: 1px solid var(--gold-solid);
    color: var(--gold-solid);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: var(--gold-solid);
    color: var(--black);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: none;
}

/* 
==========================================================================
   RESPONSIVE DESIGN (MOBILE OPTIMIZATION)
========================================================================== 
*/

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-text-overlay h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 100px 2rem 40px;
        z-index: 1000;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    /* Mobile Dropdown Adjustments */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropbtn {
        justify-content: center;
        width: 100%;
        padding: 0.5rem 0; /* Match other links */
    }

    .dropdown-content {
        position: static;
        transform: none;
        width: 100%;
        background: rgba(225, 186, 102, 0.05);
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-content li {
        margin: 0 !important;
    }

    .dropdown-content li a {
        padding: 1.2rem 0;
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(225, 186, 102, 0.05);
    }

    .nav-links .mobile-cta-item {
        display: block;
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    .nav-links .mobile-cta-btn {
        display: inline-block;
        background: var(--gold-gradient);
        color: #0a0a0a;
        padding: 1rem 2rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
        width: 100%;
        box-shadow: 0 10px 20px rgba(225, 186, 102, 0.2);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-cta-wrapper {
        display: none !important;
    }

    .logo-container {
        flex: 1;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .mission-cta {
        justify-content: center;
    }

    .mission-box {
        padding: 2.5rem 1.5rem;
    }

    .mission-title, .mission-text {
        text-align: center;
    }

    .strategy-left {
        padding: 0 1rem;
    }

    .strategy-inline-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .inline-stat {
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Global Section Spacing */
    .cta-section, .projects-section, .process-section, footer {
        padding: 80px 0;
    }

    header {
        height: 80px;
    }

    nav {
        padding: 0 1rem;
    }

    .logo-jj {
        font-size: 2.5rem;
    }

    .logo-text {
        display: none;
    }

    .btn-nav-cta {
        display: none;
    }

    .nav-cta-wrapper {
        display: none !important;
    }

    /* Hero Section Mobile Overlay */
    .hero {
        height: calc(100vh - 80px);
        padding: 0;
        overflow: hidden;
    }

    .hero .container {
        max-width: none;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .hero-content-wrapper {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; /* Background layer */
        margin-bottom: 0;
        display: block;
    }

    .hero-portrait {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom center;
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
        transform: scale(0.95); /* Slightly scale down to fit more comfortably */
        transform-origin: bottom center;
    }

    .hero-text-overlay {
        position: absolute; /* BACK TO ABSOLUTE to stay on the image */
        z-index: 10;
        top: 45%; /* Slightly higher to give more room for feet */
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 2rem;
        pointer-events: none;
    }

    .hero-text-overlay h1 {
        font-size: clamp(2.2rem, 11vw, 4rem);
        white-space: normal;
        letter-spacing: 4px;
        text-shadow: 0 2px 25px rgba(0,0,0,0.9);
        line-height: 1.2;
    }

    .hero-text-overlay .subtitle {
        font-size: 0.85rem;
        letter-spacing: 4px;
        margin-top: 1rem;
        color: #fff;
    }

    .hero-actions {
        position: absolute;
        bottom: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        z-index: 20; /* Top layer - interactive */
        display: flex;
        justify-content: center;
    }

    .hero::after {
        height: 25vh; /* Reduced from 40vh to show more legs/feet */
    }

    /* Grid Adjustments */
    .impact-title {
        font-size: 2.2rem;
    }

    .impact-text {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .about-grid, .projects-grid, .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-item, .project-card, .case-card {
        padding: 2.5rem 1.5rem;
    }

    /* Process Adjustments */
    .process-step, .process-step:nth-child(even) {
        flex-direction: column-reverse;
        gap: 0.5rem;
        margin-bottom: 5rem;
        text-align: left;
        align-items: flex-start;
    }

    .process-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .process-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .process-visual {
        width: 100%;
        height: auto;
        background: transparent;
        border: none;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        position: relative;
        margin-bottom: 0;
        padding-left: 0;
    }

    .process-visual .icon-box {
        display: none;
    }

    .process-number {
        font-size: 3.5rem;
        font-weight: 700;
        opacity: 0.2;
        color: #fff;
        font-family: 'Playfair Display', serif;
        position: relative;
        top: 0;
        left: 0;
        line-height: 1;
    }

    .gold-digit {
        color: var(--gold-solid); /* Second digit gold */
    }

    /* Footer Adjustments */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand .brand-description {
        margin: 1.5rem auto 0;
    }

    .footer-nav ul, .social-links-footer {
        justify-content: center;
        gap: 1.5rem;
    }

    .booking-wrapper {
        min-height: 500px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-text-overlay h1 {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem 1rem;
        font-size: 0.75rem;
        white-space: normal;
        height: auto;
        min-height: 3.5rem;
    }

    .btn-nav-cta {
        padding: 0.6rem 1rem;
    }

    .hero-actions {
        bottom: 16%;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 200px;
        min-height: 3rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* 
==========================================================================
   NEWSLETTER & POST SPECIFIC OVERRIDES (TYPOGRAPHY FIX)
========================================================================== 
*/

#newsletter-page .impact-title,
#post-page .post-title-main {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

@media (max-width: 768px) {
    #newsletter-page .impact-title,
    #post-page .post-title-main {
        font-size: 1.4rem !important;
        letter-spacing: -0.5px !important;
        margin-top: 10px !important;
    }
}

/* 
==========================================================================
   NEWSLETTER POPUP STYLES - PREMIUM REDESIGN
========================================================================== 
*/

.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.newsletter-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popup-content {
    position: relative;
    z-index: 10001;
    width: 100%;
    max-width: 500px;
    background: #0a0a0a;
    border: 1px solid rgba(225, 186, 102, 0.3);
    padding: 3.5rem 2.5rem;
    border-radius: 4px; /* Industrial sharp look */
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    animation: popupScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #444;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--gold-solid);
}

@keyframes popupScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.popup-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.popup-box p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form input {
    background: transparent;
    border: 1px solid #222;
    padding: 1.2rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--gold-solid);
}

.popup-form button {
    background: var(--gold-gradient);
    border: none;
    padding: 1.2rem;
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225, 186, 102, 0.2);
}

@media (max-width: 480px) {
    .popup-content {
        padding: 2rem 1.2rem;
        max-width: 90%;
    }
    .popup-box h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .popup-box p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    .popup-form input, 
    .popup-form button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .checkbox-container {
        font-size: 0.75rem !important;
        margin-top: 1rem !important;
    }
}


/* 
==========================================================================
   HOMEPAGE PROJECTS PREVIEW
========================================================================== 
*/

.projects-preview-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.projects-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.project-preview-card {
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(225, 186, 102, 0.1);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-solid);
    background: rgba(35, 35, 30, 0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.project-tag {
    color: var(--gold-solid);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.project-preview-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.project-preview-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.projects-placeholder {
    padding: 60px 2rem;
    text-align: center;
    border: 1px dashed rgba(225, 186, 102, 0.2);
    border-radius: 12px;
    margin-top: 2rem;
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--gold-solid);
    margin-bottom: 2rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .projects-preview-section {
        padding: 60px 0;
    }
    .projects-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .project-preview-card {
        padding: 2rem 1.5rem;
    }
}
 gap: 1.5rem;
    }
    .project-preview-card {
        padding: 2rem 1.5rem;
    }
}
        padding: 2rem 1.5rem;
    }
}
 gap: 1.5rem;
    }
    .project-preview-card {
        padding: 2rem 1.5rem;
    }
}
