/* Fonts loaded here so only this file needs replacing */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..700;1,9..144,400..600&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   PADME · shared design system
   Palette drawn from the logo: dusty-rose lotus, charcoal ink
   Type: Fraunces (display serif — warm but credible)
         Karla (body)
============================================================ */
:root {
    --rose:        #D48FA6;   /* logo pink */
    --rose-deep:   #B06880;   /* pressed / hover pink */
    --rose-soft:   #EFC9D5;   /* light petal stroke */
    --petal:       #F8E9EE;   /* petal fill */
    --blush:       #FDF8FA;   /* page background */
    --ink:         #443C40;   /* charcoal from wordmark */
    --ink-soft:    #7A6E73;   /* body text */
    --leaf:        #8CA487;   /* muted lotus-leaf green, used sparingly */
    --white:       #FFFFFF;
    --radius-blob: 58% 42% 46% 54% / 52% 46% 54% 48%;
    --shadow-soft: 0 18px 45px rgba(176, 104, 128, 0.13);
    --shadow-card: 0 8px 28px rgba(68, 60, 64, 0.07);

    /* legacy aliases — keep older inline styles working */
    --primary:         var(--rose);
    --primary-dark:    var(--rose-deep);
    --primary-light:   var(--rose-soft);
    --primary-lighter: var(--petal);
    --dark:            var(--ink);
    --gray:            var(--ink-soft);
    --light-gray:      var(--blush);
    --border:          var(--petal);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Karla', sans-serif;
    color: var(--ink);
    background: var(--blush);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.28;
    color: var(--ink);
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 500; }
h4 { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); }

p { color: var(--ink-soft); font-size: 1.03rem; }

img { max-width: 100%; }

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--rose);
    outline-offset: 3px;
    border-radius: 6px;
}

.wrap, .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 5%;
}

.container { padding: 3.5rem 5%; }
.container section { margin-bottom: 4rem; }
.container section:last-child { margin-bottom: 0; }

/* ============ HEADER ============ */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(253, 248, 250, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--petal);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 4%;
    max-width: 1280px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img { width: 52px; height: 52px; object-fit: contain; display: block; }

.logo-text .wordmark {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.logo-text .tagline {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-deep);
    font-weight: 600;
}

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

.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--rose);
    transition: width 0.25s ease;
}

.nav-links a:not(.cta-button):hover { color: var(--rose-deep); }
.nav-links a:not(.cta-button):hover::after { width: 100%; }

/* current page */
.nav-links a.active { color: var(--rose-deep); }
.nav-links a.active:not(.cta-button)::after { width: 100%; }

.cta-button {
    background: var(--rose);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}
.menu-toggle svg { display: block; }

@media (max-width: 1080px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--blush);
        border-bottom: 1px solid var(--petal);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .nav-links.open { max-height: 560px; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { display: block; padding: 0.9rem; }
    .nav-links .cta-button { margin: 0.6rem auto 1.2rem; display: inline-block; padding: 0.65rem 2.2rem; }
}

/* ============ FLOATING PETALS (decor) ============ */
.petal-decor { position: absolute; pointer-events: none; opacity: 0.55; }

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-14px) rotate(6deg); }
}
.drift  { animation: drift 7s ease-in-out infinite; }
.drift2 { animation: drift 9s ease-in-out 1.2s infinite; }

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
    position: relative;
    margin-top: 68px;
    padding: 4.5rem 5% 3.8rem;
    text-align: center;
    background:
        radial-gradient(ellipse 60% 90% at 15% 110%, var(--petal) 0%, transparent 60%),
        radial-gradient(ellipse 55% 80% at 88% -10%, var(--petal) 0%, transparent 55%),
        var(--blush);
    border-bottom: 1px solid var(--petal);
    overflow: hidden;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--white);
    border: 1.5px solid var(--rose-soft);
    color: var(--rose-deep);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.page-header h1 { margin-bottom: 1rem; }

.page-header h1 .underline-stroke {
    position: relative;
    white-space: nowrap;
}
.page-header h1 .underline-stroke svg {
    position: absolute;
    left: 0;
    bottom: -0.16em;
    width: 100%;
    height: 0.32em;
}

.page-header p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ============ SECTION TITLES ============ */
.section-title {
    position: relative;
    color: var(--ink);
    margin-bottom: 1.6rem;
    padding-bottom: 0.9rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--rose) 0%, var(--rose-soft) 100%);
}

.section-intro {
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1.6rem;
    max-width: 62rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rose-deep);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.9rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--rose-soft);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}
.section-header p { margin-top: 0.9rem; }
.section-header .section-title { padding-bottom: 0; }
.section-header .section-title::after { display: none; }

/* ============ TABLE OF CONTENTS ============ */
.toc-wrapper {
    background: var(--white);
    border: 2px dashed var(--rose-soft);
    padding: 1.8rem 2rem;
    border-radius: 22px;
    margin-bottom: 3.2rem;
}

.toc-wrapper h3 {
    color: var(--rose-deep);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.toc-list a {
    display: inline-block;
    background: var(--petal);
    color: var(--rose-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.45rem 1.15rem;
    border-radius: 30px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.toc-list a:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============ BOXES & CALLOUTS ============ */
.highlight-box {
    background: var(--petal);
    padding: 1.8rem 2rem;
    border-radius: 18px;
    border-left: 5px solid var(--rose);
    margin: 1.8rem 0;
}
.highlight-box h3, .highlight-box h4 { color: var(--rose-deep); margin-bottom: 0.6rem; }
.highlight-box p { font-size: 0.99rem; }
.highlight-box ul, .highlight-box ol { margin: 0.6rem 0 0 1.3rem; color: var(--ink-soft); }

.important-note {
    background: #FFF6E4;
    border-left: 5px solid #E0A23C;
    padding: 1.5rem 1.8rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}
.important-note h3, .important-note h4 { color: #A9731F; margin-bottom: 0.5rem; }

.redflag-box {
    background: #FBEDED;
    padding: 1.4rem 1.8rem;
    border-radius: 16px;
    border-left: 5px solid #CE8181;
    margin-top: 1rem;
}
.redflag-box h4 { color: #A85A5A; margin-bottom: 0.5rem; }
.redflag-box p, .redflag-box li { color: #7A5C5C; font-size: 0.97rem; }
.redflag-box ul { margin: 0.4rem 0 0 1.3rem; }

.founder-quote {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.22rem;
    color: var(--rose-deep);
    line-height: 1.8;
    padding: 1.8rem 2.2rem;
    border-left: 5px solid var(--rose);
    background: var(--petal);
    border-radius: 0 20px 20px 0;
    margin: 2rem 0;
}

.signature {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    color: var(--rose-deep);
    font-size: 1.1rem;
    margin-top: -0.5rem;
}

/* ============ LISTS ============ */
.check-list {
    list-style: none;
    margin: 1rem 0;
}

.check-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 2.3rem;
    color: var(--ink-soft);
    font-size: 1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--petal);
    color: var(--rose-deep);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-list li strong { color: var(--ink); }

/* generic content lists inside sections */
section ul:not([class]), section ol:not([class]) {
    margin: 0.8rem 0 1.2rem 1.4rem;
    color: var(--ink-soft);
}
section ul:not([class]) li, section ol:not([class]) li { margin-bottom: 0.4rem; }

/* ============ TABLES ============ */
.table-wrapper {
    overflow-x: auto;
    margin: 1.8rem 0;
    border-radius: 18px;
    border: 1.5px solid var(--petal);
    box-shadow: var(--shadow-card);
    background: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.97rem;
}

th {
    background: var(--petal);
    color: var(--rose-deep);
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    text-align: left;
    padding: 0.95rem 1.2rem;
    white-space: nowrap;
}

td {
    padding: 0.9rem 1.2rem;
    border-top: 1px solid var(--petal);
    color: var(--ink-soft);
    vertical-align: top;
}

tbody tr:hover { background: var(--blush); }

/* ============ FAQ ACCORDION ============ */
.faq-subheading {
    margin: 2.6rem 0 1.2rem;
    color: var(--rose-deep);
    font-size: 1.2rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover { border-color: var(--rose-soft); }
.faq-item.open { border-color: var(--rose-soft); box-shadow: var(--shadow-card); }

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.25s ease;
}

.faq-question:hover { background: var(--blush); }
.faq-question h4 { font-size: 1.02rem; }

.faq-toggle {
    color: var(--rose);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.4rem;
    color: var(--ink-soft);
    line-height: 1.85;
}
.faq-answer p { font-size: 0.99rem; margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { margin: 0.5rem 0 0.8rem 1.4rem; color: var(--ink-soft); }

.faq-item.open .faq-answer { display: block; }

/* ============ CARD FAMILIES ============ */
.org-grid, .terms-grid, .advisor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.6rem;
    margin-top: 1.6rem;
}

.org-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 20px;
    padding: 1.9rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.org-card:hover {
    border-color: var(--rose-soft);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.org-abbr {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rose-deep);
    background: var(--petal);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
}

.org-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.org-card p { font-size: 0.95rem; }

.term-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 20px;
    padding: 1.7rem 1.9rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.term-card:hover {
    border-color: var(--rose-soft);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.term-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--rose-deep);
    margin-bottom: 0.6rem;
}

.term-definition { font-size: 0.95rem; }

.profile-card, .milestone-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 20px;
    padding: 1.9rem 2.1rem;
    margin-bottom: 1.4rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover, .milestone-card:hover {
    border-color: var(--rose-soft);
    box-shadow: var(--shadow-card);
}

.profile-card h3, .milestone-card h4 { color: var(--rose-deep); margin-bottom: 0.3rem; }

.profile-role {
    display: block;
    font-size: 0.82rem;
    color: var(--rose-deep);
    font-weight: 700;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-card p { font-size: 0.98rem; }

/* advisor / researcher */
.advisor-card, .researcher-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.advisor-card:hover, .researcher-card:hover {
    border-color: var(--rose-soft);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.advisor-photo {
    width: 100%;
    height: 210px;
    background: linear-gradient(150deg, var(--petal) 0%, #F2D9E1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-deep);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 600;
}
.advisor-photo img { width: 100%; height: 100%; object-fit: cover; }

.advisor-info { padding: 1.5rem 1.7rem 1.8rem; }
.advisor-info h4 { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; color: var(--ink); margin-bottom: 0.2rem; }

.advisor-role {
    display: block;
    font-size: 0.8rem;
    color: var(--rose-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.advisor-info p { font-size: 0.93rem; }

.researcher-card { display: flex; gap: 2rem; align-items: center; padding: 2rem; flex-wrap: wrap; }

.researcher-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--petal) 0%, #F2D9E1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-deep);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.researcher-info { flex: 1; min-width: 260px; }
.researcher-info h4 { font-family: 'Fraunces', Georgia, serif; font-size: 1.2rem; margin-bottom: 0.3rem; }

/* press */
.press-grid { display: grid; gap: 0.9rem; margin-top: 1.4rem; }

.press-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 16px;
    padding: 1.15rem 1.5rem;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
    border-color: var(--rose-soft);
    transform: translateX(5px);
    box-shadow: var(--shadow-card);
}

.press-card-source {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--rose-deep);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 0.2rem;
}

.press-card-title { color: var(--ink); font-weight: 600; font-size: 0.98rem; line-height: 1.5; }

.press-card-arrow { color: var(--rose); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.25s ease; }
.press-card:hover .press-card-arrow { transform: translateX(4px); }

/* blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
    margin-top: 1.6rem;
}

.blog-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    border-color: var(--rose-soft);
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.blog-card-image {
    height: 150px;
    background: linear-gradient(150deg, var(--petal) 0%, #F2D9E1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    border-radius: 0 0 55% 55% / 0 0 18% 18%;
}

.blog-card-body { padding: 1.5rem 1.6rem 1.7rem; }

.blog-card-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--rose-deep);
    background: var(--petal);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.blog-card-body h4 { font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card-body p { font-size: 0.93rem; }

.blog-card-status {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: var(--rose-deep);
    font-weight: 700;
}

/* resources */
.resource-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-left: 5px solid var(--rose);
    border-radius: 18px;
    padding: 1.5rem 1.9rem;
    margin-bottom: 1.4rem;
}

.resource-category-title {
    color: var(--rose-deep);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 2rem 0 0.9rem;
    padding-left: 0.9rem;
    border-left: 4px solid var(--rose);
    border-radius: 2px;
}

.resource-list { list-style: none; }

.resource-list li {
    border-bottom: 1px solid var(--petal);
    padding: 0.15rem 0;
}
.resource-list li:last-child { border-bottom: none; }

.resource-list a {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.97rem;
    padding: 0.7rem 0.4rem;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.resource-list a:hover {
    color: var(--rose-deep);
    background: var(--blush);
    padding-left: 0.9rem;
}

.resource-meta { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; }
.resource-note { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin-top: 0.8rem; }

/* stats */
.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin: 1.8rem 0;
}

.stat-item {
    flex: 1 1 190px;
    background: var(--petal);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
    text-align: center;
}

.stat-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-deep);
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; display: block; }

/* subscribe */
.subscribe-box {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 2.5rem;
    text-align: center;
    color: var(--white);
}

.subscribe-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.subscribe-box p { color: rgba(255, 255, 255, 0.92); margin-bottom: 1.4rem; }

.subscribe-form {
    display: flex;
    gap: 0.8rem;
    max-width: 460px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-form input {
    flex: 1 1 240px;
    padding: 0.85rem 1.3rem;
    border-radius: 40px;
    border: none;
    font-family: 'Karla', sans-serif;
    font-size: 0.97rem;
    color: var(--ink);
}

.subscribe-form button, .subscribe-form .btn {
    background: var(--white);
    color: var(--rose-deep);
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 40px;
    font-weight: 700;
    font-family: 'Karla', sans-serif;
    font-size: 0.97rem;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.subscribe-form button:hover { background: var(--petal); transform: translateY(-2px); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Karla', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-3px); }

.btn-outline {
    background: transparent;
    color: var(--rose-deep);
    border: 2px solid var(--rose-soft);
}
.btn-outline:hover { border-color: var(--rose); background: var(--petal); transform: translateY(-3px); }

/* ============ CTA BAND ============ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    border-radius: 34px;
    padding: 3.6rem 2.6rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }

.cta-section p {
    color: rgba(255, 255, 255, 0.94);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.08rem;
}

.cta-section .btn-primary { background: var(--white); color: var(--rose-deep); }
.cta-section .btn-primary:hover { background: var(--petal); }

.cta-lotus {
    position: absolute;
    right: -40px;
    bottom: -50px;
    width: 260px;
    height: 260px;
    opacity: 0.14;
    pointer-events: none;
}

/* ============ HOMEPAGE ============ */
.hero {
    position: relative;
    padding: 9.5rem 5% 5rem;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--petal);
    color: var(--rose-deep);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    margin-bottom: 1.4rem;
}

.hero h1 { margin-bottom: 1.3rem; }

.hero h1 .bloom { position: relative; color: var(--rose-deep); white-space: nowrap; }
.hero h1 .bloom svg {
    position: absolute;
    left: 0;
    bottom: -0.18em;
    width: 100%;
    height: 0.35em;
}

.hero-lede { font-size: 1.12rem; max-width: 34rem; margin-bottom: 2rem; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; }

.hero-blob {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-blob);
    overflow: hidden;
    background: linear-gradient(150deg, var(--petal) 0%, #F2D9E1 100%);
    box-shadow: var(--shadow-soft);
}

.hero-blob img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
    position: absolute;
    bottom: 6%;
    left: -4%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    max-width: 250px;
}

.hero-badge img { width: 42px; height: 42px; object-fit: contain; }
.hero-badge span { font-size: 0.86rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 7.5rem; gap: 2.5rem; }
    .hero-badge { left: 4%; }
}

.section-pad { padding: 4.5rem 5%; max-width: 1180px; margin: 0 auto; }

.about-band, .services-band { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-visual { position: relative; text-align: center; }

.about-logo-frame {
    background: var(--blush);
    border: 2px dashed var(--rose-soft);
    border-radius: var(--radius-blob);
    padding: 2.5rem;
    max-width: 360px;
    margin: 0 auto;
}
.about-logo-frame img { width: 100%; object-fit: contain; }

.about-content h2 { margin-bottom: 1.2rem; }
.about-content > p { margin-bottom: 1.1rem; }

.lotus-box {
    position: relative;
    background: var(--petal);
    padding: 1.8rem 2rem 1.8rem 4.4rem;
    border-radius: 18px;
    margin-top: 1.8rem;
}

.lotus-box .lotus-mark { position: absolute; left: 1.3rem; top: 1.6rem; width: 2.1rem; height: 2.1rem; }
.lotus-box h3 { color: var(--rose-deep); font-size: 1.08rem; margin-bottom: 0.5rem; }
.lotus-box p { font-size: 0.98rem; font-style: italic; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .about-visual { order: -1; }
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }

.feature-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.4rem 1.4rem 2rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }

.feature-image {
    height: 230px;
    border-radius: 18px 18px 60% 60% / 18px 18px 22% 22%;
    overflow: hidden;
    margin-bottom: 1.4rem;
    background: var(--petal);
}

.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 { color: var(--rose-deep); margin-bottom: 0.7rem; }
.feature-card p { font-size: 0.96rem; }

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8rem; }

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--blush);
    border: 1.5px solid var(--petal);
    padding: 2.2rem 1.9rem;
    border-radius: 22px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    border-color: var(--rose-soft);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--petal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.2rem; }

.service-link { color: var(--rose-deep); text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.service-link::after { content: ' →'; display: inline-block; transition: transform 0.25s ease; }
.service-link:hover::after { transform: translateX(4px); }

/* bloom line (journey) */
.bloom-line { position: relative; max-width: 900px; margin: 0 auto; }

.bloom-line::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 50%;
    border-left: 3px dashed var(--rose-soft);
    transform: translateX(-50%);
}

.journey-step {
    position: relative;
    width: calc(50% - 3.2rem);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 1.7rem 1.8rem;
    margin-bottom: 2.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.journey-step:nth-child(odd)  { margin-right: auto; text-align: right; }
.journey-step:nth-child(even) { margin-left: auto; }

.journey-step .stage-dot {
    position: absolute;
    top: 1.6rem;
    width: 52px;
    height: 52px;
    background: var(--blush);
    border: 2.5px solid var(--rose-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.journey-step:nth-child(odd)  .stage-dot { right: -5.05rem; }
.journey-step:nth-child(even) .stage-dot { left: -5.05rem; }
.stage-dot svg { width: 30px; height: 30px; }

.journey-step .stage-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.3rem;
}

.journey-step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.journey-step p  { font-size: 0.94rem; }

@media (max-width: 760px) {
    .bloom-line::before { left: 25px; }
    .journey-step,
    .journey-step:nth-child(odd) {
        width: calc(100% - 4.6rem);
        margin-left: 4.6rem;
        text-align: left;
    }
    .journey-step:nth-child(odd) .stage-dot,
    .journey-step:nth-child(even) .stage-dot { left: -4.35rem; right: auto; }
}

/* ============ FOOTER ============ */
footer {
    background: var(--ink);
    color: var(--white);
    padding: 4rem 5% 2rem;
    margin-top: 4.5rem;
}

.footer-content {
    max-width: 1180px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.6rem;
}

.footer-brand img { width: 64px; margin-bottom: 1rem; background: var(--white); border-radius: 14px; padding: 6px; }

.footer-col h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    color: var(--rose-soft);
}

.footer-col p { color: rgba(255, 255, 255, 0.75); font-size: 0.93rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
    display: block;
    transition: color 0.25s ease;
}

.footer-col a:hover { color: var(--rose-soft); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.6rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    max-width: 1180px;
    margin: 0 auto;
}

@media (max-width: 900px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-content { grid-template-columns: 1fr; } }

/* ============ SCROLL REVEAL & MOTION ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .drift, .drift2 { animation: none; }
    * { transition-duration: 0.01ms !important; }
}

/* ============ SECTION IMAGES (floated right) ============ */
.has-float { overflow: hidden; }

.float-figure {
    float: right;
    width: min(340px, 46%);
    margin: 0.4rem 0 1.4rem 2.2rem;
    border-radius: 22px;
    overflow: hidden;
    border: 1.5px solid var(--petal);
    box-shadow: var(--shadow-card);
    background: var(--petal);
}

.float-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 700px) {
    .float-figure { float: none; width: 100%; margin: 1.2rem 0; }
}

/* ============ PROFILE PHOTOS ============ */
.profile-card.with-photo {
    display: flex;
    gap: 1.9rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profile-photo {
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(150deg, var(--petal) 0%, #F2D9E1 100%);
    border: 3px solid var(--rose-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo span {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--rose-deep);
}

.profile-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-body { flex: 1; min-width: 250px; }

@media (max-width: 560px) {
    .profile-card.with-photo { flex-direction: column; align-items: center; text-align: left; }
    .profile-photo { width: 140px; height: 140px; }
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
    align-items: start;
}

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

.contact-form-card {
    background: var(--white);
    border: 1.5px solid var(--petal);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.94rem;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.form-group label .req { color: var(--rose-deep); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1.5px solid var(--rose-soft);
    border-radius: 14px;
    font-family: 'Karla', sans-serif;
    font-size: 0.98rem;
    color: var(--ink);
    background: var(--blush);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 143, 166, 0.15);
}

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

.form-note { font-size: 0.87rem; color: var(--ink-soft); margin-top: 1rem; }

.contact-info-card {
    background: var(--petal);
    border-radius: 24px;
    padding: 2.1rem;
    margin-bottom: 1.6rem;
}

.contact-info-card h3 { color: var(--rose-deep); font-size: 1.15rem; margin-bottom: 0.7rem; }
.contact-info-card p { font-size: 0.96rem; margin-bottom: 0.6rem; }
.contact-info-card a { color: var(--rose-deep); font-weight: 700; text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }

/* ============ FOOTER SOCIAL ICONS ============ */
.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

/* higher specificity to override the stacked .footer-col a rule */
.footer-col .social-links a,
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-col .social-links a:hover,
.social-links a:hover {
    background: var(--rose);
    transform: translateY(-3px);
}

.social-links svg { display: block; flex-shrink: 0; }
