/* ── Tokens ── */
:root {
    --void: #080808;
    --surface: #101010;
    --surface-raised: #161616;
    --border: #1C1C1C;
    --text-primary: #F0ECE4;
    --text-secondary: #6A6460;
    --text-muted: #3A3634;
    --accent: #C9993A;
    --accent-bright: #E0B055;
    --paper: #F4EDD8;
    --paper-shadow: #E2D5B8;
    --berry: #8C2F4B;

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --max-w: 1320px;
    --pad-x: clamp(1.5rem, 5vw, 5rem);
    --section-gap: clamp(5.5rem, 12vh, 10rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background: var(--void);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-gap) 0; }
.divider { height: 1px; background: var(--border); }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); flex-shrink: 0; }

/* ── Live dot ── */
.live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ff3131;
    margin-right: 7px;
    box-shadow: 0 0 0 0 rgba(255,49,49,0.55);
    animation: pulse-dot 2s infinite;
    vertical-align: middle;
}
@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(255,49,49,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(255,49,49,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,49,49,0); }
}

/* ── Nav ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(240,236,228,0.05);
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 38px; width: auto; display: block;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.btn-book {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-book:hover { background: var(--accent); color: var(--void); }

/* ── Hero ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    align-items: center;
    gap: 3rem;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; padding: 3rem 0; padding-left: var(--pad-x); }
.hero-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.25rem, 5.5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.75;
    margin-bottom: 0.6rem;
}
.hero-loc {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 1.75rem;
    background: var(--accent);
    color: var(--void);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); }

/* ── Hero right: strip fan + orbit ── */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 600px;
    padding-right: var(--pad-x);
}

/* Orbit rings */
.orbit-scene {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    z-index: 0;
}
.orbit-ring-a, .orbit-ring-b, .orbit-ring-c {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,153,58,0.12);
}
.orbit-ring-a { inset: 10%; }
.orbit-ring-b { inset: 25%; border-color: rgba(201,153,58,0.07); }
.orbit-ring-c { inset: 40%; border-color: rgba(201,153,58,0.05); }
.orbit-glow {
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,153,58,0.06) 0%, transparent 70%);
}
.orbit-arm-wrap {
    position: absolute;
    inset: 10%;
    animation: spin 9s linear infinite;
}
.orbit-pip {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent), 0 0 16px rgba(201,153,58,0.4);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .orbit-arm-wrap { animation: none; }
    .live-dot { animation: none; }
}

/* Photo strips */
.strip-fan {
    position: relative;
    z-index: 1;
    height: 580px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.strip {
    background: var(--paper);
    border-radius: 2px;
    padding: 10px 10px 0;
    width: 240px;
    box-shadow: 0 28px 60px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.4);
    position: absolute;
}
.strip .frame {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 1px;
    background: #1a1a1a;
}
.strip .frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) blur(5px) brightness(1.5) contrast(0.8);
    opacity: 0;
    animation: develop 1.5s ease-out forwards;
}
@keyframes develop {
    0%   { filter: grayscale(1) blur(5px) brightness(1.5) contrast(0.8); opacity: 0; }
    40%  { opacity: 1; }
    100% { filter: grayscale(0) blur(0) brightness(1) contrast(1); opacity: 1; }
}
.strip .tear {
    height: 0;
    border-top: 3px dotted rgba(42,31,46,0.28);
    margin: 9px 4px 0;
}
.strip .caption {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(42,31,46,0.75);
    display: flex;
    justify-content: space-between;
    padding: 8px 3px 14px;
}
.strip.s1 { transform: rotate(-7deg); left: 50%; margin-left: -350px; top: 12px; }
.strip.s2 { transform: rotate(3deg);  left: 50%; margin-left: -120px; top: 60px; z-index: 3; }
.strip.s3 { transform: rotate(-3deg); left: 50%; margin-left: 125px;  top: 0;   z-index: 2; }
.strip.s1 .frame img { animation-delay: 0.7s; }
.strip.s2 .frame img { animation-delay: 0.2s; }
.strip.s3 .frame img { animation-delay: 1.1s; }

@media (prefers-reduced-motion: reduce) {
    .strip .frame img { animation: none; filter: none; opacity: 1; }
}

/* ── Marquee strip ── */
.strip-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow-x: hidden; }
.strip-band-inner { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.strip-track {
    display: flex; flex-shrink: 0;
}
.strip-item {
    display: flex; align-items: center; gap: 1.4rem;
    padding: 1.1rem 2.75rem;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.strip-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Section headline ── */
.section-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    overflow-wrap: break-word;
}
.body-text { color: var(--text-secondary); font-size: 1rem; font-weight: 300; line-height: 1.78; }

/* ── Booth service cards ── */
.booths-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}
.booths-intro > *, .how-top > *, .book-grid > * { min-width: 0; }
.booths-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.booth-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.booth-card.in-view { opacity: 1; transform: translateY(0); }
.booth-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}
.booth-tag.digital { background: var(--berry); color: var(--paper); }
.booth-tag.glam    { background: var(--accent); color: var(--void); }
.booth-tag.vid360  { background: rgba(201,153,58,0.15); color: var(--accent); border: 1px solid rgba(201,153,58,0.3); }

.booth-strip {
    background: var(--paper);
    border-radius: 2px;
    padding: 8px 8px 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    margin-bottom: 1.5rem;
}
.booth-strip .frame { aspect-ratio: 4/5; overflow: hidden; border-radius: 1px; }
.booth-strip .frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.booth-card:hover .booth-strip .frame img { transform: scale(1.04); }
.booth-strip .tear { height: 0; border-top: 3px dotted rgba(42,31,46,0.28); margin: 7px 3px 0; }
.booth-strip .caption {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.04em;
    color: rgba(42,31,46,0.65);
    display: flex;
    justify-content: space-between;
    padding: 6px 2px 12px;
}
.booth-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.booth-tagline { color: var(--text-secondary); font-size: 0.88rem; font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }
.booth-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.booth-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); }
.booth-features li::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── Add-ons ── */
.addons-wrap { margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--border); }
.addons-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.addons-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.addon-chip {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    border: 1px dashed rgba(201,153,58,0.4);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: border-color 0.2s, color 0.2s;
}
.addon-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ── How it works ── */
.how-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3.5rem; }
.how-top .body-text { padding-top: 3rem; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); }
.step { padding: 2.5rem; border-right: 1px solid var(--border); position: relative; transition: background 0.3s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--surface); }
.step-num { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 2rem; }
.step-icon { width: 36px; height: 36px; margin-bottom: 1.5rem; }
.step-icon svg { width: 100%; height: 100%; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 0.65rem; }
.step-text { color: var(--text-secondary); font-size: 0.88rem; font-weight: 300; line-height: 1.72; }
.step-pip { position: absolute; bottom: 2.25rem; right: 2.25rem; width: 8px; height: 8px; background: var(--border); border-radius: 50%; transition: background 0.3s; }
.step:hover .step-pip { background: var(--accent); }

/* ── Gallery ── */
.gallery-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.btn-ghost {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 3px; }
.g-tile { overflow: hidden; position: relative; cursor: pointer; background: var(--surface); }
.g-tile::after { content: ''; display: block; padding-bottom: 85%; }
.g-tile:nth-child(1) { grid-column: span 5; }
.g-tile:nth-child(2) { grid-column: span 4; }
.g-tile:nth-child(3) { grid-column: span 3; }
.g-tile:nth-child(4) { grid-column: span 3; }
.g-tile:nth-child(5) { grid-column: span 5; }
.g-tile:nth-child(6) { grid-column: span 4; }
.g-inner { position: absolute; inset: 0; transition: transform 0.5s ease; }
.g-tile:hover .g-inner { transform: scale(1.04); }
.g-inner img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.75); transition: filter 0.4s; }
.g-tile:hover .g-inner img { filter: brightness(0.9); }
.g-inner-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 55% 40%, rgba(201,153,58,0.18) 0%, transparent 55%),
                linear-gradient(160deg, #141210 0%, #0B0A08 100%);
}
.g-caption {
    position: absolute;
    bottom: 1rem; left: 1rem; right: 1rem;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240,236,228,0.4);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1;
}
.g-tile:hover .g-caption { opacity: 1; transform: none; }

/* ── Packages ── */
.pkg-head { text-align: center; margin-bottom: 4rem; }
.pkg-sub { color: var(--text-secondary); font-weight: 300; margin-top: 0.9rem; font-size: 0.95rem; }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pkg-card { background: var(--void); padding: 2.5rem 2rem; position: relative; transition: background 0.3s; }
.pkg-card:hover { background: var(--surface); }
.pkg-card.featured { background: var(--surface-raised); }
.pkg-card.featured::before {
    content: 'Most Popular';
    position: absolute; top: 0; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--void); background: var(--accent);
    padding: 0.28rem 1rem; white-space: nowrap;
}
.pkg-tier { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.pkg-name { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 0.4rem; }
.pkg-tagline { color: var(--text-secondary); font-size: 0.88rem; font-weight: 300; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); }
.pkg-features li::before { content: '↗'; color: var(--accent); font-size: 0.72rem; margin-top: 2px; flex-shrink: 0; }
.btn-pkg {
    width: 100%;
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--border); color: var(--text-secondary); background: transparent;
    cursor: pointer; transition: all 0.2s; display: block; text-align: center;
}
.btn-pkg:hover { background: var(--accent); border-color: var(--accent); color: var(--void); }
.pkg-card.featured .btn-pkg { background: var(--accent); border-color: var(--accent); color: var(--void); }

/* ── Book ── */
.book { background: var(--surface); border-top: 1px solid var(--border); }
.book-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 4rem; align-items: start; }
.book-headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.04; letter-spacing: -0.025em; text-transform: uppercase; margin-bottom: 1.4rem; overflow-wrap: break-word; }
.book-desc { color: var(--text-secondary); font-weight: 300; line-height: 1.75; font-size: 0.95rem; margin-bottom: 2.5rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.22rem; }
.contact-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.contact-val { font-size: 0.95rem; }

.form { display: flex; flex-direction: column; gap: 1.2rem; min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; min-width: 0; }
.field { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.field label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field select, .field textarea {
    background: var(--surface-raised); border: 1px solid rgba(240,236,228,0.16);
    color: var(--text-primary); padding: 0.95rem 1.15rem;
    font-size: 0.98rem; font-weight: 300; outline: none;
    transition: border-color 0.2s, background 0.2s; width: 100%;
    appearance: none; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: var(--void); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A6460' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1.15rem center; padding-right: 2.75rem;
}
.field textarea { resize: vertical; min-height: 120px; }

/* Multi-select toggle chips (Services Interested In / Add-Ons) */
.check-group { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.check-chip {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em;
    border: 1px solid rgba(240,236,228,0.16); color: var(--text-secondary);
    background: var(--surface-raised);
    padding: 0.6rem 1.05rem; border-radius: 20px; cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.check-chip input { accent-color: var(--accent); width: 14px; height: 14px; flex-shrink: 0; }
.check-chip:hover { border-color: var(--accent); color: var(--accent); }
.check-chip:has(input:checked) { border-color: var(--accent); background: rgba(201,153,58,0.12); color: var(--accent-bright); }

/* Collapsed optional fields */
.form-more { border: 1px solid rgba(240,236,228,0.16); background: var(--surface-raised); }
.form-more summary {
    cursor: pointer; list-style: none; user-select: none;
    font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); padding: 0.95rem 1.15rem;
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.form-more summary::-webkit-details-marker { display: none; }
.form-more summary::after { content: '+'; font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.form-more[open] summary::after { content: '\2212'; }
.form-more[open] summary { border-bottom: 1px solid rgba(240,236,228,0.16); }
.form-more-hint { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: 0.8rem; }
.form-more-body { padding: 1.2rem 1.15rem; display: flex; flex-direction: column; gap: 1.2rem; }
.btn-submit {
    font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 1rem 2rem; background: var(--accent); color: var(--void);
    border: none; cursor: pointer; transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 0.75rem;
}
.btn-submit:hover { background: var(--accent-bright); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { font-size: 0.85rem; min-height: 1.2em; }
.form-status.success { color: var(--accent-bright); }
.form-status.error { color: var(--berry); }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* ── Footer ── */
footer {
    background: #050505;
    padding: 2.75rem var(--pad-x);
    border-top: 1px solid rgba(240,236,228,0.06);
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; font-weight: 300; max-width: 28ch; }
.social-links { display: flex; gap: 1.75rem; list-style: none; }
.social-links a {
    font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
    font-family: var(--font-mono); font-size: 0.58rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-muted);
    border-top: 1px solid rgba(240,236,228,0.05); padding-top: 1.75rem;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 5rem var(--pad-x) 3rem; }
    .hero-copy { padding: 2rem 0 0; padding-left: 0; }
    .hero-right { padding-right: 0; }
    .hero-headline { font-size: clamp(2rem, 10vw, 3.5rem); overflow-wrap: break-word; }
    .section-headline { font-size: clamp(1.9rem, 8vw, 3rem); }
    .book-headline { font-size: clamp(1.9rem, 8vw, 3rem); overflow-wrap: break-word; }
    .hero-right { min-height: 370px; }
    .strip { width: 190px; }
    .strip.s1 { margin-left: -280px; }
    .strip.s2 { margin-left: -95px; }
    .strip.s3 { margin-left: 100px; }
    .strip-fan { height: 370px; }
    .booths-intro, .how-top, .book-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .booths-grid { grid-template-columns: 1fr; gap: 3rem; }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: none; }
    .pkg-grid { grid-template-columns: 1fr; }
    .g-tile:nth-child(n) { grid-column: span 6; }
    .nav-links { display: none; }
}
@media (max-width: 1180px) {
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .g-tile:nth-child(n) { grid-column: span 12; }
    .strip { width: 150px; }
    .strip.s1 { margin-left: -220px; }
    .strip.s2 { margin-left: -75px; }
    .strip.s3 { margin-left: 80px; }
}
