.contact-page {
    --contact-ink: #1c251f;
    --contact-forest: #22372c;
    --contact-forest-deep: #17251e;
    --contact-sand: #e5b776;
    --contact-brown: #7a5434;
    --contact-cream: #f4efe6;
    --contact-paper: #fbf9f4;
    --contact-muted: #666b65;
    overflow: hidden;
    background: var(--contact-paper);
    color: var(--contact-ink);
    font-family: var(--font-body);
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page p {
    margin-top: 0;
}

.contact-page h1,
.contact-page h2 {
    font-family: var(--font-display);
    font-weight: 400;
}

.contact-page h1 em,
.contact-page h2 em {
    color: var(--contact-sand);
    font-weight: inherit;
}

.contact-page a:focus-visible,
.contact-page button:focus-visible,
.contact-page summary:focus-visible,
.contact-page input:focus-visible,
.contact-page textarea:focus-visible,
.contact-page select:focus-visible {
    outline: 3px solid var(--contact-sand);
    outline-offset: 3px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--contact-brown);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-eyebrow span {
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: currentColor;
}

.contact-eyebrow--light {
    color: var(--contact-sand);
}

.contact-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.contact-button--sand {
    background: var(--contact-sand);
    box-shadow: 0 14px 30px rgba(13, 18, 14, 0.24);
    color: #182119;
}

.contact-button--sand:hover {
    background: #efc78c;
    color: #182119;
}

.contact-button--ghost {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(8px);
}

.contact-button--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Hero */
.contact-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(480px, 59vh, 620px);
    background: var(--contact-forest-deep);
    color: #fff;
}

.contact-hero__media {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: url("../../images/team.jpg");
    background-position: center 48%;
    background-size: cover;
    transform: scale(1.002);
}

.contact-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 20, 15, 0.94) 0%, rgba(14, 23, 17, 0.82) 42%, rgba(14, 23, 17, 0.25) 76%),
        linear-gradient(0deg, rgba(10, 16, 12, 0.52) 0%, transparent 40%);
}

.contact-hero__container {
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 4.75rem;
}

.contact-hero__content {
    width: min(100%, 720px);
}

.contact-hero h1 {
    margin-bottom: 1.15rem;
    color: #fff;
    font-size: clamp(3.25rem, 5.4vw, 5.4rem);
    letter-spacing: -0.045em;
    line-height: 0.95;
    text-wrap: balance;
}

.contact-hero__intro {
    max-width: 625px;
    margin-bottom: 1.55rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.7;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-hero__promise {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1.05rem 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-hero__promise i {
    color: var(--contact-sand);
}

/* Trust strip */
.contact-trust {
    position: relative;
    z-index: 3;
    margin-top: -35px;
}

.contact-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(51, 56, 50, 0.11);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(34, 42, 36, 0.12);
}

.contact-trust__item {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.05rem;
    color: var(--contact-ink);
    text-decoration: none;
}

.contact-trust__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24%;
    right: 0;
    bottom: 24%;
    width: 1px;
    background: rgba(48, 55, 49, 0.11);
}

.contact-trust__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--contact-cream);
    color: var(--contact-brown);
}

.contact-trust__item > span:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 0.2rem;
}

.contact-trust__item strong {
    color: var(--contact-ink);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-trust__item small {
    overflow: hidden;
    color: var(--contact-muted);
    font-size: 0.72rem;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.contact-trust__item--link {
    padding-right: 2.45rem;
    transition: background-color 0.25s ease;
}

.contact-trust__item--link:hover {
    background: #faf6ef;
    color: var(--contact-ink);
}

.contact-trust__arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    color: var(--contact-brown);
    font-size: 0.75rem;
    transform: translateY(-50%);
}

/* Main planner */
.contact-planner {
    padding: 7.5rem 0 7rem;
    background: var(--contact-paper);
    scroll-margin-top: 110px;
}

.contact-planner__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: end;
    gap: 2rem 4rem;
    margin-bottom: 2.4rem;
}

.contact-planner__heading .contact-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -1rem;
}

.contact-planner__heading h2 {
    margin-bottom: 0;
    color: var(--contact-ink);
    font-size: clamp(2.7rem, 4.6vw, 4.7rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.contact-planner__heading h2 em,
.contact-faq__heading h2 em {
    color: var(--contact-brown);
}

.contact-planner__heading > p:last-child {
    max-width: 440px;
    margin: 0;
    color: var(--contact-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.contact-planner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    align-items: start;
    gap: 1.5rem;
}

.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(38, 104, 67, 0.24);
    border-radius: 14px;
    background: #edf7ef;
    color: #1f5131;
}

.contact-success > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2f7045;
    color: #fff;
}

.contact-success strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-success p {
    margin: 0;
    color: #386246;
}

.contact-form-card {
    padding: clamp(1.4rem, 3vw, 2.75rem);
    border: 1px solid rgba(47, 55, 49, 0.12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(38, 45, 39, 0.09);
}

.contact-form-card .form-label {
    margin-bottom: 0.48rem;
    color: var(--contact-ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 53px;
    border: 1px solid #d7d8d2;
    border-radius: 10px;
    background-color: #fcfbf8;
    color: var(--contact-ink);
    font-family: var(--font-body);
    font-size: 0.93rem;
    box-shadow: none;
}

.contact-form-card textarea.form-control {
    min-height: 132px;
    padding-top: 0.85rem;
    resize: vertical;
}

.contact-form-card .form-control::placeholder {
    color: #94968f;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--contact-brown);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(122, 84, 52, 0.1);
}

.enquiry-form__contact-note {
    color: #787b74;
    font-size: 0.76rem;
    line-height: 1.4;
}

.enquiry-form__contact-note--error {
    color: #a23a38;
    font-weight: 600;
}

.enquiry-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.contact-form-card .enquiry-form-card__details {
    overflow: hidden;
    padding: 0;
    border: 1px solid #dedfd9;
    border-radius: 12px;
    background: #faf8f3;
}

.contact-form-card .enquiry-form-card__details summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
    color: var(--contact-ink);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    list-style: none;
}

.contact-form-card .enquiry-form-card__details summary::-webkit-details-marker {
    display: none;
}

.contact-form-card .enquiry-form-card__details summary::after {
    content: "+";
    margin-left: auto;
    color: var(--contact-brown);
    font-size: 1.15rem;
    font-weight: 500;
}

.contact-form-card .enquiry-form-card__details[open] summary::after {
    content: "−";
}

.contact-form-card .enquiry-form-card__details summary span {
    color: #85877f;
    font-size: 0.76rem;
    font-weight: 500;
}

.contact-form-card .enquiry-form-card__details > .row {
    padding: 0 1rem 1rem;
}

.contact-form-card .enquiry-form__submit {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1.55rem;
    border: 1px solid var(--contact-brown);
    border-radius: 14px;
    background: var(--contact-brown);
    box-shadow: 0 14px 28px rgba(91, 59, 34, 0.18);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card .enquiry-form__submit:hover {
    background: #644329;
    box-shadow: 0 17px 34px rgba(91, 59, 34, 0.24);
    transform: translateY(-2px);
}

.contact-form-card .enquiry-form__submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.contact-form-card .enquiry-form__privacy,
.contact-form-card .enquiry-form-card__submit-status {
    margin: 1rem 0 0;
    color: #777a73;
    font-size: 0.74rem;
    line-height: 1.5;
}

.contact-form-card__detailed {
    margin: 1.25rem 0 0;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(53, 59, 53, 0.1);
    color: var(--contact-muted);
    font-size: 0.82rem;
}

.contact-form-card__detailed a {
    color: var(--contact-brown);
    font-weight: 700;
    text-underline-offset: 3px;
}

/* Sidebar */
.contact-sidebar {
    overflow: hidden;
    border-radius: 22px;
    background: var(--contact-forest);
    box-shadow: 0 24px 60px rgba(28, 42, 33, 0.16);
    color: #fff;
}

.contact-sidebar__intro,
.contact-journey,
.contact-direct {
    padding: 2rem;
}

.contact-sidebar__intro {
    padding-bottom: 1.6rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
}

.contact-sidebar__intro h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.65rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.contact-sidebar__intro > p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.65;
}

.contact-journey {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-journey h3,
.contact-direct h3 {
    margin-bottom: 1.15rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-journey ol {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-journey li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 0.85rem;
}

.contact-journey li span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 183, 118, 0.42);
    border-radius: 50%;
    color: var(--contact-sand);
    font-size: 0.66rem;
    font-weight: 700;
}

.contact-journey li p {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.83rem;
    line-height: 1.5;
}

.contact-direct {
    padding-bottom: 1rem;
}

.contact-direct > a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    margin: 0 -0.7rem;
    padding: 0.72rem;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.contact-direct > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.contact-direct > a > span:first-child {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(229, 183, 118, 0.13);
    color: var(--contact-sand);
}

.contact-direct > a > span:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 0.1rem;
    overflow-wrap: anywhere;
    font-size: 0.84rem;
    font-weight: 600;
}

.contact-direct small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-direct > a > i {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
}

.contact-sidebar__location {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 1rem 2rem 1.3rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
}

.contact-sidebar__location i {
    color: var(--contact-sand);
}

/* FAQ */
.contact-faq {
    padding: 6.5rem 0;
    background: var(--contact-cream);
}

.contact-faq__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.contact-faq__heading {
    position: sticky;
    top: 130px;
}

.contact-faq__heading h2 {
    margin-bottom: 1.25rem;
    color: var(--contact-ink);
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.contact-faq__heading > p:last-child {
    max-width: 420px;
    margin-bottom: 0;
    color: var(--contact-muted);
    line-height: 1.75;
}

.contact-faq__items {
    border-top: 1px solid rgba(48, 56, 49, 0.18);
}

.contact-faq__items details {
    border-bottom: 1px solid rgba(48, 56, 49, 0.18);
}

.contact-faq__items summary {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 1rem;
    color: var(--contact-ink);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
}

.contact-faq__items summary::-webkit-details-marker {
    display: none;
}

.contact-faq__items summary i {
    margin-left: auto;
    color: var(--contact-brown);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.contact-faq__items details[open] summary i {
    transform: rotate(45deg);
}

.contact-faq__items details p {
    max-width: 650px;
    margin: -0.35rem 3.5rem 1.5rem 0;
    color: var(--contact-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.contact-page-body .site-footer__cta-wrap {
    display: none;
}

@media (max-width: 1199.98px) {
    .contact-trust__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-trust__item:nth-child(2)::after {
        display: none;
    }

    .contact-trust__item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(48, 55, 49, 0.11);
    }

    .contact-planner__grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    }
}

@media (max-width: 991.98px) {
    .contact-hero {
        min-height: 520px;
    }

    .contact-planner {
        padding: 6rem 0;
    }

    .contact-planner__heading {
        display: block;
    }

    .contact-planner__heading .contact-eyebrow {
        margin-bottom: 1rem;
    }

    .contact-planner__heading h2 {
        margin-bottom: 1.2rem;
    }

    .contact-planner__heading > p:last-child {
        max-width: 620px;
    }

    .contact-planner__grid {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact-sidebar__intro,
    .contact-journey {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-journey {
        border-top: 0;
    }

    .contact-direct,
    .contact-sidebar__location {
        grid-column: 1 / -1;
    }

    .contact-faq__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-faq__heading {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        min-height: 540px;
    }

    .contact-hero__media {
        background-position: 58% center;
    }

    .contact-hero::before {
        background: linear-gradient(90deg, rgba(12, 20, 15, 0.94) 0%, rgba(14, 23, 17, 0.74) 74%, rgba(14, 23, 17, 0.52) 100%),
            linear-gradient(0deg, rgba(10, 16, 12, 0.55), transparent 50%);
    }

    .contact-hero__container {
        padding-top: 3rem;
        padding-bottom: 4.5rem;
    }

    .contact-hero h1 {
        font-size: clamp(2.85rem, 13vw, 4.35rem);
    }

    .contact-trust {
        margin-top: -28px;
    }

    .contact-trust__item {
        padding: 1rem 0.9rem;
    }

    .contact-trust__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .contact-planner {
        padding: 5rem 0;
    }

    .contact-planner__heading h2 {
        font-size: clamp(2.6rem, 11vw, 3.8rem);
    }

    .contact-sidebar {
        display: block;
    }

    .contact-faq {
        padding: 5rem 0;
    }
}

@media (max-width: 575.98px) {
    .contact-button {
        width: 100%;
    }

    .contact-hero__promise {
        flex-wrap: wrap;
        font-size: 0.76rem;
    }

    .contact-trust__grid {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }

    .contact-trust__item:not(:last-child)::after {
        display: none;
    }

    .contact-trust__item:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(48, 55, 49, 0.11);
    }

    .contact-trust__item--link {
        border-bottom: 0;
    }

    .contact-form-card {
        margin-right: -0.25rem;
        margin-left: -0.25rem;
        padding: 1.25rem;
        border-radius: 16px;
    }

    .contact-form-card .enquiry-form__submit {
        width: 100%;
    }

    .contact-sidebar {
        border-radius: 16px;
    }

    .contact-sidebar__intro,
    .contact-journey,
    .contact-direct {
        padding: 1.5rem;
    }

    .contact-sidebar__location {
        padding: 0.8rem 1.5rem 1.25rem;
    }

    .contact-faq__items summary {
        min-height: 70px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page *,
    .contact-page *::before,
    .contact-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
