/* ════════════════════════════════════════════
   ROOT VARIABLES  (from chloe-family palette)
════════════════════════════════════════════ */
:root {
    --teal: #4a9b8c;
    --teal-dark: #357a6d;
    --teal-light: #6bbdae;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --cream: #f2ede6;
    --cream-dk: #e8e0d4;
    --brown: #3d2b1a;
    --brown-mid: #6b4c30;
    --gold: #c9a058;
    --text-dark: #2c2016;
    --text-mid: #5a4535;
    --text-light: rgba(255, 255, 255, 0.85);
    --nav-h: 70px;
}

/* ════════════════════════════════════════════
   BASE
════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
}

/* ════════════════════════════════════════════
   TYPOGRAPHY HELPERS
════════════════════════════════════════════ */
.section-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-body {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 640px;
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1527529482837-4698179dc6ce?w=1600&q=85');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(44, 32, 22, 0.45) 0%,
            rgba(44, 32, 22, 0.60) 60%,
            rgba(44, 32, 22, 0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 700px;
}

.hero-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Hero Buttons */
.btn-hero-primary {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
    border-radius: 40px;
    padding: 1rem 1.6rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 140, 0.35);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 1rem 1.6rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-indicator span {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

/* ════════════════════════════════════════════
   INTRO SECTION
════════════════════════════════════════════ */
.intro-section {
    background: var(--white);
    padding: 5rem 0 4rem;
}

.feature-item {
    padding: 1.5rem 1.2rem;
    border-top: 2px solid var(--cream-dk);
    text-align: left;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-top-color: var(--teal);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════ */
.services-section {
    background: var(--off-white);
    padding: 5rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(44, 32, 22, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(44, 32, 22, 0.13);
}

.service-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    width: 65px;
    height: 60px;
    background: rgb(81 165 163 / 70%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
}

.service-body {
    padding: 1.4rem 1.5rem 1.6rem;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-text {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.service-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: all 0.25s ease;
}

.service-link:hover {
    color: var(--teal-dark);
    border-bottom-color: var(--teal-dark);
    gap: 0.5rem;
}

/* ════════════════════════════════════════════
   WHY SECTION
════════════════════════════════════════════ */
.why-section {
    background: var(--white);
    padding: 5rem 0;
}

.why-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.why-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 0.9rem;
}

.btn-why {
    background: var(--teal);
    color: var(--white);
    border-radius: 25px;
    padding: 1rem 1.7rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-why:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(74, 155, 140, 0.3);
}

.why-img-wrap {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 460px;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.why-img-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 55%;
    height: 55%;
    border: 3px solid var(--gold);
    border-radius: 6px;
    z-index: -1;
    opacity: 0.5;
}

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 6rem 1rem;
    background-image: url('https://images.unsplash.com/photo-1510076857177-7470076d4098?w=1400&q=85');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(44, 32, 22, 0.72),
            rgba(53, 122, 109, 0.60));
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.cta-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 1rem 1.7rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    border-radius: 40px;
    padding: 1rem 1.7rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-cta-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: var(--white);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
════════════════════════════════════════════ */
[data-aos] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .why-img-wrap {
        height: 300px;
    }

    .why-img-accent {
        display: none;
    }

    .cta-section {
        background-attachment: scroll;
    }
}