/* ============================================
   LEASE HALL — Dark Industrial Aesthetic
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --bg: #0a0a0b;
    --bg-surface: #111113;
    --bg-surface-2: #18181b;
    --bg-surface-3: #222225;
    --accent: #f59e0b;
    --accent-hover: #fbbf24;
    --accent-dim: rgba(245, 158, 11, 0.15);
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.2);
    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.15);
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-dim: #52525b;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #000;
}
.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
}
.btn--outline {
    border: 1px solid var(--border-hover);
    color: var(--text);
}
.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn--full { width: 100%; justify-content: center; }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header--left { text-align: left; }
.section-header__tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}
.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-header__desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}
.section-header--left .section-header__desc { margin: 0; }


/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0a0b 0%, #14120e 50%, #0a0a0b 100%);
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0.75) 80%),
        linear-gradient(180deg, rgba(10, 10, 11, 0.5) 0%, rgba(10, 10, 11, 0.3) 40%, rgba(10, 10, 11, 0.85) 100%);
}
.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
}
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 24px;
    animation: fadeUp 0.8s ease-out;
}
.hero__label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e4e4e7;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero .stat__number {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.hero .stat__label {
    color: #d4d4d8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}
.hero__label {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.hero__subtitle strong {
    color: var(--accent);
    font-weight: 700;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero__stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 4px;
}
.stat__label {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}
.hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    animation: bounce 2s infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}
.map-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.map-legend__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.map-legend__swatch {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}
.map-legend__swatch--available { background: var(--green-dim); border: 1.5px solid var(--green); }
.map-legend__swatch--unavailable { background: var(--red-dim); border: 1.5px solid var(--red); opacity: 0.5; }
.map-legend__swatch--parking { background: rgba(96, 165, 250, 0.1); border: 1.5px solid rgba(96, 165, 250, 0.4); }

.map-wrapper {
    position: relative;
    background: #f5f5f0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
}
.map-wrapper__blueprint-label {
    position: absolute;
    top: 12px;
    left: 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2em;
    z-index: 1;
}
#areal-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Buildings — transparent overlays on top of schema image */
.building rect, .building polygon {
    fill: rgba(34, 197, 94, 0.18);
    stroke: rgba(34, 197, 94, 0.6);
    stroke-width: 4;
    cursor: pointer;
    transition: all 0.2s ease;
}
.building:hover rect, .building:hover polygon {
    fill: rgba(34, 197, 94, 0.35);
    stroke: #22c55e;
    stroke-width: 6;
    filter: url(#glow);
}
.building.unavailable rect, .building.unavailable polygon {
    fill: rgba(239, 68, 68, 0.15);
    stroke: rgba(239, 68, 68, 0.4);
    stroke-width: 3;
    cursor: default;
}
.building.unavailable:hover rect, .building.unavailable:hover polygon {
    fill: rgba(239, 68, 68, 0.2);
    stroke: rgba(239, 68, 68, 0.5);
    stroke-width: 3;
    filter: none;
}

/* Tooltip */
.map-tooltip {
    position: absolute;
    background: var(--bg-surface-3);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.map-tooltip.visible { opacity: 1; }
.map-tooltip strong { color: var(--text); }
.map-tooltip span { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.8rem; }


/* ============================================
   HALLS GRID
   ============================================ */

.halls-section {
    padding: 100px 0;
}
.halls-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-mono);
}
.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}
.filter-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.hall-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hall-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.hall-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hall-card:hover::before { opacity: 1; }
.hall-card:hover .hall-card__cover { transform: scale(1.04); }
.hall-card__cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #0f0f10;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hall-card__cover--empty {
    background-image:
        linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 12px);
}
.hall-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hall-card__meta {
    margin-top: auto;
}
.hall-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.hall-card__number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text);
    line-height: 1;
}
.hall-card__tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--green-dim);
    color: var(--green);
    letter-spacing: 0.05em;
}
.hall-card__name {
    font-weight: 600;
    margin-bottom: 4px;
}
.hall-card__type {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.hall-card__meta {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.hall-card__area { color: var(--text-muted); }
.hall-card__price { color: var(--accent); font-weight: 500; }


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info__text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-detail__label {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
    display: block;
    margin-bottom: 2px;
}
.contact-detail__value {
    font-weight: 500;
    color: var(--text);
}
a.contact-detail__value:hover { color: var(--accent); }

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-map iframe {
    display: block;
}
.contact-map__link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.contact-map__link:hover { color: var(--accent); }

.contact-form-wrapper {
    background: var(--bg-surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-form__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 28px;
}
.contact-form__note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 12px;
}

/* Form elements */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    position: relative;
}
.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-dim);
    transition: var(--transition);
    z-index: 1;
}
.modal__close:hover {
    background: var(--bg-surface-3);
    color: var(--text);
}
.modal__header {
    padding: 32px 32px 0;
}
.modal__tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-dim);
    color: var(--accent);
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.modal__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
}
.modal__body {
    padding: 24px 32px;
}
.modal__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.modal__stat {
    text-align: center;
    padding: 16px 12px;
    background: var(--bg-surface-2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.modal__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 4px;
}
.modal__stat-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}
.modal__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}
.modal__gallery[hidden] { display: none; }
.modal__gallery--empty {
    display: flex;
    grid-template-columns: none;
}
.modal__gallery-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-dim);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    letter-spacing: 0.03em;
}
.gallery-thumb {
    all: unset;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0f0f10;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.gallery-thumb--plan {
    background: #fafaf7;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.gallery-thumb--plan img {
    object-fit: contain !important;
    padding: 6px;
    background: #fafaf7;
}
.gallery-thumb__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent);
    color: #0a0a0b;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}
.gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.gallery-thumb:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.modal__description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.modal__plan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}
.modal__plan:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.modal__plan[hidden] { display: none; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px 80px;
}
.lightbox.open { display: flex; }
.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    cursor: default;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}
.lightbox__close {
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    line-height: 1;
    padding: 0 0 4px;
}
.lightbox__prev,
.lightbox__next {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255,255,255,0.18);
}
.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox__prev[hidden],
.lightbox__next[hidden] { display: none; }
.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    background: rgba(0,0,0,0.5);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.lightbox__pdf {
    position: absolute;
    bottom: 22px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--accent);
    color: #0a0a0b;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lightbox__pdf:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.5);
}
.lightbox__pdf[hidden] { display: none; }
@media (max-width: 640px) {
    .lightbox { padding: 20px 12px 60px; }
    .lightbox__prev, .lightbox__next { width: 40px; height: 40px; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
}
.modal__footer {
    padding: 0 32px 32px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.modal-form__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 24px 0 20px;
}
.modal-form__actions {
    display: flex;
    gap: 12px;
}
.modal-form__actions .btn { flex: 1; justify-content: center; }


/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer__logo {
    font-family: var(--font-display);
    font-size: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #000;
    border-radius: 6px;
}
.footer__copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .modal__stats { grid-template-columns: 1fr; }
    .hero__stats { gap: 32px; }
    .modal { margin: 16px; }
    .modal__header, .modal__body, .modal__footer { padding-left: 20px; padding-right: 20px; }
    .modal-form__actions { flex-direction: column; }
    .halls-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.5rem; }
    .hero__actions { flex-direction: column; align-items: center; }
}


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hall-card { animation: slideIn 0.4s ease-out backwards; }
.hall-card:nth-child(1) { animation-delay: 0.05s; }
.hall-card:nth-child(2) { animation-delay: 0.1s; }
.hall-card:nth-child(3) { animation-delay: 0.15s; }
.hall-card:nth-child(4) { animation-delay: 0.2s; }
.hall-card:nth-child(5) { animation-delay: 0.25s; }
.hall-card:nth-child(6) { animation-delay: 0.3s; }
.hall-card:nth-child(7) { animation-delay: 0.35s; }
.hall-card:nth-child(8) { animation-delay: 0.4s; }
.hall-card:nth-child(9) { animation-delay: 0.45s; }


/* ============================================
   FORM SUCCESS STATE
   ============================================ */

.form-success {
    text-align: center;
    padding: 32px;
}
.form-success__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--green);
}
.form-success__title {
    font-weight: 600;
    margin-bottom: 8px;
}
.form-success__text {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-surface-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }
