@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
    --ink: #0d1b2a;
    --deep: #111c2e;
    --cream: #f5f0e8;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --rust: #c0392b;
    --sage: #2e7d5e;
    --sage-light: #e8f5ee;
    --sky: #1a4a6b;
    --teal: #2ec4a9;
    --mist: #edf2f7;
    --white: #ffffff;
    --shadow: 0 8px 40px rgba(13,27,42,0.12);
    --shadow-lg: 0 20px 60px rgba(13,27,42,0.2);
    --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,27,42,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.nav-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.1;
}

.nav-brand-sub {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* mobile nav */
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.2rem;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { padding: 0.8rem 1rem; border-radius: 8px; }
    .navbar { padding: 0 1.2rem; }
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 1.4rem 0.8rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: floatPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}

.whatsapp-float .wa-icon { font-size: 1.3rem; line-height: 1; }

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 6px rgba(37,211,102,0.1); }
}

@media (max-width: 500px) {
    .whatsapp-float .wa-label { display: none; }
    .whatsapp-float { padding: 0.9rem; border-radius: 50%; }
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1020px; margin: 0 auto; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.6rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: var(--sage);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    color: #5a6a7a;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
}

/* ── ROAD DIVIDER ── */
.road-divider {
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 30px, transparent 30px, transparent 60px);
    opacity: 0.35;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(37,211,102,0.5); }

/* ── FOOTER ── */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.6);
    padding: 3.5rem 1.5rem 1.5rem;
}

.footer-inner {
    max-width: 1020px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.footer-brand-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    max-width: 260px;
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.4rem;
    text-decoration: none;
}

.footer-contact-item:hover { color: var(--gold); }

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
