*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:       #07090e;
    --bg2:      #0d1018;
    --bg3:      #111520;
    --text:     #ddd8cd;
    --muted:    #6b6b6b;
    --accent:   #c6ff00;
    --error:    #ff5c5c;
    --border:   rgba(255,255,255,0.07);
    --ff-display: 'DM Serif Display', serif;
    --ff-head:  'Cormorant Garamond', serif;
    --ff-ui:    'Syne', sans-serif;
}

html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-ui);
    overflow-x: hidden;
    cursor: none;
}

/* ─── CURSOR ─────────────────────────────────────────────── */
#cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .3s, height .3s;
    mix-blend-mode: difference;
}
#cursor-ring {
    position: fixed; width: 38px; height: 38px;
    border: 1px solid rgba(198,255,0,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: left .12s, top .12s, width .3s, height .3s;
}

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(.76,0,.24,1);
    background: rgba(7,9,14,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
#nav.visible { transform: translateY(0); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 6vw; height: 68px; }
.nav-logo { font-family: var(--ff-ui); font-size: 18px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.nav-logo span { color: var(--accent); font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-family: var(--ff-ui); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { font-family: var(--ff-ui); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--bg); background: var(--accent); padding: 10px 20px; text-decoration: none; transition: background .25s; }
.nav-cta:hover { background: #fff; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; height: 1.5px; background: var(--text); transition: transform .35s cubic-bezier(.76,0,.24,1), opacity .25s, width .3s; transform-origin: center; }
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 20px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }
.nav-drawer { display: none; position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.nav-drawer-backdrop { position: absolute; inset: 0; background: rgba(7,9,14,0.75); opacity: 0; transition: opacity .4s; backdrop-filter: blur(6px); }
.nav-drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(80vw,300px); background: var(--bg2); border-left: 1px solid var(--border); transform: translateX(100%); transition: transform .45s cubic-bezier(.76,0,.24,1); padding: 88px 32px 48px; display: flex; flex-direction: column; }
.nav-drawer.open { pointer-events: all; }
.nav-drawer.open .nav-drawer-backdrop { opacity: 1; }
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.drawer-links { list-style: none; border-top: 1px solid var(--border); }
.drawer-links li { border-bottom: 1px solid var(--border); opacity: 0; transform: translateX(16px); transition: opacity .3s, transform .3s; }
.nav-drawer.open .drawer-links li { opacity: 1; transform: translateX(0); }
.nav-drawer.open .drawer-links li:nth-child(1) { transition-delay: .08s; }
.nav-drawer.open .drawer-links li:nth-child(2) { transition-delay: .13s; }
.nav-drawer.open .drawer-links li:nth-child(3) { transition-delay: .18s; }
.nav-drawer.open .drawer-links li:nth-child(4) { transition-delay: .23s; }
.nav-drawer.open .drawer-links li:nth-child(5) { transition-delay: .28s; }
.drawer-links a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; font-family: var(--ff-head); font-size: 1.35rem; color: var(--text); text-decoration: none; transition: color .2s; }
.drawer-links a:hover { color: #fff; }
.drawer-cta { margin-top: 32px; display: block; text-align: center; padding: 14px 20px; background: var(--accent); color: var(--bg); font-family: var(--ff-ui); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; opacity: 0; transform: translateY(10px); transition: opacity .3s .32s, transform .3s .32s; }
.nav-drawer.open .drawer-cta { opacity: 1; transform: translateY(0); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
#page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 6vw 72px;
    overflow: hidden;
}
#page-hero::before {
    content: 'CONTACT';
    position: absolute;
    right: -2vw; top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-display);
    font-size: clamp(100px, 16vw, 200px);
    font-weight: 400;
    color: rgba(255,255,255,0.022);
    pointer-events: none; user-select: none;
    line-height: 1; letter-spacing: -.04em;
}
#page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 6vw; right: 6vw;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent 60%);
}
.page-label {
    font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
    letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
    opacity: 0; animation: fadeUp .6s .1s forwards;
}
.page-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.page-title {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 400; line-height: 1.0; letter-spacing: -.03em;
    color: #fff; margin-bottom: 24px;
    opacity: 0; animation: fadeUp .8s .2s forwards;
}
.page-title em { font-style: italic; color: var(--accent); }
.page-intro {
    font-family: var(--ff-head);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 300; font-style: italic; line-height: 1.7;
    color: rgba(221,216,205,0.6); max-width: 600px;
    opacity: 0; animation: fadeUp .7s .3s forwards;
}

/* ─── MAIN GRID ──────────────────────────────────────────── */
#contact-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    padding: 80px 6vw 100px;
    align-items: start;
}

/* ─── LEFT: Info ─────────────────────────────────────────── */
#contact-info {
    padding-right: 7vw;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.info-block {
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.info-block.visible { opacity: 1; transform: translateY(0); }
.info-block:nth-child(2) { transition-delay: .1s; }
.info-block:nth-child(3) { transition-delay: .2s; }
.info-block:nth-child(4) { transition-delay: .3s; }

.info-label {
    font-family: var(--ff-ui); font-size: 9px; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.info-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

/* Contact cards */
.contact-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    background: var(--bg2);
    margin-bottom: 10px;
    text-decoration: none;
    transition: border-color .25s, background .25s;
    position: relative; overflow: hidden;
}
.contact-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: var(--accent);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.contact-card:hover { border-color: rgba(198,255,0,0.2); background: rgba(198,255,0,0.03); }
.contact-card:hover::before { transform: scaleY(1); }

.contact-card-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(198,255,0,0.08);
    border: 1px solid rgba(198,255,0,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.contact-card-icon svg { width: 15px; height: 15px; }
.contact-card-body {}
.contact-card-sub {
    font-family: var(--ff-ui); font-size: 9px; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 4px;
}
.contact-card-value {
    font-family: var(--ff-head); font-size: 1.15rem; font-weight: 600;
    color: #fff; line-height: 1.3;
    transition: color .2s;
}
.contact-card:hover .contact-card-value { color: var(--accent); }

/* Social icons */
.social-grid {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.social-item {
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    text-decoration: none;
    transition: transform .25s;
}
.social-item:hover { transform: translateY(-4px); }
.social-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: border-color .25s, color .25s, background .25s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-item:hover .social-icon { border-color: var(--accent); color: var(--accent); background: rgba(198,255,0,0.06); }
.social-name {
    font-family: var(--ff-ui); font-size: 9px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
    transition: color .2s;
}
.social-item:hover .social-name { color: var(--accent); }

/* Hours */
.hours-list {
    display: flex; flex-direction: column; gap: 8px;
}
.hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-ui); font-size: 11px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 10px; }
.hours-time { color: var(--text); font-weight: 500; }
.hours-time.closed { color: rgba(107,107,107,0.4); }

/* ─── RIGHT: Form ────────────────────────────────────────── */
#contact-form-wrap {
    padding-left: 7vw;
}

.form-head {
    margin-bottom: 40px;
}
.form-head-label {
    font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.form-head-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.form-head h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    font-weight: 400; line-height: 1.05; color: #fff;
}
.form-head h2 em { font-style: italic; color: var(--accent); }

/* Subject tabs */
.subject-tabs {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 32px;
}
.subject-tab {
    font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted); border: 1px solid var(--border);
    background: none; padding: 8px 16px; cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
}
.subject-tab:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.subject-tab.active { color: var(--bg); background: var(--accent); border-color: var(--accent); }

/* Fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.full { grid-template-columns: 1fr; }

.field {
    display: flex; flex-direction: column; margin-bottom: 20px;
}
.field label {
    font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
    transition: color .2s;
}
.field:focus-within label { color: var(--accent); }
.field input,
.field textarea,
.field select {
    background: var(--bg2); border: 1px solid var(--border);
    color: var(--text); font-family: var(--ff-ui); font-size: 13px;
    padding: 14px 16px; outline: none; width: 100%;
    transition: border-color .25s, background .25s, box-shadow .25s;
    -webkit-appearance: none; appearance: none;
    resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(107,107,107,0.5); }
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(198,255,0,0.4);
    background: rgba(13,16,24,0.8);
    box-shadow: 0 0 0 3px rgba(198,255,0,0.05);
}
.field input.valid,
.field textarea.valid   { border-color: rgba(198,255,0,0.3); }
.field input.invalid,
.field textarea.invalid { border-color: rgba(255,92,92,0.5); }

.field-error {
    font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
    color: var(--error); margin-top: 6px;
    display: flex; align-items: center; gap: 5px;
    height: 0; overflow: hidden; opacity: 0;
    transition: height .25s, opacity .25s;
}
.field-error.show { height: 18px; opacity: 1; }
.field-error::before { content: '!'; flex-shrink: 0; }

/* Char counter for message */
.char-counter {
    font-family: var(--ff-ui); font-size: 10px;
    color: var(--muted); text-align: right;
    margin-top: 6px; transition: color .2s;
}
.char-counter.warn { color: var(--accent); }
.char-counter.over { color: var(--error); }

/* Submit */
.submit-btn {
    width: 100%; margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: var(--accent); color: var(--bg);
    font-family: var(--ff-ui); font-size: 12px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    padding: 18px 32px; border: none; cursor: pointer;
    position: relative; overflow: hidden; transition: gap .3s;
}
.submit-btn::before {
    content: ''; position: absolute; inset: 0; background: #fff;
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.76,0,.24,1);
}
.submit-btn:hover::before { transform: translateX(0); }
.submit-btn span, .submit-btn svg { position: relative; z-index: 1; }
.submit-btn:hover { gap: 18px; }
.submit-btn svg { transition: transform .3s; }
.submit-btn:hover svg { transform: translateX(5px); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.submit-btn:disabled::before { display: none; }

/* ─── SUCCESS MESSAGE ────────────────────────────────────── */
#form-success {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 44px;
    border: 1px solid rgba(198,255,0,0.2);
    background: rgba(198,255,0,0.03);
    position: relative;
    overflow: hidden;
}
#form-success.show { display: flex; }
#form-success::before {
    content: '✦';
    position: absolute;
    right: 20px; bottom: -20px;
    font-family: var(--ff-ui);
    font-size: 120px;
    color: rgba(198,255,0,0.05);
    line-height: 1;
}
.success-icon {
    font-family: var(--ff-ui); font-size: 28px;
    color: var(--accent); margin-bottom: 20px;
}
.success-title {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 400; color: #fff; margin-bottom: 12px; line-height: 1.1;
}
.success-title em { font-style: italic; color: var(--accent); }
.success-desc {
    font-family: var(--ff-head);
    font-size: 1.1rem; font-weight: 300; font-style: italic;
    color: rgba(221,216,205,0.6); line-height: 1.7; margin-bottom: 28px;
}
.success-reset {
    font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); background: none; border: none;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    transition: color .2s;
}
.success-reset:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────── */
#site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 64px 6vw 36px;
    position: relative;
    overflow: hidden;
}

/* Giant faded background logo */
#site-footer::before {
    content: '✦';
    position: absolute;
    right: -2vw;
    bottom: -40px;
    font-family: var(--ff-ui);
    font-size: clamp(180px, 22vw, 300px);
    color: rgba(255, 255, 255, 0.018);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Accent top line */
#site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 6vw;
    width: 80px;
    height: 2px;
    background: var(--accent);
}

/* ── Top row ── */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    position: relative;
}

/* Brand */
.footer-brand {}

.footer-logo {
    font-family: var(--ff-ui);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--accent);
    font-size: 24px;
}

.footer-tagline {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(221, 216, 205, 0.45);
    line-height: 1.6;
    max-width: 260px;
}

/* Nav links — center */
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-nav-label {
    font-family: var(--ff-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.footer-nav a {
    font-family: var(--ff-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.footer-nav a:hover {
    color: var(--text);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

/* Socials — right */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-social-label {
    font-family: var(--ff-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: border-color .25s, color .25s, background .25s, transform .25s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(198, 255, 0, 0.06);
    transform: translateY(-3px);
}

.social-link svg {
    width: 15px;
    height: 15px;
}

/* Newsletter micro */
.footer-newsletter {
    margin-top: 6px;
    display: flex;
    align-items: center;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text);
    font-family: var(--ff-ui);
    font-size: 11px;
    padding: 9px 14px;
    outline: none;
    width: 190px;
    transition: border-color .25s;
}

.footer-newsletter input::placeholder {
    color: rgba(107, 107, 107, 0.5);
}

.footer-newsletter input:focus {
    border-color: rgba(198, 255, 0, 0.3);
}

.footer-newsletter button {
    background: var(--accent);
    border: none;
    color: var(--bg);
    font-family: var(--ff-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 9px 14px;
    cursor: pointer;
    transition: background .25s;
    white-space: nowrap;
}

.footer-newsletter button:hover {
    background: #fff;
}

/* ── Bottom row ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.footer-copy {
    font-family: var(--ff-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    color: rgba(107, 107, 107, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copy .copy-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(107, 107, 107, 0.4);
    flex-shrink: 0;
}

.footer-copy a {
    color: rgba(198, 255, 0, 0.5);
    text-decoration: none;
    transition: color .2s;
}

.footer-copy a:hover {
    color: var(--accent);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: var(--ff-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(107, 107, 107, 0.45);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover {
    color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    }

    .footer-brand {
    grid-column: 1 / -1;
    }

    .footer-nav {
    align-items: flex-start;
    }

    .footer-social {
    align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .footer-top {
    grid-template-columns: 1fr;
    }

    .footer-social {
    align-items: flex-start;
    }

    .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    }

    .footer-newsletter input {
    width: 160px;
    }

    #site-footer {
    padding: 48px 5vw 32px;
    }
}



/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
    #contact-main { grid-template-columns: 1fr; gap: 60px; padding: 60px 5vw 80px; }
    #contact-info { position: static; padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 60px; }
    #contact-form-wrap { padding-left: 0; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-social-col { align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 720px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: block; }
    .form-row { grid-template-columns: 1fr; }
    #page-hero { padding: 0 5vw 60px; min-height: 44vh; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-newsletter-wrap input { width: 160px; }
}
@media (max-width: 500px) {
    body { cursor: auto; }
    #cursor, #cursor-ring { display: none; }
}