:root {
    --bg:           #f9f7f3;
    --bg-gray:      #f9f7f3;
    --bg-pink:      #dbf1ef;
    --bg-sage:      #dbf1ef;
    --text:         #666666;
    --text-light:   #999999;
    --text-dark:    #4c3b30;
    --accent:       #65cec4;
    --accent-dark:  #4aada6;
    --divider:      #d8d0c7;
    --max-w:        900px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ─── Container ──────────────────────────────── */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(242, 242, 242, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--divider);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    gap: 24px;
}

.logo-name {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.3px;
    text-transform: none;
    white-space: nowrap;
    color: var(--text-dark);
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text);
    white-space: nowrap;
    transition: color 0.2s;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--accent-dark);
    transition: width 0.25s;
}

.site-nav a:hover {
    color: var(--accent-dark);
}

.site-nav a:hover::after {
    width: 100%;
}

.site-nav .nav-cta {
    color: var(--text-dark);
    font-weight: 400;
    border: 1.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 4px 14px;
    transition: background 0.2s, color 0.2s;
}

.site-nav .nav-cta::after {
    display: none;
}

.site-nav .nav-cta:hover {
    background: var(--text-dark);
    color: white;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    line-height: 1;
    border: 1.5px solid var(--accent);
    border-radius: 20px;
    padding: 4px 10px;
    opacity: 1;
    transition: background 0.2s, transform 0.15s;
}

.nav-whatsapp::after {
    display: none;
}

.nav-whatsapp:hover {
    background: var(--accent);
    opacity: 1;
    transform: none;
}

/* burger — hidden on desktop */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ─── Hero ───────────────────────────────────── */

.hero {
    padding: 72px 0 64px;
    background: var(--bg-gray);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-photo-wrap {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 36px;
    flex-shrink: 0;
    border: 3px solid var(--accent);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-name {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    margin: 0 0 10px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title {
    font-size: 11px;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 32px;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    max-width: 520px;
    margin: 0 0 40px;
    line-height: 1.8;
}

/* ─── Primary Button ─────────────────────────── */

.btn-primary {
    display: inline-block;
    padding: 12px 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    letter-spacing: 0;
    text-transform: none;
    transition: background-color 0.25s, transform 0.15s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* ─── Content Sections ───────────────────────── */

.content-section {
    padding: 80px 0;
}

.content-section.bg-pink  { background: var(--bg-pink); }
.content-section.bg-sage  { background: var(--bg-sage); }
.content-section.bg-gray  { background: var(--bg-gray); }
.content-section.bg-white { background: var(--bg); }

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.section-with-image.image-first {
    grid-template-columns: 340px 1fr;
}

.section-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

.section-text h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    margin: 0 0 24px;
    line-height: 1.4;
    color: var(--text-dark);
}

.section-text h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--accent-dark);
    margin: 32px 0 12px;
}

.section-text p {
    margin: 0 0 18px;
    font-weight: 300;
    text-align: justify;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-text a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-text a:hover {
    color: var(--accent);
}

.source-note {
    font-size: 13px !important;
    color: var(--text-light) !important;
}

.source-note a {
    color: var(--text-light) !important;
    font-size: 13px;
}

/* text-only section (no image) */
.section-text-only {
    max-width: 680px;
}

.section-text-only h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    margin: 0 0 24px;
    color: var(--text-dark);
}

.section-text-only p {
    margin: 0 0 18px;
    font-weight: 300;
    text-align: justify;
}

.section-text-only p:last-child {
    margin-bottom: 0;
}

/* ─── Section heading icons ──────────────────── */

.section-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    margin-left: 7px;
    vertical-align: -4px;
    flex-shrink: 0;
}

.contact-inner h2 .section-icon {
    width: 24px;
    height: 24px;
    vertical-align: -6px;
}

/* ─── Hero feature tags ───────────────────────── */

.hero-features {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ─── Contact ────────────────────────────────── */

.contact-section {
    background: var(--bg-gray);
    padding: 80px 0 100px;
}

.contact-inner {
    text-align: center;
}

.contact-inner h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: none;
    margin: 0 0 12px;
    color: var(--text-dark);
}

.contact-lead {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 40px;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-phone,
.contact-email {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--accent-dark);
}

.contact-note {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin: 0;
}

/* ─── Footer ─────────────────────────────────── */

.site-footer {
    background: var(--bg-sage);
    border-top: 1px solid #c8e0de;
    padding: 20px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.back-to-top {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-light);
    transition: color 0.2s;
}

.back-to-top:hover {
    color: var(--text);
}

/* ─── Responsive ─────────────────────────────── */

@media (max-width: 780px) {
    body {
        font-size: 17px;
    }

    /* nav collapse */
    .burger {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 62px;
        right: 0;
        left: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--divider);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0;
        z-index: 99;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 24px;
        width: 100%;
    }

    .site-nav a::after {
        display: none;
    }

    /* pill nav adjustments on mobile */
    .site-nav .nav-cta {
        padding: 3px 10px;
        font-size: 12px;
    }

    .nav-whatsapp {
        padding: 3px 8px;
    }

    /* hero */
    .hero {
        padding: 48px 0 48px;
    }

    .hero-photo-wrap {
        width: 260px;
        height: 260px;
        margin-bottom: 28px;
    }

    .hero-name {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 17px;
    }

    /* sections */
    .content-section {
        padding: 56px 0;
    }

    .section-with-image,
    .section-with-image.image-first {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-with-image.image-first {
        direction: ltr;
    }

    .section-with-image.image-first > * {
        direction: rtl;
    }

    .section-image {
        height: 260px;
    }

    /* contact */
    .contact-section {
        padding: 56px 0 72px;
    }

    .contact-inner h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-photo-wrap {
        width: 220px;
        height: 220px;
    }

    .hero-name {
        font-size: 26px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
