/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Lato', sans-serif;
    color: #2C2C2C;
    background: #F5F0E8;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

/* ── Utility ─────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1B3A2D;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: #1B3A2D;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1B3A2D;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.05rem;
    color: #5A5A5A;
    max-width: 560px;
    line-height: 1.8;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #1B3A2D;
    color: #F5F0E8;
    border: 2px solid #1B3A2D;
}
.btn-primary:hover {
    background: #2A5240;
    border-color: #2A5240;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 58, 45, 0.25);
}
.btn-outline {
    background: transparent;
    color: #F5F0E8;
    border: 2px solid rgba(245, 240, 232, 0.5);
}
.btn-outline:hover {
    border-color: #F5F0E8;
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── Header ──────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
}
.header.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    backdrop-filter: blur(10px);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #F5F0E8;
    transition: color 0.4s ease;
}
.logo-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4C5A9;
    transition: color 0.4s ease;
}
.header.scrolled .logo-name { color: #1B3A2D; }
.header.scrolled .logo-tagline { color: #8B7355; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.85);
    transition: color 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4C5A9;
    transition: width 0.3s ease;
}
.nav-link:hover { color: #F5F0E8; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 8px 20px;
    border: 1px solid rgba(245, 240, 232, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: #F5F0E8;
    color: #1B3A2D;
}
.nav-cta::after { display: none; }
.header.scrolled .nav-link { color: rgba(27, 58, 45, 0.75); }
.header.scrolled .nav-link:hover { color: #1B3A2D; }
.header.scrolled .nav-cta { border-color: #1B3A2D; color: #1B3A2D; }
.header.scrolled .nav-cta:hover { background: #1B3A2D; color: #F5F0E8; }

/* ── Mobile Menu ─────────────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction:
