:root {
    --bg: #f5ecdf;
    --bg-alt: #f0e3d2;
    --text: #1f1a15;
    --muted: #6a5f53;
    --accent: #b65a34;
    --accent-dark: #894427;
    --card: #fff8ee;
    --line: #dbc8af;
    --shadow: 0 18px 40px rgba(54, 36, 21, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 18%, rgba(182, 90, 52, 0.12), transparent 24%),
        radial-gradient(circle at 86% 22%, rgba(112, 88, 57, 0.1), transparent 18%),
        linear-gradient(145deg, var(--bg), var(--bg-alt));
    min-height: 100vh;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

body::before {
    width: 320px;
    height: 320px;
    background: rgba(182, 90, 52, 0.24);
    left: -120px;
    top: 120px;
}

body::after {
    width: 340px;
    height: 340px;
    background: rgba(75, 101, 74, 0.18);
    right: -120px;
    top: 340px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

h1,
h2,
h3,
h4 {
    font-family: "Fraunces", serif;
    margin: 0;
    line-height: 1.2;
}

p {
    margin: 0;
}

.container {
    width: min(1240px, 92vw);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(164, 133, 94, 0.35);
    backdrop-filter: blur(12px);
    background: rgba(245, 236, 223, 0.85);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    font-family: "Fraunces", serif;
    font-size: 1.55rem;
    letter-spacing: 0.3px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

.site-nav > a {
    color: #4f4438;
    position: relative;
}

.site-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: rgba(182, 90, 52, 0.8);
    transition: transform 0.22s ease;
}

.site-nav > a:not(.btn):hover::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: linear-gradient(130deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(127, 66, 42, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(127, 66, 42, 0.34);
}

.btn.small {
    padding: 8px 14px;
}

.btn.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn.secondary.light {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
    box-shadow: none;
}

.page-home {
    padding-bottom: 42px;
}

.hero {
    padding-block: 40px 18px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
    align-items: center;
}

.hero-premium {
    padding: 38px;
    margin-top: 22px;
    border: 1px solid rgba(164, 133, 94, 0.3);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 248, 238, 0.94), rgba(241, 227, 210, 0.82)),
        radial-gradient(circle at top left, rgba(182, 90, 52, 0.14), transparent 32%);
    box-shadow: var(--shadow);
}

.hero-copy h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.98;
    margin: 10px 0 16px;
    letter-spacing: -0.03em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--accent);
    font-size: 0.77rem;
    font-weight: 700;
}

.lead {
    color: var(--muted);
    max-width: 60ch;
    font-size: 1.12rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-block: 20px;
}

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

.stat-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 251, 243, 0.84);
    padding: 16px;
}

.stat-card strong {
    font-size: 1.7rem;
    display: block;
    font-family: "Fraunces", serif;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-note {
    margin-top: 8px;
    padding: 18px 20px;
    border: 1px solid rgba(164, 133, 94, 0.28);
    border-radius: 22px;
    background: rgba(255, 251, 244, 0.78);
    display: grid;
    gap: 10px;
}

.hero-note-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
}

.hero-note strong {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
}

.hero-note p {
    color: var(--muted);
    line-height: 1.55;
}

.hero-stage {
    display: grid;
    gap: 16px;
}

.hero-stats {
    margin-top: 8px;
}

.hero-media {
    position: relative;
}

.hero-media > img {
    min-height: 620px;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.hero-chip {
    position: absolute;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(20, 18, 15, 0.84);
    color: #fff;
    min-width: 150px;
}

.hero-chip span {
    display: block;
    opacity: 0.85;
    font-size: 0.75rem;
}

.hero-chip strong {
    font-size: 1rem;
}

.chip-primary {
    left: 14px;
    bottom: 14px;
}

.chip-secondary {
    right: 14px;
    top: 14px;
}

.hero-insight {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.hero-insight-card,
.hero-mini-card {
    border: 1px solid rgba(164, 133, 94, 0.26);
    border-radius: 20px;
    background: rgba(255, 249, 241, 0.78);
    padding: 16px;
    box-shadow: 0 12px 28px rgba(54, 36, 21, 0.08);
}

.hero-insight-card span,
.hero-mini-card span {
    display: block;
    color: var(--accent);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.hero-insight-card strong,
.hero-mini-card strong {
    font-family: "Fraunces", serif;
    font-size: 1.08rem;
    line-height: 1.35;
}

.trust-strip {
    margin-top: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.78);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
}

.trust-strip div {
    padding: 10px 12px;
}

.trust-strip strong {
    display: block;
    font-family: "Fraunces", serif;
    margin-bottom: 3px;
}

.trust-strip span {
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding-top: 74px;
}

.page-inner {
    padding-bottom: 22px;
}

.page-head {
    margin-bottom: 16px;
    display: grid;
    gap: 9px;
    max-width: 72ch;
}

.page-head h1 {
    font-size: clamp(1.95rem, 4vw, 3rem);
}

.page-head p {
    color: var(--muted);
}

.archive-shell {
    display: grid;
    gap: 24px;
}

.archive-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(182, 90, 52, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255, 248, 238, 0.94), rgba(241, 227, 210, 0.84));
    box-shadow: var(--shadow);
}

.archive-copy {
    display: grid;
    gap: 12px;
    align-content: center;
}

.archive-copy h1 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.archive-copy p {
    color: var(--muted);
    max-width: 62ch;
}

.archive-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.archive-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.archive-stat {
    border: 1px solid rgba(164, 133, 94, 0.28);
    border-radius: 18px;
    background: rgba(255, 252, 246, 0.84);
    padding: 16px;
    display: grid;
    gap: 6px;
}

.archive-stat strong {
    font-size: 1.9rem;
    font-family: "Fraunces", serif;
}

.archive-stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

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

.archive-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 249, 240, 0.88);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(54, 36, 21, 0.18);
}

.archive-card img {
    height: 230px;
}

.archive-card-body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.archive-card-body p {
    color: var(--muted);
}

.archive-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.archive-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(182, 90, 52, 0.22);
    background: rgba(182, 90, 52, 0.09);
    color: var(--accent-dark);
    padding: 7px 12px;
    font-size: 0.84rem;
    font-weight: 700;
}

.archive-link {
    font-weight: 700;
    color: #395e45;
}

.archive-feature {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(140deg, #fff7ec, #efe1cf);
    box-shadow: var(--shadow);
}

.archive-feature img {
    min-height: 420px;
}

.archive-feature-copy {
    padding: clamp(20px, 4vw, 34px);
    display: grid;
    gap: 14px;
    align-content: center;
}

.archive-feature-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.archive-feature-copy p {
    color: var(--muted);
}

.archive-feature-copy .archive-meta {
    justify-content: flex-start;
}

.empty-state {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 249, 240, 0.88);
    padding: 28px;
    display: grid;
    gap: 10px;
}

.empty-state p {
    color: var(--muted);
}

.section-head {
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: end;
    margin-bottom: 22px;
}

.section-split h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.section-sidecopy {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.section-split p,
.section-sidecopy p {
    color: var(--muted);
    line-height: 1.6;
}

.text-link {
    font-weight: 700;
    color: #395e45;
}

.experience-band {
    display: grid;
    gap: 22px;
}

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

.experience-card {
    border: 1px solid rgba(164, 133, 94, 0.28);
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 250, 243, 0.82);
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.experience-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(182, 90, 52, 0.1);
    color: var(--accent-dark);
    font-family: "Fraunces", serif;
    font-size: 1rem;
}

.experience-card p {
    color: var(--muted);
    line-height: 1.55;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 248, 238, 0.92);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card img {
    height: 250px;
}

.card-body {
    padding: 18px 18px 20px;
    display: grid;
    gap: 10px;
}

.card-body h3 {
    font-size: 1.3rem;
}

.card-body small {
    color: var(--muted);
    display: inline-block;
    margin-bottom: 6px;
}

.card-body a {
    color: #395e45;
    font-weight: 600;
}

.card.overlay {
    position: relative;
    min-height: 330px;
}

.card.overlay::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 58%;
    background: linear-gradient(to top, rgba(16, 13, 10, 0.82), rgba(16, 13, 10, 0));
}

.card.overlay img {
    height: 100%;
}

.card-overlay {
    position: absolute;
    left: 14px;
    bottom: 10px;
    right: 14px;
    color: #fff;
    z-index: 1;
}

.card-overlay h3 {
    margin-bottom: 3px;
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.84);
}

.card-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-card .price-pill {
    display: inline-flex;
    background: rgba(182, 90, 52, 0.12);
    border: 1px solid rgba(182, 90, 52, 0.35);
    color: #8a3e1f;
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-copy {
    color: var(--muted);
    line-height: 1.55;
}

.project-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(130deg, #fff7ea, #f2e3d0);
    border-radius: 22px;
    padding: 16px;
}

.project-feature img {
    border-radius: 16px;
    min-height: 360px;
}

.project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.project-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.project-content p {
    color: var(--muted);
}

.project-feature-premium {
    padding: 22px;
    border-radius: 30px;
}

.inner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-detail small {
    color: var(--muted);
    font-weight: 600;
}

.blog-card img {
    height: 210px;
}

.section-cta {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.cta-band {
    border-radius: 24px;
    background: linear-gradient(130deg, #272119, #4c3a2a 55%, #885b3d);
    color: #fff;
    padding: clamp(22px, 4vw, 40px);
    text-align: center;
    display: grid;
    gap: 11px;
}

.cta-band .eyebrow {
    color: #f9c9a9;
}

.cta-band h2 {
    font-size: clamp(1.55rem, 3.2vw, 2.4rem);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 72ch;
    margin-inline: auto;
}

.cta-band .btn {
    justify-self: center;
    background: #fff;
    color: #402b1f;
    box-shadow: none;
}

.cta-band .btn.secondary.light {
    background: transparent;
    color: #fff;
}

.cta-band-premium {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
}

.cta-band-premium::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    top: -140px;
    right: -80px;
}

.cta-band-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer {
    margin-top: 64px;
    border-top: 1px solid var(--line);
    padding-block: 30px 28px;
    background: rgba(245, 231, 210, 0.56);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 20px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 8px;
}

.footer-grid p {
    color: var(--muted);
}

.footer-grid a {
    color: #4e6148;
    font-weight: 500;
}

.contact-form {
    max-width: 640px;
    display: grid;
    gap: 10px;
}

.contact-page {
    padding-bottom: 20px;
}

.contact-top {
    max-width: 72ch;
    display: grid;
    gap: 10px;
}

.contact-top h1 {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
}

.contact-top p {
    color: var(--muted);
}

.contact-layout {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
}

.contact-info-card,
.contact-form-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 249, 240, 0.8);
    padding: 18px;
    box-shadow: var(--shadow);
}

.contact-info-card h2 {
    margin-bottom: 10px;
}

.contact-info-list {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-info-list span {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-info-list a,
.contact-info-list p {
    font-weight: 600;
}

.contact-process h3 {
    margin-bottom: 8px;
}

.contact-process ol {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.contact-form label {
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    background: #fffdf9;
}

.flash {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.flash.ok {
    background: #dff4e5;
    border: 1px solid #8bc99d;
}

.flash.err {
    background: #ffe8e8;
    border: 1px solid #d99b9b;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .hero,
    .project-feature,
    .contact-layout,
    .archive-hero,
    .archive-feature,
    .section-split {
        grid-template-columns: 1fr;
    }

    .hero-media > img {
        min-height: 420px;
    }

    .grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid.three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-grid,
    .hero-insight {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .site-nav {
        position: absolute;
        top: 78px;
        right: 4vw;
        width: min(330px, 92vw);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff7eb;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 12px;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .mobile-toggle {
        display: inline-block;
        border: 1px solid var(--line);
        background: #fff8ef;
        border-radius: 999px;
        padding: 8px 14px;
        font-family: inherit;
    }
}

@media (max-width: 640px) {
    .grid.four,
    .grid.three,
    .stats,
    .footer-grid,
    .archive-grid,
    .archive-stats {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 26px;
    }

    .hero-premium {
        padding: 22px;
    }

    .hero-media > img {
        min-height: 320px;
    }

    .chip-secondary {
        right: 12px;
        top: 12px;
    }

    .inner-actions .btn {
        width: 100%;
    }

    .archive-actions .btn {
        width: 100%;
    }

    .cta-band-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
