/* ===== 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: #2D1F14;
    background: #FDF6EE;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --terracotta: #C0603A;
    --terracotta-dark: #A04E2E;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FDF6EE;
    --sand-dark: #E8D5C0;
    --brown: #2D1F14;
    --brown-light: #5C4033;
    --cream: #FFF9F2;
    --white: #FFFFFF;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-accent: 'Space Grotesk', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(45,31,20,0.08);
    --shadow-md: 0 8px 30px rgba(45,31,20,0.12);
    --shadow-lg: 0 20px 60px rgba(45,31,20,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-accent { color: var(--terracotta); }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--terracotta);
    display: inline-block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--brown);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 600px;
    line-height: 1.7;
}
.section-header { margin-bottom: 56px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192,96,58,0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192,96,58,0.45);
}
.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--sand-dark);
}
.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-white {
    background: var(--white);
    color: var(--terracotta);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-ghost-white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(253,246,238,0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--brown);
}
.nav-logo-text { font-weight: 400; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-light);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--terracotta); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.btn-nav {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
}
.btn-nav:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
}
.btn-nav::after { display: none !important; }

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.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); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--sand-light);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.1rem; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--sand-light);
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.shape { position: absolute; }
.shape-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,96,58,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.shape-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,96,58,0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}
.shape-rect-1 {
    width: 200px;
    height: 200px;
    background: var(--sand-dark);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    top: 20%;
    left: -60px;
    opacity: 0.5;
}
.shape-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--terracotta-light) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.3;
    bottom: 20%;
    right: 5%;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 24px;
    background: rgba(192,96,58,0.08);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
}
.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: var(--brown);
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--brown-light);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-md);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--terracotta);
}
.stat-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brown-light);
}
.stat-divider {
    width: 1px;
    background: var(--sand-dark);
    align-self: stretch;
    margin: 4px 12px;
}

/* Hero Images */
.hero-image-stack {
    position: relative;
    height: 680px;
}
.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-main {
    width: 380px;
    height: 520px;
    top: 0;
    right: 0;
    z-index: 2;
}
.hero-img-float {
    width: 300px;
    height: 220px;
    bottom: 40px;
    left: -30px;
    z-index: 3;
    border: 4px solid var(--sand-light);
}
.float-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light), var(--sand), var(--terracotta-light), var(--terracotta));
}

@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
    .hero-image-stack { height: 480px; }
    .hero-img-main { width: 280px; height: 380px; right: 20px; }
    .hero-img-float { width: 220px; height: 160px; left: 0; bottom: 20px; }
}
@media (max-width: 640px) {
    .hero { padding: 100px 0 60px; }
    .hero-image-stack { display: none; }
    .hero-stats { padding: 20px 24px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { justify-content: center; }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

/* ===== SITE SECTION ===== */
.site-section { background: var(--sand-light); }
.site-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.site-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}
.site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.site-card--wide { grid-column: span 2; }
.site-card--wide img { width: 100%; height: 320px; object-fit: cover; }
.site-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.site-card-content {
    padding: 28px;
}
.site-card--wide .site-card-content { padding: 36px; }
.site-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 12px;
}
.site-card p {
    color: var(--brown-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
.site-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}
.site-card h3 { font-size: 1.2rem; }
.site-card > img { height: 180px; }

@media (max-width: 768px) {
    .site-grid { grid-template-columns: 1fr; }
    .site-card--wide { grid-column: span 1; }
}

/* ===== AMENITIES ===== */
.amenities-section { background: var(--white); }
.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.amenities-visual {
    position: relative;
    height: 600px;
}
.amenities-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.amenities-img-main img { width: 100%; height: 100%; object-fit: cover; }
.amenities-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}
.amenities-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.amenities-geo-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    transform: rotate(25deg);
    z-index: -1;
    opacity: 0.15;
}
.amenities-content { max-width: 480px; }
.amenities-desc {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.75;
    margin-bottom: 32px;
}
.amenities-list { display: flex;
    flex-direction: column;
    gap: 16px;
}
.amenities-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--brown);
    line-height: 1.5;
}
.amenity-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-top: 1px;
}

@media (max-width: 900px) {
    .amenities-layout { grid-template-columns: 1fr; gap: 48px; }
    .amenities-visual { height: 400px; }
    .amenities-img-accent { width: 160px; height: 120px; right: -10px; bottom: -10px; }
}

/* ===== AREA ===== */
.area-section { background: var(--sand-light); }
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.area-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    display: block;
}
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.area-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.area-card:hover img { transform: scale(1.05); }
.area-card-body {
    padding: 24px;
}
.area-card-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(192,96,58,0.1);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    margin-bottom: 12px;
}
.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brown);
    margin-bottom: 8px;
}
.area-card p {
    font-size: 0.9rem;
    color: var(--brown-light);
    line-height: 1.65;
}

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

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,31,20,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 6; }
.gallery-item:nth-child(2) { grid-column: 5 / span 4; }
.gallery-item:nth-child(3) { grid-column: 9 / span 4; }
.gallery-item:nth-child(4) { grid-column: 5 / span 4; }
.gallery-item:nth-child(5) { grid-column: 1 / span 8; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item,
    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item { height: 200px; }
    .gallery-item:nth-child(5) { grid-column: span 2; height: 220px; }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-circle-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-circle-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.cta-stripe {
    position: absolute;
    width: 4px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
    bottom: -50px;
    left: 20%;
}
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}
.cta-content { flex: 1; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 480px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-container { flex-direction: column; text-align: center; }
    .cta-text { max-width: 100%; }
    .cta-actions { flex-direction: column; width: 100%; max-width: 320px; }
    .cta-actions .btn { justify-content: center; }
}

/* ===== CONTACT ===== */
.contact-section { background: var(--sand-light); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info { max-width: 480px; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.75;
    margin-bottom: 40px;
}
.contact-details { display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
}
.contact-detail strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brown);
    margin-bottom: 4px;
}
.contact-detail p,
.contact-detail a {
    font-size: 1rem;
    color: var(--brown-light);
    line-height: 1.6;
}
.contact-detail a:hover { color: var(--terracotta); text-decoration: underline; }

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brown);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brown);
    background: var(--sand-light);
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192,96,58,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A090; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(192,96,58,0.08);
    border-radius: var(--radius-sm);
    color: var(--terracotta-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
    .contact-form-wrapper { padding: 24px; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 260px;
    line-height: 1.6;
}
.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-links a {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta-light); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 32px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--terracotta-light); }

@media (max-width: 640px) {
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
