:root {
    --forest-900: #0f1d16;
    --forest-800: #16291e;
    --forest-700: #1f3a2b;
    --forest-600: #2c5239;
    --moss-500: #5a8a5b;
    --moss-400: #87b07c;
    --cream-50: #f7f3ec;
    --cream-100: #efe9dc;
    --sand-200: #e2d6bd;
    --ink-900: #14181a;
    --ink-700: #2c3338;
    --ink-500: #5a6168;
    --accent: #d97a3a;
    --accent-hover: #c4682b;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(15, 29, 22, 0.06), 0 2px 6px rgba(15, 29, 22, 0.06);
    --shadow-md: 0 4px 10px rgba(15, 29, 22, 0.08), 0 14px 30px rgba(15, 29, 22, 0.1);
    --shadow-lg: 0 20px 60px rgba(15, 29, 22, 0.18);
    --max: 1200px;
    --gap: clamp(20px, 4vw, 48px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink-900);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--forest-900);
    margin: 0 0 0.5em;
}

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 500;
    color: var(--forest-600);
}

p {
    margin: 0 0 1em;
}

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

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss-500);
    margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-700);
    color: var(--cream-50);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--forest-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--cream-50);
    border: 1px solid rgba(247, 243, 236, 0.4);
}

.btn-ghost:hover {
    background: rgba(247, 243, 236, 0.12);
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    background: rgba(247, 243, 236, 0.78);
    border-bottom: 1px solid rgba(15, 29, 22, 0.06);
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--forest-900);
}

.brand-mark {
    height: 44px;
    width: auto;
}

.brand-text {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.brand-text em {
    font-style: italic;
    font-weight: 500;
    color: var(--forest-600);
    font-size: 0.9rem;
}

.primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
}

.primary-nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--ink-700);
    font-size: 0.95rem;
    position: relative;
}

.primary-nav a:hover {
    color: var(--forest-700);
}

.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--moss-500);
    transition: width 0.2s ease;
}

.primary-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 18px;
    font-size: 0.9rem;
}

@media (max-width: 720px) {
    .primary-nav { display: none; }
    .brand-text { display: none; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--cream-50);
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: saturate(0.95) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(15, 29, 22, 0.4) 0%, rgba(15, 29, 22, 0.85) 70%),
        linear-gradient(180deg, rgba(15, 29, 22, 0.55) 0%, rgba(15, 29, 22, 0.75) 100%);
}

.hero-content {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 120px 24px 100px;
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(247, 243, 236, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-50);
    background: rgba(15, 29, 22, 0.35);
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    color: var(--cream-50);
    max-width: 14ch;
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--moss-400);
}

.lede {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: rgba(247, 243, 236, 0.88);
    max-width: 56ch;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(247, 243, 236, 0.18);
}

.hero-meta div {
    display: flex;
    flex-direction: column;
}

.hero-meta strong {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.6rem;
    color: var(--cream-50);
    letter-spacing: -0.01em;
}

.hero-meta span {
    font-size: 0.85rem;
    color: rgba(247, 243, 236, 0.7);
    letter-spacing: 0.04em;
}

/* ===== About / Split ===== */
.about {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--cream-50);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
}

.split-text h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    margin-bottom: 24px;
}

.split-text p {
    color: var(--ink-700);
    font-size: 1.05rem;
}

.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 820px) {
    .split { grid-template-columns: 1fr; }
    .split-image { aspect-ratio: 4 / 3; max-height: 480px; }
}

/* ===== Services ===== */
.services {
    padding: clamp(80px, 10vw, 140px) 0;
    background:
        linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
}

.services-head {
    text-align: center;
    margin-bottom: 56px;
}

.services-head h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.cards {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 18px;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 29, 22, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card p {
    color: var(--ink-500);
    margin: 0;
    font-size: 0.95rem;
}

.card-feature {
    background: var(--forest-800);
    color: var(--cream-50);
    border: 0;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-feature .price {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--cream-50);
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.card-feature .price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(247, 243, 236, 0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check li {
    padding-left: 26px;
    position: relative;
    color: rgba(247, 243, 236, 0.92);
    font-size: 0.95rem;
}

.check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--moss-400);
    border-bottom: 2px solid var(--moss-400);
    transform: rotate(-45deg);
}

.card-cta {
    margin-top: auto;
    background: var(--accent);
    color: #fff;
    align-self: flex-start;
}

.card-cta:hover {
    background: var(--accent-hover);
}

@media (max-width: 1000px) {
    .cards { grid-template-columns: 1fr 1fr; }
    .card-feature { grid-column: span 2; }
}

@media (max-width: 600px) {
    .cards { grid-template-columns: 1fr; }
    .card-feature { grid-column: span 1; }
}

/* ===== Contact ===== */
.contact {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--forest-900);
    color: var(--cream-50);
}

.contact-inner {
    text-align: center;
}

.contact h2 {
    color: var(--cream-50);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

.contact-sub {
    color: rgba(247, 243, 236, 0.7);
    max-width: 50ch;
    margin: 0 auto 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    padding: 24px 28px;
    background: rgba(247, 243, 236, 0.04);
    border: 1px solid rgba(247, 243, 236, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    background: rgba(247, 243, 236, 0.08);
    border-color: rgba(135, 176, 124, 0.5);
    transform: translateY(-2px);
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss-400);
}

.contact-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    color: var(--cream-50);
    letter-spacing: -0.01em;
}

.contact-hint {
    font-size: 0.8rem;
    color: rgba(247, 243, 236, 0.5);
    margin-top: 4px;
}

@media (max-width: 720px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--forest-900);
    color: rgba(247, 243, 236, 0.7);
    border-top: 1px solid rgba(247, 243, 236, 0.08);
    padding: 22px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', Georgia, serif;
    color: var(--cream-50);
}

.footer-mark {
    height: 28px;
    width: auto;
}

.site-footer small {
    font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
