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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--soft-beige);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--body-text-size);
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--rose-pink);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--mauve);
    bottom: -150px;
    left: -100px;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--light-pink);
    top: 50%;
    left: 20%;
}

header.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 5%;
    background: rgba(249, 219, 189, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 123, 143, 0.2);
}

.logo {
    font-family: var(--heading-font);
    font-size: var(--logo-size);
    font-weight: 800;
    color: var(--deep-plum);
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 5% 4rem;
    background: var(--hero-bg);
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hero-badge-text);
    background: var(--hero-badge-bg);
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    box-shadow: 0 4px 20px rgba(217, 123, 143, 0.3);
}

.tagline {
    font-family: var(--heading-font);
    font-size: var(--tagline-size);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--tagline-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-main-title {
    font-family: var(--body-font);
    font-size: var(--hero-title-size);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--hero-title-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-text {
    font-size: var(--hero-text-size);
    line-height: 1.8;
    color: var(--hero-text-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.btn-primary,
.btn,
.ml-form-embedSubmit button.primary {
    background: var(--button-bg) !important;
    color: var(--button-text) !important;
    border: none;
    padding: 1.2rem 3rem;
    font-size: var(--button-text-size);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--body-font);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(217, 123, 143, 0.3);
}

.btn-primary:hover,
.btn:hover,
.ml-form-embedSubmit button.primary:hover {
    background: var(--button-hover-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 26, 44, 0.4);
}

.hero-image {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.7s forwards;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

section {
    position: relative;
    z-index: 1;
    padding: 6rem 5%;
}

.section-title {
    font-family: var(--heading-font);
    font-size: var(--section-title-size);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--section-subtitle-size);
    margin-bottom: 3rem;
}

.about {
    background: var(--about-bg);
}

.about .section-title { color: var(--about-title-color); }
.about .section-subtitle { color: var(--about-subtitle-color); }

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

.about-content p,
.about-content li {
    font-size: calc(var(--body-text-size) + 0.1rem);
    line-height: 1.9;
    color: var(--about-text-color);
}

.believe-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.believe-list li {
    margin-bottom: 1rem;
}

.believe-list li::marker {
    color: var(--about-list-marker-color);
}

.highlight {
    color: var(--about-highlight-color);
    font-weight: 600;
}

.about-inline-heading {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--about-highlight-color);
}

.closing-statement {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--about-closing-bg);
    border-left: 4px solid var(--about-closing-border);
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--about-closing-text);
}

.team {
    background: var(--team-bg);
}

.team .section-title { color: var(--team-title-color); }
.team .section-subtitle { color: var(--team-subtitle-color); }

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

.team-member {
    background: var(--team-card-bg);
    border: 1px solid var(--team-card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--rose-pink);
}

.team-photo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    object-position: center 20%;
}

.team-member:nth-child(1) .team-photo,
.team-member:nth-child(2) .team-photo {
    padding: 2.5rem;
    background: linear-gradient(145deg, var(--team-frame-start), var(--team-frame-mid), var(--team-frame-end));
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.2),
        inset 0 0 5px rgba(255,255,255,0.5),
        0 15px 40px rgba(0,0,0,0.3),
        0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid var(--team-frame-border);
}

.team-member:nth-child(1) .team-photo::before,
.team-member:nth-child(2) .team-photo::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.6);
    pointer-events: none;
    z-index: 1;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-family: var(--heading-font);
    font-size: var(--team-name-size);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--team-name-color);
}

.team-role {
    font-size: var(--team-role-size);
    color: var(--team-role-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.team-bio {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--team-text-color);
}

.signup {
    background: var(--signup-bg);
}

.signup-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

input[type="text"],
input[type="email"],
textarea {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: var(--signup-input-bg);
    border: 2px solid var(--signup-input-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--body-font);
    color: var(--signup-input-text);
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--signup-input-placeholder);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--rose-pink);
    background: var(--white);
}

textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

.success-message {
    display: none;
    background: var(--mauve);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-weight: 600;
    animation: slideDown 0.5s ease-out;
}

.contact {
    background: var(--contact-bg);
    padding: 4rem 5%;
    text-align: center;
}

.contact .section-title { color: var(--contact-title-color); }
.contact .section-subtitle { color: var(--contact-subtitle-color); }

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--modal-bg);
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid rgba(217, 123, 143, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.modal-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--modal-title-color);
    margin-bottom: 1rem;
}

.modal-close {
    color: var(--warm-gray);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--deep-plum);
}

footer.site-footer {
    padding: 3rem 5%;
    text-align: center;
    background: var(--footer-bg);
    color: var(--footer-text-color);
}

footer.site-footer p {
    font-size: 0.9rem;
}

footer.site-footer a {
    color: var(--footer-link-color);
    text-decoration: none;
}

.footer-tagline {
    color: var(--footer-link-color);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* MailerLite overrides */
#mlb2-37964080.ml-form-embedContainer {
    width: 100% !important;
}

#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: var(--signup-card-bg) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
    color: var(--signup-card-heading) !important;
    font-family: var(--heading-font) !important;
}

#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p,
#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description,
#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description p,
#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p,
#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent a {
    color: var(--signup-card-text) !important;
    font-family: var(--body-font) !important;
}

#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
    background-color: var(--signup-input-bg) !important;
    color: var(--signup-input-text) !important;
    border-color: var(--signup-input-border) !important;
    border-radius: 12px !important;
    border-width: 2px !important;
    font-family: var(--body-font) !important;
}

#mlb2-37964080.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
    color: var(--signup-input-placeholder) !important;
}

.privacy-body {
    font-family: var(--body-font);
    background: var(--privacy-bg);
    color: var(--privacy-text-color);
    line-height: 1.7;
}

.privacy-header {
    padding: 2rem 5%;
    background: var(--privacy-header-bg);
    border-bottom: 1px solid rgba(217, 123, 143, 0.2);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.privacy-container h1 {
    font-family: var(--heading-font);
    font-size: var(--privacy-h1-size);
    color: var(--privacy-heading-color);
    margin-bottom: 1rem;
}

.privacy-container .last-updated {
    color: var(--privacy-muted-color);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-container h2 {
    font-family: var(--heading-font);
    font-size: var(--privacy-h2-size);
    color: var(--privacy-section-heading-color);
    margin: 2.5rem 0 1rem;
}

.privacy-container h3 {
    font-size: 1.2rem;
    color: var(--privacy-subheading-color);
    margin: 1.5rem 0 0.75rem;
}

.privacy-container p,
.privacy-container li {
    margin-bottom: 1rem;
}

.privacy-container ul {
    margin: 1rem 0 1rem 2rem;
}

.privacy-container a {
    color: var(--privacy-link-color);
    text-decoration: none;
}

.privacy-container a:hover {
    color: var(--privacy-link-hover-color);
}

.privacy-highlight {
    background: var(--privacy-highlight-bg);
    padding: 1.5rem;
    border-left: 4px solid var(--privacy-highlight-border);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 6rem;
    }

    .hero-image {
        order: -1;
    }

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

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }

    section {
        padding: 4rem 5%;
    }

    .team-member {
        padding-top: 0;
    }

    .team-photo {
        max-width: 100%;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .logo {
        font-size: 1.6rem;
    }
}
