.header-logo img,
.footer-logo img {
    width: 100%;
}

.header-logo,
.menu-toggle {
    position: relative;
    z-index: 2;
}

.primary-nav a {
    position: relative;
    color: var(--color-espresso);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(252, 250, 247, 0.5);
    text-transform: uppercase;
}

.primary-nav a:not(.nav-inquiry)::after {
    position: absolute;
    right: 0;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 350ms var(--ease-soft);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-inquiry {
    padding: 0.7rem 1.25rem;
    border: 1px solid rgba(70, 59, 54, 0.3);
    border-radius: var(--radius-pill);
    background: rgba(247, 243, 238, 0.18);
    transition: color 300ms ease, background 300ms ease, border-color 300ms ease;
}

.nav-inquiry:hover {
    border-color: var(--color-espresso);
    color: var(--color-chalk);
    background: var(--color-espresso);
    text-shadow: none;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem;
    border: 0;
    color: var(--color-espresso);
    background: none;
    cursor: pointer;
}

.menu-toggle__label {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu-toggle__lines {
    display: grid;
    gap: 5px;
    width: 1.35rem;
}

.menu-toggle__lines i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 300ms var(--ease-soft);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.hero__intro {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: var(--color-muted-ink);
    font-size: var(--text-base);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.25rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 3.6rem;
    padding: 0.85rem 1.6rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 350ms ease, background 350ms ease, border-color 350ms ease, transform 350ms var(--ease-soft), box-shadow 350ms ease;
}

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

.button--primary {
    color: var(--color-chalk);
    background: var(--color-espresso);
    box-shadow: 0 0.8rem 2rem rgba(70, 59, 54, 0.14);
}

.button--primary:hover {
    background: var(--color-sage-charcoal);
    box-shadow: 0 1.2rem 2.8rem rgba(70, 59, 54, 0.2);
}

.text-link {
    display: inline-block;
    padding-block: 0.25rem;
    border-bottom: 1px solid currentColor;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.6;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 250ms ease, padding 350ms var(--ease-soft);
}

.text-link:hover {
    padding-inline: 0.35rem;
    color: var(--color-sage-charcoal);
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    color: var(--color-muted-ink);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    width: 1px;
    height: 2.2rem;
    overflow: hidden;
    background: rgba(70, 59, 54, 0.2);
}

.scroll-cue i::after {
    display: block;
    width: 100%;
    height: 45%;
    content: "";
    background: var(--color-espresso);
    animation: scroll-line 2s var(--ease-soft) infinite;
}

.story__heading h2 {
    max-width: 49rem;
}

.story__copy p:not(:last-child) {
    margin-bottom: 1.5rem;
}

.signature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.4rem;
    color: var(--color-champagne);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
}

.signature::before {
    width: 2.5rem;
    height: 1px;
    content: "";
    background: currentColor;
}

.offering-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 34rem;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-lg);
    box-shadow: 0 1rem 4rem rgba(70, 59, 54, 0.06);
    isolation: isolate;
    transition: transform 600ms var(--ease-soft), box-shadow 600ms ease;
}

.offering-card:hover {
    transform: translateY(-0.55rem);
    box-shadow: var(--shadow-paper);
}

.offering-card--blush {
    background: var(--color-blush);
}

.offering-card--sage {
    background: var(--color-sage);
}

.offering-card--lavender {
    background: var(--color-lavender);
}

.offering-card__number {
    position: absolute;
    top: 1.8rem;
    left: 2rem;
    color: rgba(70, 59, 54, 0.55);
    font-family: var(--font-display);
    font-size: 1rem;
}

.offering-card__motif {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(252, 250, 247, 0.42);
    box-shadow: 0 1.25rem 3rem rgba(70, 59, 54, 0.06);
    transition: transform 900ms var(--ease-soft);
}

.offering-card:hover .offering-card__motif {
    transform: translateY(-0.4rem) rotate(2deg);
}

.offering-card__motif--arch {
    top: 3rem;
    right: -2rem;
    width: 72%;
    height: 53%;
    border-radius: 50% 50% 1.5rem 1.5rem;
}

.offering-card__motif--fold {
    top: 5.2rem;
    right: 2.2rem;
    width: 63%;
    height: 39%;
    border-radius: 55% 1.5rem 55% 1.5rem;
    transform: rotate(-4deg);
}

.offering-card:hover .offering-card__motif--fold {
    transform: translateY(-0.4rem) rotate(-1deg);
}

.offering-card__motif--ribbon {
    top: -8%;
    right: 7%;
    width: 46%;
    height: 65%;
    border-radius: 50%;
    transform: rotate(25deg);
}

.offering-card:hover .offering-card__motif--ribbon {
    transform: translateY(-0.4rem) rotate(28deg);
}

.offering-card__content {
    display: grid;
    grid-template-rows: 1.4rem 3.7rem 5.25rem;
    max-width: 24rem;
}

.offering-card__content .eyebrow {
    margin-bottom: 0;
}

.offering-card__content h3 {
    margin-bottom: 0;
    align-self: center;
}

.offering-card__content > p:last-child {
    margin-bottom: 0;
    color: rgba(70, 59, 54, 0.76);
    font-size: var(--text-sm);
}

.work-project__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    border-radius: min(4vw, 3.5rem) min(4vw, 3.5rem) var(--radius-lg) var(--radius-lg);
    background: var(--color-blush);
    box-shadow: var(--shadow-paper);
}

.work-project__visual--landscape {
    aspect-ratio: 5 / 2;
    border-radius: var(--radius-lg) min(3vw, 2.5rem) var(--radius-lg) var(--radius-lg);
}

.work-project--featured .work-project__visual {
    height: clamp(32rem, 72svh, 48rem);
    aspect-ratio: auto;
}

.work-project__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease-soft);
}

.work-project:hover .work-project__visual img {
    transform: scale(1.025);
}

.work-project__index {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    color: var(--color-espresso);
    background: rgba(247, 243, 238, 0.78);
    font-family: var(--font-display);
    font-size: 0.8rem;
}

.work-project__details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.8fr);
    align-items: end;
    gap: 2rem;
    padding-top: 1.6rem;
}

.work-project__details .eyebrow {
    margin-bottom: 0.55rem;
}

.work-project__details h3 {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.work-project__details > p {
    margin-bottom: 0.25rem;
    color: var(--color-muted-ink);
    font-size: var(--text-sm);
}

.work-project:not(.work-project--featured) .work-project__details {
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.selected-work__disclaimer {
    max-width: 42rem;
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    color: var(--color-muted-ink);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.collection__visual {
    position: relative;
    min-height: 42rem;
    overflow: hidden;
    border-radius: 48% 48% var(--radius-lg) var(--radius-lg) / 18% 18% var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-paper);
}

.collection__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    transition: transform 1.2s var(--ease-soft);
}

.collection__visual:hover img {
    transform: scale(1.025);
}

.collection__tag {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    background: rgba(252, 250, 247, 0.9);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.collection__content h2 {
    margin-bottom: 2rem;
}

.collection__content p:not(.eyebrow) {
    color: var(--color-muted-ink);
}

.collection__content .text-link {
    margin-top: 1rem;
}

.process h2 em {
    color: var(--color-clay);
}

.process-step {
    display: grid;
    grid-template-columns: minmax(4rem, 0.45fr) minmax(0, 1.55fr);
    align-items: start;
    gap: 2rem;
    padding-block: clamp(2rem, 4vw, 3.4rem);
    border-top: 1px solid rgba(252, 250, 247, 0.18);
}

.process-step:last-child {
    border-bottom: 1px solid rgba(252, 250, 247, 0.18);
}

.process-step > span {
    color: var(--color-clay);
    font-family: var(--font-display);
}

.process-step > div {
    display: grid;
    grid-template-columns: minmax(10rem, 0.6fr) minmax(16rem, 1fr);
    align-items: baseline;
    gap: 2rem;
}

.process-step p {
    max-width: 36rem;
    margin: 0;
    color: rgba(252, 250, 247, 0.62);
}

.inquiry::before {
    position: absolute;
    z-index: -3;
    inset: 0;
    content: "";
    background: linear-gradient(135deg, var(--color-ivory), var(--color-blush));
}

.inquiry__shape {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
}

.inquiry__shape--one {
    top: -24rem;
    left: -10rem;
    width: 48rem;
    height: 48rem;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(252, 250, 247, 0.34);
}

.inquiry__shape--two {
    right: -8rem;
    bottom: -26rem;
    width: 48rem;
    height: 48rem;
    border: 1px solid rgba(89, 96, 87, 0.1);
    background: rgba(217, 222, 213, 0.48);
}

.inquiry h2 {
    margin-bottom: 1.7rem;
}

.inquiry__content > p:not(.eyebrow) {
    max-width: 39rem;
    margin-bottom: 2rem;
    color: var(--color-muted-ink);
}

.footer-logo {
    width: 10rem;
}

.site-footer__inner > p {
    max-width: 25rem;
    margin-bottom: 0;
    color: var(--color-muted-ink);
    font-size: var(--text-sm);
}

.site-footer__links {
    display: flex;
    gap: 2rem;
}

.site-footer__links a {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-underline-offset: 0.4rem;
}

.site-footer__copyright {
    text-align: right;
}

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

    .primary-nav a {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-family: var(--font-display);
        font-size: clamp(2.6rem, 10vw, 4.6rem);
        font-weight: 400;
        letter-spacing: -0.03em;
        text-transform: none;
    }

    .primary-nav .nav-inquiry {
        margin-top: 1rem;
        padding: 0.3rem 1.3rem 0.55rem;
        border: 1px solid rgba(70, 59, 54, 0.3);
        border-radius: var(--radius-pill);
    }

    .process-step > div {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .offering-card__content {
        grid-template-rows: auto auto auto;
        gap: 0.7rem;
    }

    .work-project__details,
    .work-project:not(.work-project--featured) .work-project__details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .work-project--featured .work-project__visual {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .site-footer__links {
        justify-content: flex-end;
    }
}

@media (max-width: 600px) {
    .header-logo {
        width: 7.5rem;
    }

    .hero__content .eyebrow {
        margin-bottom: 1rem;
    }

    .hero__title {
        font-size: clamp(3.15rem, 15vw, 4.7rem);
    }

    .hero__intro {
        margin-top: 1.25rem;
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.3rem;
        margin-top: 1.5rem;
    }

    .scroll-cue {
        display: none;
    }

    .offering-card {
        min-height: 29rem;
    }

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

    .site-footer__links {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .site-footer__copyright {
        text-align: left;
    }
}
