:root {
    --ink: #171717;
    --muted: #66615d;
    --paper: #fbfaf7;
    --soft: #f0ece6;
    --line: #ded7cc;
    --accent: #7b4638;
    --accent-strong: #5f2f25;
    --green: #3f5f58;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(31, 27, 24, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

body.nav-open,
body.lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 14px 18px;
    background: rgba(251, 250, 247, 0.94);
    border-bottom: 1px solid rgba(222, 215, 204, 0.8);
    backdrop-filter: blur(18px);
}

.brand img {
    width: 250px;
    height: auto;
}

.nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

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

.site-nav {
    position: fixed;
    inset: 64px 12px auto 12px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.site-nav a {
    padding: 14px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:focus,
.site-nav a:hover {
    background: var(--soft);
    color: var(--ink);
    outline: none;
}

.hero {
    position: relative;
    min-height: calc(100svh - 64px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #1f1a17;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 36px));
    padding: 96px 0 34px;
    margin: 0 auto;
    color: var(--white);
}

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

.hero .eyebrow {
    color: #f0d1c5;
}

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

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 15vw, 5.8rem);
}

h2 {
    font-size: clamp(2rem, 9vw, 4.25rem);
}

h3 {
    font-size: 1.35rem;
}

.hero-copy {
    max-width: 34rem;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.button-primary {
    background: var(--accent);
    color: var(--white);
}

.button-primary:hover,
.button-primary:focus {
    background: var(--accent-strong);
    outline: none;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.55);
}

.contact-section .button-secondary {
    background: var(--white);
    border-color: var(--line);
}

.trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip div {
    padding: 22px 20px;
    background: var(--paper);
    text-align: center;
}

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

.trust-strip strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.trust-strip span {
    color: var(--muted);
}

.section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 70px 0;
}

.section-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.section-heading h2 {
    max-width: 12ch;
}

.section-heading.compact h2 {
    max-width: 15ch;
}

.intro-grid {
    display: grid;
    gap: 28px;
}

.intro-copy {
    display: grid;
    gap: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.intro-copy p {
    margin: 0;
}

.portrait-card {
    margin: 0;
    background: var(--soft);
    border-radius: 8px;
    overflow: hidden;
}

.portrait-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.portrait-card figcaption {
    padding: 14px 16px;
    color: var(--muted);
    font-weight: 700;
}

.moments {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    background: var(--soft);
}

.moments .section-heading,
.moment-list,
.process .section-heading,
.process-list {
    width: min(1120px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.moment-list {
    display: grid;
    gap: 14px;
}

.moment-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background: var(--paper);
    border: 1px solid rgba(222, 215, 204, 0.9);
    border-radius: 8px;
}

.moment-card img {
    width: 92px;
    height: 92px;
    border-radius: 6px;
    object-fit: cover;
}

.moment-card p,
.process-item p,
.contact-copy p {
    margin: 10px 0 0;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    gap: 12px;
}

.gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.035);
}

.process {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    background: #202522;
    color: var(--white);
}

.process .eyebrow {
    color: #d8b8a9;
}

.process-list {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-item {
    padding: 22px;
    background: #202522;
}

.process-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #d8b8a9;
    font-weight: 800;
}

.process-item p {
    color: rgba(255, 255, 255, 0.74);
}

.services {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    background: linear-gradient(180deg, var(--paper) 0%, #f4f0ea 100%);
}

.services .section-heading,
.service-grid,
.service-note {
    width: min(1120px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.service-grid {
    display: grid;
    gap: 16px;
}

.service-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: 300px;
    padding: 24px 22px;
    overflow: hidden;
    border: 1px solid rgba(222, 215, 204, 0.96);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 38px rgba(31, 27, 24, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--green));
}

.service-card span {
    width: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(123, 70, 56, 0.22);
    border-radius: 999px;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card h3 {
    max-width: 12rem;
    color: var(--ink);
    font-size: 1.55rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card ul {
    display: grid;
    gap: 9px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 24px;
    color: #3e3a36;
    font-weight: 700;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 11px;
    height: 2px;
    background: var(--green);
}

.service-note {
    margin-top: 20px;
    padding: 18px 20px;
    border-left: 5px solid var(--accent);
    border-radius: 8px;
    background: #202522;
    color: rgba(255, 255, 255, 0.82);
}

.service-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
}


.contact-section {
    display: grid;
    gap: 28px;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 70px 0;
}

.contact-image img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer a {
    text-decoration: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(10, 9, 8, 0.88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    width: min(100%, 1120px);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 12px;
    width: 20px;
    height: 2px;
    background: var(--white);
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

@media (min-width: 560px) {
    .hero-actions,
    .contact-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .button {
        min-width: 164px;
    }

    .trust-strip {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 820px) {
    .site-header {
        min-height: 76px;
        padding: 18px 36px;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-nav a {
        padding: 10px 12px;
    }

    .hero {
        min-height: calc(100svh - 76px);
        align-items: center;
    }

    .hero-content {
        width: min(1120px, calc(100% - 72px));
        padding-top: 42px;
    }

    .trust-strip div {
        padding: 28px 36px;
    }

    .section,
    .contact-section {
        padding: 96px 0;
    }

    .section-heading {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: end;
        margin-bottom: 44px;
    }

    .intro-grid,
    .contact-section {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: center;
    }

    .portrait-card {
        justify-self: end;
        width: min(360px, 100%);
    }

    .moment-list,
    .process-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .moment-card {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 16px;
    }

    .moment-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .contact-section {
        grid-template-columns: 0.78fr 1.22fr;
    }

    .contact-image {
        order: 2;
    }
}

@media (min-width: 1160px) {
    .gallery-item img {
        aspect-ratio: 5 / 4;
    }
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 60;
    transform: translateY(-140%);
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #1d5fd1;
    outline-offset: 4px;
}

main:focus {
    outline: none;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle span,
.button,
.site-nav a,
.gallery-item,
.lightbox-close {
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 220ms ease;
}

.hero-image {
    animation: hero-drift 18s ease-out both;
}

.hero-content > * {
    animation: rise-in 700ms ease both;
}

.hero-content > *:nth-child(2) {
    animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
    animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
    animation-delay: 270ms;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 560ms ease, transform 560ms ease;
}

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

.moment-card:hover,
.process-item:hover,
.service-card:hover,
.portrait-card:hover {
    transform: translateY(-3px);
}

.gallery-item:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.lightbox-close:focus-visible {
    outline: 3px solid #1d5fd1;
    outline-offset: 4px;
}

.button-primary:focus-visible {
    outline-color: #f4d6c9;
}

@keyframes hero-drift {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .hero-image,
    .hero-content > *,
    .reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.gallery-grid {
    gap: 18px;
}

.gallery-item {
    background: #181818;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(31, 27, 24, 0.12);
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    background: #181818;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: none;
    opacity: 0.92;
}

.process {
    position: relative;
    overflow: hidden;
    background: #202522;
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(216, 184, 169, 0.08), transparent 38%),
        radial-gradient(circle at 90% 10%, rgba(216, 184, 169, 0.14), transparent 28%);
    pointer-events: none;
}

.process .section-heading,
.process-list {
    position: relative;
    z-index: 1;
}

.process-list {
    position: relative;
    gap: 22px;
    background: transparent;
    border: 0;
}

.process-list::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 19px;
    width: 2px;
    background: linear-gradient(180deg, rgba(216, 184, 169, 0.18), rgba(216, 184, 169, 0.72), rgba(216, 184, 169, 0.18));
}

.process-item {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 210px;
    padding: 24px 22px 24px 64px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.process-item::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 32px;
    width: 18px;
    height: 18px;
    border: 3px solid #d8b8a9;
    border-radius: 50%;
    background: #202522;
    box-shadow: 0 0 0 7px rgba(216, 184, 169, 0.11);
}

.process-item span {
    position: absolute;
    top: 18px;
    right: 20px;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    color: rgba(216, 184, 169, 0.22);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 18vw, 5.4rem);
    font-weight: 500;
    line-height: 0.82;
}

.process-item h3,
.process-item p {
    position: relative;
    z-index: 1;
}

.process-item h3 {
    margin-top: 20px;
    max-width: 10rem;
    color: var(--white);
    font-size: 1.65rem;
}

.process-item p {
    max-width: 24rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

@media (min-width: 560px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 820px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .gallery-item img {
        aspect-ratio: 3 / 1;
    }

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

    .process-list::before {
        top: 52px;
        right: 12%;
        bottom: auto;
        left: 12%;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, rgba(216, 184, 169, 0.18), rgba(216, 184, 169, 0.72), rgba(216, 184, 169, 0.18));
    }

    .process-item {
        min-height: 330px;
        padding: 92px 24px 26px;
    }

    .process-item:nth-child(2) {
        margin-top: 42px;
    }

    .process-item:nth-child(3) {
        margin-top: 84px;
    }

    .process-item::before {
        top: 43px;
        left: 26px;
    }

    .process-item span {
        top: 26px;
        right: 22px;
    }

    .process-item h3 {
        margin-top: 0;
    }
}

@media (min-width: 1160px) {
    .gallery-item img {
        aspect-ratio: 3 / 1;
    }
}

.process-list {
    align-items: stretch;
}

.process-item {
    min-height: 250px;
    height: 100%;
}

@media (min-width: 820px) {
    .process-list {
        align-items: end;
    }

    .process-item {
        min-height: 300px;
        height: 300px;
    }

    .process-item:nth-child(2),
    .process-item:nth-child(3) {
        margin-top: 0;
    }
}

.process-item {
    min-height: 270px;
    padding: 28px 24px 28px 66px;
}

.process-item h3 {
    max-width: none;
    font-size: clamp(1.38rem, 7vw, 1.58rem);
    line-height: 1.12;
}

.process-item p {
    max-width: 28rem;
    line-height: 1.62;
}

@media (min-width: 820px) {
    .process-list {
        gap: 28px;
    }

    .process-item {
        min-height: 320px;
        height: 320px;
        padding: 96px 28px 30px;
    }

    .process-item h3 {
        font-size: clamp(1.32rem, 2vw, 1.52rem);
        white-space: nowrap;
    }
}

@media (min-width: 1040px) {
    .process-list {
        gap: 34px;
    }

    .process-item {
        padding-right: 32px;
        padding-left: 32px;
    }
}

.section-lead {
    max-width: 42rem;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

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

.world-card {
    position: relative;
    display: grid;
    min-height: 380px;
    align-content: end;
    overflow: hidden;
    padding: 22px;
    border-radius: 8px;
    background: #181818;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(31, 27, 24, 0.16);
    isolation: isolate;
}

.world-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
}

.world-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease, opacity 220ms ease;
}

.world-card:hover img,
.world-card:focus-visible img {
    transform: scale(1.04);
    opacity: 0.92;
}

.world-card span {
    margin-bottom: 8px;
    color: #f0d1c5;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.world-card h3 {
    max-width: 11rem;
    font-size: 1.85rem;
}

.world-card p {
    max-width: 22rem;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.gallery-hero {
    display: grid;
    gap: 0;
    background: #202522;
    color: var(--white);
}

.gallery-hero img {
    width: 100%;
    max-height: 58vh;
    object-fit: cover;
}

.gallery-hero > div {
    width: min(920px, calc(100% - 36px));
    margin: 0 auto;
    padding: 42px 0 52px;
}

.gallery-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 15vw, 6rem);
}

.gallery-hero p:not(.eyebrow) {
    max-width: 42rem;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.gallery-hero .button {
    margin-top: 26px;
}

.world-photo-grid {
    display: grid;
    gap: 14px;
}

.world-photo {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--soft);
    cursor: pointer;
}

.world-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 260ms ease, opacity 180ms ease;
}

.world-photo:hover img,
.world-photo:focus-visible img {
    transform: scale(1.025);
    opacity: 0.94;
}

.world-card:focus-visible,
.world-photo:focus-visible {
    outline: 3px solid #1d5fd1;
    outline-offset: 4px;
}

@media (min-width: 680px) {
    .world-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 980px) {
    .world-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-hero {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
        align-items: stretch;
        min-height: 68vh;
    }

    .gallery-hero img {
        height: 100%;
        max-height: none;
    }

    .gallery-hero > div {
        align-self: center;
        width: min(520px, calc(100% - 64px));
        padding: 72px 0;
    }
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 41;
    width: 48px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

.lightbox-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
}

.lightbox-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.lightbox-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-status {
    position: fixed;
    right: 18px;
    bottom: 14px;
    left: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    text-align: center;
}

@media (min-width: 760px) {
    .lightbox-nav {
        width: 56px;
        height: 78px;
    }

    .lightbox-prev {
        left: 26px;
    }

    .lightbox-next {
        right: 26px;
    }
}

.lightbox [data-lightbox-image] {
    position: relative;
    z-index: 42;
    display: block;
    width: auto;
    max-width: calc(100vw - 88px);
    max-height: calc(100vh - 112px);
    margin: auto;
}

@media (min-width: 720px) {
    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .service-card {
        min-height: 380px;
        padding: 28px 24px;
    }

    .service-note {
        display: grid;
        grid-template-columns: 0.42fr 1fr;
        gap: 18px;
        align-items: center;
        margin-top: 24px;
        padding: 22px 24px;
    }

    .service-note strong {
        margin-bottom: 0;
    }
}

@media (min-width: 1040px) {
    .service-grid {
        gap: 28px;
    }

    .service-card {
        min-height: 360px;
        padding: 32px 30px;
    }

    .service-card h3 {
        max-width: 14rem;
        font-size: 1.72rem;
    }
}

.process-cta {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: min(1120px, 100%);
    margin: 28px auto 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.075);
}

.process-cta p {
    max-width: 44rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.process-cta .button-secondary {
    width: fit-content;
    background: #f7eee9;
    color: #202522;
    border-color: transparent;
}

.services-hero {
    display: grid;
    gap: 28px;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 54px 0 40px;
}

.services-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 13vw, 5.8rem);
}

.services-hero p:not(.eyebrow) {
    max-width: 42rem;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.services-hero .button {
    margin-top: 26px;
}

.services-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
}

.service-flow {
    display: grid;
    gap: 18px;
    padding-top: 32px;
}

.service-panel {
    display: grid;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(31, 27, 24, 0.08);
}

.service-panel-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.service-panel-step span {
    color: rgba(123, 70, 56, 0.28);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 0.8;
}

.service-panel-step strong {
    color: var(--accent-strong);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.service-panel h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 3.5rem);
}

.service-panel p {
    max-width: 42rem;
    margin: 14px 0 0;
    color: var(--muted);
}

.service-panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-panel li {
    position: relative;
    padding-left: 26px;
    color: #3e3a36;
    font-weight: 750;
}

.service-panel li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 12px;
    height: 2px;
    background: var(--green);
}

.service-summary {
    width: min(920px, calc(100% - 36px));
    margin: 0 auto 72px;
    padding: 28px;
    border-radius: 8px;
    background: #202522;
    color: var(--white);
}

.service-summary .eyebrow {
    color: #d8b8a9;
}

.service-summary h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 3.7rem);
}

.service-summary p:not(.eyebrow) {
    max-width: 42rem;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.service-summary .button {
    margin-top: 24px;
}

@media (min-width: 760px) {
    .process-cta {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 24px 28px;
    }

    .services-hero {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
        align-items: center;
        padding: 84px 0 64px;
    }

    .services-hero img {
        aspect-ratio: 3 / 4;
    }

    .service-panel {
        grid-template-columns: 160px minmax(0, 1fr) minmax(220px, 0.62fr);
        align-items: start;
        padding: 30px;
    }

    .service-panel-step {
        display: grid;
        justify-content: start;
        border-right: 1px solid var(--line);
        border-bottom: 0;
        padding: 0 22px 0 0;
    }

    .service-panel-step span {
        font-size: 5.6rem;
    }
}
