/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; }

/* ===== NAV ===== */
#site-header {
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
#site-header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ===== HERO BLOBS ===== */
.blob { position: absolute; border-radius: 50%; }
.blob-terra { background: #F87143; }
.blob-sand { background: #DFC078; }

/* ===== SCROLL INDICATOR ===== */
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #d6d3cd, transparent);
    border-radius: 999px;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== TAG ===== */
.tag-terra {
    display: inline-block;
    background: #FEE9DD;
    color: #A32E14;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4em 1em;
    border-radius: 999px;
}
.tag-sand {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #FFF5F0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4em 1em;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E8552A;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(232,85,42,0.35);
}
.btn-primary:hover {
    background: #C93D1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232,85,42,0.4);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #A32E14;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid #FDD0B5;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
    background: #FEE9DD;
    border-color: #E8552A;
    transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card-cream {
    background: #FDF8F0;
    border-radius: 1.5rem;
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-cream:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.card-img {
    transition: transform 0.5s ease;
}
.card-cream:hover .card-img {
    transform: scale(1.05);
}

/* ===== GALLERY IMAGES ===== */
.gallery-img {
    transition: transform 0.5s ease;
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* ===== INPUTS ===== */
.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e8e4dd;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: #44403c;
    background: #faf8f5;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.input-field:focus {
    border-color: #E8552A;
    box-shadow: 0 0 0 3px rgba(232,85,42,0.12);
    background: #fff;
}
.input-field::placeholder { color: #b8b0a8; }

/* ===== MOBILE MENU ===== */
.mobile-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
}
#mobile-menu.open { display: block; }
#mobile-menu.hidden { display: none; }

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

/* ===== MOBILE MENU ANIMATION ===== */
.menu-open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .bar:nth-child(2) { opacity: 0; }
.menu-open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .font-lora { font-size: 1rem; }
}
