:root {
    --bg: #f5f0e6;
    --bg-soft: #fbf8f2;
    --surface: rgba(252, 249, 242, 0.86);
    --surface-strong: #fffdf8;
    --text: #28352a;
    --muted: #5e6857;
    --line: rgba(58, 82, 51, 0.16);
    --accent: #5d7d4a;
    --accent-deep: #334d2b;
    --clay: #b97950;
    --shadow: 0 24px 60px rgba(39, 49, 33, 0.14);
    --radius: 26px;
    --radius-sm: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(150, 185, 126, 0.28), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(185, 121, 80, 0.18), transparent 24rem),
        var(--bg);
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background: url("/assets/graphics/leaf-spray.svg") no-repeat top right;
    opacity: 0.34;
    background-size: min(42vw, 520px);
}

body::after {
    background:
        url("/assets/graphics/contour-lines.svg") no-repeat left 8% top 22%,
        url("/assets/graphics/contour-lines.svg") no-repeat right -6rem bottom 10%;
    opacity: 0.2;
    background-size: 420px;
}

a {
    color: inherit;
}

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

.page-shell {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 1.5rem 0 2.5rem;
}

.site-header,
.content-panel,
.site-footer {
    backdrop-filter: blur(18px);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 10px);
    background: rgba(255, 251, 245, 0.78);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
}

.brand strong,
.hero h1,
.info-card h2,
.service-card h2,
.placeholder-card h2,
.photo-card figcaption {
    font-family: "Cormorant Garamond", serif;
}

.brand strong {
    display: block;
    font-size: 1.7rem;
    line-height: 0.95;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.brand-mark {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    flex: 0 0 auto;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.92), rgba(255,255,255,0.52)),
        url("/assets/graphics/brand-mark.svg") center/72% no-repeat,
        linear-gradient(135deg, #7f9a67, #3f5c36);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.site-nav a {
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    background: var(--accent-deep);
    color: #f7f1e5;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    align-items: end;
    padding: 2.5rem 0 1.5rem;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--accent-deep);
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.hero-intro {
    margin: 1.1rem 0 0;
    max-width: 38rem;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-aside,
.content-panel,
.site-footer,
.info-card,
.quote-card,
.service-card,
.placeholder-card,
.price-callout,
.photo-card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.content-panel {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: var(--surface);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    background: rgba(255, 251, 245, 0.76);
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid.two-column {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.grid.narrow {
    max-width: 52rem;
}

.align-start {
    align-items: start;
}

.prose p {
    margin: 0 0 1rem;
    font-size: 1.06rem;
    line-height: 1.85;
}

.stack {
    display: grid;
    gap: 1rem;
}

.info-card,
.quote-card,
.placeholder-card,
.price-callout {
    padding: 1.3rem 1.4rem;
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
}

.info-card h2,
.placeholder-card h2,
.service-card h2 {
    margin: 0 0 0.75rem;
    font-size: 2rem;
    line-height: 1;
}

.info-card p,
.placeholder-card p,
.feature-list,
.quote-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.feature-list {
    padding-left: 1.2rem;
}

.feature-list li + li {
    margin-top: 0.5rem;
}

.quote-card {
    background:
        linear-gradient(145deg, rgba(93, 125, 74, 0.14), rgba(255,255,255,0.72)),
        var(--surface-strong);
}

.quote-card p {
    color: var(--accent-deep);
    font-size: 1.05rem;
    font-weight: 700;
}

.photo-card {
    overflow: hidden;
    border-radius: calc(var(--radius) - 4px);
    background: var(--surface-strong);
}

.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.photo-card.tall img {
    min-height: 30rem;
}

.photo-card figcaption {
    padding: 1rem 1.2rem 1.2rem;
    font-size: 1.4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    padding: 1.5rem 1.25rem;
    min-height: 10rem;
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(243, 238, 227, 0.98)),
        url("/assets/graphics/service-leaf.svg") right 1rem bottom 1rem / 4.8rem no-repeat;
}

.service-card h2 {
    max-width: 10ch;
    font-size: 2rem;
    line-height: 0.98;
}

.price-callout {
    display: grid;
    gap: 0.2rem;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(185, 121, 80, 0.22), transparent 65%),
        var(--surface-strong);
}

.price-callout span,
.price-callout small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
}

.price-callout strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    color: var(--accent-deep);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 0.92;
    background: #d7dece;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.gallery-card:hover img {
    transform: scale(1.03);
}

code {
    padding: 0.15rem 0.35rem;
    border-radius: 0.4rem;
    background: rgba(51, 77, 43, 0.08);
    font-family: inherit;
    font-size: 0.96em;
}

@media (max-width: 900px) {
    .site-header,
    .hero,
    .grid.two-column,
    .services-grid,
    .gallery-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-header,
    .site-footer {
        display: grid;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero h1 {
        max-width: 11ch;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(calc(100% - 1rem), var(--container));
        padding-top: 0.75rem;
    }

    .site-header,
    .content-panel,
    .site-footer {
        border-radius: 22px;
    }

    .site-nav a {
        padding: 0.65rem 0.85rem;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 15vw, 4rem);
    }

    .photo-card img,
    .photo-card.tall img {
        min-height: 18rem;
    }
}
