/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6b5344;           /* Warm brown - matches their chocolate */
    --secondary: #ffd700;         /* Gold/yellow accent - matches their CTA */
    --accent: #9d8b7e;            /* Taupe accent */
    --text-dark: #3a3a3a;         /* Dark text */
    --text-light: #666666;        /* Medium gray */
    --bg-light: #f5f1ed;          /* Warm cream/off-white */
    --white: #ffffff;             /* Pure white */
    --border: #e8e3de;            /* Warm light border */
    --taupe-hero: #a89a8f;        /* Taupe for hero background */
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

/* Header / Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.logo .location {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, border-bottom 0.3s;
}

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

.cta-button {
    background: var(--secondary) !important;
    color: var(--text-dark) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #ffed4e !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--taupe-hero) 0%, #9d8b7e 100%);
    color: var(--white);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.03);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(0,0,0,0.05);stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="400"/></svg>');
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 0;
    text-align: left;
    padding-left: 60px;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.tagline-spanish {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    opacity: 0.9;
}

.tagline-english {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.hero-image {
    flex: 1;
    text-align: right;
    padding-right: 0;
    margin-right: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.hero-cta {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    background: #ffed4e;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-category h3 {
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.75rem;
}

.service-category h3.service-category-heading-with-note {
    border-bottom: none !important;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.service-category-note {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.service-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.service-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    flex: 1;
}

.service-price {
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
    font-size: 1rem;
}

.service-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
}

.service-description p {
    margin: 0 0 0.35rem 0;
}

.service-description ul {
    margin: 0;
    padding-left: 1.2rem;
}

/* About Us Section */
.about-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'Georgia', serif;
    text-align: left;
}

.about-text {
    margin-left: auto;
    max-width: 600px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

.our-team {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.our-team h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.team-member-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.team-member-content {
    flex: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member-title {
    color: #000000;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.team-member-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 400;
    font-family: 'Georgia', serif;
    margin-bottom: 0.2rem;
    margin-top: 0;
}

.team-member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* About Team Section */
.about-team {
    padding: 100px 20px;
    background: var(--white);
}

.team-heading {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Georgia', serif;
    max-width: 100%;
    text-align: center;
}

.team-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image {
    flex: 1;
    min-width: 0;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-description {
    flex: 1;
}

.team-description p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Why Us Section */
.why-us {
    padding: 100px 20px;
    background: var(--white);
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: 'Georgia', serif;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-map iframe {
    display: block;
    border-radius: 8px;
}

/* Get in Touch Form */
.get-in-touch {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.get-in-touch h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.form-intro {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-required {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.required-asterisk {
    color: #dc2626;
    font-weight: 700;
}

.contact-form {
    max-width: 600px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 83, 68, 0.1);
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-group {
    display: flex;
    gap: 1rem;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: normal;
    margin: 0;
}

.form-submit {
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #5a4436;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 83, 68, 0.3);
}

.info-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.info-block:hover {
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.12);
    transform: translateY(-2px);
}

.info-block h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Georgia', serif;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-block a:hover {
    color: var(--secondary);
}

/* Booking CTA Section */
.booking-cta {
    background: var(--primary);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.02);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(0,0,0,0.03);stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="300"/></svg>');
}

.booking-cta .container {
    position: relative;
    z-index: 1;
}

.booking-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.booking-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.booking-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.booking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    background: #ffed4e;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--secondary);
    font-family: 'Georgia', serif;
}

.footer-section p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        position: sticky;
    }

    .navbar {
        padding: 0.45rem 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 0.35rem;
        padding: 0 10px;
    }

    .logo {
        align-items: center;
        gap: 0.05rem;
    }

    .logo h1 {
        font-size: 1.15rem;
        line-height: 1.1;
        letter-spacing: 0.4px;
        text-align: center;
    }

    .logo .location {
        font-size: 0.62rem;
        line-height: 1;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem 0.65rem;
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.78rem;
        line-height: 1;
        white-space: nowrap;
    }

    .cta-button {
        padding: 0.38rem 0.75rem;
        font-size: 0.76rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .tagline-spanish {
        font-size: 1.1rem;
    }

    .hero-cta {
        display: inline-block;
        margin-top: 1rem;
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-text {
        margin-left: 0;
    }

    .about-text p {
        font-size: 1rem;
    }

    .our-team h3 {
        font-size: 1.5rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .team-member-layout {
        flex-direction: column;
    }

    .team-member-content {
        padding: 2rem;
    }

    .team-member-image {
        height: 300px;
        flex: none;
        width: 100%;
    }

    .team-member-name {
        font-size: 1.2rem;
    }

    .team-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .team-content {
        flex-direction: column;
        gap: 2rem;
    }

    .services-tabs {
        gap: 1.5rem;
    }

    .service-category {
        padding: 1.5rem;
    }

    .service-category h3 {
        font-size: 1.25rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        align-self: flex-start;
        margin-top: 0.5rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        min-height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .get-in-touch h3 {
        font-size: 1.5rem;
    }

    .services h2,
    .why-us h2,
    .contact h2,
    .booking-cta h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
