/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1a2744;
    background: #fdf9f0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: #d4a017; margin-bottom: 12px;
}
.section-label::before {
    content: ''; display: block; width: 24px; height: 2px; background: #d4a84b; border-radius: 2px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1a2744; margin-bottom: 16px;
}
.gold { color: #d4a017; }
.gold-link { color: #d4a017; transition: color 0.2s; }
.gold-link:hover { color: #b8860b; }
.section-sub { font-size: 1.05rem; color: #4a6273; max-width: 560px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
    transition: all 0.25s ease; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
    background: #1a2744; color: #fff;
    box-shadow: 0 4px 20px rgba(26,39,68,0.25);
}
.btn-primary:hover { background: #131d33; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,39,68,0.3); }
.btn-outline {
    background: transparent; color: #1a2744;
    border: 2px solid rgba(26,39,68,0.2);
}
.btn-outline:hover { border-color: #1a2744; background: rgba(26,39,68,0.04); }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,249,240,0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26,39,68,0.08);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(26,39,68,0.08); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; height: 72px; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem;
    color: #1a2744;
}
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; }
.nav-links {
    display: flex; align-items: center; gap: 32px; margin-left: auto;
}
.nav-links a {
    font-size: 0.9rem; font-weight: 500; color: #4a6273;
    transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: #1a2744; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: #d4a84b; border-radius: 2px; transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: #1a2744 !important; color: #fff !important;
    padding: 10px 20px; border-radius: 50px; font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #131d33 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: #1a2744; padding: 4px; margin-left: auto;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 24px 80px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #fdf9f0 0%, #f0f3fa 50%, #fdf8e8 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5;
}
.blob-1 { width: 500px; height: 500px; background: rgba(212,168,75,0.15); top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(26,39,68,0.06); bottom: -50px; left: -50px; }
.blob-3 { width: 250px; height: 250px; background: rgba(232,245,240,0.8); top: 40%; left: 30%; }
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,39,68,0.06); color: #1a2744;
    padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 24px; letter-spacing: 0.02em;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #1a2744; margin-bottom: 24px; line-height: 1.15;
}
.hero-accent {
    display: block; color: #d4a017; font-style: italic; font-weight: 500;
}
.hero-sub {
    font-size: 1.1rem; color: #4a6273; margin-bottom: 36px; max-width: 480px; line-height: 1.7;
}
.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: #4a6273; font-weight: 500;
}
.trust-item svg { color: #d4a84b; flex-shrink: 0; }
.hero-image {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(26,39,68,0.12);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 6/7; }
.hero-image-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(253,249,240,0.95); backdrop-filter: blur(8px);
    padding: 12px 20px; border-radius: 50px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 600; color: #1a2744;
    box-shadow: 0 4px 16px rgba(26,39,68,0.1);
}

/* ── Services ─────────────────────────────────────── */
.services { padding: 100px 24px; background: #fdf9f0; }
.services .section-label, .services .section-title, .services .section-sub { text-align: center; }
.services .section-sub { margin: 0 auto 56px; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card {
    background: #fff; border-radius: 20px; padding: 36px 28px;
    border: 1px solid rgba(26,39,68,0.06);
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #d4a84b, #f1c84b);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,39,68,0.08); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.15rem; color: #1a2744; margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.service-card p { font-size: 0.92rem; color: #4a6273; line-height: 1.7; }

/* ── About ────────────────────────────────────────── */
.about { padding: 100px 24px; background: linear-gradient(180deg, #f0f3fa 0%, #fdf9f0 100%); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 56px rgba(26,39,68,0.1);
}
.about-img-main img { width: 100%; aspect-ratio: 52/40; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -40px; right: -40px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 36px rgba(26,39,68,0.12);
    border: 4px solid #fdf9f0;
}
.about-img-float img { width: 100%; aspect-ratio: 28/20; object-fit: cover; }
.about-stat {
    position: absolute; top: -24px; left: -24px;
    background: #1a2744; color: #fff;
    padding: 20px 24px; border-radius: 16px;
    box-shadow: 0 8px 24px rgba(26,39,68,0.2);
}
.about-stat .stat-number {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem; font-weight: 700; color: #d4a84b;
}
.about-stat .stat-label { font-size: 0.78rem; opacity: 0.8; }
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text {
    font-size: 0.98rem; color: #4a6273; margin-bottom: 16px; line-height: 1.75;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: #1a2744; font-weight: 500;
}
.value-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(212,168,75,0.12); color: #d4a017;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Community ────────────────────────────────────── */
.community { padding: 100px 24px; background: #1a2744; color: #fff; }
.community-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.community .section-label { color: #d4a84b; }
.community .section-title { color: #fff; }
.community .gold { color: #d4a84b; }
.community-text {
    font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.75;
}
.community-stats {
    display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
}
.stat-box {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 24px 28px; flex: 1; min-width: 120px;
}
.stat-box .stat-num {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem; font-weight: 700; color: #d4a84b;
}
.stat-box .stat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.community-visual { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.community-visual img { width: 100%; aspect-ratio: 48/56; object-fit: cover; }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 100px 24px; background: #fdf9f0; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-info .section-label, .contact-info .section-title { text-align: left; }
.contact-text { font-size: 0.98rem; color: #4a6273; margin-bottom: 32px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.detail-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(26,39,68,0.06); color: #1a2744;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.detail-label {
    display: block; font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: #4a6273; margin-bottom: 4px;
}
.detail-value { display: block; font-size: 0.92rem; color: #1a2744; line-height: 1.6; }
.contact-form-wrap {
    background: #fff; border-radius: 24px; padding: 40px;
    box-shadow: 0 8px 40px rgba(26,39,68,0.06);
    border: 1px solid rgba(26,39,68,0.06);
}
.form-title {
    font-size: 1.4rem; color: #1a2744; margin-bottom: 28px;
    font-family: 'Playfair Display', Georgia, serif;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: #1a2744; margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: 12px;
    border: 1.5px solid rgba(26,39,68,0.12); background: #fdf9f0;
    font-family: inherit; font-size: 0.92rem; color: #1a2744;
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #d4a84b; box-shadow: 0 0 0 3px rgba(212,168,75,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    text-align: center; padding: 32px 20px;
}
.form-success p {
    margin-top: 16px; font-size: 0.95rem; color: #4a6273; line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────── */
.footer { background: #0c1322; color: rgba(255,255,255,0.6); padding: 64px 24px 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 16px;
}
.footer-logo-text { font-family: 'Playfair Display', Georgia, serif; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: #d4a84b; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { font-size: 0.75rem; opacity: 0.6; }

/* ── Mobile Nav ───────────────────────────────────── */
.nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(253,249,240,0.98); backdrop-filter: blur(16px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(26,39,68,0.08);
    box-shadow: 0 8px 24px rgba(26,39,68,0.08);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { max-width: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .community-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-float { right: 16px; bottom: -24px; }
    .about-stat { left: 16px; top: -16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open { display: flex; }
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-title { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }
    .hero { padding: 90px 16px 50px; }
    .services, .about, .community, .contact { padding: 64px 16px; }
}
