*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f3ee;
    color: #1f1a17;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 32px, 1180px);
    margin: auto;
}

.section {
    padding: 72px 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(247, 243, 238, 0.85);
    border-bottom: 1px solid rgba(31, 26, 23, 0.12);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 20px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.brand span {
    color: #7a4b2a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: #7a4b2a;
    color: #fff;
}

.btn-primary:hover {
    background: #5d381f;
}

.btn-outline {
    border-color: rgba(31, 26, 23, 0.12);
    background: transparent;
    color: #1f1a17;
}

.hero {
    padding: 72px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.hero-content {
    background: linear-gradient(135deg, rgba(217,179,140,0.20), rgba(255,255,255,0.55));
    border: 1px solid rgba(31, 26, 23, 0.12);
    border-radius: 28px;
    padding: 56px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122,75,42,0.08);
    color: #7a4b2a;
    border: 1px solid rgba(122,75,42,0.14);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 12ch;
}

.hero p {
    color: #6f665f;
    font-size: 17px;
    max-width: 58ch;
    margin-bottom: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-points span {
    background: #fffdfa;
    border: 1px solid rgba(31, 26, 23, 0.12);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lead-card {
    background: #fffdfa;
    border: 1px solid rgba(31, 26, 23, 0.12);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.lead-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.lead-card p {
    color: #6f665f;
    margin-bottom: 18px;
    font-size: 14px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.input-group 