:root {
    --zwi-olive: #253024;
    --zwi-olive-deep: #172018;
    --zwi-olive-soft: #354032;
    --zwi-cream: #f2efe7;
    --zwi-paper: #e9e5da;
    --zwi-ink: #2d302c;
    --zwi-muted: #74766d;
    --zwi-rust: #b95735;
    --zwi-rust-dark: #934329;
    --zwi-line: rgba(45, 48, 44, 0.18);
    --zwi-line-light: rgba(242, 239, 231, 0.25);
    --zwi-serif: "Playfair Display", Georgia, serif;
    --zwi-sans: "DM Sans", Arial, sans-serif;
    --zwi-gutter: clamp(1.25rem, 4vw, 4.5rem);
    --zwi-max: 1440px;
    --zwi-canvas: 1600px;
}

html {
    scroll-behavior: smooth;
}

body.zwi-site {
    margin: 0;
    color: var(--zwi-ink);
    background: var(--zwi-cream);
    font-family: var(--zwi-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.zwi-site * {
    box-sizing: border-box;
}

body.zwi-site img {
    display: block;
    max-width: 100%;
}

body.zwi-site a {
    color: inherit;
    text-decoration: none;
}

body.zwi-site button,
body.zwi-site input,
body.zwi-site select,
body.zwi-site textarea {
    font: inherit;
}

body.zwi-site h1,
body.zwi-site h2,
body.zwi-site h3,
body.zwi-site p {
    margin-top: 0;
}

body.zwi-site h1,
body.zwi-site h2 {
    font-family: var(--zwi-serif);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

body.zwi-site h1 em,
body.zwi-site h2 em {
    font-style: italic;
    letter-spacing: -0.055em;
}

.zwi-container {
    width: min(100% - (var(--zwi-gutter) * 2), var(--zwi-max));
    margin-inline: auto;
}

.zwi-skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.6rem 0.8rem;
    color: var(--zwi-ink);
    background: var(--zwi-cream);
    transform: translateY(-200%);
}

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

.zwi-header {
    position: relative;
    z-index: 20;
    color: var(--zwi-cream);
    background: var(--zwi-olive);
}

.zwi-overlay-header .zwi-header {
    position: absolute;
    inset: 0 0 auto;
    background: transparent;
}

.zwi-overlay-header .zwi-header--scrolled {
    background: rgba(23, 32, 24, 0.94);
    backdrop-filter: blur(10px);
}

.zwi-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - (var(--zwi-gutter) * 2), var(--zwi-max));
    min-height: 6.5rem;
    margin-inline: auto;
}

.zwi-brand {
    display: inline-flex;
    align-items: center;
    width: 15rem;
    min-width: 15rem;
}

.zwi-brand img {
    width: auto;
    max-width: 11rem;
    max-height: 3.6rem;
    object-fit: contain;
    object-position: left center;
}

.zwi-brand__custom {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--zwi-cream);
}

.zwi-brand__letters {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--zwi-serif);
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: -0.16em;
    line-height: 0.8;
}

.zwi-brand__letters strong {
    color: var(--zwi-cream);
    font-weight: 400;
}

.zwi-brand__letters b {
    color: var(--zwi-rust);
    font-weight: 500;
}

.zwi-brand__tagline {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 2.16rem;
    padding-left: 0.45rem;
    border-left: 1px solid rgba(242, 239, 231, 0.65);
    color: rgba(242, 239, 231, 0.75);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: normal;
    text-transform: uppercase;
}

.zwi-brand__tagline > span {
    display: block;
}

.zwi-brand__fallback {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0.05rem;
    color: var(--zwi-cream);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.zwi-brand__fallback small {
    position: absolute;
    top: 2.4rem;
    left: 0;
    width: 9rem;
    font-size: 0.35rem;
    letter-spacing: 0.22em;
}

.zwi-nav__list,
.zwi-mobile-nav__list,
.zwi-footer__nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.6vw, 3rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.zwi-nav__list a,
.zwi-footer__nav-list a {
    position: relative;
    display: inline-flex;
    padding: 0.5rem 0;
    color: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.zwi-nav__list a::after {
    position: absolute;
    right: 0;
    bottom: 0.1rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.zwi-nav__list a:hover::after,
.zwi-nav__list .current-menu-item a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.zwi-menu-toggle {
    display: none;
    align-items: center;
    gap: 0.7rem;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.zwi-menu-toggle__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.zwi-menu-toggle__icon {
    display: grid;
    gap: 0.35rem;
    width: 1.5rem;
}

.zwi-menu-toggle__icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.zwi-menu-toggle[aria-expanded="true"] .zwi-menu-toggle__icon i:first-child {
    transform: translateY(0.2rem) rotate(45deg);
}

.zwi-menu-toggle[aria-expanded="true"] .zwi-menu-toggle__icon i:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
}

.zwi-mobile-nav {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 30;
    max-height: calc(100svh - 5rem);
    overflow-y: auto;
    padding: 1rem var(--zwi-gutter) 2rem;
    border-top: 1px solid var(--zwi-line-light);
    background: var(--zwi-olive-deep);
    box-shadow: 0 1rem 2rem rgba(10, 15, 11, 0.22);
}

.zwi-mobile-nav__list {
    display: grid;
    gap: 0;
}

.zwi-mobile-nav__list a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--zwi-line-light);
    font-family: var(--zwi-serif);
    font-size: 1.75rem;
}

.zwi-mobile-nav__meta {
    margin: 1.3rem 0 0;
    color: rgba(242, 239, 231, 0.65);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zwi-main {
    overflow: hidden;
}

.zwi-eyebrow {
    margin-bottom: 1.2rem;
    color: currentColor;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.zwi-eyebrow::after {
    display: block;
    width: 1.75rem;
    height: 1px;
    margin-top: 0.75rem;
    background: currentColor;
    content: "";
    opacity: 0.7;
}

.zwi-eyebrow--dark {
    color: var(--zwi-olive);
}

.zwi-eyebrow--muted {
    color: rgba(242, 239, 231, 0.55);
}

.zwi-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    min-width: 13rem;
    padding: 1rem 1.35rem;
    color: var(--zwi-cream) !important;
    background: var(--zwi-rust);
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 180ms ease, transform 180ms ease;
}

.zwi-button:hover {
    background: var(--zwi-rust-dark);
    transform: translateY(-2px);
}

.zwi-button:visited,
.zwi-button:focus,
.zwi-button:hover,
.zwi-button span {
    color: var(--zwi-cream) !important;
}

.zwi-button span,
.zwi-text-link span {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1;
}

.zwi-arrow-mark {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 0.9rem;
    height: 0.9rem;
    font-size: 0;
}

.zwi-arrow-mark svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.zwi-button--rust {
    color: var(--zwi-cream) !important;
    background: var(--zwi-rust);
}

.zwi-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    width: fit-content;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid currentColor;
    color: var(--zwi-olive);
    font-size: 0.78rem;
    font-weight: 500;
}

.zwi-text-link--light {
    color: var(--zwi-cream);
}

.zwi-text-link:hover span {
    transform: translateX(0.25rem);
}

.zwi-text-link span {
    transition: transform 180ms ease;
}

.zwi-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.8rem 2rem;
}

.zwi-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-inline: 0;
    min-height: max(42rem, 100svh);
    color: var(--zwi-cream);
    background: var(--zwi-olive);
    overflow: hidden;
}

.zwi-hero,
.zwi-hero h1,
.zwi-hero h1 em,
.zwi-hero .zwi-eyebrow,
.zwi-hero__lede,
.zwi-hero .zwi-text-link,
.zwi-hero__scroll {
    color: var(--zwi-cream) !important;
}

.zwi-hero__image,
.zwi-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.zwi-hero__image {
    object-fit: cover;
    object-position: center;
}

.zwi-hero__veil {
    background:
        linear-gradient(90deg, rgba(23, 32, 24, 0.96) 0%, rgba(23, 32, 24, 0.78) 32%, rgba(23, 32, 24, 0.16) 75%, rgba(23, 32, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(23, 32, 24, 0.42), transparent 42%);
}

.zwi-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 7rem 6rem;
}

.zwi-hero h1 {
    max-width: 48rem;
    margin-bottom: 1.8rem;
    font-size: clamp(3.6rem, 8.6vw, 8rem);
}

.zwi-hero__lede {
    max-width: 34rem;
    margin-bottom: 2.1rem;
    color: rgba(242, 239, 231, 0.82);
    font-size: clamp(0.95rem, 1.4vw, 1.12rem);
}

.zwi-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(242, 239, 231, 0.75);
    border-radius: 50%;
    color: var(--zwi-cream);
    transform: translateX(-50%);
}

.zwi-story {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    min-height: 43rem;
    background: var(--zwi-paper);
}

.zwi-story__image-wrap {
    position: relative;
    min-height: 36rem;
    overflow: hidden;
    background: #735039;
}

.zwi-story__image {
    width: 100%;
    height: 100%;
    min-height: 36rem;
    object-fit: cover;
}

.zwi-image-note {
    position: absolute;
    right: 1.5rem;
    bottom: 1.3rem;
    color: rgba(242, 239, 231, 0.8);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.zwi-story__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(100% - 10vw, 38rem);
    margin-inline: auto;
    padding-block: 6rem;
}

.zwi-story__copy h2,
.zwi-section-heading h2,
.zwi-intro-block h2,
.zwi-faq-intro h2,
.zwi-contact-details h2,
.zwi-contact-form h2 {
    margin-bottom: 1.75rem;
    color: var(--zwi-olive);
    font-size: clamp(2.6rem, 4.7vw, 4.8rem);
}

.zwi-story__copy p:not(.zwi-eyebrow),
.zwi-intro-block__copy p,
.zwi-timber-story__copy p,
.zwi-contact-details__list,
.zwi-contact-form__head {
    max-width: 35rem;
}

.zwi-story__copy p:not(.zwi-eyebrow) {
    margin-bottom: 1.1rem;
    color: rgba(45, 48, 44, 0.8);
    font-size: 0.94rem;
}

.zwi-story__copy .zwi-text-link {
    margin-top: 1.2rem;
}

.zwi-capabilities,
.zwi-local,
.zwi-products,
.zwi-faq-intro,
.zwi-contact-main,
.zwi-generic-page {
    padding-block: clamp(5rem, 10vw, 10rem);
    background: var(--zwi-cream);
}

.zwi-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.65fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
}

.zwi-section-heading h2 {
    margin-bottom: 0;
}

.zwi-section-heading > p {
    max-width: 28rem;
    margin: 0 0 0.4rem;
    color: rgba(45, 48, 44, 0.72);
}

.zwi-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--zwi-line);
}

.zwi-capability-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 1.35rem 1.25rem 1.25rem;
    border-right: 1px solid var(--zwi-line);
    border-bottom: 1px solid var(--zwi-line);
}

.zwi-capability-card:first-child {
    border-left: 1px solid var(--zwi-line);
}

.zwi-card-index,
.zwi-product-item > span,
.zwi-benefit > span,
.zwi-process-band__grid span {
    color: var(--zwi-rust);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.zwi-capability-card h3,
.zwi-benefit h3,
.zwi-process-band h3,
.zwi-product-item h3 {
    margin: 2.4rem 0 0.65rem;
    color: var(--zwi-olive);
    font-family: var(--zwi-serif);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.1;
}

.zwi-capability-card p,
.zwi-benefit p,
.zwi-process-band p {
    margin-bottom: 0;
    color: rgba(45, 48, 44, 0.68);
    font-size: 0.85rem;
    line-height: 1.65;
}

.zwi-capability-card > a {
    align-self: flex-end;
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 1.15rem;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--zwi-olive);
    font-size: 0;
}

.zwi-capability-card > a .zwi-arrow-mark {
    color: currentColor;
}

.zwi-proof {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    color: var(--zwi-cream);
    background: var(--zwi-olive);
}

.zwi-proof,
.zwi-proof h2,
.zwi-proof h2 em,
.zwi-proof .zwi-eyebrow,
.zwi-proof .zwi-text-link {
    color: var(--zwi-cream) !important;
}

.zwi-proof__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(4rem, 9vw, 9rem) clamp(2rem, 7vw, 7rem);
}

.zwi-proof h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(2.8rem, 5.3vw, 5rem);
}

.zwi-proof__copy > p:not(.zwi-eyebrow) {
    max-width: 26rem;
    margin-bottom: 2rem;
    color: rgba(242, 239, 231, 0.75);
    font-size: 0.95rem;
}

.zwi-proof__image-wrap {
    min-height: 38rem;
    overflow: hidden;
}

.zwi-proof__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zwi-home-cta,
.zwi-page-cta {
    background: var(--zwi-paper);
}

.zwi-home-cta__inner,
.zwi-page-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-block: clamp(5rem, 10vw, 10rem);
}

.zwi-home-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: clamp(3rem, 9vw, 9rem);
    align-items: end;
}

.zwi-page-cta__inner {
    align-items: center;
    text-align: center;
}

.zwi-page-cta__inner .zwi-eyebrow::after {
    margin-inline: auto;
}

.zwi-page-cta__inner .zwi-actions {
    justify-content: center;
}

.zwi-home-cta__copy {
    max-width: 44rem;
}

.zwi-home-cta__aside {
    justify-self: end;
    max-width: 26rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zwi-line);
}

.zwi-home-cta__aside > p:not(.zwi-eyebrow) {
    margin-bottom: 1.5rem;
    color: rgba(45, 48, 44, 0.72);
    font-size: 1rem;
    line-height: 1.65;
}

.zwi-home-cta__aside .zwi-eyebrow {
    margin-bottom: 1.35rem;
}

.zwi-home-cta h2,
.zwi-page-cta h2 {
    margin-bottom: 2rem;
    color: var(--zwi-olive);
    font-size: clamp(3.3rem, 7.5vw, 7.2rem);
}

.zwi-footer {
    color: var(--zwi-cream);
    background: var(--zwi-olive-deep);
}

.zwi-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(12rem, 0.75fr) minmax(9rem, 0.5fr);
    gap: 3rem;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.zwi-footer h2 {
    margin-bottom: 2rem;
    color: var(--zwi-cream);
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.zwi-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding-top: 0.1rem;
    color: rgba(242, 239, 231, 0.7);
    font-size: 0.85rem;
}

.zwi-footer__contact address {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.65;
}

.zwi-footer__contact a:hover,
.zwi-footer__nav-list a:hover,
.zwi-footer__bottom a:hover {
    color: #fff;
}

.zwi-footer__nav-list {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0.4rem;
}

.zwi-footer__nav-list a {
    color: rgba(242, 239, 231, 0.7);
}

.zwi-footer__nav-extra {
    display: grid;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--zwi-line-light);
}

.zwi-footer__nav-extra .zwi-eyebrow {
    margin-bottom: 0.35rem;
}

.zwi-footer__nav-extra a {
    color: rgba(242, 239, 231, 0.7);
    font-size: 0.78rem;
}

.zwi-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1rem 1.5rem;
    border-top: 1px solid var(--zwi-line-light);
    color: rgba(242, 239, 231, 0.45);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.zwi-footer__bottom p {
    margin: 0;
}

/* Interior page hero */
.zwi-page-hero {
    position: relative;
    display: grid;
    width: 100%;
    margin-inline: 0;
    min-height: min(50rem, 88svh);
    color: var(--zwi-cream);
    background: var(--zwi-olive);
    overflow: hidden;
}

.zwi-page-hero,
.zwi-page-hero h1,
.zwi-page-hero h1 em,
.zwi-page-hero .zwi-eyebrow,
.zwi-page-hero__copy > p:not(.zwi-eyebrow),
.zwi-page-hero .zwi-text-link {
    color: var(--zwi-cream) !important;
}

.zwi-page-hero--split,
.zwi-page-hero--material,
.zwi-page-hero--faq {
    display: block;
}

.zwi-page-hero--split::before,
.zwi-page-hero--faq::before,
.zwi-page-hero--material::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 32, 24, 0.96) 0%, rgba(23, 32, 24, 0.78) 32%, rgba(23, 32, 24, 0.16) 75%, rgba(23, 32, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(23, 32, 24, 0.42), transparent 42%);
    content: "";
    pointer-events: none;
}

.zwi-page-hero--material::before {
    background:
        linear-gradient(270deg, rgba(23, 32, 24, 0.96) 0%, rgba(23, 32, 24, 0.78) 32%, rgba(23, 32, 24, 0.16) 75%, rgba(23, 32, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(23, 32, 24, 0.42), transparent 42%);
}

.zwi-page-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: min(50rem, 88svh);
    padding: 8rem clamp(2rem, 4vw, 4rem) 5rem max(var(--zwi-gutter), calc((100vw - var(--zwi-max)) / 2));
}

.zwi-page-hero--split .zwi-page-hero__copy {
    width: 62%;
}

.zwi-page-hero--material .zwi-page-hero__copy {
    width: 62%;
    margin-left: auto;
}

.zwi-page-hero--faq .zwi-page-hero__copy {
    width: 62%;
}

.zwi-page-hero__copy h1 {
    max-width: 52rem;
    margin-bottom: 1.7rem;
    font-size: clamp(3.4rem, 5.2vw, 5.6rem);
    line-height: 0.98;
    text-wrap: balance;
}

.zwi-page-hero__copy > p:not(.zwi-eyebrow) {
    max-width: 31rem;
    margin-bottom: 2rem;
    color: rgba(242, 239, 231, 0.76);
    font-size: 0.98rem;
}

.zwi-page-hero__image-wrap,
.zwi-page-hero__material-image {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.zwi-page-hero__image-wrap::after,
.zwi-page-hero__material-image::after {
    content: none;
}

.zwi-page-hero__image-wrap img,
.zwi-page-hero__material-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.zwi-page-hero__image-wrap,
.zwi-page-hero__material-image,
.zwi-page-hero__faq-mark {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.zwi-page-hero--split .zwi-page-hero__image-wrap img,
.zwi-page-hero--faq .zwi-page-hero__faq-mark img {
    object-position: 66% center;
}

.zwi-page-hero--material .zwi-page-hero__material-image img {
    object-position: 42% center;
}

.zwi-page-hero--material {
    isolation: isolate;
}

.zwi-page-hero--material .zwi-page-hero__copy {
    padding-left: clamp(2rem, 6vw, 6rem);
    padding-right: max(var(--zwi-gutter), calc((100vw - var(--zwi-max)) / 2 + var(--zwi-gutter)));
    padding-bottom: 3.4rem;
}

.zwi-page-hero--material .zwi-page-hero__copy > p:not(.zwi-eyebrow) {
    max-width: 34rem;
}

.zwi-intro-block__grid,
.zwi-faq-intro__grid {
    display: grid;
    grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1.55fr);
    gap: 3rem;
}

.zwi-intro-block {
    padding-block: clamp(5rem, 9vw, 9rem);
    background: var(--zwi-cream);
}

.zwi-intro-block__copy {
    max-width: 44rem;
}

.zwi-intro-block__copy h2 {
    margin-bottom: 2.1rem;
}

.zwi-intro-block__copy p,
.zwi-faq-intro__grid p:not(.zwi-eyebrow) {
    color: rgba(45, 48, 44, 0.75);
    font-size: 1rem;
}

.zwi-products {
    background: var(--zwi-paper);
}

.zwi-products__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--zwi-line);
}

.zwi-product-item {
    position: relative;
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 7rem;
    padding: 1.1rem 1rem;
    border-bottom: 1px solid var(--zwi-line);
}

.zwi-product-item:nth-child(odd) {
    border-right: 1px solid var(--zwi-line);
}

.zwi-product-item h3 {
    margin: 0;
    font-size: 1.35rem;
}

.zwi-product-item i {
    color: var(--zwi-rust);
    font-style: normal;
}

.zwi-process-band,
.zwi-page-cta--olive {
    color: var(--zwi-cream);
    background: var(--zwi-olive);
}

.zwi-process-band,
.zwi-process-band h3,
.zwi-process-band .zwi-eyebrow,
.zwi-page-cta--olive,
.zwi-page-cta--olive h2,
.zwi-page-cta--olive h2 em,
.zwi-page-cta--olive .zwi-eyebrow,
.zwi-page-cta--olive .zwi-button {
    color: var(--zwi-cream) !important;
}

.zwi-process-band {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.zwi-process-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.zwi-process-band__grid > div {
    padding-top: 1rem;
    border-top: 1px solid var(--zwi-line-light);
}

.zwi-process-band h3 {
    margin-top: 2.3rem;
    color: var(--zwi-cream);
    font-size: 2rem;
}

.zwi-process-band p {
    color: rgba(242, 239, 231, 0.7);
}

.zwi-page-cta__inner .zwi-actions {
    margin-top: 0.2rem;
}

.zwi-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--zwi-line);
}

.zwi-benefit {
    min-height: 18rem;
    padding: 1.6rem 1.4rem 2rem;
    border-right: 1px solid var(--zwi-line);
    border-bottom: 1px solid var(--zwi-line);
}

.zwi-benefit:nth-child(3n + 1) {
    border-left: 1px solid var(--zwi-line);
}

.zwi-benefit h3 {
    margin-top: 3.6rem;
    font-size: 1.55rem;
}

.zwi-timber-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: var(--zwi-paper);
}

.zwi-timber-story__image-wrap {
    min-height: 45rem;
    overflow: hidden;
}

.zwi-timber-story__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zwi-timber-story__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 7rem);
}

.zwi-timber-story__copy h2 {
    margin-bottom: 1.7rem;
    color: var(--zwi-olive);
    font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.zwi-timber-story__copy p:not(.zwi-eyebrow) {
    color: rgba(45, 48, 44, 0.72);
    font-size: 0.94rem;
}

.zwi-timber-story__copy .zwi-text-link {
    margin-top: 1.2rem;
}

/* FAQ */
.zwi-page-hero--faq {
    grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
    background: var(--zwi-olive-deep);
}

.zwi-page-hero__faq-mark {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: var(--zwi-olive);
}

.zwi-page-hero__faq-mark::after {
    content: none;
}

.zwi-page-hero--faq .zwi-page-hero__faq-mark::after {
    content: none;
}

.zwi-page-hero__faq-mark img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

.zwi-page-hero__faq-mark span {
    position: absolute;
    z-index: 2;
    right: 1.5rem;
    bottom: 1.3rem;
    color: rgba(242, 239, 231, 0.86);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.zwi-faq-intro__grid > div {
    max-width: 48rem;
}

.zwi-faq-intro__grid h2 {
    margin-bottom: 2rem;
}

.zwi-faq-list {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--zwi-paper);
}

.zwi-faq-item {
    border-top: 1px solid var(--zwi-line);
}

.zwi-faq-item:last-child {
    border-bottom: 1px solid var(--zwi-line);
}

.zwi-faq-item summary {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr) 2rem;
    gap: 1rem;
    align-items: center;
    padding: 1.6rem 0;
    cursor: pointer;
    list-style: none;
}

.zwi-faq-item summary::-webkit-details-marker {
    display: none;
}

.zwi-faq-item__number {
    color: var(--zwi-rust);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.zwi-faq-item__question {
    color: var(--zwi-olive);
    font-family: var(--zwi-serif);
    font-size: clamp(1.35rem, 2.5vw, 2.1rem);
    line-height: 1.15;
}

.zwi-faq-item__icon {
    justify-self: end;
    color: var(--zwi-rust);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 180ms ease;
}

.zwi-faq-item[open] .zwi-faq-item__icon {
    transform: rotate(45deg);
}

.zwi-faq-item__answer {
    max-width: 48rem;
    padding: 0 3rem 1.8rem 5rem;
}

.zwi-faq-item__answer p {
    margin: 0;
    color: rgba(45, 48, 44, 0.72);
    font-size: 0.95rem;
}

.zwi-page-cta--olive h2 {
    color: var(--zwi-cream);
}

/* Contact */
.zwi-contact-hero {
    width: 100%;
    margin-inline: 0;
    color: var(--zwi-cream);
    background:
        linear-gradient(90deg, rgba(23, 32, 24, 0.96) 0%, rgba(23, 32, 24, 0.78) 32%, rgba(23, 32, 24, 0.16) 75%, rgba(23, 32, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(23, 32, 24, 0.42), transparent 42%),
        url('../images/zwi-hospitality-interior.webp') center / cover;
    overflow: hidden;
}

.zwi-contact-hero,
.zwi-contact-hero h1,
.zwi-contact-hero h1 em,
.zwi-contact-hero .zwi-eyebrow,
.zwi-contact-hero__inner > p:not(.zwi-eyebrow) {
    color: var(--zwi-cream) !important;
}

.zwi-contact-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: min(50rem, 88svh);
    padding-block: 8rem 5rem;
}

.zwi-contact-hero h1 {
    margin-bottom: 1.7rem;
    font-size: clamp(3.4rem, 5.2vw, 5.6rem);
    line-height: 0.98;
    text-wrap: balance;
}

.zwi-contact-hero__inner > p:not(.zwi-eyebrow) {
    max-width: 36rem;
    margin-bottom: 0;
    color: rgba(242, 239, 231, 0.76);
    font-size: 1.02rem;
}

.zwi-contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.zwi-contact-details h2 {
    font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.zwi-contact-details__list {
    display: grid;
    gap: 1.4rem;
    margin-top: 3rem;
}

.zwi-contact-details__list > div {
    padding-top: 0.8rem;
    border-top: 1px solid var(--zwi-line);
}

.zwi-contact-details__list span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--zwi-muted);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.zwi-contact-details__list address,
.zwi-contact-details__list a {
    color: var(--zwi-olive);
    font-size: 0.95rem;
    font-style: normal;
}

.zwi-contact-details__list a:hover {
    color: var(--zwi-rust);
}

.zwi-contact-form {
    padding: clamp(2rem, 5vw, 4.5rem);
    background: #ded9ce;
}

.zwi-contact-form h2 {
    margin-bottom: 2.5rem;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.zwi-preserved-form {
    color: var(--zwi-ink);
}

.zwi-preserved-form form {
    display: grid;
    gap: 1rem;
}

.zwi-preserved-form label,
.zwi-preserved-form .wpcf7-form-control-wrap,
.zwi-preserved-form .wpforms-field {
    display: block;
}

.zwi-preserved-form label,
.zwi-preserved-form .wpforms-field-label {
    color: var(--zwi-olive);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.zwi-preserved-form input:not([type="submit"]),
.zwi-preserved-form textarea,
.zwi-preserved-form select,
.zwi-preserved-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.8rem 0;
    border: 0;
    border-bottom: 1px solid rgba(45, 48, 44, 0.3);
    border-radius: 0;
    color: var(--zwi-ink);
    background: transparent;
    outline: 0;
}

.zwi-preserved-form textarea {
    min-height: 7rem;
    resize: vertical;
}

.zwi-preserved-form input:focus,
.zwi-preserved-form textarea:focus,
.zwi-preserved-form select:focus {
    border-color: var(--zwi-rust);
}

.zwi-preserved-form input[type="submit"],
.zwi-preserved-form button,
.zwi-preserved-form .wpcf7-submit,
.zwi-preserved-form .wpforms-submit {
    width: fit-content;
    margin-top: 0.8rem;
    padding: 0.9rem 1.4rem;
    border: 0;
    border-radius: 0;
    color: var(--zwi-cream) !important;
    background: var(--zwi-rust);
    cursor: pointer;
}

.zwi-contact-note {
    color: var(--zwi-cream);
    background: var(--zwi-olive);
}

.zwi-contact-note__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 2.5rem;
}

.zwi-contact-note__inner p:last-child {
    max-width: 36rem;
    margin: 0;
    color: rgba(242, 239, 231, 0.76);
}

/* Privacy and other inherited pages */
.zwi-generic-page__inner {
    max-width: 58rem;
}

.zwi-generic-page h1 {
    margin-bottom: 3rem;
    color: var(--zwi-olive);
    font-size: clamp(3.2rem, 7vw, 7rem);
}

.zwi-rich-content {
    color: rgba(45, 48, 44, 0.78);
}

.zwi-rich-content h2,
.zwi-rich-content h3,
.zwi-rich-content h4 {
    margin-top: 2.7rem;
    color: var(--zwi-olive);
    font-family: var(--zwi-serif);
    font-weight: 400;
}

.zwi-rich-content a {
    color: var(--zwi-rust-dark);
    text-decoration: underline;
}

/* Motion */
[data-zwi-reveal] {
    opacity: 0;
    transform: translateY(1.1rem);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

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

    [data-zwi-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .zwi-nav--desktop {
        display: none;
    }

    .zwi-menu-toggle {
        display: inline-flex;
    }

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

    .zwi-capability-card:nth-child(odd) {
        border-left: 1px solid var(--zwi-line);
    }

    .zwi-capability-card:nth-child(-n + 2) {
        border-top: 0;
    }

    .zwi-capability-card:nth-child(2n) {
        border-right: 0;
    }

    .zwi-footer__top {
        grid-template-columns: minmax(0, 1.5fr) minmax(12rem, 1fr);
    }

    .zwi-footer__nav {
        grid-column: 1 / -1;
    }

    .zwi-footer__nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 1.3rem;
    }
}

@media (max-width: 720px) {
    :root {
        --zwi-gutter: 1.25rem;
    }

    .zwi-header__inner {
        min-height: 4.75rem;
    }

    .zwi-brand {
        width: 14rem;
        min-width: 14rem;
    }

    .zwi-brand img {
        max-width: 8.5rem;
        max-height: 3rem;
    }

    .zwi-brand__tagline {
        font-size: 0.82rem;
    }

    .zwi-menu-toggle {
        justify-content: center;
        min-width: 2.75rem;
        min-height: 2.75rem;
        margin-right: -0.35rem;
    }

    .zwi-mobile-nav {
        max-height: calc(100svh - 4.75rem);
        padding: 0.65rem var(--zwi-gutter) 1.6rem;
    }

    .zwi-mobile-nav__list a {
        padding-block: 0.9rem;
        font-size: clamp(1.45rem, 7vw, 1.8rem);
    }

    .zwi-hero {
        width: 100%;
        min-height: 100svh;
    }

    .zwi-hero__image {
        object-position: 66% center;
    }

    .zwi-hero__veil {
        background: linear-gradient(90deg, rgba(23, 32, 24, 0.94), rgba(23, 32, 24, 0.47)), linear-gradient(0deg, rgba(23, 32, 24, 0.55), transparent 55%);
    }

    .zwi-hero__content {
        padding-block: 6.25rem 5.5rem;
    }

    .zwi-hero h1 {
        max-width: 21rem;
        margin-bottom: 1.4rem;
        font-size: clamp(3rem, 14vw, 4.35rem);
        line-height: 0.96;
    }

    .zwi-hero__lede {
        max-width: 20rem;
        margin-bottom: 1.8rem;
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .zwi-home-cta__inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .zwi-home-cta__aside {
        justify-self: start;
        max-width: 22rem;
    }

    .zwi-page-cta__inner {
        text-align: center;
    }

    .zwi-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.3rem;
    }

    .zwi-button {
        width: min(100%, 20rem);
        min-height: 3.25rem;
    }

    .zwi-hero__scroll {
        bottom: 1.2rem;
        width: 2.35rem;
        height: 2.35rem;
    }

    .zwi-story,
    .zwi-proof,
    .zwi-timber-story,
    .zwi-contact-main__grid {
        grid-template-columns: 1fr;
    }

    .zwi-story__image-wrap,
    .zwi-story__image {
        min-height: 18rem;
    }

    .zwi-story__copy {
        width: auto;
        padding: 4.5rem var(--zwi-gutter) 5rem;
    }

    .zwi-section-heading,
    .zwi-intro-block__grid,
    .zwi-faq-intro__grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .zwi-section-heading {
        margin-bottom: 2.5rem;
    }

    .zwi-capabilities__grid,
    .zwi-benefits__grid,
    .zwi-products__grid,
    .zwi-process-band__grid {
        grid-template-columns: 1fr;
    }

    .zwi-capability-card,
    .zwi-benefit,
    .zwi-product-item {
        border-right: 0;
        border-left: 1px solid var(--zwi-line);
    }

    .zwi-capability-card:nth-child(2n),
    .zwi-product-item:nth-child(odd) {
        border-right: 0;
    }

    .zwi-capability-card:not(:first-child),
    .zwi-benefit:not(:first-child) {
        border-top: 0;
    }

    .zwi-capability-card,
    .zwi-benefit {
        min-height: 0;
        padding: 1.35rem 1rem 1.45rem;
        border-right: 1px solid var(--zwi-line);
        border-bottom: 1px solid var(--zwi-line);
    }

    .zwi-capability-card:first-child,
    .zwi-benefit:first-child {
        border-top: 1px solid var(--zwi-line);
    }

    .zwi-capability-card h3,
    .zwi-benefit h3 {
        margin: 1.8rem 0 0.65rem;
        font-size: 1.45rem;
    }

    .zwi-capability-card p,
    .zwi-benefit p {
        max-width: 18rem;
        padding-right: 0.5rem;
    }

    .zwi-capability-card > a {
        position: static;
        width: 2.35rem;
        height: 2.35rem;
        margin-top: 1.25rem;
    }

    .zwi-proof__copy {
        padding: 4.5rem var(--zwi-gutter);
    }

    .zwi-proof__image-wrap {
        min-height: 20rem;
    }

    .zwi-story__copy h2,
    .zwi-section-heading h2,
    .zwi-intro-block h2,
    .zwi-faq-intro h2,
    .zwi-contact-details h2,
    .zwi-contact-form h2 {
        font-size: clamp(2.3rem, 10.8vw, 3.4rem);
        line-height: 1.02;
    }

    .zwi-footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .zwi-footer__nav {
        grid-column: auto;
    }

    .zwi-footer__bottom,
    .zwi-contact-note__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .zwi-page-hero--split,
    .zwi-page-hero--material,
    .zwi-page-hero--faq {
        grid-template-columns: 1fr;
    }

    .zwi-page-hero,
    .zwi-contact-hero {
        width: 100%;
    }

    .zwi-page-hero__copy,
    .zwi-page-hero--material .zwi-page-hero__copy {
        min-height: min(36rem, 100svh);
        padding: 6rem var(--zwi-gutter) 4rem;
    }

    .zwi-page-hero--split .zwi-page-hero__copy,
    .zwi-page-hero--material .zwi-page-hero__copy,
    .zwi-page-hero--faq .zwi-page-hero__copy {
        width: 100%;
        margin-left: 0;
    }

    .zwi-page-hero--split::before,
    .zwi-page-hero--material::before,
    .zwi-page-hero--faq::before {
        background:
            linear-gradient(90deg, rgba(23, 32, 24, 0.94) 0%, rgba(23, 32, 24, 0.68) 43%, rgba(23, 32, 24, 0.2) 100%),
            linear-gradient(0deg, rgba(23, 32, 24, 0.55), transparent 55%);
    }

    .zwi-page-hero__image-wrap::after,
    .zwi-page-hero__material-image::after,
    .zwi-page-hero__faq-mark::after,
    .zwi-page-hero--faq .zwi-page-hero__faq-mark::after {
        content: none;
    }

    .zwi-contact-hero {
        background:
            linear-gradient(90deg, rgba(23, 32, 24, 0.94) 0%, rgba(23, 32, 24, 0.68) 43%, rgba(23, 32, 24, 0.2) 100%),
            linear-gradient(0deg, rgba(23, 32, 24, 0.55), transparent 55%),
            url('../images/zwi-hospitality-interior.webp') 66% center / cover;
    }

    .zwi-page-hero__copy h1 {
        max-width: 21rem;
        margin-bottom: 1.4rem;
        font-size: clamp(3rem, 13.5vw, 4.45rem);
        line-height: 0.96;
    }

    .zwi-page-hero__copy > p:not(.zwi-eyebrow) {
        max-width: 21rem;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .zwi-page-hero__image-wrap,
    .zwi-page-hero__material-image,
    .zwi-page-hero__faq-mark {
        min-height: 20rem;
    }

    .zwi-page-hero__image-wrap::after,
    .zwi-page-hero__material-image::after {
        inset: 0 0 auto;
        width: 100%;
        height: clamp(4rem, 20vw, 7rem);
        background: linear-gradient(180deg, var(--zwi-olive) 0%, rgba(37, 48, 36, 0) 100%);
    }

    .zwi-page-hero--material .zwi-page-hero__material-image::after {
        inset: 0 0 auto;
        background: linear-gradient(180deg, var(--zwi-olive) 0%, rgba(37, 48, 36, 0) 100%);
    }

    .zwi-page-hero--faq .zwi-page-hero__faq-mark::after {
        background: linear-gradient(180deg, var(--zwi-olive-deep) 0%, rgba(23, 32, 24, 0.22) 38%, rgba(23, 32, 24, 0.68) 100%);
    }

    .zwi-page-hero__faq-mark img {
        object-position: 62% center;
    }

    .zwi-page-hero--material .zwi-page-hero__material-image {
        grid-row: 2;
    }

    .zwi-process-band__grid {
        gap: 1.5rem;
    }

    .zwi-timber-story__image-wrap {
        min-height: 25rem;
    }

    .zwi-timber-story__copy {
        padding: 4.5rem var(--zwi-gutter) 5rem;
    }

    .zwi-faq-item summary {
        grid-template-columns: 2.1rem minmax(0, 1fr) 1.25rem;
        gap: 0.55rem;
        min-height: 4.25rem;
        padding-block: 1rem;
    }

    .zwi-faq-item__answer {
        padding: 0 1rem 1.5rem 2.65rem;
    }

    .zwi-faq-item__question {
        font-size: 1.22rem;
    }

    .zwi-contact-hero__inner {
        min-height: min(40rem, 80svh);
        padding-block: 6rem 4rem;
    }

    .zwi-contact-hero h1 {
        max-width: 21rem;
        font-size: clamp(3rem, 14vw, 4.45rem);
        line-height: 0.96;
    }

    .zwi-contact-main__grid {
        gap: 3.5rem;
    }

    .zwi-contact-form {
        padding: 2rem 1.25rem;
    }

    .zwi-preserved-form .ff-t-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zwi-preserved-form .ff-t-cell {
        min-width: 0;
    }

    .zwi-preserved-form .ff-btn-submit {
        width: 100%;
        min-height: 3.25rem;
    }

    [data-zwi-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
