@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

/* ==========================================
   DESIGN TOKENS
   A gym is concrete, chalk, and struck iron —
   not a neon nightclub. Black-and-yellow palette:
   hazard-tape yellow for high-energy accents,
   a deeper metallic gold for secondary details.
========================================== */
:root {
    --ink: #0b0b0a;          /* near-black concrete floor */
    --surface: #171613;      /* card surface */
    --surface-2: #201f1a;    /* raised card surface */
    --chalk: #efece2;        /* chalk-dust white (never pure #fff) */
    --chalk-dim: #a29d90;    /* muted warm grey body text */
    --iron: #3d3d3a;         /* steel/iron borders & dividers */
    --iron-light: #6c6a63;
    --yellow: #ffc300;       /* primary accent — hazard yellow */
    --yellow-dim: #a37e00;   /* darker yellow for shadows/hover */
    --gold: #d4af37;         /* secondary accent — metallic gold, used sparingly */
    --on-yellow: #0b0b0a;    /* text color placed on top of yellow/gold surfaces */

    --display: 'Anton', sans-serif;
    --body: 'Barlow Condensed', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Hides honeypot fields from sighted users while keeping them in the
   DOM (and tab order) so basic spam bots that auto-fill every input
   still get caught by the server-side check). */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--ink);
    color: var(--chalk);
    font-family: var(--body);
    overflow-x: hidden;
    position: relative;
}

/* Chalk-dust grain overlay across the whole page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.05;
    background-image: radial-gradient(rgba(239, 236, 226, 0.9) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
}

p { line-height: 1.6; color: var(--chalk-dim); font-size: 1.05rem; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

.eyebrow {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--yellow);
    display: inline-block;
}

.highlight { color: var(--yellow); }

/* ==========================================
   BUTTONS
========================================== */
.btn {
    font-family: var(--body);
    background: var(--yellow);
    color: var(--on-yellow);
    border: 2px solid var(--yellow);
    cursor: pointer;
    padding: 16px 34px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn:hover {
    background: transparent;
    color: var(--yellow);
}

.btn-outline {
    background: transparent;
    color: var(--chalk);
    border: 2px solid var(--iron-light);
}

.btn-outline:hover {
    border-color: var(--chalk);
    color: var(--chalk);
    background: rgba(255, 255, 255, 0.04);
}

/* ==========================================
   MARQUEE
========================================== */
.marquee-container {
    background: var(--yellow);
    color: var(--ink);
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
    border-bottom: 3px solid var(--ink);
}

.marquee-text {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ink);
    animation: scroll-left 22s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   NAVIGATION
========================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(11, 11, 10, 0.92);
    padding: 14px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--iron);
    backdrop-filter: blur(6px);
}

.nav-brand { display: flex; align-items: center; }

.brand-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.nav-logo {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-link:hover .nav-logo {
    filter: drop-shadow(0 0 8px var(--yellow));
    transform: rotate(-4deg);
}

.brand-divider {
    width: 3px;
    height: 30px;
    background: var(--yellow);
    flex-shrink: 0;
}

.brand-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    white-space: nowrap;
    font-family: var(--body);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--chalk);
    text-transform: uppercase;
}

.brand-sub {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold);
    margin-top: 5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--chalk-dim);
    transition: color 0.2s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--chalk);
    border-bottom-color: var(--yellow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ==========================================
   HERO — split copy + "THE PLATFORM" scoreboard
========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    overflow: hidden;
    border-bottom: 3px solid var(--yellow);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video, .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(108%) brightness(0.6) saturate(1.15);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11,11,10,0.96) 30%, rgba(11,11,10,0.72) 65%, rgba(11,11,10,0.5) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-copy {
    max-width: 720px;
    text-align: center;
}

.hero-copy .eyebrow {
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    color: var(--chalk);
    margin-bottom: 26px;
}

.hero-title span { display: block; }

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 520px;
    margin: 0 auto 40px;
}

/* --- Signature element: THE PLATFORM board --- */
.platform-board {
    background: var(--surface);
    border: 1px solid var(--iron);
    position: relative;
}

.platform-board::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 26px; height: 26px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}

.platform-board::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 26px; height: 26px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
    border-bottom: 1px solid var(--iron);
}

.board-header .board-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--chalk-dim);
    text-transform: uppercase;
}

.board-lights {
    display: flex;
    gap: 8px;
}

.board-lights span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--chalk);
    box-shadow: 0 0 8px rgba(239, 236, 226, 0.8);
}

.board-rows { padding: 8px 26px; }

.board-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid var(--iron);
}

.board-row:last-child { border-bottom: none; }

.board-lift {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--chalk-dim);
}

.board-weight {
    font-family: var(--mono);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--chalk);
}

.board-weight small {
    font-size: 1rem;
    color: var(--iron-light);
    margin-left: 4px;
}

.board-total {
    background: var(--yellow);
    margin: 0 -1px -1px -1px;
    padding: 20px 26px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.board-total .board-lift { color: rgba(11,11,10,0.75); }
.board-total .board-weight { color: var(--on-yellow); font-size: 2.2rem; }

.board-footnote {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--iron-light);
    text-align: center;
    padding: 14px;
    text-transform: uppercase;
}

/* ==========================================
   THE THREE LIFTS STRIP
========================================== */
.lifts-strip {
    background: var(--ink);
    border-bottom: 1px solid var(--iron);
    padding: 90px 5%;
}

.lifts-strip-head { text-align: center; margin-bottom: 60px; }

.lifts-strip-head h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--chalk);
    margin-top: 18px;
}

.lifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    background: var(--iron);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--iron);
}

.lift-item {
    background: var(--surface);
    padding: 44px 30px;
    position: relative;
}

.lift-number {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.lift-item h3 {
    font-size: 2rem;
    color: var(--chalk);
    margin-bottom: 14px;
}

.lift-item p { font-size: 0.98rem; margin: 0; }

/* ==========================================
   THE STANDARD — feature cards
========================================== */
.standard-section {
    padding: 100px 5%;
    background: var(--surface);
    border-bottom: 1px solid var(--iron);
}

.section-head { text-align: center; margin-bottom: 60px; }

.section-head h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--chalk);
    margin-top: 18px;
}

.section-head p { text-align: center; max-width: 560px; margin: 16px auto 0; }

.standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.standard-card {
    background: var(--ink);
    border: 1px solid var(--iron);
    padding: 40px 34px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.standard-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
}

.standard-tag {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 18px;
}

.standard-card h3 {
    font-size: 1.7rem;
    color: var(--chalk);
    margin-bottom: 14px;
}

.standard-card p { margin: 0; font-size: 0.98rem; }

/* ==========================================
   CTA BAND
========================================== */
.cta-band {
    background: var(--yellow);
    padding: 90px 5%;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    color: var(--ink);
    margin-bottom: 18px;
}

.cta-band p {
    color: rgba(11,11,10,0.75);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band .btn {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--chalk);
}
.cta-band .btn:hover { background: transparent; color: var(--ink); }

.cta-band .btn-outline {
    border-color: var(--ink);
    color: #efece2;
}
.cta-band .btn-outline:hover { background: rgba(11,11,10,0.08); }

/* ==========================================
   FOOTER
========================================== */
.site-footer {
    background: var(--ink);
    padding: 90px 5% 40px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 70px;
}

.footer-brand { flex: 1; min-width: 260px; }

.footer-logo-img {
    max-width: 170px;
    height: auto;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer-brand p { max-width: 300px; font-size: 0.95rem; }

.footer-newsletter {
    margin-top: 26px;
    max-width: 320px;
}

.footer-newsletter h4 {
    font-family: var(--mono);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
}

.footer-newsletter form {
    display: flex;
    border: 1px solid var(--iron);
}

.footer-newsletter input[type="email"] {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: var(--chalk);
    font-family: var(--body);
    font-size: 0.95rem;
}

.footer-newsletter input[type="email"]::placeholder { color: var(--chalk-dim); }
.footer-newsletter input[type="email"]:focus { outline: none; }

.footer-newsletter button {
    background: var(--yellow);
    color: var(--on-yellow);
    border: none;
    padding: 0 18px;
    font-family: var(--body);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-newsletter button:hover { background: var(--gold); }

.footer-newsletter .ns-message {
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-newsletter .ns-message.success { color: var(--yellow); }
.footer-newsletter .ns-message.error,
.footer-newsletter .ns-message.invalid { color: #e0574c; }
.footer-newsletter .ns-message.duplicate { color: var(--chalk-dim); }

.footer-links-container {
    flex: 0 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.footer-col {
    min-width: 150px;
}

.footer-col h4 {
    font-family: var(--mono);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 22px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }

.footer-col ul li a {
    color: var(--chalk-dim);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--chalk);
    padding-left: 5px;
}

/* Social column renders icon badges (.social-icon) side by side rather
   than the default stacked link list used by Menu/Contact columns. */
.footer-col-social ul {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.footer-col-social ul li {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--iron);
    padding-top: 34px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-family: var(--mono);
    color: var(--iron-light);
    font-size: 0.78rem;
    letter-spacing: 1px;
}

/* ==========================================
   SQUADS — flight cards
========================================== */
.page-header {
    text-align: center;
    padding: 80px 5% 60px;
    background: radial-gradient(circle at center, var(--surface) 0%, var(--ink) 100%);
    border-bottom: 1px solid var(--iron);
}

.page-header h1 {
    font-size: clamp(2.8rem, 8vw, 6rem);
    color: var(--chalk);
}

.page-header .eyebrow { margin-bottom: 20px; justify-content: center; }
.page-header p.page-sub {
    margin-top: 20px;
    font-family: var(--mono);
    letter-spacing: 2px;
    color: var(--yellow);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.squads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 26px;
    padding: 80px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.flight-card {
    position: relative;
    height: 440px;
    background: var(--surface);
    border: 1px solid var(--iron);
    overflow: hidden;
    cursor: default;
    transition: border-color 0.3s ease;
}

.flight-card:hover { border-color: var(--gold); }

.flight-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.35);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.flight-card:hover .flight-bg {
    filter: grayscale(20%) brightness(0.5);
    transform: scale(1.05);
}

.flight-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--ink);
    background: var(--gold);
    padding: 5px 12px;
}

.flight-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 30px 28px;
    z-index: 2;
    background: linear-gradient(to top, rgba(11,11,10,0.96) 20%, rgba(11,11,10,0) 100%);
}

.flight-content h2 {
    font-size: 2rem;
    color: var(--chalk);
    margin-bottom: 12px;
}

.flight-desc {
    font-size: 1rem;
    color: var(--chalk-dim);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.flight-card:hover .flight-desc {
    max-height: 160px;
    opacity: 1;
    margin-top: 12px;
}

/* ==========================================
   QUOTE BANNER
========================================== */
.quote-banner {
    background: var(--surface);
    border-top: 1px solid var(--iron);
    border-bottom: 1px solid var(--iron);
    padding: 90px 5%;
    text-align: center;
}

.quote-banner .quote-text {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--chalk);
    max-width: 950px;
    margin: 0 auto 24px;
    line-height: 1.1;
}

.quote-banner .quote-author {
    font-family: var(--mono);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ==========================================
   PRICING — key cards
========================================== */
.pricing-section { padding: 100px 5%; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 60px auto 0;
}

.key-card {
    background: var(--surface);
    border: 1px solid var(--iron);
    padding: 50px 34px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.key-card::before {
    content: '';
    position: absolute;
    top: 12px; right: 12px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--iron-light);
}

.key-card:hover { transform: translateY(-8px); border-color: var(--gold); }

.key-card.featured {
    background: var(--yellow);
    border-color: var(--yellow);
}

.key-card.featured::before { background: rgba(11,11,10,0.4); }

.key-card h3 {
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}

.key-card.featured h3 { color: rgba(11,11,10,0.7); }

.key-card .price {
    font-size: 3.6rem;
    font-family: var(--display);
    color: var(--chalk);
    margin-bottom: 30px;
}

.key-card.featured .price { color: var(--ink); }

.key-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 34px;
}

.key-card ul li {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--chalk-dim);
}

.key-card.featured ul li {
    color: rgba(11,11,10,0.75);
    border-bottom-color: rgba(11,11,10,0.15);
}

.key-card .btn { width: 100%; }

.key-card.featured .btn {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--chalk);
}
.key-card.featured .btn:hover { background: transparent; color: var(--ink); }

/* ==========================================
   ABOUT — story + manifesto
========================================== */
.story-section {
    padding: 130px 5% 100px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-copy { flex: 1; }

.story-copy h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    color: var(--chalk);
    margin: 20px 0 24px;
}

.story-copy p { margin-bottom: 18px; }

.story-media { flex: 1; position: relative; }

.story-media::after {
    content: '';
    position: absolute;
    top: 18px; left: 18px;
    width: 100%; height: 100%;
    background: var(--yellow);
    z-index: -1;
}

.story-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: grayscale(100%) contrast(115%);
    border: 1px solid var(--iron);
}

.manifesto-section {
    background: var(--surface);
    padding: 100px 5%;
    border-top: 1px solid var(--iron);
    border-bottom: 1px solid var(--iron);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--iron);
    max-width: 1400px;
    margin: 60px auto 0;
    border: 1px solid var(--iron);
}

.manifesto-card {
    background: var(--ink);
    padding: 40px 34px;
}

.manifesto-card h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.manifesto-card p { margin: 0; }

/* ==========================================
   CONTACT
========================================== */
.contact-section {
    padding: 130px 5% 100px;
    display: flex;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-col, .contact-info-col { flex: 1; }

.contact-form-col {
    background: var(--surface);
    border: 1px solid var(--iron);
    padding: 50px;
}

.contact-form-col h2 { font-size: 2.6rem; color: var(--chalk); margin-bottom: 30px; }

.form-status {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-left: 3px solid var(--yellow);
    background: var(--surface-2);
    font-size: 0.98rem;
}

.form-status.error { border-left-color: #e0574c; }

.selected-plan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--mono);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-form input, .contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--iron);
    padding: 14px 0;
    color: var(--chalk);
    font-family: var(--body);
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--chalk-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--yellow);
}

.contact-info-col h2 { font-size: 2.6rem; color: var(--chalk); margin-bottom: 22px; }
.contact-info-col h3 {
    font-family: var(--mono);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 40px 0 16px;
}
.contact-info-col h3:first-of-type { margin-top: 0; }

.contact-info-col p { font-size: 1.15rem; color: var(--chalk); }

.map-frame {
    position: relative;
    width: 100%;
    height: 320px;
    margin-top: 20px;
    border: 1px solid var(--iron);
    outline: 2px solid var(--yellow);
    outline-offset: 4px;
    overflow: hidden;
}

.map-frame iframe { width: 100%; height: 100%; border: 0; }

.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    max-width: 320px;
    padding: 10px 0;
    border-bottom: 1px solid var(--iron);
    font-size: 1.05rem;
    color: var(--chalk);
}

.hours-list li .hours-soon {
    color: var(--chalk-dim);
    font-family: var(--mono);
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ==========================================
   GALLERY
========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 100px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,11,10,0.75), transparent 55%);
    pointer-events: none;
}

.gallery-caption {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================
   FAQ
========================================== */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5% 120px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--iron);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 26px 30px;
    text-align: left;
    font-family: var(--body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--chalk);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--yellow);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.faq-question .faq-icon::before { width: 16px; height: 2px; }
.faq-question .faq-icon::after { width: 2px; height: 16px; }

.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-question { color: var(--yellow); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 26px;
    color: var(--chalk-dim);
    font-size: 1.02rem;
}

/* ==========================================
   SCROLL ANIMATIONS
========================================== */
.scroll-anim { opacity: 0; will-change: transform, opacity; }

.anim-reveal { transform: translateY(40px); transition: transform 0.6s cubic-bezier(0.25,1,0.5,1), opacity 0.6s ease-out; }
.anim-snap-left { transform: translateX(-60px); transition: transform 0.6s cubic-bezier(0.25,1,0.5,1), opacity 0.6s ease-out; }
.anim-snap-right { transform: translateX(60px); transition: transform 0.6s cubic-bezier(0.25,1,0.5,1), opacity 0.6s ease-out; }
.is-visible { opacity: 1; transform: none; }

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
    .story-section, .contact-section { flex-direction: column; }
    .story-media img { height: 400px; }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--ink);
        padding: 26px 0;
        border-bottom: 1px solid var(--iron);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero { padding-top: 40px; padding-bottom: 40px; }
}

@media (max-width: 480px) {
    .nav-logo { height: 40px; }
    .brand-divider { height: 24px; }
    .brand-name { font-size: 1rem; letter-spacing: 2px; }
    .brand-sub { font-size: 0.52rem; letter-spacing: 2px; margin-top: 4px; }
    .contact-form-col { padding: 30px; }
}

/* ==========================================
   CONTACT PAGE — additions
========================================== */

/* Keep the intro paragraph dim/muted like the rest of the site's body copy */
.contact-info-col > p { color: var(--chalk-dim); max-width: 460px; margin-bottom: 40px; }

.info-list { margin-bottom: 20px; }

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--iron);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--chalk-dim);
    margin-bottom: 4px;
}

.info-value {
    color: var(--chalk);
    font-size: 1.05rem;
    line-height: 1.4;
}

.info-value a { color: var(--chalk); text-decoration: none; transition: color 0.2s ease; }
.info-value a:hover { color: var(--yellow); }

.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.form-subtext {
    font-size: 0.95rem;
    margin-bottom: 26px;
}

.contact-form select {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--iron);
    padding: 14px 0;
    color: var(--chalk);
    font-family: var(--body);
    font-size: 1.2rem;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.contact-form select:focus { outline: none; border-bottom-color: var(--yellow); }
.contact-form select option { background: var(--surface); color: var(--chalk); }

.btn-block { width: 100%; text-align: center; }

.find-us-section {
    padding: 0 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--surface);
    border: 1px solid var(--iron);
    padding: 50px;
}

.find-us-col h3 {
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 30px 0 14px;
}

.find-us-col h3:first-child { margin-top: 0; }

.find-us-col p { color: var(--chalk-dim); }
.find-us-col p strong { color: var(--yellow); font-weight: 600; }

.find-us-note {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--iron-light);
    margin-top: 10px;
}

.directions-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.directions-link:hover { color: var(--gold); }

.connect-section {
    padding: 20px 5% 110px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.connect-section h3 {
    font-size: 2.2rem;
    color: var(--chalk);
    margin: 14px 0;
}

.connect-section p { margin-bottom: 10px; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 26px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--iron);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chalk);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-icon svg { width: 22px; height: 22px; }

.social-icon:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--on-yellow);
}

@media (max-width: 1024px) {
    .find-us-grid { grid-template-columns: 1fr; padding: 34px; gap: 40px; }
}