:root {
    --cream: #F5F1EA;
    --cream-2: #EBE4D6;
    --ink: #131313;
    --ink-2: #1F1F1F;
    --ink-3: #2A2A2A;
    --red: #DC2626;
    --red-2: #B91C1C;
    --amber: #F59E0B;
    --amber-2: #FCD34D;
    --white: #FFFFFF;
    --g-100: #EFEBE3;
    --g-200: #DDD6C8;
    --g-300: #C9C2B5;
    --g-500: #8A8275;
    --g-700: #4A4640;
    --g-900: #1F1C18;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --script: 'Caveat', cursive;
    --ease: cubic-bezier(0.16, 1, 0.3, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased
}

@media(max-width:968px) {
    body {
        cursor: auto
    }
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
    color: inherit
}

@media(max-width:968px) {
    button {
        cursor: pointer
    }
}

img {
    max-width: 100%;
    display: block
}

::selection {
    background: var(--red);
    color: white
}

/* PRELOADER */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s var(--ease)
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-inner {
    text-align: center;
    width: 300px
}

.preloader-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 24px;
    letter-spacing: -2px
}

.preloader-logo .pl-e {
    font-size: 2rem;
    color: var(--ink)
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, .08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--red);
    transition: width .15s linear
}

.preloader-pct {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--g-700)
}

/* CURSOR */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    will-change: transform;
    transform: translate(-50%, -50%)
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--red)
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--red);
    transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease)
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, .1)
}

.cursor-dot.hover {
    width: 0;
    height: 0
}

@media(max-width:968px) {

    .cursor-dot,
    .cursor-ring {
        display: none
    }
}

/* GRAIN */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: .04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>")
}

/* WRAP + TYPE */
.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

@media(max-width:768px) {
    .wrap {
        padding: 0 20px
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--g-700)
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--red)
}

.eyebrow.light {
    color: var(--g-300)
}

.eyebrow.light::before {
    background: var(--amber)
}

h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.02
}

.italic {
    font-style: italic;
    color: var(--red)
}

.italic-amber {
    font-style: italic;
    color: var(--amber)
}

/* BUTTONS */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 500;
    font-size: .9rem;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
    position: relative;
    cursor: none;
    white-space: nowrap
}

@media(max-width:968px) {
    .btn-pill {
        cursor: pointer
    }
}

.btn-pill svg {
    width: 13px;
    height: 13px;
    transition: transform .3s var(--ease);
    flex-shrink: 0
}

.btn-pill:hover svg {
    transform: translate(2px, -2px)
}

.btn-pill-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink)
}

.btn-pill-ghost:hover {
    background: var(--ink);
    color: var(--cream)
}

.btn-pill-dark {
    background: var(--ink);
    color: var(--cream);
    border: 1.5px solid var(--ink)
}

.btn-pill-dark:hover {
    background: var(--red);
    border-color: var(--red)
}

.btn-pill-light {
    background: var(--cream);
    color: var(--ink);
    border: 1.5px solid var(--cream)
}

.btn-pill-light:hover {
    background: var(--amber);
    border-color: var(--amber)
}

/* LOGO */
.nav-logo {
    color: #D01C1F;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    font-size: 0
}

.nav-logo svg.ac-logo {
    height: 38px;
    width: auto;
    display: block
}

.preloader-logo {
    color: #D01C1F;
    line-height: 0;
    font-size: 0;
    margin-bottom: 24px
}

.preloader-logo svg.ac-logo {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto
}

.ft-logo {
    color: var(--cream);
    line-height: 0;
    font-size: 0;
    margin-bottom: 22px
}

.ft-logo svg.ac-logo {
    width: 120px;
    height: auto;
    display: block
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease)
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(245, 241, 234, .85);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .04)
}

.nav-c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px
}

.nav-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--red);
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 3px
}

.nav-logo .pl-e {
    font-size: 1.1rem;
    color: var(--ink)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-burger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    cursor: none;
    transition: background .3s var(--ease);
    flex-shrink: 0;
    padding: 0
}

@media(max-width:968px) {
    .nav-burger {
        cursor: pointer
    }
}

.nav-burger:hover {
    background: var(--ink)
}

.nav-burger:hover span {
    background: var(--cream)
}

.nav-burger span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease), background .3s var(--ease);
    display: block
}

.nav-burger.open span:first-child {
    transform: translateY(4px) rotate(45deg)
}

.nav-burger.open span:last-child {
    transform: translateY(-2px) rotate(-45deg)
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
    padding: 60px
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible
}

.nav-overlay a {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 5rem);
    color: var(--cream);
    transition: color .3s, transform .4s var(--ease);
    letter-spacing: -.02em
}

.nav-overlay a:hover {
    color: var(--amber);
    transform: translateX(20px)
}

@media(max-width:768px) {
    .btn-pill-ghost {
        display: none
    }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

/* FOOTER */
.footer {
    background: var(--ink-2);
    color: var(--cream);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden
}

.foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--ink-3)
}

.foot-brand .ft-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 2.4rem;
    margin-bottom: 18px;
    letter-spacing: -1px
}

.foot-brand .ft-logo .red {
    color: var(--red)
}

.foot-brand .ft-logo .e {
    color: var(--amber);
    font-size: 1.6rem
}

.foot-brand p {
    color: var(--g-300);
    max-width: 320px;
    line-height: 1.6;
    font-size: .95rem
}

.foot-col h5 {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--amber);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase
}

.foot-col a {
    display: block;
    margin-bottom: 10px;
    color: var(--g-300);
    font-size: .95rem;
    transition: color .3s, transform .3s
}

.foot-col a:hover {
    color: var(--cream);
    transform: translateX(3px)
}

.foot-bot {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    font-size: .85rem;
    color: var(--g-500);
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--mono)
}

.foot-legal {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--mono)
}

.foot-legal a {
    color: var(--g-500);
    transition: color .3s var(--ease)
}

.foot-legal a:hover {
    color: var(--cream)
}

.foot-social a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--g-300);
    font-size: .92rem;
    transition: color .3s var(--ease), transform .3s var(--ease);
    text-decoration: none
}

.foot-social a:hover {
    color: var(--cream);
    transform: translateX(3px)
}

.foot-social .social-ico {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.foot-social a:hover .social-ico {
    transform: scale(1.1)
}

.foot-mega {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: clamp(5rem, 18vw, 16rem);
    line-height: .85;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 158, 11, .3);
    margin-top: 50px;
    margin-bottom: -30px;
    letter-spacing: -.04em;
    user-select: none
}

.foot-mega .red {
    -webkit-text-stroke-color: rgba(220, 38, 38, .4)
}

@media(max-width:968px) {
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .foot-brand {
        grid-column: span 2
    }
}

@media(max-width:600px) {
    .foot-top {
        grid-template-columns: 1fr
    }

    .foot-brand {
        grid-column: span 1
    }
}

.contact-page {
    padding: 180px 0 120px;
    background: var(--cream);
    min-height: 100vh;
    position: relative;
    overflow: hidden
}

.contact-page::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, .12), transparent 70%);
    bottom: -180px;
    left: -150px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0
}

.contact-page::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, .14), transparent 70%);
    top: 60px;
    right: -120px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    position: relative;
    z-index: 2;
    align-items: start
}

.contact-intro .eyebrow {
    margin-bottom: 30px
}

.contact-mega {
    font-family: var(--sans);
    font-size: clamp(2.6rem, 6.4vw, 6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.04em;
    margin: 0 0 30px;
    color: var(--ink)
}

.contact-mega .line {
    display: block;
    margin-bottom: 6px
}

.contact-mega .pill {
    display: inline-flex;
    align-items: center;
    gap: .12em;
    padding: .05em .3em;
    border-radius: .55em;
    line-height: 1.05;
    vertical-align: baseline
}

.contact-mega .pill.red {
    background: var(--red);
    color: var(--cream)
}

.contact-mega .pill.amber {
    background: var(--amber);
    color: var(--ink)
}

.contact-mega .pill .spark {
    width: .5em;
    height: .5em;
    flex-shrink: 0;
    animation: spinSlow 8s linear infinite
}

@keyframes spinSlow {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.contact-sub {
    font-size: 1.15rem;
    color: var(--g-700);
    max-width: 480px;
    margin-bottom: 50px;
    line-height: 1.55
}

.contact-direct {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--g-300)
}

.direct-row {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--g-300);
    transition: padding .3s var(--ease), color .3s var(--ease);
    text-decoration: none;
    color: inherit;
    cursor: none
}

@media(max-width:968px) {
    .direct-row {
        cursor: pointer
    }
}

.direct-row:hover {
    padding-left: 14px
}

.direct-row .d-label {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .15em;
    color: var(--g-700);
    text-transform: uppercase
}

.direct-row .d-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    transition: color .3s var(--ease)
}

.direct-row:hover .d-value {
    color: var(--red)
}

.direct-row .d-arrow {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    transition: transform .3s var(--ease), color .3s var(--ease);
    line-height: 1
}

.direct-row:hover .d-arrow {
    transform: translate(4px, -4px);
    color: var(--red)
}

.contact-form-card {
    background: var(--ink);
    color: var(--cream);
    border-radius: 28px;
    padding: 48px;
    position: sticky;
    top: 100px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18)
}

.contact-form-card .form-head {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ink-3)
}

.contact-form-card .form-head h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.contact-form-card .form-head p {
    color: var(--g-300);
    font-size: .92rem;
    line-height: 1.5
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.contact-form-card label {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-form-card label>span {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--g-300);
    text-transform: uppercase;
    font-weight: 500
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    padding: 16px 18px;
    border: 1.5px solid var(--ink-3);
    border-radius: 12px;
    font-family: var(--sans);
    font-size: .95rem;
    background: var(--ink-2);
    color: var(--cream);
    transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
    width: 100%
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: var(--g-500)
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: var(--ink-3);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .15)
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 130px;
    font-family: var(--sans)
}

.contact-form-card select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px
}

.contact-form-card .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px;
    background: var(--cream);
    color: var(--ink);
    border: 1.5px solid var(--cream);
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    cursor: none;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease)
}

@media(max-width:968px) {
    .contact-form-card .btn-submit {
        cursor: pointer
    }
}

.contact-form-card .btn-submit svg {
    width: 14px;
    height: 14px;
    transition: transform .3s var(--ease)
}

.contact-form-card .btn-submit:hover {
    background: var(--amber);
    border-color: var(--amber)
}

.contact-form-card .btn-submit:hover svg {
    transform: translate(3px, -3px)
}

.contact-form-card .form-status {
    text-align: center;
    font-size: .88rem;
    color: var(--amber);
    font-weight: 600;
    min-height: 18px;
    margin-top: 6px
}

/* Contact Form 7 — match the original built-in form layout exactly */
.contact-form-card .wpcf7 {
    margin: 0
}

.contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%
}

.contact-form-card .wpcf7-spinner {
    display: none
}

.contact-form-card .wpcf7-not-valid-tip {
    font-family: var(--sans);
    font-size: .78rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--amber);
    font-weight: 500;
    margin-top: 4px
}

.contact-form-card .wpcf7-response-output {
    text-align: center;
    font-size: .88rem;
    font-weight: 600;
    color: var(--amber);
    border: none;
    margin: 0;
    padding: 0;
    min-height: 18px
}

@media(max-width:1100px) {
    .contact-page {
        padding: 150px 0 80px
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .contact-form-card {
        position: static;
        padding: 40px
    }
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--g-300)
}

.contact-social .cs-lbl {
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .15em;
    color: var(--g-700);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px
}

.csg-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border: 1.5px solid var(--g-300);
    border-radius: 100px;
    text-decoration: none;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 500;
    transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
    cursor: none
}

@media(max-width:968px) {
    .csg-pill {
        cursor: pointer
    }
}

.csg-pill:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink)
}

.csg-pill .social-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.csg-pill:hover .social-ico {
    transform: scale(1.1)
}

@media(max-width:640px) {
    .contact-page {
        padding: 120px 0 60px
    }

    .contact-mega {
        font-size: clamp(2.2rem, 9.5vw, 3.6rem);
        margin-bottom: 24px
    }

    .contact-sub {
        font-size: 1rem;
        margin-bottom: 36px
    }

    .contact-form-card {
        padding: 28px;
        border-radius: 20px
    }

    .direct-row {
        grid-template-columns: 95px 1fr auto;
        gap: 14px;
        padding: 18px 0
    }

    .direct-row .d-value {
        font-size: .95rem
    }

    .direct-row .d-arrow {
        font-size: 1.2rem
    }
}