
:root {
    --rose:       #c4627a;
    --rose-deep:  #9b3d56;
    --rose-dark:  #6b1f35;
    --blush:      #f5e6ea;
    --blush-mid:  #edd5db;
    --mauve:      #b07a8a;
    --gold:       #c9944a;
    --gold-light: #e8c07a;
    --cream:      #fdf6f0;
    --text:       #2c1a22;
    --muted:      #7a5060;
    --white:      #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }

/* ─── NAVBAR ─── */
.navbar {
    background: rgba(253,246,240,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,98,122,.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(155,61,86,.07);
}
.navbar-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rose-deep) !important;
    text-decoration: none;
    line-height: 1.15;
}
.navbar-brand-text span { color: var(--gold); }
.navbar-brand-tagline {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mauve);
    display: block;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.nav-link {
    font-weight: 500;
    font-size: .92rem;
    color: var(--text) !important;
    padding: .45rem 1rem !important;
    letter-spacing: .03em;
    transition: color .2s;
}
.nav-link:hover { color: var(--rose) !important; }
.btn-nav-cta {
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    color: #fff !important;
    border-radius: 50px;
    padding: .45rem 1.5rem !important;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .04em;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(155,61,86,.3);
}
.btn-nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(145deg, #6b1f35 0%, #9b3d56 40%, #c4627a 80%, #d4849a 100%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 55%;
    background: rgba(255,255,255,.04);
    top: -200px; right: -150px;
    animation: organicFloat 12s ease-in-out infinite alternate;
}
.hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    background: rgba(201,148,74,.1);
    bottom: -100px; left: -80px;
    animation: organicFloat 9s ease-in-out infinite alternate-reverse;
}
@keyframes organicFloat {
    to { border-radius: 40% 60% 50% 50% / 40% 55% 60% 45%; transform: rotate(15deg) scale(1.05); }
}
.hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .35rem 1.1rem;
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.hero-eyebrow i { color: var(--gold-light); }
.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 1.2rem 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
    font-weight: 300;
}
.hero-cta-primary {
    background: linear-gradient(135deg, var(--gold), #b8832e);
    color: #fff;
    border-radius: 50px;
    padding: .85rem 2.2rem;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 28px rgba(201,148,74,.4);
}
.hero-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,148,74,.5); color: #fff; }
.hero-cta-ghost {
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    padding: .85rem 2rem;
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(6px);
    transition: background .2s, color .2s;
}
.hero-cta-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.hero-image-frame {
    position: relative; z-index: 2;
}
.hero-image-frame img {
    width: 100%; max-width: 480px;
    border-radius: 40% 60% 55% 45% / 45% 50% 55% 50%;
    display: block; margin: 0 auto;
    object-fit: cover; aspect-ratio: 1/1.1;
    box-shadow: 0 30px 80px rgba(107,31,53,.5);
    border: 4px solid rgba(255,255,255,.15);
    animation: imageFloat 6s ease-in-out infinite alternate;
}
@keyframes imageFloat { to { transform: translateY(-10px); } }
.hero-ring {
    position: absolute;
    width: 110%; height: 110%;
    top: -5%; left: -5%;
    border-radius: 40% 60% 55% 45% / 45% 50% 55% 50%;
    border: 1px solid rgba(232,192,122,.25);
    animation: imageFloat 6s ease-in-out infinite alternate-reverse;
}
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: .7rem 1.1rem;
    box-shadow: 0 10px 35px rgba(107,31,53,.2);
    z-index: 3;
}
.hero-float-card.a { left: -20px; top: 22%; animation: floatA 5s ease-in-out infinite alternate; }
.hero-float-card.b { right: -10px; bottom: 18%; animation: floatA 5s ease-in-out infinite alternate-reverse; }
@keyframes floatA { to { transform: translateY(-8px); } }
.hero-float-card strong { display: block; font-size: 1.25rem; color: var(--rose-deep); font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.hero-float-card span   { font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .05em; }

/* ─── SECTION GLOBALS ─── */
section { padding: 100px 0; }
.section-eyebrow {
    font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--rose); font-weight: 600; display: block; margin-bottom: .6rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: .8rem;
}
.section-title span { color: var(--rose); }
.section-title em   { color: var(--gold); font-style: italic; }
.section-body { font-size: 1.02rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.gold-rule {
    width: 55px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    border-radius: 2px; margin: 1rem 0 1.6rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ─── STATS STRIP ─── */
.stats-strip {
    background: linear-gradient(90deg, var(--rose-dark), var(--rose-deep));
    padding: 55px 0; position: relative; overflow: hidden;
}
.stats-strip::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(201,148,74,.18) 0%, transparent 60%);
}
.stat-box { text-align: center; position: relative; z-index: 1; }
.stat-box + .stat-box::before {
    content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
    width: 1px; background: rgba(255,255,255,.15);
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-label {
    font-size: .82rem; color: rgba(255,255,255,.65); font-weight: 500;
    letter-spacing: .08em; text-transform: uppercase; margin-top: .35rem;
}

/* ─── ABOUT ─── */
.about-section { background: var(--cream); }
.about-img-wrap { position: relative; }
.about-img {
    width: 100%; object-fit: cover;
    border-radius: 50px 20px 50px 20px;
    box-shadow: 0 20px 60px rgba(155,61,86,.18); max-height: 440px;
}
.about-img-accent {
    position: absolute; width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: .25; bottom: -20px; right: -20px;
}
.about-img-accent2 {
    position: absolute; width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--rose); opacity: .3; top: -15px; left: -15px;
}
.about-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--blush); color: var(--rose-deep);
    padding: .38rem .9rem; border-radius: 50px;
    font-size: .82rem; font-weight: 600; letter-spacing: .04em;
}
.about-pill i { color: var(--gold); }
.btn-rose {
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    color: #fff; border-radius: 50px; padding: .7rem 1.8rem;
    font-weight: 600; font-size: .9rem; text-decoration: none;
    display: inline-block; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(155,61,86,.3); letter-spacing: .04em;
}
.btn-rose:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(155,61,86,.4); color: #fff; }

/* ─── SERVICES ─── */
.services-section { background: var(--white); }
.service-card {
    background: var(--white); border: 1px solid var(--blush-mid);
    border-radius: 24px; padding: 2.2rem 1.8rem; height: 100%;
    position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.service-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(145deg, var(--blush) 0%, transparent 50%);
    opacity: 0; transition: opacity .3s; border-radius: 24px;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(196,98,122,.14); }
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
    width: 58px; height: 58px; background: var(--blush); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--rose); margin-bottom: 1.3rem;
    transition: background .3s, color .3s, transform .3s;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    color: #fff; transform: rotate(-5deg) scale(1.08);
}
.service-card h5 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; color: var(--text); }
.service-card p  { font-size: .87rem; color: var(--muted); line-height: 1.75; margin: 0; font-weight: 300; }
.service-num {
    position: absolute; top: 1.4rem; right: 1.6rem;
    font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700;
    color: rgba(196,98,122,.06); line-height: 1; pointer-events: none; user-select: none;
}

/* ─── WHY US ─── */
.why-section {
    background: linear-gradient(160deg, #3d0d1e 0%, #6b1f35 50%, #9b3d56 100%);
    position: relative; overflow: hidden;
}
.why-section::before {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,148,74,.12) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.why-section .section-title { color: #fff; }
.why-section .section-body  { color: rgba(255,255,255,.65); }
.why-section .section-eyebrow { color: var(--gold-light); }
.why-img {
    border-radius: 20px 60px 20px 60px; width: 100%; object-fit: cover;
    max-height: 500px; box-shadow: 0 30px 80px rgba(61,13,30,.6);
    border: 3px solid rgba(232,192,122,.2);
}
.why-check-item {
    display: flex; align-items: center; gap: 1rem;
    padding: .9rem 1.2rem; border-radius: 14px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(4px); transition: background .2s; margin-bottom: .8rem;
}
.why-check-item:hover { background: rgba(255,255,255,.1); }
.why-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    background: rgba(232,192,122,.18); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: .9rem;
}
.why-check-item p { margin: 0; color: rgba(255,255,255,.82); font-size: .92rem; }
.why-check-item strong { color: #fff; }

/* ─── FOUNDERS ─── */
.founders-section { background: var(--blush); }
.founder-card {
    background: #fff; border-radius: 28px; padding: 2.8rem 2rem 2.2rem;
    text-align: center; border: 1px solid var(--blush-mid);
    box-shadow: 0 8px 40px rgba(196,98,122,.1);
    transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.founder-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose-deep));
}
.founder-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(196,98,122,.18); }
.founder-avatar-wrap { position: relative; width: 120px; margin: 0 auto 1.4rem; }
.founder-avatar-wrap img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    border: 4px solid var(--blush); display: block;
}
.founder-avatar-badge {
    position: absolute; bottom: 2px; right: 2px;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .75rem; border: 2px solid #fff;
}
.founder-card h4 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.founder-role {
    font-size: .75rem; font-weight: 600; color: var(--rose);
    text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; display: block;
}
.founder-card p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin: 0; font-weight: 300; }
.together-badge {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    background: linear-gradient(135deg, var(--rose-dark), var(--rose-deep));
    color: #fff; border-radius: 50px; padding: .9rem 2rem; font-size: .9rem;
    font-weight: 500; max-width: 560px; margin: 2.5rem auto 0;
    box-shadow: 0 8px 28px rgba(107,31,53,.25);
}
.together-badge i { color: var(--gold-light); font-size: 1.1rem; }
.faq-section { background: var(--blush); }
/* ─── CTA ─── */
.cta-section { background: var(--cream); }
.cta-box {
    background: linear-gradient(135deg, #6b1f35, #9b3d56, #c4627a);
    border-radius: 32px; padding: 70px 50px;
    position: relative; overflow: hidden; text-align: center;
}
.cta-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(201,148,74,.2) 0%, transparent 55%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
.cta-box p  { color: rgba(255,255,255,.75); font-size: 1.05rem; font-weight: 300; max-width: 500px; margin: 0 auto 2rem; line-height: 1.8; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8832e); color: #fff;
    border-radius: 50px; padding: .8rem 2.2rem; font-weight: 600; font-size: .95rem;
    text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(201,148,74,.45);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,148,74,.55); color: #fff; }
.btn-ghost-white {
    color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.35); border-radius: 50px;
    padding: .8rem 1.8rem; font-weight: 500; font-size: .95rem; text-decoration: none;
    display: inline-block; transition: background .2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ─── FOOTER ─── */
footer {
    background: #230a12; color: rgba(255,255,255,.6); padding: 70px 0 35px;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.footer-brand span { color: var(--gold-light); }
.footer-tagline { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: .3rem; display: block; }
footer h5 { color: rgba(255,255,255,.85); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 600; }
footer a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color .2s; line-height: 2; }
footer a:hover { color: var(--gold-light); }
footer p { font-size: .88rem; line-height: 1.8; }
.social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5) !important; transition: background .2s, border-color .2s, color .2s !important;
    margin-right: .4rem; text-decoration: none;
}
.social-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff !important; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; margin-top: 3rem;
    text-align: center; font-size: .82rem; color: rgba(255,255,255,.3);
}
.footer-bottom span { color: var(--gold-light); }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.23,1,.32,1), transform .65s cubic-bezier(.23,1,.32,1);
}
.fade-up.in { opacity: 1; transform: none; }

@media (max-width: 767px) {
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-float-card { display: none; }
    section { padding: 65px 0; }
    .cta-box { padding: 50px 25px; }
}
