/* ============================================
   BEANOS BUCKEYE BALLROOM — STYLESHEET
   Classic & Elegant · Burgundy + Blush
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5A1F2B;
    --burgundy-deep: #3D1520;
    --blush: #F5E6E0;
    --blush-light: #FBF5F2;
    --blush-mid: #E8D0C8;
    --cream: #FDF8F5;
    --warm-white: #FEFAF8;
    --text-dark: #2A1A1E;
    --text-mid: #5C3A42;
    --text-light: #8A6070;
    --text-on-dark: #F5E6E0;
    --gold: #C49A6C;
    --gold-light: #D4B08A;
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Georgia', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--burgundy-dark);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--burgundy);
    color: var(--blush);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-family: var(--font-ui);
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
}

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

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

.section-lead {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.section-lead--light {
    color: var(--text-on-dark);
    opacity: 0.85;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--blush);
    border-color: var(--burgundy);
}

.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: var(--blush);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 59, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--blush);
    border-color: rgba(245, 230, 224, 0.5);
}

.btn--ghost:hover {
    background: rgba(245, 230, 224, 0.1);
    border-color: var(--blush);
    color: var(--blush);
}

.btn--outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn--outline:hover {
    background: var(--burgundy);
    color: var(--blush);
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
    padding: var(--space-sm) 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--blush);
    transition: color var(--transition);
}

.header.scrolled .logo {
    color: var(--burgundy-dark);
}

.logo__icon {
    flex-shrink: 0;
}

.logo__text {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    font-family: var(--font-display);
}

.logo__name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo__name--sub {
    font-size: 0.875rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}

.logo__divider {
    opacity: 0.5;
    margin: 0 0.125rem;
}

.logo--light {
    color: var(--blush);
}

/* ---------- NAV ---------- */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav__link {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.8);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--blush);
}

.nav__link:hover::after {
    width: 100%;
}

.header.scrolled .nav__link {
    color: var(--text-mid);
}

.header.scrolled .nav__link:hover {
    color: var(--burgundy);
}

.nav__link--cta {
    background: var(--burgundy);
    color: var(--blush) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--burgundy-dark);
    transform: translateY(-1px);
}

/* Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 101;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--blush);
    transition: all var(--transition);
}

.header.scrolled .nav__toggle-line {
    background: var(--burgundy-dark);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--burgundy-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 21, 32, 0.92) 0%,
        rgba(90, 31, 43, 0.85) 40%,
        rgba(123, 45, 59, 0.7) 70%,
        rgba(123, 45, 59, 0.5) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-xl);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.hero__content {
    max-width: 600px;
}

.hero__eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--blush);
    margin-bottom: var(--space-md);
}

.hero__headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__subheadline {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(245, 230, 224, 0.75);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.hero__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hero__detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: rgba(245, 230, 224, 0.6);
    letter-spacing: 0.03em;
}

.hero__detail svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.hero__aside {
    position: relative;
}

.hero__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    aspect-ratio: 3/4;
}

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

.hero__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(245, 230, 224, 0.15);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.4);
    z-index: 1;
}

.hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---------- ABOUT ---------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(90, 31, 43, 0.12);
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    opacity: 0.1;
    z-index: -1;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__content p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--blush-mid);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---------- EXPERIENCE ---------- */
.experience {
    padding: var(--space-3xl) 0;
    background: var(--blush-light);
}

.experience__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
}

.experience__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(90, 31, 43, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(90, 31, 43, 0.15);
}

.card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card__image-wrap img {
    transform: scale(1.05);
}

.card__tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    background: var(--burgundy);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
}

.card__body {
    padding: var(--space-lg);
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.card__body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
}

.card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.card__features li {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--text-mid);
    padding-left: 1.25rem;
    position: relative;
}

.card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--burgundy);
    border-radius: 50%;
    opacity: 0.6;
}

/* ---------- MENU ---------- */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.menu__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: var(--space-3xl);
    align-items: start;
}

.menu__aside {
    position: sticky;
    top: 120px;
    padding: var(--space-xl) var(--space-lg);
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    color: var(--blush);
}

.menu__aside .section-eyebrow {
    color: var(--gold-light);
}

.menu__aside .section-title {
    color: var(--blush);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.menu__aside .section-title em {
    color: var(--gold-light);
}

.menu__aside .section-lead {
    color: rgba(245, 230, 224, 0.75);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.menu__aside .btn--outline {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.menu__aside .btn--outline:hover {
    background: var(--gold-light);
    color: var(--burgundy-deep);
}

.menu__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.menu__column {
    background: var(--blush-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.menu__column-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--blush-mid);
}

.menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(232, 208, 200, 0.5);
}

.menu__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu__item-name {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-dark);
}

.menu__item-desc {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---------- BALLROOM (Dark Section) ---------- */
.ballroom {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.ballroom__bg {
    position: absolute;
    inset: 0;
}

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

.ballroom__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 21, 32, 0.93) 0%,
        rgba(90, 31, 43, 0.88) 50%,
        rgba(123, 45, 59, 0.82) 100%
    );
}

.ballroom .container {
    position: relative;
    z-index: 1;
}

.ballroom__content {
    max-width: 780px;
}

.ballroom__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0 var(--space-2xl);
}

.ballroom-feature {
    display: flex;
    gap: var(--space-md);
    align-items: start;
}

.ballroom-feature svg {
    flex-shrink: 0;
    color: var(--gold-light);
    margin-top: 0.125rem;
}

.ballroom-feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--blush);
    margin-bottom: 0.25rem;
}

.ballroom-feature span {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(245, 230, 224, 0.65);
    line-height: 1.6;
}

/* ---------- EVENTS ---------- */
.events {
    padding: var(--space-3xl) 0;
    background: var(--blush-light);
}

.events__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.event-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(90, 31, 43, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(90, 31, 43, 0.14);
}

.event-card__image {
    overflow: hidden;
    aspect-ratio: 16/12;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.event-card:hover .event-card__image img {
    transform: scale(1.06);
}

.event-card__body {
    padding: var(--space-lg);
}

.event-card__category {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-xs);
}

.event-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.event-card__title a {
    color: inherit;
}

.event-card__title a:hover {
    color: var(--burgundy);
}

.event-card__body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ---------- CONTACT ---------- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--blush-mid);
}

.contact__detail {
    display: flex;
    gap: var(--space-md);
    align-items: start;
}

.contact__detail dt {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    color: var(--burgundy);
}

.contact__detail dd {
    margin: 0;
}

.contact__detail a {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--burgundy);
}

.contact__detail span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-mid);
}

/* ---------- CONTACT FORM ---------- */
.contact__form-wrap {
    background: var(--blush-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--warm-white);
    border: 1.5px solid var(--blush-mid);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

.form__select {
    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='%235C3A42' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__note {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: var(--space-sm);
}

.form__success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    color: var(--burgundy-dark);
}

.form__success svg {
    flex-shrink: 0;
    color: var(--burgundy);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--burgundy-deep);
    color: var(--blush);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(245, 230, 224, 0.1);
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(245, 230, 224, 0.6);
    max-width: 360px;
    margin-top: var(--space-md);
}

.footer__links {
    display: flex;
    gap: var(--space-2xl);
}

.footer__link-col h4 {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.footer__link-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link-col a {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(245, 230, 224, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__link-col a:hover {
    color: var(--blush);
}

.footer__link-col span {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(245, 230, 224, 0.6);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    gap: var(--space-md);
}

.footer__bottom p {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: rgba(245, 230, 224, 0.4);
}

.footer__bottom a {
    color: rgba(245, 230, 224, 0.4);
}

.footer__bottom a:hover {
    color: var(--blush);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero__aside {
        max-width: 400px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__visual {
        max-width: 500px;
    }

    .menu__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .menu__aside {
        position: static;
    }

    .menu__columns {
        grid-template-columns: 1fr 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--burgundy-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav__list.open {
        right: 0;
    }

    .nav__link {
        color: rgba(245, 230, 224, 0.8) !important;
        font-size: 1rem;
    }

    .nav__link:hover {
        color: var(--blush) !important;
    }

    .nav__link--cta {
        margin-top: var(--space-sm);
    }

    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0 var(--space-2xl);
    }

    .hero__container {
        padding-top: var(--space-2xl);
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__aside {
        display: none;
    }

    .experience__cards {
        grid-template-columns: 1fr;
    }

    .menu__columns {
        grid-template-columns: 1fr;
    }

    .ballroom__features {
        grid-template-columns: 1fr;
    }

    .events__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .contact__form-wrap {
        padding: var(--space-md);
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- PROGRESSIVE ENHANCEMENT: SCROLL REVEAL ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* Ensure content is visible without JS */
@media not all and (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
