:root {
    --ink: #1c1b18;
    --paper: #f6f2ec;
    --cream: #faf8f4;
    --warm-white: #fff;
    --holly: #2d5a3d;
    --holly-light: #3a7550;
    --holly-pale: rgba(45, 90, 61, 0.07);
    --gold: #bf8c3e;
    --gold-light: #d4a84f;
    --text: #3b3731;
    --text-mid: #6b6359;
    --text-light: #999085;
    --border: #ddd5c8;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* paper grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

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

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

/* ===== NAV ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(246, 242, 236, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.site-nav.scrolled {
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.nav-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(27%) sepia(22%) saturate(831%) hue-rotate(103deg) brightness(96%) contrast(89%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links > a,
.nav-dropdown-trigger {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links > a:hover,
.nav-dropdown-trigger:hover {
    color: var(--ink);
}

/* ===== DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-trigger svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-inner {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(28, 27, 24, 0.1);
}

.dropdown-menu-inner a {
    display: block;
    padding: 8px 20px;
    font-size: 0.82rem;
    color: var(--text-mid);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.dropdown-menu-inner a:hover {
    background: var(--holly-pale);
    color: var(--ink);
}

.dropdown-menu-inner .dropdown-overview {
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
    padding-bottom: 10px;
}

.nav-quote {
    padding: 8px 20px;
    background: var(--holly);
    color: var(--cream) !important;
    border-radius: 3px;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-quote:hover {
    background: var(--holly-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    margin: 5px 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    padding: 32px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu > a {
    padding: 16px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-quote {
    margin-top: 24px;
    text-align: center;
    padding: 16px;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
}

/* Mobile accordion */
.mobile-dropdown {
    border-bottom: 1px solid var(--border);
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ink);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-dropdown-trigger svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
    fill: none;
    stroke-width: 2;
    transition: transform 0.25s;
}

.mobile-dropdown.open .mobile-dropdown-trigger svg {
    transform: rotate(180deg);
}

.mobile-dropdown-items {
    display: none;
    padding: 0 0 12px 16px;
}

.mobile-dropdown.open .mobile-dropdown-items {
    display: block;
}

.mobile-dropdown-items a {
    display: block;
    padding: 8px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-mid);
    border-bottom: none;
}

.mobile-dropdown-items a:hover {
    color: var(--ink);
}

/* ===== HERO ===== */
.hero {
    padding-top: 96px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}

.hero-text h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-text .lead {
    font-size: 1.08rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 420px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--holly);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
    background: var(--holly-light);
    transform: translateY(-1px);
}

.hero-cta svg {
    transition: transform 0.2s;
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

.hero-slideshow {
    display: grid;
    width: 100%;
    flex: 1;
}

.hero-slide {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    aspect-ratio: 1;
}

.hero-images--single {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.hero-images--duo {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.hero-images--single .hero-img,
.hero-images--duo .hero-img:nth-child(1) {
    grid-row: auto;
}

.hero-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0 40px;
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--holly);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

.hero-nav-btn:hover {
    background: var(--holly-light);
}

.hero-nav-btn svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 4px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(28, 27, 24, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.hero-dot.active {
    background: var(--holly);
    transform: scale(1.25);
}

.hero-img {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hero-img:nth-child(1) {
    grid-row: 1 / 3;
}

.hero-img img,
.hero-img .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-mobile {
    display: none;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.hero-img-mobile img,
.hero-img-mobile .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PLACEHOLDER IMAGES ===== */
.ph {
    background: linear-gradient(135deg, #e8e0d4 0%, #d9cfc1 50%, #e3dbd0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 16px;
}

.ph-dark {
    background: linear-gradient(135deg, #2a2722 0%, #3a3530 50%, #2f2b26 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 16px;
}

/* ===== INTRO / PHILOSOPHY ===== */
.intro {
    padding: 120px 32px;
    text-align: center;
}

.intro-inner {
    max-width: 680px;
    margin: 0 auto;
}

.intro p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.6;
}

.intro p em {
    color: var(--gold);
}

.intro .sig {
    margin-top: 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
}

/* ===== FULL BLEED IMAGE ===== */
.full-image {
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
}

.full-image img,
.full-image .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== WORK SECTION ===== */
.work {
    padding: 120px 32px;
}

.work-header {
    max-width: 1200px;
    margin: 0 auto 64px;
}

.work-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.work-header p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 480px;
}

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

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.work-item img,
.work-item .ph {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img,
.work-item:hover .ph {
    transform: scale(1.03);
}

.work-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(28, 27, 24, 0.75) 0%, transparent 100%);
    color: #fff;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.work-item:hover .work-item-info {
    transform: translateY(0);
    opacity: 1;
}

.work-item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.work-item-info span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.work-more {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--holly);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.2s, gap 0.2s;
}

.text-link:hover {
    border-color: var(--holly);
    gap: 10px;
}

.text-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ===== THE PROCESS (story-style, not steps) ===== */
.story {
    background: var(--ink);
    color: var(--paper);
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
}

.story::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -40px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    border-radius: 4px;
    overflow: hidden;
}

.story-image img,
.story-image .ph-dark {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--paper);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}

.story-text h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.story-text p {
    color: rgba(246, 242, 236, 0.6);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text p strong {
    color: var(--paper);
    font-weight: 500;
}

/* ===== SERVICES (simple, not cards) ===== */
.what-we-print {
    padding: 120px 32px;
}

.wprint-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wprint-header {
    margin-bottom: 56px;
}

.wprint-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.wprint-header p {
    color: var(--text-mid);
    max-width: 520px;
}

.wprint-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}

.wprint-item-img {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.wprint-item-img img,
.wprint-item-img .ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.wprint-item:hover .wprint-item-img img,
.wprint-item:hover .wprint-item-img .ph {
    transform: scale(1.03);
}

.wprint-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}

.wprint-item p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ===== UNBOXING / EXPERIENCE ===== */
.experience {
    padding: 100px 32px;
    background: var(--holly);
    color: var(--cream);
}

.exp-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.exp-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 20px;
}

.exp-inner h2 em {
    color: var(--gold-light);
    font-style: italic;
}

.exp-inner p {
    font-size: 1rem;
    color: rgba(250, 248, 244, 0.6);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 100px 32px;
    background: var(--cream);
}

.test-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.test-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 24px;
}

.test-attr {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== FINAL CTA ===== */
.cta-final {
    padding: 120px 32px;
    text-align: center;
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-final h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-final .cta-sub {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--holly);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
}

.btn-green:hover {
    background: var(--holly-light);
    transform: translateY(-1px);
}

.cta-phone {
    font-size: 0.9rem;
    color: var(--text-mid);
}

.cta-phone a {
    color: var(--holly);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.cta-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(246, 242, 236, 0.5);
    padding: 56px 32px 28px;
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.foot-brand-name {
    margin-bottom: 12px;
}

.foot-brand-name img {
    height: 104px;
    width: auto;
    filter: brightness(0) invert(1);
}

.foot-brand p {
    font-size: 0.85rem;
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 16px;
}

.foot-social {
    display: flex;
    gap: 12px;
}

.foot-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(246, 242, 236, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.foot-social a:hover {
    border-color: var(--gold);
}

.foot-social a svg {
    width: 14px;
    height: 14px;
    fill: var(--paper);
}

.foot-col h4 {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.foot-col a {
    display: block;
    font-size: 0.85rem;
    padding: 3px 0;
    transition: color 0.2s;
}

.foot-col a:hover {
    color: var(--paper);
}

.foot-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(246, 242, 236, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

/* ===== COMING SOON / PLACEHOLDER PAGES ===== */
.page-content {
    padding-top: 96px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 32px;
    text-align: center;
}

.page-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.page-inner p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--holly);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.back-link:hover {
    border-color: var(--holly);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-images {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-img:nth-child(1) {
        grid-row: auto;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-image {
        max-width: 480px;
        order: -1;
    }

    .wprint-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-layout {
        padding: 40px 32px;
        text-align: center;
    }

    .hero-text .lead {
        max-width: 100%;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-img-mobile {
        display: block;
    }

    .hero-images {
        display: none;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wprint-list {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .foot-top {
        grid-template-columns: 1fr;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .full-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.4rem;
    }

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

    .hero-images:not(.hero-images--duo) .hero-img:nth-child(2),
    .hero-img:nth-child(3) {
        display: none;
    }

    .work-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
