:root {
    --primary: #4B718F;
    --primary-light: #5b8ba8;
    --accent: #c9a962;
    --accent-light: #dfc78a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text: #333333;
    --text-light: #666666;
    --border: #e8e8e8;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

h1, h2, h3, h4 {
    font-family: 'Josefin Slab', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.logo img {
    height: 90px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4B718F;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #4B718F;
}

nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #3a5d79;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 42, 74, 0.3);
}

.btn-gold {
    background: #D9D9D8;
    color: #000000;
}

.btn-gold:hover {
    background: #c5c5c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 217, 216, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 42, 74, 0.3);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #3a5d79 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.noise-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

.noise-overlay-light {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    opacity: 0.08;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 217, 216, 0.15);
    border: 1px solid #D9D9D8;
    color: #D9D9D8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-left: 3px solid #D9D9D8;
}

.stat {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: 'Josefin Slab', serif;
    font-size: 48px;
    font-weight: 700;
    color: #D9D9D8;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Section */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* About */
.about {
    background: var(--off-white);
    position: relative;
}

.about .noise-overlay-light {
    opacity: 0.15;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
    white-space: nowrap;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: #545455;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ACBCCC;
}

.about-feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
}

.about-image-main::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
}

.about-image-text {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.about-image-text .years {
    font-family: 'Josefin Slab', serif;
    font-size: 80px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.about-image-text .label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    z-index: -1;
}

/* Services */
.services {
    background: var(--white);
    position: relative;
}

.services .noise-overlay-light {
    opacity: 0.15;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4B718F;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 42, 74, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #545455;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ACBCCC;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values */
.values {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
}

.values .section-label {
    color: #D9D9D8;
}

.values .section-header h2,
.values .section-header p {
    color: var(--white);
}

.values .section-header p {
    opacity: 0.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #D9D9D8;
}

.value-number {
    font-family: 'Josefin Slab', serif;
    font-size: 48px;
    font-weight: 700;
    color: #D9D9D8;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Mission */
.mission {
    background: var(--off-white);
    position: relative;
}

.mission .noise-overlay-light {
    opacity: 0.15;
}

.mission-box {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mission-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-family: 'Josefin Slab', serif;
    font-size: 100px;
    color: #000000;
    line-height: 1;
}

.mission-box h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    font-style: italic;
}

.mission-box p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA */
.cta .section-label {
    color: #D9D9D8;
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #3a5d79 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-details-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-inline-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.contact-inline-item strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D9D9D8;
}

.contact-inline-item a,
.contact-inline-item span {
    color: #D9D9D8;
    text-decoration: none;
    font-size: 14px;
}

.contact-inline-item a:hover {
    color: #D9D9D8;
    font-weight: bold;
}

/* Footer */
.footer-bar {
    background: #ffffff;
    padding: 20px 24px;
    text-align: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4B718F;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background: #4B718F;
    color: var(--white);
    padding: 30px 0;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.footer-badge {
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-stats {
        display: none;
    }

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

    .services-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}