:root {
    --lavender: #C9C4E3;
    --sage: #C9D9C2;
    --soft-blue: #CFE3F4;
    --cool-grey: #ECEEF1;
    --midnight: #3E4057;
    --text-main: #2f3040;
    --text-muted: #5c5d70;
    --white: #ffffff;
}

/* HEADER & NAV
   ------------------------------------------ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

/* HEADER LOGO */
.site-header .logo img {
    display: block;
    height: 80px;      /* 👈 make this as big/small as you like */
    width: auto;
}

/* NAV */

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--midnight);
    padding-bottom: 0.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
    color: #22253a;
    border-bottom-color: rgba(62, 64, 87, 0.3);
}

/* Contact button style in nav */
.main-nav .nav-cta {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(62, 64, 87, 0.2);
    background: var(--soft-blue);
    border-bottom-color: transparent;
}

.main-nav .nav-cta:hover {
    background: var(--lavender);
    color: var(--midnight);
    border-bottom-color: transparent;
}

/* MOBILE NAV */

@media (max-width: 780px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .logo img {
        height: 44px;  /* slightly smaller on mobile */
    }
}

/* BASIC LAYOUT */

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: #f7f7fb;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--cool-grey);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
}

/* HERO */

.hero-home {
    padding: 4.5rem 0 4rem;
    background: radial-gradient(circle at top left, var(--soft-blue), var(--lavender));
    color: var(--midnight);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    padding: 0.50rem 1.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0 0 0.75rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 32rem;
    color: var(--midnight);
    opacity: 0.9;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn-primary {
    background: var(--midnight);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(62, 64, 87, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(62, 64, 87, 0.45);
}

.btn-secondary {
    background: var(--lavender);
    color: var(--midnight);
    border-color: rgba(62, 64, 87, 0.2);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--midnight);
    border-color: rgba(62, 64, 87, 0.12);
}

.btn-ghost:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

/* FULL WIDTH BUTTON — only on mobile */
.full-width {
    width: auto;
}

@media (max-width: 780px) {
    .full-width {
        width: 100%;
    }
}

/* HERO HIGHLIGHTS */

.hero-highlights {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-pill {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    min-width: 160px;
}

.highlight-pill strong {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

/* HERO RIGHT CARD */

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(40, 40, 70, 0.25);
    backdrop-filter: blur(4px);
}

.hero-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.hero-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.hero-card-list {
    margin: 0 0 0.9rem;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.hero-card-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ICON GRID */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.icon-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.icon-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* TWO COLUMN SECTION */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: flex-start;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.checklist li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-size: 0.8rem;
    color: var(--sage);
}

.info-panel {
    background: var(--cool-grey);
    border-radius: 1rem;
    padding: 1.5rem;
}

.simple-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.simple-list li {
    margin-bottom: 0.4rem;
}

/* FAQ GRID */

.section-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

/* CTA */

.section-cta {
    background: var(--midnight);
    color: var(--white);
}

.cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-inner p {
    max-width: 32rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-cta .btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* RESPONSIVE BELOW HERO */

@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-content: flex-start;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 3rem;
    padding: 2.5rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col {
    min-width: 180px;
    max-width: 260px;
}

/* FOOTER LOGO */
.site-footer .footer-logo {
    display: block;
    height: 80px;      /* footer logo size, independent of anything else */
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    margin: 0.15rem 0;
    color: var(--text-main);
}

.footer-location {
    margin: 0;
}

.footer-col h4 {
    margin: 0 0 0.5rem;
    color: var(--midnight);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--midnight);
}

.footer-bottom {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 780px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.hero-inner {
    padding: 3.5rem 0 3rem;
    background: linear-gradient(135deg, var(--lavender), var(--soft-blue));
    color: var(--midnight);
}

.hero-inner .hero-subtitle {
    max-width: 40rem;
}

.about-layout {
    align-items: flex-start;
}

.about-panel .about-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
/* CONTACT FORM
   ------------------------------------------ */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    margin-top: 0.35rem;
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0,0,0,0.15);
    background: #ffffff;
    color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--lavender);
    box-shadow: 0 0 0 2px rgba(201, 196, 227, 0.3);
}

.founder-photo-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--lavender);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.founder-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* FOUNDER PHOTO ON ABOUT PAGE */
.about-panel .founder-photo {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--lavender);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto 1.25rem;
}

@media (max-width: 860px) {
    .founder-photo {
        margin-inline: auto; /* center on mobile */
    }
}

/* FORCE the founder image size */
.founder-photo {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 4px solid var(--lavender);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}




