/* --- Variables & Theme Setup --- */
:root {
    /* Brand Colors (Beige, Golden Yellow, Blush Pink) */
    --beige-bg: #FCFBF8;
    --cream: #F5F2EA;
    --gold: #D4AF37;
    --gold-light: rgba(212, 175, 55, 0.15);
    --blush: #fae1e6;
    --pink-dark: #d46b7a;
    
    /* Core Shades */
    --background: var(--beige-bg);
    --foreground: #1c1917; /* Dark slate/brown for text */
    --muted: #57534e;
    --card: #ffffff;
    --border: rgba(0,0,0,0.08);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

em { font-style: italic; }
strong { font-weight: 600; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.uppercase { text-transform: uppercase; }

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.max-w-lg { max-w: 1024px; }
.max-w-md { max-w: 768px; }

/* --- Typography --- */
h1, h2, h3, .font-display {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--foreground);
}

.eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-gradient-gold {
    background: linear-gradient(to right, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons & Links --- */
a { text-decoration: none; color: inherit; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--foreground);
    color: var(--background);
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
    background-color: transparent;
    border-color: rgba(0,0,0,0.15);
    color: var(--foreground);
}
.btn-outline:hover { background-color: var(--card); }

.btn-gold {
    background: linear-gradient(to right, #D4AF37, #B8860B);
    color: #fff;
    font-size: 1rem;
    padding: 1rem 2rem;
}
.btn-gold:hover { opacity: 0.95; }

/* --- Icons --- */
.icon { flex-shrink: 0; }
.text-gold { color: var(--gold); }
.text-pink-dark { color: var(--pink-dark); }

/* --- Navigation --- */
.navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 30;
    padding: 1.5rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}
.logo { height: 2.75rem; width: 2.75rem; object-fit: contain; }
.logo-small { height: 2.5rem; width: 2.5rem; object-fit: contain; }

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--muted);
}
.nav-links a:hover { color: var(--foreground); }
.nav-btn { display: none; }

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-btn { display: inline-flex; }
}

/* --- Utilities & Effects --- */
.bg-gradient-soft { background: linear-gradient(to bottom, #FCFBF8, #F5F2EA); }
.bg-gradient-warm { background: linear-gradient(to bottom, #F5F2EA, #FCFBF8); }
.bg-blush { background-color: var(--blush); }
.bg-cream { background-color: var(--cream); }
.bg-gold-light { background-color: var(--gold-light); }
.bg-gradient-gold { background: linear-gradient(135deg, #D4AF37, #B8860B); }

.shadow-soft { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); }
.shadow-glow { box-shadow: 0 20px 50px -10px rgba(212, 175, 55, 0.2); }

/* Decorative Blurs */
.decor-blur { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; z-index: 0; pointer-events: none; }
.decor-pink { background: var(--blush); width: 24rem; height: 24rem; }
.decor-gold { background: var(--gold); width: 20rem; height: 20rem; opacity: 0.2; }
.top-right { top: -6rem; right: -6rem; }
.top-right-large { top: -5rem; right: 0; width: 18rem; height: 18rem; opacity: 0.15; }
.middle-left { top: 50%; left: -8rem; transform: translateY(-50%); }

/* --- Section Structure --- */
.section { padding: 6rem 0; }
.section-title { font-size: 2.5rem; line-height: 1.1; margin-bottom: 1.25rem; }
.section-subtitle { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }
@media (min-width: 768px) { .section-title { font-size: 3.5rem; } }

/* --- Hero Section --- */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}
.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) {
    .hero { padding-top: 10rem; padding-bottom: 8rem; }
    .hero-grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
}
.badge-dark {
    background: var(--foreground);
    color: var(--background);
    border: none;
    margin-bottom: 1.5rem;
}
.badge-dot { width: 0.375rem; height: 0.375rem; background: var(--gold); border-radius: 50%; }

.hero-title { font-size: 3rem; line-height: 1.05; letter-spacing: -0.02em; margin-top: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-text { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted); max-width: 36rem; }
.btn-group { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.trust-indicator { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; font-size: 0.875rem; color: var(--muted); }
.stars { display: flex; gap: 0.25rem; color: var(--gold); }
.icon-star { width: 1rem; height: 1rem; fill: currentColor; }

.hero-image-wrapper { position: relative; max-width: 28rem; margin: 0 auto; }
.image-decor-gold { position: absolute; inset: -1rem; background: var(--gold-light); border-radius: 2.5rem; filter: blur(30px); z-index: 0; }
.image-decor-pink { position: absolute; top: -1.5rem; left: -1.5rem; width: 8rem; height: 8rem; background: var(--blush); border-radius: 50%; z-index: 1; }
.hero-image-container { position: relative; z-index: 2; border-radius: 2rem; overflow: hidden; border: 1px solid var(--card); background: var(--blush); box-shadow: 0 20px 50px -10px rgba(250,225,230,0.5); }
.hero-image { width: 100%; height: auto; display: block; object-fit: cover; }

.floating-badge { position: absolute; z-index: 10; border-radius: 1rem; background: var(--card); padding: 0.75rem 1.25rem; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.bottom-left { bottom: -1.5rem; left: 1rem; }
.top-right { top: -1rem; right: 0.5rem; }
.dark-badge { background: var(--foreground); color: var(--background); text-align: center; border: none; padding: 0.75rem 1rem; }
.badge-sub { font-size: 0.75rem; color: var(--muted); }
.dark-badge .badge-sub { color: rgba(255,255,255,0.7); font-size: 0.65rem; margin-top: 0.25rem; letter-spacing: 0.05em; }
.badge-main { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-top: 0.125rem; }
.badge-number { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1; }

/* --- Grid Systems & Cards --- */
.grid-2 { display: grid; gap: 1rem; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.card-small { padding: 1.5rem; border-radius: var(--radius-lg); display: flex; gap: 1rem; align-items: flex-start; }
.card-horizontal { display: flex; gap: 1.25rem; flex-direction: column; }
@media (min-width: 480px) { .card-horizontal { flex-direction: row; } }

.card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-horizontal h3 { font-size: 1.25rem; }
.card p { color: var(--muted); font-size: 1rem; }

/* Icon Boxes */
.icon-box { width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.icon-box-medium { width: 3rem; height: 3rem; border-radius: var(--radius-md); display: grid; place-items: center; flex-shrink: 0; }
.icon-box-large { width: 3.5rem; height: 3.5rem; border-radius: var(--radius-md); display: grid; place-items: center; flex-shrink: 0; margin-bottom: 1.5rem; color: var(--foreground); }

/* Approach specific */
.approach-grid { margin-top: 4rem; }
.relative-card { position: relative; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.step-number { font-family: var(--font-display); font-size: 3rem; color: rgba(0,0,0,0.1); line-height: 1; }

/* --- About Section --- */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; } }

.about-image-wrapper { position: relative; }
.image-decor-blush-rotate { position: absolute; inset: -1.5rem; background: var(--blush); border-radius: 2.5rem; transform: rotate(-3deg); z-index: 0; }
.about-image-container { position: relative; z-index: 1; border-radius: 2rem; overflow: hidden; border: 1px solid var(--card); background: #fff; }
.about-image { width: 100%; height: auto; display: block; }

.about-list { margin-top: 2rem; display: grid; gap: 0.75rem; list-style: none; }
@media (min-width: 640px) { .about-list { grid-template-columns: repeat(2, 1fr); } }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--cream); border: 1px solid var(--border); padding: 1rem; border-radius: var(--radius-md); font-size: 0.875rem; }

/* --- Benefits Tags --- */
.tags-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 3rem; }
.tag { padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-family: var(--font-display); font-size: 1.25rem; border: 1px solid var(--border); }

/* --- CTA Section --- */
.cta-card { background: var(--foreground); color: var(--background); border-radius: 2.5rem; padding: 3rem 2rem; text-align: center; }
@media (min-width: 640px) { .cta-card { padding: 4rem; } }

.cta-decor-top { background: var(--gold); top: -6rem; right: -6rem; width: 18rem; height: 18rem; opacity: 0.25; }
.cta-decor-bottom { background: var(--blush); bottom: -6rem; left: -6rem; width: 18rem; height: 18rem; opacity: 0.25; }

.cta-title { font-size: 2.5rem; line-height: 1.1; margin-top: 1.5rem; color: #fff; }
@media (min-width: 640px) { .cta-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .cta-title { font-size: 4rem; } }

.cta-text { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 1.5rem auto 0; }
.cta-btn { margin-top: 2.5rem; display: inline-flex; }
.cta-subtext { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 1.25rem; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--border); background: var(--background); padding: 3rem 0; }
.footer-container { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between; font-size: 0.875rem; color: var(--muted); }
@media (min-width: 640px) { .footer-container { flex-direction: row; } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1rem; color: var(--foreground); }