:root {
    --bg: #FFFFFF;
    --surface: #F5F5F5;
    --border: #D3D3D3;
    --cta: #B3C1B0;
    --cta-tint: #E8EDE7;
    --text-primary: #16181A;
    --text-secondary: #6B6B6B;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5E7A5A;
    margin-bottom: 10px;
}

/* ===== Nav ===== */
.site-nav {
    padding: 22px 0;
}
.site-nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-nav .brand {
    font-size: 16px;
    font-weight: 800;
}
.site-nav a.nav-cta {
    font-size: 13px;
    font-weight: 700;
    background: var(--cta);
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #16241A;
}

/* ===== Hero ===== */
.hero {
    padding: 32px 0 72px;
    background: linear-gradient(180deg, var(--cta-tint) 0%, var(--bg) 78%);
}
.hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero h1 {
    font-size: 44px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.hero .tagline {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 46ch;
    margin-bottom: 28px;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--cta);
    color: #16241A;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
}
.btn-cta svg { width: 16px; height: 16px; }

.hero-visual {
    aspect-ratio: 4 / 3.4;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: var(--cta-tint);
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-visual.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual .monogram {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--cta);
    color: #16241A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
}
.hero-visual .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.hero-visual .deco-circle.c1 { width: 140px; height: 140px; top: -30px; right: -30px; }
.hero-visual .deco-circle.c2 { width: 80px; height: 80px; bottom: 20px; left: -20px; background: rgba(255,255,255,0.35); }

/* ===== Section shell ===== */
section.block { padding: 64px 0; }
section.block.tinted { background: var(--surface); }
.section-head { margin-bottom: 32px; max-width: 640px; }
.section-head h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; }

/* ===== About ===== */
.about-body { font-size: 16px; color: var(--text-secondary); max-width: 68ch; }

/* ===== Services ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow);
}
.service-card .icon-dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--cta-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-card .icon-dot svg { width: 18px; height: 18px; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-secondary); }

/* ===== Contact ===== */
.contact-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.contact-card .sub { color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.contact-list .icon-dot {
    width: 32px; height: 32px; border-radius: 9px; background: var(--surface);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list .icon-dot svg { width: 15px; height: 15px; }
.contact-side {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
}
.contact-side .btn-cta { width: 100%; justify-content: center; }

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 28px 20px;
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

/* ===== Mobile ===== */
@media (max-width: 860px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 24px 0 48px; text-align: left; }
    .hero h1 { font-size: 32px; }
    .hero-visual { order: -1; aspect-ratio: 16/10; }
    .service-grid { grid-template-columns: 1fr; }
    .contact-card { grid-template-columns: 1fr; padding: 28px 24px; }
    section.block { padding: 44px 0; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .site-nav .brand { font-size: 15px; }
}