:root {
    --forest: #1a3a2e;
    --gold: #d4af37;
    --ivory: #f8f6f0;
    --slate: #2c3e50;
    --charcoal: #1c1c1c;
    --muted-gold: #a38b2f;
    --pale-green: #e8f0ed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate);
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--forest);
}

em {
    font-style: italic;
    color: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ivory);
    border-bottom: 2px solid var(--forest);
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    padding: 0.875rem 0;
    box-shadow: 0 4px 20px rgba(26, 58, 46, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--forest), var(--muted-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
}

.coin-symbol {
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--ivory);
    border-radius: 50%;
    position: relative;
}

.coin-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 16px;
    background: var(--ivory);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
}

.brand-sub {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-gold);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-navigation a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--slate);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.nav-highlight {
    padding: 0.6rem 1.5rem;
    background: var(--forest);
    color: var(--ivory) !important;
    border-radius: 2px;
}

.nav-highlight::after {
    display: none;
}

.nav-highlight:hover {
    background: var(--gold);
    color: var(--forest) !important;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.menu-trigger span {
    width: 100%;
    height: 2px;
    background: var(--forest);
    transition: all 0.3s ease;
}

.menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.mobile-navigation {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 2px solid var(--forest);
    padding: 2rem 3rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
}

.mobile-navigation.active {
    display: flex;
}

.mobile-navigation a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--slate);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 58, 46, 0.1);
}

.hero-section {
    position: relative;
    padding: 10rem 3rem 6rem;
    background: linear-gradient(to bottom, var(--pale-green), var(--ivory));
    overflow: hidden;
}

.hero-ornament {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.15;
}

.hero-ornament.top-left {
    top: 100px;
    left: 40px;
    border: 3px solid var(--forest);
    border-right: none;
    border-bottom: none;
}

.hero-ornament.bottom-right {
    bottom: 40px;
    right: 40px;
    border: 3px solid var(--gold);
    border-left: none;
    border-top: none;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.button-primary {
    padding: 1rem 2.25rem;
    background: var(--forest);
    color: var(--ivory);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.button-secondary {
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--forest);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: 2px solid var(--forest);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: var(--forest);
    color: var(--ivory);
}

.hero-showcase {
    position: relative;
}

.showcase-frame {
    position: relative;
    border: 3px solid var(--forest);
    padding: 1rem;
    background: var(--ivory);
    box-shadow: 0 20px 60px rgba(26, 58, 46, 0.15);
}

.showcase-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--ivory);
    border: 2px solid var(--forest);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 12px 40px rgba(26, 58, 46, 0.2);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.4;
}

.mission-banner {
    padding: 5rem 3rem;
    background: var(--forest);
    color: var(--ivory);
    text-align: center;
}

.banner-border {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 3rem;
}

.mission-banner .banner-border:last-child {
    margin: 3rem auto 0;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 1.75rem;
}

.banner-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(248, 246, 240, 0.9);
}

.collections-section {
    padding: 7rem 3rem;
    background: var(--ivory);
}

.section-intro {
    max-width: 1400px;
    margin: 0 auto 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.section-marker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--forest);
}

.section-summary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
}

.collections-display {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.collection-item {
    background: #fff;
    border: 1px solid rgba(26, 58, 46, 0.15);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.collection-item:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(26, 58, 46, 0.08);
    transform: translateY(-4px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.item-icon {
    width: 48px;
    height: 48px;
    background: var(--pale-green);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--forest);
}

.item-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.statistics-ribbon {
    padding: 4rem 3rem;
    background: var(--pale-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.stat-block {
    text-align: center;
}

.stat-figure {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-figure span {
    color: var(--gold);
}

.stat-caption {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.4;
}

.stat-separator {
    width: 1px;
    height: 60px;
    background: var(--gold);
    opacity: 0.4;
}

.knowledge-section {
    padding: 7rem 3rem;
    background: #fff;
}

.knowledge-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.knowledge-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.knowledge-intro {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto;
}

.knowledge-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.insight-primary {
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    flex-direction: column;
}

.insight-visual {
    height: 320px;
    overflow: hidden;
}

.insight-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-primary:hover .insight-photo {
    transform: scale(1.05);
}

.insight-content {
    padding: 2.5rem;
}

.insight-category {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.insight-headline {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.insight-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(248, 246, 240, 0.85);
    margin-bottom: 1.75rem;
}

.insight-link {
    display: inline-block;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.insight-link:hover {
    color: var(--ivory);
}

.insight-cluster {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-secondary {
    background: var(--ivory);
    border: 1px solid rgba(26, 58, 46, 0.15);
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.insight-secondary:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(26, 58, 46, 0.08);
}

.insight-thumbnail {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.insight-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--slate);
}

.credibility-section {
    padding: 7rem 3rem;
    background: var(--pale-green);
}

.credibility-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.credibility-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--forest);
}

.credibility-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.trust-point {
    display: flex;
    gap: 1.5rem;
}

.point-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--gold);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-content {
    flex: 1;
}

.point-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.point-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.site-footer {
    background: var(--charcoal);
    color: rgba(248, 246, 240, 0.8);
    padding: 5rem 3rem 2rem;
    position: relative;
}

.footer-ornament {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 4rem;
}

.footer-primary {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--muted-gold), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
}

.logo-text-footer {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-footer span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ivory);
}

.logo-text-footer span:last-child {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(248, 246, 240, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.column-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: rgba(248, 246, 240, 0.7);
}

.footer-column a:hover {
    color: var(--gold);
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.info-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-link {
    font-size: 0.9rem;
    color: rgba(248, 246, 240, 0.7);
}

.info-link:hover {
    color: var(--gold);
}

.footer-secondary {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(248, 246, 240, 0.7);
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(248, 246, 240, 0.6);
    font-style: italic;
}

.item-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.item-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }

    .main-navigation {
        display: none;
    }

    .menu-trigger {
        display: flex;
    }

    .hero-section {
        padding: 8rem 2rem 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-image {
        height: 400px;
    }

    .hero-badge {
        bottom: -20px;
        right: -20px;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collections-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .statistics-ribbon {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-separator {
        display: none;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .credibility-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-primary {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-secondary {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .button-primary,
    .button-secondary {
        text-align: center;
        width: 100%;
    }

    .showcase-image {
        height: 300px;
    }

    .collections-display {
        grid-template-columns: 1fr;
    }

    .knowledge-title {
        font-size: 2rem;
    }

    .insight-secondary {
        flex-direction: column;
    }

    .insight-thumbnail {
        width: 100%;
        height: 200px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .principles-display {
        grid-template-columns: 1fr;
    }

    .team-roster {
        grid-template-columns: 1fr;
    }

    .commitment-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-photo {
        height: 400px;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .feature-block,
    .feature-block:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-block:nth-child(even) .block-visual {
        order: 0;
    }

    .guide-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guide-visual {
        position: static;
    }

    .future-technologies {
        grid-template-columns: 1fr;
    }

    .legal-title {
        font-size: 2.25rem;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.2rem;
    }
}

.page-hero {
    padding: 9rem 3rem 5rem;
    background: var(--pale-green);
    text-align: center;
}

.hero-breadcrumb {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.page-hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--forest);
}

.page-hero-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.decoration-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.decoration-ornament {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
}

.story-section {
    padding: 7rem 3rem;
    background: #fff;
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.visual-frame {
    border: 3px solid var(--forest);
    padding: 0.75rem;
    background: var(--ivory);
}

.story-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.visual-caption {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--slate);
}

.visual-caption svg {
    color: var(--gold);
    flex-shrink: 0;
}

.narrative-marker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1rem;
}

.narrative-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--forest);
}

.narrative-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.narrative-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--gold);
}

.stat-inline-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-inline-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
}

.principles-section {
    padding: 7rem 3rem;
    background: var(--ivory);
}

.principles-header {
    max-width: 900px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    margin-top: 1.5rem;
}

.principles-display {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.principle-card {
    background: #fff;
    padding: 3rem;
    position: relative;
    border: 1px solid rgba(26, 58, 46, 0.12);
    transition: all 0.4s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 58, 46, 0.1);
    border-color: var(--gold);
}

.principle-ornament {
    position: absolute;
    inset: 12px;
    pointer-events: none;
    opacity: 0.3;
}

.ornament-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
}

.ornament-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.ornament-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.ornament-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.ornament-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.principle-icon {
    width: 64px;
    height: 64px;
    background: var(--pale-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    margin-bottom: 2rem;
}

.principle-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1.25rem;
}

.principle-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
}

.team-section {
    padding: 7rem 3rem;
    background: #fff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.team-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    margin-top: 1.5rem;
}

.team-roster {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.member-profile {
    display: flex;
    gap: 2rem;
}

.member-portrait {
    width: 200px;
    flex-shrink: 0;
    position: relative;
}

.portrait-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid var(--forest);
}

.portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 46, 0.95), transparent);
    padding: 1rem 0.75rem 0.75rem;
}

.overlay-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.member-details {
    flex: 1;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-gold);
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.commitment-banner {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--forest), var(--muted-gold));
}

.commitment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.commitment-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: rgba(248, 246, 240, 0.15);
    border: 2px solid var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
}

.commitment-content {
    flex: 1;
}

.commitment-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 1.25rem;
}

.commitment-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(248, 246, 240, 0.9);
    margin-bottom: 2rem;
}

.commitment-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--ivory);
    color: var(--forest);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.commitment-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.contact-main {
    padding: 7rem 3rem;
    background: #fff;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.form-header {
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--slate);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(26, 58, 46, 0.2);
    background: var(--ivory);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--slate);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    padding: 1.125rem 2.5rem;
    background: var(--forest);
    color: var(--ivory);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--pale-green);
    padding: 2.5rem;
    border: 1px solid rgba(26, 58, 46, 0.12);
}

.sidebar-icon {
    width: 64px;
    height: 64px;
    background: var(--forest);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.sidebar-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1.75rem;
}

.sidebar-detail {
    margin-bottom: 1.5rem;
}

.sidebar-detail:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.detail-link {
    color: var(--forest);
    font-weight: 500;
}

.detail-link:hover {
    color: var(--gold);
}

.faq-section {
    padding: 7rem 3rem;
    background: var(--ivory);
}

.faq-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.faq-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    margin-top: 1.5rem;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(26, 58, 46, 0.15);
    overflow: hidden;
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--pale-green);
}

.question-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest);
    margin: 0;
}

.question-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .question-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin: 0;
}

.location-showcase {
    padding: 7rem 3rem;
    background: var(--forest);
}

.showcase-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(248, 246, 240, 0.9);
    margin-bottom: 2.5rem;
}

.showcase-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(248, 246, 240, 0.85);
}

.detail-row svg {
    flex-shrink: 0;
    color: var(--gold);
}

.showcase-image-wrapper {
    position: relative;
}

.showcase-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.intro-banner {
    padding: 5rem 3rem;
    background: var(--pale-green);
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.intro-stat {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(26, 58, 46, 0.15);
}

.intro-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.intro-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.4;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--slate);
}

.features-deep-dive {
    padding: 7rem 3rem;
    background: #fff;
}

.dive-header {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.dive-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    margin-top: 1.5rem;
}

.feature-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
}

.feature-block:nth-child(even) {
    grid-template-columns: 1.3fr 1fr;
}

.feature-block:nth-child(even) .block-visual {
    order: 2;
}

.block-visual {
    position: relative;
}

.block-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid var(--forest);
}

.block-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--gold);
    color: var(--forest);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.block-content {
    padding: 1.5rem 0;
}

.block-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.block-category {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1.5rem;
}

.block-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2rem;
}

.block-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gold);
}

.detail-point {
    display: flex;
    gap: 1.5rem;
}

.point-label {
    flex-shrink: 0;
    width: 140px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest);
}

.point-data {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

.verification-guide {
    padding: 7rem 3rem;
    background: var(--ivory);
}

.guide-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.guide-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.guide-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 3rem;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.verify-step {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.step-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.step-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

.guide-visual {
    position: sticky;
    top: 120px;
}

.verify-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--forest);
    margin-bottom: 1.5rem;
}

.visual-note {
    background: var(--pale-green);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.visual-note svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.visual-note p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--slate);
    margin: 0;
}

.future-security {
    padding: 7rem 3rem;
    background: linear-gradient(135deg, var(--forest) 0%, var(--slate) 100%);
}

.future-content {
    max-width: 1200px;
    margin: 0 auto;
}

.future-text .section-marker {
    color: var(--gold);
}

.future-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.future-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(248, 246, 240, 0.9);
    margin-bottom: 3.5rem;
    max-width: 800px;
}

.future-technologies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.tech-item {
    background: rgba(248, 246, 240, 0.08);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.tech-icon {
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.tech-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.tech-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(248, 246, 240, 0.85);
}

.educational-cta {
    padding: 6rem 3rem;
    background: var(--pale-green);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.125rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--forest);
    color: var(--ivory);
}

.cta-button.primary:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}

.cta-button.secondary:hover {
    background: var(--forest);
    color: var(--ivory);
}

.legal-hero {
    padding: 9rem 3rem 4rem;
    background: var(--pale-green);
    text-align: center;
}

.legal-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1rem;
}

.legal-date {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted-gold);
    letter-spacing: 0.05em;
}

.legal-content {
    padding: 6rem 3rem;
    background: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gold);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-text li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.legal-text a {
    color: var(--forest);
    font-weight: 500;
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--gold);
}

.legal-text strong {
    color: var(--forest);
    font-weight: 600;
}

.legal-acknowledgment {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--pale-green);
    border-left: 4px solid var(--gold);
    font-weight: 500;
    color: var(--forest);
}

.office-block {
    margin-bottom: 1.5rem;
}

.office-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}