/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FDFCFA;
    --bg-warm: #F5F0EA;
    --bg-dark: #2C2520;
    --text: #2C2520;
    --text-soft: #7A706A;
    --accent: #A0734A;
    --accent-light: #F7EFE7;
    --accent-hover: #8A5F3A;
    --white: #FFFFFF;
    --border: #E8E2DA;
    --sage: #7A8C6E;
    --sage-light: #EFF2EC;
    --radius: 10px;
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    --max-w: 1100px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Nav === */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253,252,250,0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.logo .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    margin-left: 3px;
    vertical-align: middle;
    margin-bottom: 2px;
}
.nav-links {
    display: flex;
    gap: 34px;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
}

/* === Hero === */
.hero {
    padding: 96px 24px 72px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-bottom: 24px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--sage);
    border-radius: 1px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 680px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-sub {
    font-size: 1.06rem;
    color: var(--text-soft);
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(160,115,74,0.22);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* === Highlights Strip === */
.highlights {
    background: var(--bg-warm);
    padding: 64px 0;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.highlight-item {
    text-align: center;
    padding: 28px 16px;
}
.highlight-item .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}
.highlight-item .desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 500;
}

/* === Section Header === */
.sec-header {
    text-align: center;
    margin-bottom: 48px;
}
.sec-header .label {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-bottom: 12px;
}
.sec-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
}

/* === Cards Section === */
.cards-section { padding: 80px 0; }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.card-visual {
    height: 160px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.card-body {
    padding: 28px 24px;
}
.card-body .tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    margin-bottom: 10px;
}
.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.35;
}
.card-body p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* === Band CTA === */
.band {
    background: var(--bg-dark);
    color: var(--white);
    padding: 72px 24px;
    text-align: center;
}
.band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 14px;
    font-weight: 700;
}
.band p {
    color: rgba(255,255,255,0.55);
    max-width: 440px;
    margin: 0 auto 28px;
    font-size: 0.98rem;
}
.band .btn-primary { background: var(--accent); }
.band .btn-primary:hover { background: var(--accent-hover); }

/* === Page Header === */
.page-header {
    padding: 88px 24px 48px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.page-header .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage);
    margin-bottom: 14px;
}
.page-header .label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sage);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
    font-weight: 700;
}
.page-header p {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 540px;
}

/* === Content === */
.content { padding: 0 0 80px; }
.content .container { max-width: 720px; }
.content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 12px;
    margin-top: 44px;
    font-weight: 700;
}
.content h2:first-child { margin-top: 0; }
.content p {
    font-size: 0.98rem;
    color: var(--text-soft);
    margin-bottom: 16px;
}

/* === Contact === */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 40px;
}
.contact-left h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 700;
}
.contact-left p {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 28px;
}
.c-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}
.c-row .ic { font-size: 1.3rem; margin-top: 1px; }
.c-row .lbl { font-weight: 700; font-size: 0.86rem; margin-bottom: 2px; }
.c-row .val { font-size: 0.92rem; color: var(--text-soft); }
.contact-right label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 18px;
}
.contact-right label:first-child { margin-top: 0; }
.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.2s;
}
.contact-right input:focus,
.contact-right textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-right textarea { resize: vertical; min-height: 120px; }
.contact-right .btn { margin-top: 20px; width: 100%; }

/* === Footer === */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 56px 0 28px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand .logo .dot { background: var(--accent); }
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.42);
    max-width: 280px;
    margin-top: 14px;
}
.footer-col h4 {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.38);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.62);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
}

/* === Mobile === */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        gap: 16px;
    }
    .hero { padding: 64px 24px 56px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-split { grid-template-columns: 1fr; gap: 36px; }
    .footer-inner { flex-direction: column; gap: 32px; }
}
