/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a2e;
    background: #faf9f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a45a;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f2b4c;
    margin-bottom: 24px;
}
.section-sub {
    font-size: 1.1rem;
    color: #555;
    max-width: 520px;
    margin: 0 auto;
}
.gold { color: #c8a45a; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: #0f2b4c;
    color: #fff;
}
.btn-primary:hover { background: #1a3d6b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,43,76,0.25); }
.btn-secondary {
    background: transparent;
    color: #0f2b4c;
    border: 1.5px solid #0f2b4c;
}
.btn-secondary:hover { background: #0f2b4c; color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,43,76,0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(15,43,76,0.1); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0f2b4c;
}
.nav-logo-icon { color: #0f2b4c; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #0f2b4c; }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #c8a45a;
    transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: #0f2b4c;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta:hover { background: #1a3d6b; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #0f2b4c;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: #faf9f7;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,90,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c8a45a;
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    color: #0f2b4c;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-headline em {
    font-style: italic;
    color: #c8a45a;
}
.hero-sub {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}
.trust-item svg { color: #c8a45a; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.hero-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,43,76,0.15);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15,43,76,0.2);
    border: 4px solid #faf9f7;
}
.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: #0f2b4c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(15,43,76,0.3);
}
.hero-badge svg { color: #c8a45a; }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,43,76,0.12);
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-stat {
    margin-top: 24px;
    padding: 20px 24px;
    background: #0f2b4c;
    border-radius: 6px;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c8a45a;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.about-text-col p {
    color: #555;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.75;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(200,164,90,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a45a;
}
.feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f2b4c;
    margin-bottom: 4px;
}
.feature p {
    font-size: 0.875rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* ===== OFFERINGS ===== */
.offerings {
    padding: 120px 0;
    background: #faf9f7;
}
.section-header { margin-bottom: 64px; }
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.offering-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15,43,76,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15,43,76,0.12);
}
.offering-img {
    overflow: hidden;
    height: 220px;
}
.offering-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.offering-card:hover .offering-img img { transform: scale(1.05); }
.offering-body {
    padding: 28px;
}
.offering-body h3 {
    font-size: 1.4rem;
    color: #0f2b4c;
    margin-bottom: 10px;
}
.offering-body p {
    font-size: 0.925rem;
    color: #666;
    line-height: 1.7;
}

/* ===== MARQUEE ===== */
.marquee {
    background: #0f2b4c;
    padding: 20px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.marquee-track span:last-child { color: #c8a45a; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== COMMUNITY ===== */
.community {
    padding: 120px 0;
    background: #fff;
}
.community-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.community-content p {
    color: #555;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.75;
}
.community-content .btn { margin-top: 32px; }
.community-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.community-img-grid img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15,43,76,0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background: #faf9f7;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}
.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.visit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(200,164,90,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a45a;
}
.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f2b4c;
    margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.visit-detail a:hover { color: #c8a45a; }
.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15,43,76,0.1);
    min-height: 400px;
}
.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: #0f2b4c;
    color: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact .section-title { color: #fff; }
.contact-info p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.contact-link:hover { color: #c8a45a; }
.contact-link svg { color: #c8a45a; }

/* Form */
.contact-form-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: #c8a45a;
    background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; }
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}
.form-success svg { color: #c8a45a; }
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
}
.form-success p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
    background: #0a1f38;
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c8a45a;
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 4px;
}
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact a:hover { color: #c8a45a; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 500px; }
    .hero-img-accent { left: -20px; bottom: -20px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .community-grid { grid-template-columns: 1fr; gap: 48px; }
    .visit-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,249,247,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(15,43,76,0.08);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        box-shadow: 0 12px 32px rgba(15,43,76,0.1);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 24px 80px; }
    .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-img-accent { position: relative; left: 0; bottom: 0; margin-top: 16px; }
    .hero-badge { right: 0; }
    .offerings-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 12px; }
    .about-stat { flex-direction: column; gap: 4px; }
}
