/* ============================================
   DUMAS FOOD TRUCK PARK — STYLESHEET
   Charcoal + Coral · Syne + Inter
   ============================================ */

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

:root {
    --charcoal-900: #111118;
    --charcoal-800: #1A1A24;
    --charcoal-700: #232330;
    --charcoal-600: #2E2E3D;
    --charcoal-500: #3A3A4A;
    --coral-500: #E8634C;
    --coral-400: #F27865;
    --coral-300: #F79E8F;
    --coral-100: #FDE8E3;
    --warm-100: #FAF5F0;
    --warm-200: #F3EDE5;
    --warm-300: #EBE3D8;
    --white: #FFFFFF;
    --text-light: #F5F0EB;
    --text-dark: #1A1A24;
    --text-muted-light: #9A9590;
    --text-muted-dark: #6B6560;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral-500);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 99, 76, 0.35);
}

.btn--primary:hover {
    background: var(--coral-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 99, 76, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 20px;
}

.section-eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--coral-500);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-title--light {
    color: var(--text-light);
}

.text-coral {
    color: var(--coral-500);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 24, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--coral-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: var(--coral-500) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--coral-400) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--charcoal-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-link:hover {
    color: var(--coral-400);
}

.mobile-link-cta {
    margin-top: 16px;
    background: var(--coral-500);
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--charcoal-900);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-bg-shape--top {
    width: 600px;
    height: 600px;
    background: var(--coral-500);
    top: -200px;
    right: -100px;
}

.hero-bg-shape--bottom {
    width: 400px;
    height: 400px;
    background: #4A2040;
    bottom: -100px;
    left: -100px;
}

.hero-geo {
    position: absolute;
    opacity: 0.08;
}

.hero-geo--circle {
    width: 200px;
    height: 200px;
    border: 2px solid var(--coral-400);
    border-radius: 50%;
    top: 15%;
    left: 5%;
}

.hero-geo--square {
    width: 80px;
    height: 80px;
    background: var(--coral-500);
    bottom: 20%;
    left: 8%;
    transform: rotate(45deg);
}

.hero-geo--triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--coral-300);
    top: 25%;
    right: 5%;
    opacity: 0.15;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 560px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral-300);
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--coral-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    color: var(--coral-400);
    position: relative;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-meta-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.hero-meta-value a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.hero-meta-value a:hover {
    color: var(--coral-400);
}

.hero-meta-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 560px;
}

.hero-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--main {
    width: 380px;
    height: 480px;
    right: 0;
    top: 0;
    z-index: 2;
}

.hero-img--accent {
    width: 260px;
    height: 200px;
    left: 0;
    bottom: 40px;
    z-index: 3;
    border: 4px solid var(--charcoal-900);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 24, 0.6) 100%);
    border-radius: 20px;
}

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 4;
    background: var(--coral-500);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 24px rgba(232, 99, 76, 0.4);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--warm-100);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--warm-100);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--charcoal-900);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral-400);
}

.about-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted-dark);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--coral-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.875rem;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

/* ============================================
   EXPERIENCES
   ============================================ */
.experiences {
    padding: 120px 0;
    background: var(--charcoal-900);
    position: relative;
    overflow: hidden;
}

.experiences-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.experiences-header .section-eyebrow {
    justify-content: center;
}

.experiences-header .section-title {
    margin-bottom: 0;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.experience-card {
    background: var(--charcoal-800);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out);
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 99, 76, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.experience-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.experience-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.experience-card:hover .experience-card-img img {
    transform: scale(1.08);
}

.experience-card-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.experience-card-body {
    padding: 28px;
}

.experience-card-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral-400);
    background: rgba(232, 99, 76, 0.12);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.experience-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.experience-card-body p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.exp-deco {
    position: absolute;
    opacity: 0.05;
}

.exp-deco--circle {
    width: 500px;
    height: 500px;
    border: 2px solid var(--coral-500);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
}

.exp-deco--rect {
    width: 120px;
    height: 120px;
    background: var(--coral-500);
    top: 10%;
    left: 3%;
    transform: rotate(30deg);
}

/* ============================================
   VENDORS
   ============================================ */
.vendors {
    padding: 120px 0;
    background: var(--warm-100);
    position: relative;
}

.vendors-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vendors-content {
    max-width: 480px;
}

.vendors-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted-dark);
    margin-bottom: 16px;
}

.vendors-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.vendor-gallery-item {
    border-radius: 16px;
    overflow: hidden;
}

.vendor-gallery-item--tall {
    grid-row: span 2;
    height: 100%;
    min-height: 360px;
}

.vendor-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.vendor-gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   EVENTS
   ============================================ */
.events {
    padding: 100px 0;
    background: var(--charcoal-700);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 99, 76, 0.3), transparent);
}

.events-header {
    text-align: center;
    margin-bottom: 56px;
}

.events-header .section-eyebrow {
    justify-content: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.event-card {
    background: var(--charcoal-800);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s var(--ease-out);
}

.event-card:hover {
    border-color: rgba(232, 99, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.event-card-date {
    background: var(--coral-500);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}

.event-card-month {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.event-card-day {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.event-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.event-card-info p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.events-note {
    text-align: center;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.events-note a {
    color: var(--coral-400);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.events-note a:hover {
    color: var(--coral-300);
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--charcoal-900);
    position: relative;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 36px 0;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 99, 76, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-400);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.visit-detail a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.visit-detail a:hover {
    color: var(--coral-400);
}

.visit-map {
    margin-top: 8px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Form */
.visit-form-wrap {
    position: relative;
}

.visit-form-card {
    background: var(--charcoal-800);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.visit-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.visit-form-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

.form-optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--charcoal-700);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--white);
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral-500);
    background: var(--charcoal-600);
    box-shadow: 0 0 0 3px rgba(232, 99, 76, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--charcoal-800);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 99, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-400);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
}

.form-success p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal-900);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--coral-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--coral-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }

    .reveal.revealed {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 480px;
    }

    .hero-image-stack {
        height: 420px;
    }

    .hero-img--main {
        width: 280px;
        height: 360px;
    }

    .hero-img--accent {
        width: 200px;
        height: 160px;
    }

    .about-grid,
    .vendors-layout,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 400px;
        order: -1;
    }

    .about-img-float {
        right: -10px;
    }

    .experiences-grid,
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-image-stack {
        height: 320px;
    }

    .hero-img--main {
        width: 220px;
        height: 280px;
    }

    .hero-img--accent {
        width: 160px;
        height: 120px;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-meta-divider {
        display: none;
    }

    .experiences-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .vendors-gallery {
        grid-template-columns: 1fr;
    }

    .vendor-gallery-item--tall {
        grid-row: span 1;
        min-height: 240px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-visual {
        height: 320px;
    }

    .about-img-main {
        height: 280px;
    }

    .about-img-float {
        width: 180px;
        right: -5px;
    }

    .visit-form-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-image-stack {
        height: 260px;
    }

    .hero-img--main {
        width: 180px;
        height: 240px;
    }

    .hero-img--accent {
        width: 140px;
        height: 100px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 10px 14px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .event-card {
        flex-direction: column;
        gap: 16px;
    }

    .event-card-date {
        width: fit-content;
    }
}
