:root {
    --bg: #f5f7f3;
    --surface: #ffffff;
    --ink: #161a18;
    --muted: #68716d;
    --forest: #14251f;
    --teal: #1d7b76;
    --coral: #e85d4f;
    --sun: #f2bd4b;
    --line: #dce3dd;
    --shadow: 0 16px 36px rgba(22, 26, 24, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
}

img {
    display: block;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(245, 247, 243, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.logo {
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    color: #45514c;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
}

nav a:hover {
    color: var(--teal);
}

main {
    padding: 0 0 3rem;
}

.section-band {
    width: 100%;
}

.hero {
    color: #f7fbf7;
    background: var(--forest);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 3rem;
    align-items: center;
    padding: 4.25rem 0 3.5rem;
}

.hero-copy {
    max-width: 640px;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--sun);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: 3.25rem;
    line-height: 1.02;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: 2.1rem;
    line-height: 1.12;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.25;
    letter-spacing: 0;
}

p {
    line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
    max-width: 600px;
    color: #d8e4dd;
    font-size: 1.08rem;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    grid-template-rows: 250px 170px;
    gap: 0.8rem;
    min-height: 430px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-image-main {
    grid-row: 1 / 3;
}

.hero-image-wide {
    object-position: center;
}

.intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.intro-strip div {
    background: var(--surface);
    padding: 1rem;
}

.intro-strip strong,
.intro-strip span {
    display: block;
}

.intro-strip strong {
    margin-bottom: 0.3rem;
}

.intro-strip span,
.section-heading p,
.service-tile p,
.process-step p,
.print-card p,
.card p,
.cta-panel p {
    color: var(--muted);
}

.page-section {
    padding: 3rem 0 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 1.35rem;
}

.section-heading p:last-child {
    margin-bottom: 0;
}

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

.print-card,
.card,
.service-tile,
.process-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.print-card {
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(22, 26, 24, 0.07);
}

.print-card:nth-child(1),
.print-card:nth-child(4) {
    grid-column: span 2;
}

.print-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e8eee9;
}

.print-card:nth-child(1) .print-image,
.print-card:nth-child(4) .print-image {
    aspect-ratio: 16 / 9;
}

.print-card-body {
    padding: 1rem;
}

.material {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    padding: 0.18rem 0.55rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    color: #103a36;
    background: #dff1ef;
    font-size: 0.78rem;
    font-weight: 800;
}

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

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

.card,
.service-tile {
    padding: 1rem;
}

.card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.9rem;
    background: #e8eee9;
}

.muted-band {
    margin-top: 3rem;
    padding: 3rem 0;
    background: #e9f0eb;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: 2rem;
    align-items: start;
}

.process-list {
    display: grid;
    gap: 0.8rem;
}

.process-step {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.process-step span {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #ffffff;
    background: var(--coral);
    border-radius: 8px;
    font-weight: 900;
}

.service-grid {
    display: grid;
    gap: 1rem;
}

.service-tile {
    border-top: 4px solid var(--teal);
}

.service-tile:nth-child(2) {
    border-top-color: var(--coral);
}

.service-tile:nth-child(3) {
    border-top-color: var(--sun);
}

.cta-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.72rem 1rem;
    border-radius: 8px;
    background: var(--coral);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.btn:hover {
    background: #c94337;
}

.btn-alt {
    background: #f7fbf7;
    color: var(--forest);
}

.btn-alt:hover {
    background: #dde9e2;
}

.cta-band {
    margin-top: 3rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem;
    color: #f7fbf7;
    background: var(--forest);
    border-radius: 8px;
}

.cta-panel .eyebrow {
    color: var(--sun);
}

.cta-panel p {
    color: #d8e4dd;
}

.site-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    margin-top: 2rem;
}

.site-footer p {
    padding: 1rem 0;
    margin: 0;
}

@media (max-width: 980px) {
    h1 {
        font-size: 2.6rem;
    }

    .hero-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-rows: 220px 150px;
        min-height: 380px;
    }

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

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

@media (max-width: 720px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        gap: 0.75rem;
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .hero-grid {
        gap: 1.6rem;
        padding: 2.6rem 0 2.2rem;
    }

    .hero-visual {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 190px 130px;
        min-height: 320px;
    }

    .intro-strip,
    .showcase-grid,
    .cards-3,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .print-card:nth-child(1),
    .print-card:nth-child(4) {
        grid-column: span 1;
    }

    .print-card:nth-child(1) .print-image,
    .print-card:nth-child(4) .print-image,
    .print-image {
        aspect-ratio: 4 / 3;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 190px);
        min-height: auto;
    }

    .hero-image-main {
        grid-row: auto;
    }

    .process-step {
        grid-template-columns: 1fr;
    }
}
