:root {
    /* Eco-Industrial Palette */
    --primary-color: #C89F5D;
    --primary-dark: #A07D45;
    --secondary-color: #1A3C34;
    --background: #F4F1EA;
    --surface: #FCFAF8;
    --surface-dark: #EAE6DD;
    --text-primary: #0F1F1B;
    --text-secondary: #4A5D57;
    --line: rgba(26, 60, 52, 0.15);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    --container-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* --- LOADER --- */
.liquid-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0F1F1B; /* Dark Brand Background */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.liquid-loader svg {
    width: 90%; /* Logo takes up most of the screen width */
    max-width: 900px;
    height: auto;
    overflow: visible;
}

.loader-logo span {
    color: var(--primary-color);
}

/* --- SMOOTH SCROLL (Lenis) --- */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Links & Typography */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

header.scrolled {
    background: rgba(244, 241, 234, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    opacity: 1;
    /* Hidden initially for loader swap */
    justify-self: start;
}

.logo span {
    color: var(--primary-color);
}

/* --- NAV PILL --- */
.nav-container {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    justify-self: center;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 0.6rem 1.4rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a.text-active {
    color: #1A3C34;
    font-weight: 600;
}

.nav-pill {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background: rgba(26, 60, 52, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    z-index: 1;
    width: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.header-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
    justify-self: end;
}

.btn-contact,
.btn {
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-contact:hover,
.btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #F7F4EF 0%, #E3DCCF 100%);
    z-index: 1;
}

.hero-text-layer {
    z-index: 1;
    text-align: center;
    position: relative;
    top: 50px;
    will-change: transform, opacity;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(5rem, 13vw, 11rem);
    line-height: 0.8;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-mountains {
    position: absolute;
    bottom: -10vh;
    left: -10vw;
    width: 120vw;
    min-width: 120vw;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    z-index: 3;
    opacity: 0.95;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    will-change: transform, opacity;
}

/* --- STORY SECTION --- */
.story-section {
    padding: 8rem 0;
    background: var(--surface);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-images {
    position: sticky;
    top: 20vh;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
}

.img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.img-wrapper.active {
    opacity: 1;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.story-block {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-label {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-block h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* --- HORIZONTAL SCROLL --- */

.horizontal-scroll-wrapper {
    background: #112923;
    color: #fff;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.horizontal-sticky-container {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}

/* 1. Title: Lower Z-Index so cards go OVER it */
.h-title-container {
    position: absolute;
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    /* Lowest Layer */
    width: 30vw;
    pointer-events: none;
    /* Prevents text from blocking clicks */
}

.h-title-container h2 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.h-title-container p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    border-left: 2px solid var(--primary-color);
    padding-left: 1.5rem;
}

/* 2. Track: Higher Z-Index */
.horizontal-track {
    display: flex;
    gap: 5vw;
    padding-left: 40vw;
    /* Start cards to the right of title */
    padding-right: 15vw;
    width: max-content;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 10;
    /* Cards sit ON TOP of title */
}

/* 3. Cards */
.h-card {
    min-width: 35vw;
    height: 65vh;
    background: #1A3C34;
    /* Solid background covers the text */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.h-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.h-card-img {
    height: 45%;
    width: 100%;
    object-fit: cover;
}

.h-card-body {
    height: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.h-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.h-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* --- PEOPLE / TEAM PAGE --- */
.section-label {
    margin-bottom: 3rem;
    font-size: 2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1rem;
    color: var(--secondary-color);
}

/* Leadership (Horizontal) */
.leadership-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
}

.leader-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 159, 93, 0.3);
}

.leader-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #EAE6DD;
    position: relative;
    transition: background-color 0.5s ease;
}

.leader-card:hover .leader-img-wrapper {
    background-color: #D8D2C4;
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.leader-card:hover .leader-img-wrapper img {
    filter: grayscale(0%);
}

.leader-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-content h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.leader-content .role {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.leader-content .bio p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Staff (Grid) */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.staff-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: #EAE6DD;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.staff-card:hover .staff-header img {
    filter: grayscale(0%);
}

.staff-header h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.staff-header .role {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.staff-bio p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* --- SERVICES PAGE (Sticky Sidebar) --- */
.services-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    position: relative;
}

.services-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
    padding-right: 2rem;
    border-right: 1px solid var(--line);
}

.service-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.service-nav-link:hover,
.service-nav-link.active {
    color: var(--primary-dark);
    padding-left: 1rem;
    border-color: var(--primary-color);
}

.service-detail-block {
    margin-bottom: 8rem;
    scroll-margin-top: 150px;
}

.service-detail-block h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.service-intro {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-item h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item ul {
    padding-left: 1rem;
}

.service-item li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* --- MARKETS PAGE (Modern Grid) --- */
.market-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.market-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: #000;
    transition: transform 0.4s;
}

.market-card:hover {
    transform: translateY(-10px);
}

.market-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.4s;
}

.market-card:hover img {
    opacity: 0.4;
}

.market-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.market-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.market-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- BLOG PAGE --- */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 2rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* --- CONTACT PAGE --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh; /* Takes full viewport height minus header */
    overflow: hidden;
}

/* Left Panel (Green) */
.contact-info-panel {
    background: var(--secondary-color);
    color: #fff;
    padding: 8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Right Panel (White/Animated) */
.contact-action-panel {
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* The Rotating Background Animation */
.contact-bg-anim {
    position: absolute;
    width: 140%; /* Oversized to bleed off edges */
    height: 140%;
    top: -20%;
    left: -20%;
    opacity: 0.6;
    pointer-events: none; /* Let clicks pass through */
    z-index: 1;
}

.rotating-sun {
    width: 100%;
    height: 100%;
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* The Content Layer */
/* --- UPGRADED CONTACT PAGE --- */

.page-spacer {
    height: 80px; /* Pushes content down so navbar doesn't cover it */
    background: var(--secondary-color);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px); /* Full height minus spacer */
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- LEFT PANEL (DARK) --- */
.contact-info-panel {
    background-color: #0F1F1B; /* Deepest Green */
    color: #fff;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture overlay */
.panel-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.info-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.contact-info-panel h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.contact-details-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.detail-item h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.detail-item p {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 300;
}

.text-link {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
}
.text-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom Outline Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    padding-right: 3rem; /* Slide effect */
}

/* --- RIGHT PANEL (LIGHT) --- */
.contact-action-panel {
    background-color: #F4F1EA; /* Cream/Bone */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Marquee Animation (Scrolling Text Background) */
.marquee-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg); /* Tilted */
    width: 200%;
    opacity: 0.04; /* Very subtle */
    pointer-events: none;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Email Styling */
.email-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

.email-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.magnetic-email {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    font-weight: 800;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.magnetic-email:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}



/* --- FOOTER --- */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 20;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* --- GENERAL LIST ITEMS --- */
.section {
    padding: 8rem 0;
    position: relative;
    background: #fff;
}

.big-list-item {
    border-top: 1px solid var(--line);
    padding: 3.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.big-list-item:hover {
    background: rgba(200, 159, 93, 0.05);
    padding-left: 2rem;
    padding-right: 2rem;
}

.big-list-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
}

.big-list-item:hover h3 {
    color: var(--primary-color);
}

.page-header {
    padding: 12rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-images {
        display: none;
    }

    .story-block {
        min-height: auto;
        margin-bottom: 4rem;
    }

    .h-title-container {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 4rem 2rem 1rem;
        transform: none;
        top: 0;
        left: 0;
    }

    .horizontal-track {
        padding-left: 2rem;
    }

    .h-card {
        min-width: 85vw;
        height: 60vh;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-sidebar {
        display: none;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-img-wrapper {
        height: 300px;
        min-height: auto;
    }

    .leader-content {
        padding: 2rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }
     .contact-split { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 4rem 2rem; }
    .contact-action-panel { padding: 6rem 2rem; min-height: 50vh; }
    .marquee-container { transform: translate(-50%, -50%) rotate(0deg); }
}

@media (max-width: 768px) {
    .nav-container {
        display: none;
    }

    .hero h1 {
        font-size: 15vw;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* --- ADMIN PANEL STYLES --- */
.admin-body {
    background-color: var(--surface);
    min-height: 100vh;
    padding-top: 100px; /* Space for fixed header */
}

.admin-container {
    max-width: 1000px;
    margin: 4rem auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.admin-header h2 { font-size: 2rem; color: var(--secondary-color); }

/* Admin Tables */
.post-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.post-table th { text-align: left; padding: 1rem; color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; border-bottom: 2px solid var(--line); }
.post-table td { padding: 1rem; border-bottom: 1px solid var(--line); color: var(--text-primary); }
.post-table tr:hover { background-color: var(--surface); }

/* Admin Buttons */
.action-btn { font-size: 0.9rem; font-weight: 600; margin-right: 1rem; color: var(--primary-dark); }
.delete-btn { color: #d32f2f; }

/* Login Page Specific */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--secondary-color);
}
.login-card {
    background: #fff;
    padding: 4rem;
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    text-align: center;
}