/* Extracted styles from the original HTML landing page */
:root{
    --ink:#2a2622;
    --muted:#6f655c;

    /* Warmer palette */
    --bg:#fbf7f1;          /* warm paper */
    --surface:#ffffff;
    --cream:#fff4e3;       /* soft cream wash */
    --sand:#f2e2cc;        /* warm sand */
    --amber:#c7772a;       /* warm orange/amber */
    --amber-2:#a8611f;     /* deeper amber */
    --border:#eadfce;
    --shadow: 0 12px 34px rgba(42,38,34,0.08);
}

html{ scroll-behavior:smooth; }
body{
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background: var(--bg);
}
h1,h2,h3{
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Navbar */
.navbar{
    background: rgba(251,247,241,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-link{
    color: var(--ink);
    opacity: .85;
}
.nav-link:hover{ opacity: 1; color: var(--amber); }

/* Hero */
.hero{
    padding: 6.5rem 1rem 5rem;
    background:
            radial-gradient(900px 500px at 20% 0%, rgba(242,226,204,0.75), transparent 60%),
            radial-gradient(700px 420px at 85% 5%, rgba(199,119,42,0.18), transparent 60%),
            linear-gradient(180deg, rgba(255,244,227,0.55), transparent 55%);
}
.hero h1{
    font-size: 2.7rem;
    margin-bottom: 1rem;
}
.hero p{
    max-width: 680px;
    margin: 0 auto 2rem;
    color: var(--muted);
    font-size: 1.1rem;
}

/* Buttons (warm, not green) */
.btn-primary-warm{
    background: var(--amber);
    border: 1px solid rgba(0,0,0,0.06);
    color: #fff;
    padding: .82rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    box-shadow: 0 12px 26px rgba(199,119,42,0.22);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary-warm:hover{
    background: var(--amber-2);
    color:#fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(199,119,42,0.26);
}

.btn-soft-warm{
    background: rgba(199,119,42,0.10);
    border: 1px solid rgba(199,119,42,0.22);
    color: var(--ink);
    padding: .78rem 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    transition: background .15s ease, transform .15s ease;
}
.btn-soft-warm:hover{
    background: rgba(199,119,42,0.14);
    transform: translateY(-1px);
    color: var(--ink);
}

/* Sections */
section{ padding: 4.25rem 1rem; }
.section-card{
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
}
.divider{
    height: 1px;
    background: var(--border);
    margin: 0;
}

.eyebrow{
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .75rem;
}

.testimonial{
    font-style: italic;
    color: #5b524a;
}

.pill{
    display:inline-block;
    padding:.28rem .7rem;
    border-radius:999px;
    background: rgba(242,226,204,0.70);
    border: 1px solid rgba(199,119,42,0.18);
    color: #6b4f23;
    font-size: .92rem;
    margin-bottom: .9rem;
}

.profile{
    width: 120px;
    height: 120px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid rgba(199,119,42,0.22);
    box-shadow: 0 12px 26px rgba(42,38,34,0.14);
}

footer{
    background: #f6efe5;
    border-top: 1px solid var(--border);
    padding: 2.25rem 1rem;
    text-align: center;
    font-size: .95rem;
    color: #6f655c;
}

/* Minimal scroll animation */
.reveal{
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
.reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
}

/* Small tweaks */
@media (max-width: 576px){
    .hero{ padding-top: 6rem; }
    .hero h1{ font-size: 2.15rem; }
    .section-card{ padding: 1.5rem; }
}
