@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap");

:root {
    --contact-black: #0F0F0F;
    --contact-panel: #151515;
    --contact-ink: #F5F2EA;
    --contact-muted: rgba(245, 242, 234, 0.68);
    --contact-soft: rgba(245, 242, 234, 0.08);
    --contact-line: rgba(166, 124, 82, 0.28);
    --contact-gold: #A67C52;
    --contact-copper: #A67C52;
    --contact-slate: #666868;
    --contact-green: #4f8f7b;
    --contact-blue: #6f92aa;
    --contact-font: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.contact-page {
    margin: 0;
    overflow-x: hidden;
    color: var(--contact-ink);
    background: var(--contact-black);
    font-family: var(--contact-font);
}

.contact-page a {
    color: inherit;
    text-decoration: none;
}

.contact-page svg,
.contact-page img {
    display: block;
}

.contact-page main {
    overflow: visible;
    background:
        linear-gradient(90deg, rgba(247, 241, 231, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(247, 241, 231, 0.018) 1px, transparent 1px),
        linear-gradient(180deg, #080909 0%, #0d0e0e 48%, #080909 100%);
    background-size: 86px 86px, 86px 86px, auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-kicker {
    margin: 0;
    color: var(--contact-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-rule {
    display: block;
    width: 96px;
    height: 1px;
    margin: 30px 0;
    background: linear-gradient(90deg, var(--contact-gold), transparent);
}

.contact-hero,
.contact-details,
.contact-main,
.contact-faq,
.contact-cta {
    width: min(100% - 72px, 1490px);
    margin-inline: auto;
}

.contact-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(300px, 0.65fr);
    gap: clamp(24px, 5vw, 96px);
    align-items: end;
    min-height: 640px;
    height: 92svh;
    max-height: 760px;
    padding: 118px 0 42px;
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    position: absolute;
    inset: 0 calc(50% - 50vw);
    z-index: -1;
    content: "";
    pointer-events: none;
}

.contact-hero::before {
    background:
        conic-gradient(from 220deg at 72% 42%, transparent 0 18%, rgba(216, 155, 91, 0.2) 20% 22%, transparent 25% 60%, rgba(111, 146, 170, 0.12) 64% 67%, transparent 70%),
        linear-gradient(115deg, transparent 0 12%, rgba(184, 111, 63, 0.16) 12.4%, transparent 13.1% 68%, rgba(216, 155, 91, 0.13) 68.4%, transparent 69.1%),
        linear-gradient(180deg, rgba(8, 9, 9, 0.48), rgba(8, 9, 9, 0.06) 56%, #080909 100%);
    opacity: 0.88;
}

.contact-hero::after {
    background:
        linear-gradient(90deg, rgba(8, 9, 9, 0.98), rgba(8, 9, 9, 0.62) 54%, rgba(8, 9, 9, 0.92)),
        linear-gradient(180deg, rgba(8, 9, 9, 0.78), transparent 24%, transparent 72%, #080909);
    box-shadow: inset 0 -120px 90px -70px rgba(8, 9, 9, 0.98);
}

.contact-hero__copy {
    position: relative;
    z-index: 5;
    max-width: 610px;
    align-self: center;
}

.contact-hero__copy::before {
    position: absolute;
    left: 0;
    top: -34px;
    width: min(100%, 420px);
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 155, 91, 0.72), transparent);
    content: "";
}

.contact-hero h1 {
    max-width: 610px;
    margin: 24px 0 0;
    color: #fff8ec;
    font-size: clamp(3.2rem, 5vw, 6rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
}

.contact-hero__line {
    display: block;
    overflow: hidden;
}

.contact-hero__line > span {
    display: block;
}

.contact-hero em {
    color: var(--contact-copper);
    font-family: var(--contact-font);
    font-style: italic;
    font-weight: 600;
}

.contact-hero__copy p:not(.contact-kicker) {
    max-width: 570px;
    margin: 34px 0 0;
    color: var(--contact-muted);
    font-size: 1rem;
    line-height: 1.76;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.contact-button,
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-button--primary,
.contact-submit {
    min-width: 156px;
    border: 1px solid rgba(216, 155, 91, 0.62);
    color: #111;
    background: linear-gradient(135deg, #f2c36c, #d4914d);
    box-shadow: 0 18px 42px rgba(212, 145, 77, 0.24);
}

.contact-button--ghost {
    min-width: 160px;
    border: 1px solid rgba(247, 241, 231, 0.16);
    color: var(--contact-ink);
    background: rgba(255, 255, 255, 0.025);
}

.contact-hero__panel {
    position: relative;
    z-index: 1;
    min-width: 0;
    align-self: stretch;
    justify-self: end;
    width: 100%;
}

.contact-hero__abstract {
    position: relative;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(216, 155, 91, 0.18);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(247, 241, 231, 0.035), transparent 44%),
        radial-gradient(circle at 50% 45%, rgba(216, 155, 91, 0.16), transparent 34%),
        #0b0b0b;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.contact-hero__abstract::before,
.contact-hero__abstract::after,
.contact-hero__beam,
.contact-hero__mark {
    position: absolute;
    display: block;
}

.contact-hero__abstract::before,
.contact-hero__abstract::after {
    inset: 0;
    content: "";
}

.contact-hero__abstract::before {
    z-index: 3;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.78), transparent 55%, rgba(5, 5, 5, 0.52)),
        linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 48%);
}

.contact-hero__abstract::after {
    z-index: 1;
    background-image:
        linear-gradient(rgba(216, 155, 91, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 155, 91, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, transparent, black 24%, black 76%, transparent);
    animation: contactGridDrift 12s linear infinite;
}

.contact-hero__beam {
    z-index: 2;
    inset: 12% auto 10% 45%;
    width: 12%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(247, 241, 231, 0.14), rgba(216, 155, 91, 0.28), transparent);
    filter: blur(18px);
    opacity: 0.42;
    mix-blend-mode: screen;
    transform-origin: 50% 50%;
    animation: contactBeamFloat 6.8s ease-in-out infinite alternate;
}

.contact-hero__beam--two {
    left: 64%;
    width: 8%;
    opacity: 0.26;
    transform: skewX(16deg);
    animation-duration: 8.2s;
}

.contact-hero__mark {
    left: 50%;
    top: 50%;
    z-index: 4;
    color: rgba(216, 155, 91, 0.86);
    font-size: clamp(4.8rem, 8vw, 7.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-shadow: 0 0 42px rgba(216, 155, 91, 0.22);
    transform: translate(-50%, -50%);
    animation: contactMarkPulse 5.8s ease-in-out infinite;
}

@keyframes contactGridDrift {
    to {
        background-position: 52px 52px, 52px 52px;
    }
}

@keyframes contactBeamFloat {
    from {
        filter: blur(18px);
    }

    to {
        filter: blur(24px);
    }
}

@keyframes contactMarkPulse {
    0%,
    100% {
        text-shadow: 0 0 38px rgba(216, 155, 91, 0.2);
    }

    50% {
        text-shadow: 0 0 62px rgba(216, 155, 91, 0.34);
    }
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: clamp(22px, 3vw, 34px) 0 clamp(28px, 4vw, 46px);
}

.contact-details article {
    display: grid;
    align-content: start;
    min-height: 210px;
    padding: clamp(24px, 2.8vw, 40px);
    border: 1px solid rgba(247, 241, 231, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        rgba(8, 9, 9, 0.78);
}

.contact-details span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    color: var(--contact-gold);
}

.contact-details svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-details h2 {
    margin: 0 0 20px;
    color: #fff8ec;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-details p,
.contact-details a {
    display: block;
    margin: 0;
    color: rgba(247, 241, 231, 0.7);
    font-size: 0.96rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.contact-details a + a {
    margin-top: 4px;
}

/* First address line is the studio name - lift it just slightly above the rest. */
.contact-address-name {
    color: rgba(247, 241, 231, 0.94);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-details a:hover {
    color: var(--contact-gold);
}

.contact-main {
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 92px);
    align-items: start;
    padding: clamp(30px, 4vw, 56px) 0 clamp(42px, 5vw, 68px);
}

.contact-inquiry {
    position: sticky;
    top: 112px;
}

.contact-inquiry h2 {
    max-width: 340px;
    margin: 16px 0 0;
    color: #fff8ec;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.08;
}

.contact-inquiry em,
.contact-faq em,
.contact-cta em {
    color: var(--contact-gold);
    font-family: var(--contact-font);
    font-style: italic;
    font-weight: 600;
}

.contact-inquiry > p:not(.contact-kicker) {
    max-width: 300px;
    margin: 28px 0 0;
    color: rgba(247, 241, 231, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.contact-inquiry ul {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 34px 0 0;
    list-style: none;
}

.contact-inquiry li {
    position: relative;
    padding-left: 32px;
    color: rgba(247, 241, 231, 0.74);
    font-size: 0.96rem;
    line-height: 1.45;
}

.contact-inquiry li::before {
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(216, 155, 91, 0.8);
    border-radius: 50%;
    color: var(--contact-gold);
    font-size: 0.72rem;
    content: "✓";
}

.contact-form {
    padding: clamp(24px, 2.6vw, 36px);
    border: 1px solid rgba(247, 241, 231, 0.1);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        rgba(8, 9, 9, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 70px rgba(0, 0, 0, 0.24);
}

.contact-faq h2 {
    margin: 14px 0 0;
    color: #fff8ec;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.08;
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin: 0;
}

.contact-field {
    display: grid;
    gap: 10px;
}

.contact-field--full,
.contact-submit {
    grid-column: 1 / -1;
}

.contact-field label {
    color: rgba(247, 241, 231, 0.78);
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(247, 241, 231, 0.12);
    border-radius: 0;
    outline: 0;
    padding: 0 14px;
    color: var(--contact-ink);
    background: rgba(8, 9, 9, 0.48);
    font: inherit;
    font-size: 0.92rem;
}

.contact-field textarea {
    min-height: 138px;
    padding-block: 16px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(216, 155, 91, 0.72);
    box-shadow: 0 0 0 3px rgba(216, 155, 91, 0.09);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(247, 241, 231, 0.58);
}

.contact-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(247, 241, 231, 0.6);
    font-size: 0.84rem;
    line-height: 1.6;
}

.contact-consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--contact-gold);
}

.contact-consent a {
    color: var(--contact-gold);
}

.contact-submit {
    gap: 12px;
    justify-self: end;
    min-width: 250px;
    cursor: pointer;
}

.contact-submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-faq {
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 92px);
    align-items: start;
    padding: clamp(42px, 5vw, 68px) 0 clamp(18px, 3vw, 34px);
    border-top: 1px solid rgba(247, 241, 231, 0.08);
}

.contact-faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(247, 241, 231, 0.1);
    background: rgba(8, 9, 9, 0.64);
}

.contact-faq__grid details {
    border-bottom: 1px solid rgba(247, 241, 231, 0.1);
}

.contact-faq__grid details:last-child {
    border-bottom: 0;
}

.contact-faq__grid summary {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 24px;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 0 22px;
    color: #fff8ec;
    font-size: 1rem;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

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

.contact-faq__grid summary::before {
    color: var(--contact-gold);
    content: ">";
}

.contact-faq__grid summary::after {
    justify-self: end;
    color: var(--contact-gold);
    font-size: 1.3rem;
    content: "+";
}

.contact-faq__grid details[open] summary::after {
    content: "-";
}

.contact-faq__grid p {
    margin: -4px 0 0;
    padding: 0 58px 24px 52px;
    color: rgba(247, 241, 231, 0.72);
    font-size: 0.94rem;
    line-height: 1.7;
}

.contact-cta {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: clamp(22px, 3.2vw, 48px);
    align-items: center;
    margin-top: clamp(48px, 6vw, 76px);
    padding: clamp(28px, 3.2vw, 42px) 0;
    border-top: 1px solid rgba(247, 241, 231, 0.1);
    border-bottom: 1px solid rgba(247, 241, 231, 0.1);
}

.contact-cta__mark {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(216, 155, 91, 0.3);
    border-radius: 50%;
    color: var(--contact-gold);
    font-size: 2.8rem;
}

.contact-cta h2 {
    margin: 0;
    color: #fff8ec;
    font-size: clamp(1.7rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.22;
}

@media (max-width: 1180px) {
    .contact-hero,
    .contact-details,
    .contact-main,
    .contact-faq,
    .contact-cta {
        width: min(100% - 44px, 1120px);
    }

    .contact-hero {
        grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
        min-height: 640px;
        padding-top: 112px;
    }

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

@media (max-width: 860px) {
    .contact-hero,
    .contact-details,
    .contact-main,
    .contact-faq,
    .contact-cta {
        width: min(100% - 32px, 760px);
    }

    .contact-hero,
    .contact-main,
    .contact-faq,
    .contact-cta {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        min-height: 100svh;
        height: auto;
        max-height: none;
        padding-top: 104px;
        padding-bottom: 34px;
    }

    .contact-hero h1 {
        font-size: clamp(2.9rem, 12vw, 5rem);
        line-height: 1;
    }

    .contact-hero__copy p:not(.contact-kicker) {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .contact-hero__panel {
        max-width: 560px;
    }

    .contact-hero__abstract {
        min-height: 320px;
    }

    .contact-inquiry {
        position: relative;
        top: auto;
    }

    .contact-cta {
        justify-items: start;
    }
}

@media (max-width: 560px) {
    .contact-hero,
    .contact-details,
    .contact-main,
    .contact-faq,
    .contact-cta {
        width: min(100% - 28px, 460px);
    }

    .contact-hero__actions,
    .contact-button,
    .contact-submit {
        width: 100%;
    }

    .contact-details,
    .contact-form form {
        grid-template-columns: 1fr;
    }

    .contact-field--full,
    .contact-submit {
        grid-column: auto;
    }

    .contact-details article {
        min-height: auto;
        padding: 20px;
    }

    .contact-details span {
        width: 46px;
        height: 46px;
    }

    .contact-inquiry h2,
    .contact-faq h2 {
        font-size: clamp(1.9rem, 10vw, 3.1rem);
    }

    .contact-submit {
        justify-self: stretch;
        min-width: 0;
    }

    .contact-faq__grid summary {
        padding-inline: 16px;
    }

    .contact-faq__grid p {
        padding-inline: 46px 18px;
    }

    .contact-cta__mark {
        width: 70px;
        height: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ---------------------------------------------------------------------------
   Form feedback
--------------------------------------------------------------------------- */

.contact-main {
    scroll-margin-top: 108px;
}

.contact-alert {
    margin: 0 0 22px;
    padding: 14px 18px;
    border: 1px solid rgba(166, 124, 82, 0.4);
    border-radius: 4px;
    color: rgba(247, 241, 231, 0.9);
    font-size: 0.92rem;
    line-height: 1.5;
    background: rgba(166, 124, 82, 0.12);
}

.contact-alert--success {
    border-color: rgba(126, 181, 133, 0.48);
    background: rgba(126, 181, 133, 0.12);
}

.contact-alert--error {
    border-color: rgba(214, 118, 106, 0.52);
    background: rgba(214, 118, 106, 0.12);
}

.contact-error {
    margin: 0;
    color: #E39187;
    font-size: 0.78rem;
    line-height: 1.4;
}

.contact-consent .contact-error {
    grid-column: 1 / -1;
}

.contact-field input[aria-invalid="true"],
.contact-field select[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
    border-color: rgba(214, 118, 106, 0.6);
}

/* The consent row belongs on its own line, like the message field and button. */
.contact-consent {
    grid-column: 1 / -1;
}

/* Hero watermark now uses the real MC monogram instead of a styled letter. */
.contact-hero__mark {
    width: clamp(5.2rem, 8.4vw, 8.2rem);
    height: auto;
    opacity: 0.92;
    text-shadow: none;
    animation: contactMarkGlow 5.8s ease-in-out infinite;
}

@keyframes contactMarkGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 34px rgba(216, 155, 91, 0.22));
    }

    50% {
        filter: drop-shadow(0 0 58px rgba(216, 155, 91, 0.4));
    }
}

/* ===========================================================================
   Icons, arrows and seams

   Appended last so it settles the rules above it, breakpoints included.

   Several marks on this page were literal characters standing in for icons -
   ">" and "+"/"-" on the FAQ rows, "*" in the CTA circle, "✓" in the inquiry
   list. They sat on a text baseline rather than an optical centre, changed
   shape with the font, and could not animate. They are drawn now.

   Two layout seams are settled too: the detail cards each carried a 1px
   border inside a 1px gap, so every join read as a 3px double rule; and the
   hero headline was sized past its own column, so the second line wrapped and
   broke the per-line reveal that .contact-hero__line masks.
   ========================================================================== */

/* ---------- hero --------------------------------------------------------- */

.contact-hero__copy {
    max-width: 720px;
}

.contact-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 3.6vw, 3.7rem);
    line-height: 1.06;
}

.contact-hero__copy p:not(.contact-kicker) {
    margin-top: 28px;
}

/* ---------- direct contact cards ----------------------------------------- */

.contact-details {
    gap: 16px;
}

.contact-details article {
    border-radius: 4px;
    transition: border-color 220ms ease, transform 220ms ease;
}

.contact-details article:hover {
    border-color: rgba(216, 155, 91, 0.44);
    transform: translateY(-2px);
}

.contact-details span {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border: 1px solid rgba(216, 155, 91, 0.42);
    border-radius: 50%;
}

.contact-details svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

/* ---------- inquiry checklist -------------------------------------------- */

.contact-inquiry li::before {
    content: "";
}

.contact-inquiry li::after {
    position: absolute;
    left: 6.5px;
    top: 5px;
    width: 5px;
    height: 9px;
    border-right: 1.6px solid var(--contact-gold);
    border-bottom: 1.6px solid var(--contact-gold);
    content: "";
    transform: rotate(43deg);
}

/* ---------- FAQ rows ------------------------------------------------------ */

.contact-faq__grid summary {
    transition: background 200ms ease;
}

.contact-faq__grid summary:hover {
    background: rgba(216, 155, 91, 0.05);
}

/* leading chevron: points right when closed, down when open */
.contact-faq__grid summary::before {
    justify-self: center;
    width: 7px;
    height: 7px;
    border-right: 1.6px solid var(--contact-gold);
    border-bottom: 1.6px solid var(--contact-gold);
    content: "";
    transform: rotate(-45deg);
    transition: transform 240ms ease;
}

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

/* trailing plus: the upright bar rotates away, leaving a minus */
.contact-faq__grid summary::after {
    justify-self: end;
    width: 16px;
    height: 16px;
    background:
        linear-gradient(var(--contact-gold), var(--contact-gold)) center / 100% 1.6px no-repeat,
        linear-gradient(var(--contact-gold), var(--contact-gold)) center / 1.6px 100% no-repeat;
    content: "";
    transition: transform 260ms ease;
}

.contact-faq__grid details[open] summary::after {
    background: linear-gradient(var(--contact-gold), var(--contact-gold)) center / 100% 1.6px no-repeat;
    content: "";
    transform: rotate(90deg);
}

/* ---------- closing CTA --------------------------------------------------- */

.contact-cta {
    align-items: center;
    /* the footer opens on its own hairline; two in a row read as a mistake */
    margin-bottom: clamp(56px, 5vw, 84px);
    padding-block: clamp(34px, 3.4vw, 48px);
    border-bottom: 0;
}

.contact-cta__mark {
    color: var(--contact-gold);
    background: rgba(216, 155, 91, 0.05);
}

.contact-cta__mark svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
}

.contact-cta .contact-button {
    white-space: nowrap;
}

/* ---------- responsive ---------------------------------------------------- */

@media (max-width: 860px) {
    .contact-hero h1 {
        font-size: clamp(2rem, 7.4vw, 3.4rem);
        line-height: 1.06;
    }
}

@media (max-width: 560px) {
    .contact-hero h1 {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
    }

    .contact-details span {
        width: 46px;
        height: 46px;
    }

    .contact-cta__mark svg {
        width: 26px;
        height: 26px;
    }
}
