:root {
    --ink: #161616;
    --charcoal: #202225;
    --graphite: #34383d;
    --clay: #bf5b45;
    --moss: #6f8b55;
    --citrine: #e2b84b;
    --sky: #cfe6ec;
    --paper: #fbfaf6;
    --mist: #f1f2ee;
    --white: #ffffff;
    --muted: #686c70;
    --line: #dedbd2;
    --shadow: 0 18px 45px rgba(22, 22, 22, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--paper);
}

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

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

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 99;
    padding: 10px 14px;
    color: var(--white);
    background: var(--clay);
}

.skip-link:focus {
    top: 12px;
}

.top-bar {
    color: rgba(255, 255, 255, 0.82);
    background: var(--ink);
    font-size: 14px;
}

.top-bar__inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding: 8px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 246, 0.94);
    border-bottom: 1px solid rgba(22, 22, 22, 0.12);
    backdrop-filter: blur(16px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--paper);
    background: var(--ink);
    border-radius: 50%;
    font-weight: 900;
}

.brand__text {
    display: grid;
    line-height: 1.08;
}

.brand__text strong {
    font-size: 19px;
}

.brand__text small {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.primary-nav > a,
.nav-dropdown > a {
    padding: 11px 13px;
    color: var(--graphite);
    font-weight: 800;
    border-radius: var(--radius);
}

.primary-nav a:hover,
.primary-nav a.is-active,
.nav-dropdown.is-active > a {
    color: var(--ink);
    background: var(--sky);
}

.nav-cta {
    margin-left: 8px;
    color: var(--white) !important;
    background: var(--clay) !important;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    min-width: 230px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 800;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero,
.page-hero,
.service-hero,
.print-hero {
    padding: 86px 0;
}

.hero--home {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(22, 22, 22, 0.96) 0%, rgba(32, 34, 37, 0.92) 52%, rgba(191, 91, 69, 0.82) 100%),
        url("../images/photo-1552664730-d307ca884978.jpg") center/cover;
}

.hero--home::after {
    position: absolute;
    inset: auto -140px -220px auto;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.hero__grid,
.service-hero__grid,
.print-hero__grid,
.split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
    align-items: center;
    gap: 52px;
}

.hero--home .hero__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.hero__content h1,
.page-hero h1,
.service-hero h1,
.print-hero h1 {
    max-width: 790px;
    margin: 12px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
}

.service-hero h1,
.print-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
}

.hero__content p,
.page-hero p,
.service-hero p,
.print-hero p,
.section-heading p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.hero--home .hero__content p {
    color: rgba(255, 255, 255, 0.82);
}

.hero__media img,
.service-hero img,
.rounded-image {
    height: 470px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero--home .hero__media {
    position: relative;
    transform: none;
}

.hero--home .hero__media img {
    height: 520px;
    border: 10px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-proof span {
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    font-weight: 800;
}

.hero-proof strong {
    display: block;
    color: var(--citrine);
    font-size: 20px;
    line-height: 1;
}

.hero-card {
    position: absolute;
    width: min(210px, 46%);
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(22, 22, 22, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card strong,
.hero-card span {
    display: block;
}

.hero-card strong {
    color: var(--clay);
    font-size: 34px;
    line-height: 1;
}

.hero-card span {
    color: var(--muted);
    font-weight: 900;
}

.hero-card--top {
    top: 28px;
    left: -30px;
}

.hero-card--bottom {
    right: -22px;
    bottom: 34px;
}

.hero__media,
.service-hero__grid > img,
.rounded-image {
    transform: rotate(1deg);
}

.eyebrow {
    color: var(--clay);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    transition: 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 12px 24px rgba(22, 22, 22, 0.18);
}

.btn--secondary {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.btn--light {
    color: var(--ink);
    background: var(--white);
}

.btn--glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.section {
    padding: 78px 0;
}

.section--muted {
    background: var(--mist);
}

.section--ink {
    color: var(--white);
    background: var(--charcoal);
}

.section--ink p {
    color: rgba(255, 255, 255, 0.78);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.feature-panel h3,
.print-strip h2 {
    margin: 8px 0 12px;
    font-size: clamp(29px, 4vw, 44px);
    line-height: 1.1;
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.service-card,
.wide-service-card,
.info-card,
.values-grid article,
.process-grid article,
.print-grid article,
.contact-form,
.contact-card,
.feature-panel,
.testimonial-grid article,
.print-service-cards article,
.print-benefit-grid article,
.print-issue-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(22, 22, 22, 0.07);
}

.service-card {
    overflow: hidden;
}

.service-card img {
    height: 178px;
}

.service-card div,
.wide-service-card div,
.info-card,
.values-grid article,
.process-grid article,
.contact-card,
.contact-form,
.feature-panel,
.testimonial-grid article {
    padding: 24px;
}

.service-card h3,
.wide-service-card h2,
.info-card h2,
.feature-list h2,
.process-grid h2 {
    margin: 0 0 10px;
    line-height: 1.2;
}

.service-card p,
.wide-service-card p,
.info-card p,
.values-grid p,
.process-grid p,
.feature-list p,
.feature-panel p,
.legal-content p,
.contact-card p {
    color: var(--muted);
}

.service-card a:not(.btn),
.print-service-cards a {
    color: var(--clay);
    font-weight: 900;
}

.service-card--accent,
.wide-service-card--print {
    border-color: rgba(191, 91, 69, 0.45);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
}

.stats-grid div {
    padding: 28px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stats-grid strong {
    display: block;
    color: var(--clay);
    font-size: 38px;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-weight: 800;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: var(--moss);
    content: "\2713";
    font-weight: 900;
}

.page-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(22, 22, 22, 0.88), rgba(22, 22, 22, 0.46)),
        url("../images/photo-1552664730-d307ca884978.jpg") center/cover;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.84);
}

.wide-service-card {
    display: grid;
    grid-template-columns: 0.88fr 1fr;
    overflow: hidden;
}

.wide-service-card img {
    height: 100%;
    min-height: 310px;
}

.service-hero {
    background: linear-gradient(135deg, var(--mist), var(--paper));
}

.process-grid,
.values-grid,
.feature-list,
.print-grid,
.print-service-cards,
.print-benefit-grid,
.print-issue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-grid span,
.print-grid span,
.print-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: var(--clay);
    border-radius: 50%;
    font-weight: 900;
}

.feature-list div {
    padding: 0 0 0 20px;
    border-left: 4px solid var(--moss);
}

.print-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.print-hero p {
    color: rgba(255, 255, 255, 0.86);
}

.print-showcase {
    position: relative;
}

.print-showcase img {
    height: 500px;
    border: 10px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.print-badge {
    position: absolute;
    right: 12px;
    bottom: 24px;
    padding: 16px 18px;
    color: var(--ink);
    background: var(--citrine);
    border-radius: var(--radius);
    font-weight: 900;
    box-shadow: var(--shadow);
}

.print-products,
.print-services-overview {
    background: var(--mist);
}

.print-grid article,
.print-service-cards article,
.print-benefit-grid article,
.print-issue-grid article {
    padding: 26px;
}

.print-service-cards h3,
.print-issue-grid h3 {
    margin: 18px 0 10px;
    line-height: 1.2;
}

.print-service-cards p,
.print-benefit-grid p,
.print-issue-grid p,
.print-help p,
.print-about p {
    color: var(--muted);
}

.print-benefit-grid article {
    border-left: 4px solid var(--moss);
}

.print-benefit-grid strong::before {
    color: var(--moss);
    content: "\2713  ";
}

.print-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 7px;
}

label {
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--clay);
    outline: 3px solid rgba(191, 91, 69, 0.16);
}

.form-note {
    min-height: 24px;
    margin: 0;
    color: var(--moss);
    font-weight: 900;
}

.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 240px;
    margin-top: 22px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(22, 22, 22, 0.54), rgba(22, 22, 22, 0.2)),
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=900&q=80") center/cover;
    border-radius: var(--radius);
    font-weight: 900;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin-top: 28px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
    gap: 34px;
    padding: 58px 0;
}

.brand--footer .brand__mark {
    color: var(--ink);
    background: var(--citrine);
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
    color: var(--white);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-links,
.contact-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover,
.contact-list a:hover {
    color: var(--citrine);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--ink);
    background: var(--citrine);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
}

.section-heading--center {
    text-align: center;
}

.section-heading--center p {
    margin-inline: auto;
}

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

.testimonial-grid p {
    margin-top: 0;
    color: #34383d;
    font-size: 17px;
}

.testimonial-grid strong,
.testimonial-grid span {
    display: block;
}

.testimonial-grid span {
    color: var(--muted);
    font-size: 14px;
}

.insight-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.8fr;
    gap: 32px;
    align-items: center;
    padding: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--charcoal), #4e5f45);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.insight-band p {
    color: rgba(255, 255, 255, 0.84);
}

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

.insight-list span {
    padding: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font-weight: 900;
}

.print-hero--service {
    padding: 88px 0 74px;
    background:
        linear-gradient(90deg, rgba(22, 22, 22, 0.92), rgba(22, 22, 22, 0.42)),
        url("../images/photo-1650094980833-7373de26feb6.jpg") center/cover;
}

.print-hero--service .print-hero__grid {
    grid-template-columns: 0.88fr 1.12fr;
}

.print-hero--service .eyebrow {
    color: var(--citrine);
}

.print-hero--service .print-showcase img {
    min-height: 390px;
}

.print-hero__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.print-hero__metrics span {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
}

.print-hero__metrics strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.print-about {
    background: var(--paper);
}

.print-about__image {
    height: 430px;
}

.print-provide {
    background: var(--white);
}

.print-help {
    color: var(--white);
    background: linear-gradient(135deg, var(--charcoal), #5b4638);
}

.print-help__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 0.72fr;
    gap: 42px;
    align-items: center;
}

.print-help .eyebrow,
.print-help .check-list li::before {
    color: var(--citrine);
}

.print-help p {
    color: rgba(255, 255, 255, 0.82);
}

.print-help__panel {
    display: grid;
    gap: 14px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(4, 18, 54, 0.18);
}

.print-help__panel h3 {
    margin: 0;
    font-size: 28px;
}

.service-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 480px);
    z-index: 60;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--citrine);
    border: 2px solid var(--ink);
}

.service-bar-top {
    top: 0;
}

.service-bar-bottom {
    bottom: 0;
}

.bar-icon,
.bar-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bar-icon {
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    font-size: 22px;
    font-weight: 900;
}

.bar-avatar {
    object-fit: cover;
    border: 2px solid rgba(22, 22, 22, 0.36);
}

.bar-copy {
    flex: 1;
    text-align: center;
    line-height: 1.1;
}

.bar-copy small,
.bar-number {
    display: block;
    font-weight: 900;
}

.bar-number {
    margin-top: 4px;
    color: var(--ink);
    font-size: 21px;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        align-items: stretch;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: grid;
    }

    .primary-nav > a,
    .nav-dropdown > a {
        display: block;
    }

    .dropdown-menu {
        position: static;
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        margin: 4px 0 8px;
        box-shadow: none;
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero__grid,
    .service-hero__grid,
    .print-hero__grid,
    .split,
    .contact-layout,
    .wide-service-card,
    .insight-band,
    .print-help__grid,
    .print-hero--service .print-hero__grid {
        grid-template-columns: 1fr;
    }

    .hero--home .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero-card--top {
        left: 18px;
    }

    .hero-card--bottom {
        right: 18px;
    }

    .card-grid--four,
    .card-grid--three,
    .card-grid--two,
    .process-grid,
    .values-grid,
    .feature-list,
    .print-grid,
    .stats-grid,
    .footer-grid,
    .testimonial-grid,
    .print-service-cards,
    .print-benefit-grid,
    .print-issue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .print-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .top-bar {
        display: none;
    }

    .top-bar__inner,
    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .page-hero,
    .service-hero,
    .print-hero,
    .section {
        padding: 54px 0;
    }

    .hero--home {
        background:
            linear-gradient(135deg, rgba(22, 22, 22, 0.96), rgba(32, 34, 37, 0.88)),
            url("../images/photo-1650094980833-7373de26feb6.jpg") center/cover;
    }

    .hero__content h1,
    .page-hero h1,
    .service-hero h1,
    .print-hero h1 {
        font-size: 38px;
    }

    .hero__media img,
    .service-hero img,
    .rounded-image,
    .print-showcase img,
    .print-about__image {
        height: 320px;
    }

    .hero--home .hero__media img {
        height: 360px;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-card {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .card-grid--four,
    .card-grid--three,
    .card-grid--two,
    .process-grid,
    .values-grid,
    .feature-list,
    .print-grid,
    .stats-grid,
    .footer-grid,
    .testimonial-grid,
    .print-service-cards,
    .print-benefit-grid,
    .print-issue-grid,
    .insight-list {
        grid-template-columns: 1fr;
    }

    .brand__text small {
        display: none;
    }

    .print-badge {
        right: 12px;
        bottom: 12px;
    }

    .service-bar {
        display: flex;
    }
}
