/* =========================================================
   XCY EVENTS — CONTACT
   MASTER DESIGN SYSTEM
   MATCHES INDEX / SERVICES / ABOUT
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --paper: #f3f1ec;
    --paper-dark: #e9e6df;
    --ink: #171717;
    --soft-ink: #55534f;
    --muted: #85827b;
    --line: rgba(23,23,23,.15);
    --accent: #6f2e32;
    --white: #ffffff;

    --sans: "Inter", Arial, Helvetica, sans-serif;

    --ease: cubic-bezier(.22,1,.36,1);

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--paper);
    color: var(--ink);

    font-family: var(--sans);

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


a {

    color: inherit;
    text-decoration: none;

}


button,
input,
textarea {

    font: inherit;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 88px;

    padding: 0 4vw;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    border-bottom: 1px solid rgb(171,171,171);

    background: rgba(93,93,93,0.708);

    backdrop-filter: blur(16px);

    z-index: 1000;

}


.brand {

    display: flex;

    align-items: center;

    width: max-content;

}


.brand img {

    width: auto;
    height: 100px;

    max-width: 140px;

    object-fit: contain;

}


.header-center {

    text-align: center;

    font-size: .62rem;

    font-weight: 500;

    letter-spacing: .18em;

    color: var(--white);

}


.menu-button {

    justify-self: end;

    display: flex;

    align-items: center;

    gap: 14px;

    border: 0;

    background: none;

    color: var(--white);

    cursor: pointer;

    font-size: .62rem;

    font-weight: 500;

    letter-spacing: .14em;

}


.menu-icon {

    width: 27px;

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.menu-icon i {

    display: block;

    width: 100%;
    height: 1px;

    background: var(--white);

}


/* =========================================================
   MENU
========================================================= */

.menu-panel {

    position: fixed;

    inset: 0;

    z-index: 2000;

    background: var(--ink);

    color: var(--white);

    transform: translateY(-100%);

    transition:
        transform .7s var(--ease);

}


.menu-panel.open {

    transform: translateY(0);

}


.menu-panel-inner {

    width: 100%;
    height: 100%;

    padding: 38px 5vw;

    position: relative;

}


.menu-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.menu-top > span {

    font-size: .62rem;

    font-weight: 500;

    letter-spacing: .16em;

}


.menu-close {

    display: flex;

    align-items: center;

    gap: 12px;

    border: 0;

    background: none;

    color: var(--white);

    cursor: pointer;

    font-size: .62rem;

    font-weight: 500;

    letter-spacing: .14em;

}


.menu-close strong {

    font-size: 1rem;

    font-weight: 400;

}


.menu-nav {

    position: absolute;

    top: 50%;
    left: 5vw;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 22px;

}


.menu-nav-small {

    margin-bottom: 8px;

    color: var(--muted);

    font-size: .58rem;

    font-weight: 500;

    letter-spacing: .08em;

}


.menu-nav a {

    display: flex;

    align-items: baseline;

    gap: 20px;

    width: max-content;

    font-family: var(--sans);

    font-size: clamp(2rem,4vw,4rem);

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -.02em;

    transition:
        color .35s ease,
        transform .5s var(--ease);

}


.menu-nav a:hover {

    color: #aaa59d;

    transform: translateX(10px);

}


.menu-nav a small {

    min-width: 22px;

    color: var(--muted);

    font-family: var(--sans);

    font-size: .58rem;

    font-weight: 500;

    letter-spacing: .08em;

}


.menu-bottom {

    position: absolute;

    left: 5vw;
    right: 5vw;
    bottom: 38px;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: .55rem;

    font-weight: 500;

    letter-spacing: .16em;

}


/* =========================================================
   HERO
========================================================= */

.contact-hero {

    position: relative;

    height: 100vh;
    min-height: 720px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--white);

}


.hero-background {

    position: absolute;

    inset: 0;

}


.hero-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(30%);

    transform: scale(1.04);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,.12) 45%,
            rgba(0,0,0,.68) 100%
        );

}


.hero-meta {

    position: absolute;

    top: 120px;

    left: 7vw;
    right: 7vw;

    display: flex;

    justify-content: space-between;

    font-size: .52rem;

    font-weight: 500;

    letter-spacing: .16em;

    color: rgba(255,255,255,.78);

}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(1100px, 90vw);

    text-align: center;

}


.hero-content .eyebrow {

    color: rgba(255,255,255,.78);

}


.hero-content h1 {

    margin-top: 42px;

    font-size: clamp(3.5rem,7vw,7rem);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.055em;

}


.hero-content h1 span {

    color: rgba(255,255,255,.62);

}


.hero-text {

    margin-top: 42px;

    color: rgba(255,255,255,.78);

    font-size: .72rem;

    line-height: 2;

}


.hero-bottom {

    position: absolute;

    left: 7vw;
    right: 7vw;
    bottom: 34px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: rgba(255,255,255,.7);

    font-size: .52rem;

    font-weight: 500;

    letter-spacing: .16em;

}


.hero-arrow {

    font-size: 1rem;

}


/* =========================================================
   INTRODUCTION
========================================================= */

.contact-introduction {

    padding: 150px 7vw;

    display: grid;

    grid-template-columns: 1fr 2.3fr .8fr;

    gap: 5vw;

    border-bottom: 1px solid var(--line);

}


.intro-number {

    color: var(--muted);

    font-size: .58rem;

    font-weight: 500;

    letter-spacing: .17em;

}


.eyebrow {

    display: block;

    color: var(--muted);

    font-size: .58rem;

    font-weight: 600;

    letter-spacing: .17em;

}


.intro-copy h2 {

    margin-top: 80px;

    font-size: clamp(3.5rem,6vw,6.5rem);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.055em;

}


.intro-copy h2 span {

    color: var(--accent);

}


.intro-copy > p {

    max-width: 470px;

    margin-top: 70px;

    color: var(--soft-ink);

    font-size: .72rem;

    line-height: 2;

}


.intro-side {

    align-self: end;

}


.intro-line {

    padding: 20px 0;

    border-top: 1px solid var(--line);

}


.intro-line:last-child {

    border-bottom: 1px solid var(--line);

}


.intro-line span {

    color: var(--muted);

    font-size: .52rem;

    font-weight: 500;

    letter-spacing: .16em;

}


.intro-line p {

    margin-top: 13px;

    font-size: .72rem;

    line-height: 1.7;

}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.direct-contact {

    padding: 150px 7vw;

    border-bottom: 1px solid var(--line);

}


.direct-heading {

    display: grid;

    grid-template-columns: 1fr 2.3fr;

    gap: 5vw;

}


.section-number {

    color: var(--muted);

    font-size: .28rem;

    font-weight: 500;

    letter-spacing: .17em;

}


.direct-heading h2 {

    margin-top: 80px;

    font-size: clamp(3.5rem,6vw,6.5rem);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.055em;

}


.direct-heading h2 span {

    color: var(--accent);

}


.contact-list {

    margin-top: 110px;

    border-top: 1px solid var(--line);

}


.contact-item {

    position: relative;

    min-height: 170px;

    padding: 35px 0;

    display: grid;

    grid-template-columns: 80px 1fr 50px;

    align-items: center;

    gap: 30px;

    border-bottom: 1px solid var(--line);

    transition:
        padding .6s var(--ease),
        background .4s ease;

}


.contact-item:hover {

    padding-left: 25px;
    padding-right: 25px;

    background: var(--paper-dark);

}


.contact-number {

    align-self: start;

    padding-top: 7px;

    color: var(--muted);

    font-size: .52rem;

    font-weight: 500;

    letter-spacing: .16em;

}


.contact-label {

    color: var(--muted);

    font-size: .52rem;

    font-weight: 600;

    letter-spacing: .17em;

}


.contact-main h3 {

    margin-top: 12px;

    font-size: clamp(2rem,4vw,4rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -.045em;

}


.contact-main p {

    margin-top: 15px;

    color: var(--soft-ink);

    font-size: .62rem;

    line-height: 1.8;

}


.contact-arrow {

    justify-self: end;

    font-size: 1.3rem;

    transition: transform .5s var(--ease);

}


.contact-item:hover .contact-arrow {

    transform: translate(8px,-8px);

}


/* =========================================================
   DARK CONTACT NOTE
========================================================= */

.contact-note {

    padding: 150px 7vw;

    display: grid;

    grid-template-columns: 1fr 2.3fr;

    gap: 5vw;

    background: var(--ink);

    color: var(--white);

}


.note-number {

    color: var(--muted);

    font-size: .58rem;

    font-weight: 500;

    letter-spacing: .17em;

}


.note-content .eyebrow {

    color: var(--muted);

}


.note-content h2 {

    margin-top: 80px;

    font-size: clamp(3.5rem,7vw,7rem);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.055em;

}


.note-content h2 span {

    color: #aaa59d;

}


.note-content p {

    max-width: 520px;

    margin-top: 65px;

    color: #b7b3ac;

    font-size: .7rem;

    line-height: 2;

}


.note-content p + p {

    margin-top: 25px;

}


/* =========================================================
   VISIT THE STUDIO
   MAP + INFORMATION
========================================================= */

.location-section {

    min-height: 720px;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    border-bottom: 1px solid var(--line);

}


/* GOOGLE MAP */

.location-map {

    min-height: 720px;

    overflow: hidden;

    background: #ddd;

}


.location-map iframe {

    display: block;

    width: 100%;
    height: 100%;

    min-height: 720px;

    border: 0;

    /* IMPORTANT:
       NO GRAYSCALE.
       KEEP GOOGLE MAP COLOURED.
    */

    filter: none;

}


/* DETAILS */

.location-details {

    padding: 100px 7vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.location-details h2 {

    margin-top: 75px;

    font-size: clamp(3.5rem,6vw,6.5rem);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.055em;

}


.location-details h2 span {

    color: var(--accent);

}


.address {

    margin-top: 65px;

    color: var(--soft-ink);

    font-size: .72rem;

    line-height: 2;

}


.map-button {

    width: max-content;

    margin-top: 45px;

    padding-bottom: 11px;

    display: flex;

    align-items: center;

    gap: 55px;

    border-bottom: 1px solid var(--ink);

    font-size: .52rem;

    font-weight: 600;

    letter-spacing: .16em;

    transition: gap .5s var(--ease);

}


.map-button:hover {

    gap: 72px;

}


.map-button span {

    font-size: 1rem;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-contact {

    padding: 150px 7vw;

    min-height: 800px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.final-contact h2 {

    margin-top: 75px;

    font-size: clamp(3.5rem,7vw,7rem);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.055em;

}


.final-contact h2 span {

    color: var(--accent);

}


.final-contact > p {

    margin-top: 35px;

    color: var(--soft-ink);

    font-size: .62rem;

    line-height: 1.8;

}


.final-actions {

    margin-top: 55px;

    display: flex;

    gap: 50px;

}


.final-actions a {

    display: flex;

    align-items: center;

    gap: 55px;

    padding-bottom: 12px;

    border-bottom: 1px solid var(--ink);

    font-size: .52rem;

    font-weight: 600;

    letter-spacing: .16em;

    transition: gap .5s var(--ease);

}


.final-actions a:hover {

    gap: 72px;

}


.final-actions span {

    font-size: 1rem;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding: 90px 7vw 30px;

    background: var(--ink);

    color: var(--white);

}


.footer-brand img {

    width: auto;

    height: 65px;

    max-width: 180px;

    object-fit: contain;

}


.footer-brand p {

    margin-top: 25px;

    color: var(--muted);

    font-size: .55rem;

    font-weight: 500;

    letter-spacing: .18em;

}


.footer-columns {

    padding: 65px 0;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 50px;

    border-bottom: 1px solid rgba(255,255,255,.15);

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column > span {

    margin-bottom: 23px;

    color: var(--muted);

    font-size: .5rem;

    font-weight: 600;

    letter-spacing: .18em;

}


.footer-column a,
.footer-column p {

    color: #d8d4cc;

    font-size: .6rem;

    line-height: 2;

}


.footer-column a {

    transition: color .3s ease;

}


.footer-column a:hover {

    color: var(--white);

}


.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    color: #706d67;

    font-size: .5rem;

    font-weight: 500;

    letter-spacing: .14em;

}


/* =========================================================
   SCROLL REVEAL — SAME LANGUAGE AS INDEX
========================================================= */

.scroll-reveal {

    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .9s var(--ease),
        transform 1s var(--ease);

    transition-delay: var(--reveal-delay, 0ms);

}


.scroll-reveal.is-visible {

    opacity: 1;

    transform: translateY(0);

}


.image-scroll-reveal {

    opacity: 0;

    clip-path: inset(8% 0 8% 0);

    transform: scale(1.04);

    transition:
        opacity 1.1s var(--ease),
        clip-path 1.2s var(--ease),
        transform 1.4s var(--ease);

}


.image-scroll-reveal.image-visible {

    opacity: 1;

    clip-path: inset(0 0 0 0);

    transform: scale(1);

}


.hero-reveal {

    opacity: 0;

    transform: translateY(28px);

    animation: heroReveal 1s var(--ease) forwards;

    animation-delay: var(--hero-delay);

}


@keyframes heroReveal {

    from {

        opacity: 0;

        transform: translateY(28px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;

}


.reduce-motion .scroll-reveal,
.reduce-motion .image-scroll-reveal,
.reduce-motion .hero-reveal {

    opacity: 1;

    transform: none;

    clip-path: none;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {


    .header {

        height: 76px;

        grid-template-columns: 1fr 1fr;

    }


    .brand img {

        height: 36px;

        max-width: 110px;

    }


    .header-center {

        display: none;

    }


    .menu-panel-inner {

        padding: 30px 6vw;

    }


    .menu-nav {

        left: 6vw;

        gap: 17px;

    }


    .menu-nav a {

        font-size: clamp(2rem,10vw,4rem);

    }


    .menu-bottom {

        left: 6vw;
        right: 6vw;

        bottom: 28px;

    }


    .contact-hero {

        min-height: 680px;

    }


    .hero-meta {

        top: 105px;

        left: 7vw;
        right: 7vw;

        font-size: .47rem;

    }


    .hero-content {

        width: 88vw;

    }


    .hero-content h1 {

        margin-top: 30px;

        font-size: clamp(3rem,14vw,5.5rem);

        line-height: 1.02;

    }


    .hero-text {

        margin-top: 30px;

        font-size: .62rem;

    }


    .hero-bottom {

        left: 7vw;
        right: 7vw;

        bottom: 28px;

    }


    .contact-introduction {

        display: block;

        padding: 100px 7vw;

    }


    .intro-copy {

        margin-top: 65px;

    }


    .intro-copy h2 {

        margin-top: 55px;

        font-size: clamp(3rem,12vw,5rem);

    }


    .intro-copy > p {

        margin-top: 55px;

    }


    .intro-side {

        margin-top: 75px;

    }


    .direct-contact {

        padding: 100px 7vw;

    }


    .direct-heading {

        display: block;

    }


    .direct-heading > div:last-child {

        margin-top: 65px;

    }


    .direct-heading h2 {

        margin-top: 55px;

        font-size: clamp(3rem,12vw,5rem);

    }


    .contact-list {

        margin-top: 80px;

    }


    .contact-item {

        min-height: 150px;

        grid-template-columns: 35px 1fr 25px;

        gap: 15px;

    }


    .contact-item:hover {

        padding-left: 10px;

        padding-right: 10px;

    }


    .contact-main h3 {

        font-size: clamp(1.7rem,7vw,3rem);

        word-break: break-word;

    }


    .contact-main p {

        font-size: .55rem;

    }


    .contact-note {

        padding: 100px 7vw;

        display: block;

    }


    .note-content {

        margin-top: 65px;

    }


    .note-content h2 {

        margin-top: 55px;

        font-size: clamp(3rem,12vw,5rem);

    }


    .note-content p {

        margin-top: 55px;

    }


    .location-section {

        display: flex;

        flex-direction: column;

    }


    .location-map {

        min-height: 480px;

        order: 2;

    }


    .location-map iframe {

        min-height: 480px;

    }


    .location-details {

        min-height: 600px;

        padding: 90px 7vw;

        order: 1;

    }


    .location-details h2 {

        margin-top: 55px;

        font-size: clamp(3rem,12vw,5rem);

    }


    .address {

        margin-top: 50px;

    }


    .final-contact {

        min-height: 650px;

        padding: 100px 7vw;

    }


    .final-contact h2 {

        margin-top: 55px;

        font-size: clamp(3rem,12vw,5rem);

    }


    .final-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        margin-top: 50px;

    }


    .footer-columns {

        grid-template-columns: 1fr 1fr;

        gap: 45px 30px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 15px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .header {

        height: 76px;

        padding: 0 5vw;

    }


    .brand img {

        height: 34px;

    }


    .menu-button {

        font-size: .55rem;

    }


    .hero-meta {

        top: 100px;

    }


    .hero-content h1 {

        font-size: 13vw;

    }


    .contact-item {

        grid-template-columns: 28px 1fr 20px;

        gap: 12px;

    }


    .contact-number {

        font-size: .46rem;

    }


    .contact-main h3 {

        font-size: 7vw;

    }


    .location-map {

        min-height: 400px;

    }


    .location-map iframe {

        min-height: 400px;

    }


    .footer-columns {

        grid-template-columns: 1fr;

    }


    .footer-brand img {

        height: 55px;

    }

}