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

:root {
    --cream: #f8f6f0;
    --soft-beige: #e8dcc6;
    --warm-beige: #d4c4a8;
    --sage-green: #a8b5a0;
    --soft-green: #c4d1bd;
    --earth-brown: #8b7355;
    --text-dark: #4a453f;
    --text-light: #6b6258;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ── */
header {
    background: linear-gradient(135deg, var(--soft-beige), var(--soft-green));
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--earth-brown);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 120px;
    width: 120px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--sage-green);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--earth-brown);
    cursor: pointer;
}

.back-link {
    background: var(--sage-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--earth-brown);
    transform: translateY(-2px);
}

/* ── Hero (index) ── */
.hero {
    background: linear-gradient(rgba(168, 181, 160, 0.1), rgba(196, 209, 189, 0.1)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f6f0" width="1200" height="600"/><circle fill="%23c4d1bd" opacity="0.3" cx="200" cy="150" r="80"/><circle fill="%23a8b5a0" opacity="0.2" cx="800" cy="300" r="120"/><circle fill="%23e8dcc6" opacity="0.4" cx="1000" cy="100" r="60"/></svg>');
    padding: 4rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--earth-brown);
    font-weight: normal;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-style: italic;
}

/* ── Service Hero (inner pages) ── */
.service-hero {
    background: linear-gradient(135deg, var(--soft-green), var(--cream));
    padding: 3rem 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.service-hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

/* ── Buttons ── */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--sage-green), var(--soft-green));
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 181, 160, 0.3);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 181, 160, 0.4);
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--earth-brown), var(--sage-green));
    font-size: 1.2rem;
    padding: 18px 35px;
}

/* ── Services Section ── */
.services {
    padding: 4rem 0;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--earth-brown);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid var(--soft-beige);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--soft-green);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}

.service-icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    max-width: 100px;
    max-height: 100px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--earth-brown);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-link {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: var(--earth-brown);
    transform: translateY(-2px);
}

/* ── Service Content (inner pages) ── */
.service-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-details h2 {
    color: var(--earth-brown);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-details p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-image {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

/* ── Info Cards ── */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--soft-beige);
    text-align: center;
}

.info-card h3 {
    color: var(--earth-brown);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card .highlight {
    font-size: 2rem;
    font-weight: bold;
    color: var(--sage-green);
    display: block;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ── About Section ── */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-beige), var(--cream));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--earth-brown);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 500px;
    background: transparent;
    overflow: visible;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.credentials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--soft-beige);
}

.credentials img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.credentials-text h4 {
    color: var(--earth-brown);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.credentials-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* ── What to Expect ── */
.expect-section {
    background: linear-gradient(135deg, var(--soft-beige), var(--cream));
    padding: 3rem 0;
    margin: 3rem 0 0 0;
    border-radius: 20px;
}

.expect-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.expect-section h2 {
    color: var(--earth-brown);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.expect-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.step-number {
    background: var(--sage-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step h4 {
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ── CTA Section ── */
.cta-section {
    background: var(--sage-green);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-radius: 15px;
    margin: 3rem 0 0 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: var(--sage-green);
    font-weight: bold;
}

/* ── Booking Section ── */
.booking {
    padding: 4rem 0;
    background-color: var(--cream);
    text-align: center;
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
}

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--earth-brown);
}

.booking p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-buttons {
    margin: 2rem 0;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* ── Footer ── */
footer {
    background: linear-gradient(135deg, var(--earth-brown), var(--sage-green));
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-link img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.footer-social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   MOBILE — single clean block
   ══════════════════════════════════════ */
@media (max-width: 768px) {

    header {
        position: relative;
    }

    .logo img {
        height: 70px;
        width: 70px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--soft-beige), var(--soft-green));
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .about-content,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expect-steps {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-section {
        padding: 2rem 1rem;
        margin: 3rem 0 0 0;
    }

    .cta-section .cta-button {
        display: block;
        margin: 0.5rem auto;
        max-width: 220px;
    }

    .credentials {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .credentials img {
        width: 60px;
        height: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom > div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
}
