/* ============================================
   EXQUISITE EVENTS RESORT — CONVERSION PAGE
   ============================================
   Color Palette:
   - Primary Gold: #C9A84C (warmth, luxury, culture)
   - Deep Black: #0A0A0A (sophistication)
   - Warm White: #FAF8F5 (breathing room)
   - Accent Blush: #E8D5C4 (warmth)
   - Rich Plum: #2D1B2E (depth, culture, royalty)
   ============================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E2CC7E;
    --gold-dark: #9E7B2F;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --white: #FAF8F5;
    --white-pure: #FFFFFF;
    --blush: #E8D5C4;
    --plum: #2D1B2E;
    --plum-light: #4A2E4D;
    --gray-100: #F5F3F0;
    --gray-200: #E8E4DF;
    --gray-300: #B8B2AA;
    --gray-400: #8A8480;
    --gray-500: #5C5856;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 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);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---- Typography ---- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-eyebrow--light { color: var(--gold-light); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1.25rem;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 600px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}
.btn--primary {
    background: var(--gold);
    color: var(--black);
}
.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}
.btn--ghost {
    background: transparent;
    color: var(--white-pure);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
.btn--large {
    padding: 1.15rem 2.75rem;
    font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}
.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 4px;
}
.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-pure);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nav__logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}
.nav__links a:hover { color: var(--gold-light); }
.nav__cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}
.nav__cta:hover {
    background: var(--gold-light) !important;
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}
.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white-pure);
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        url('images/head_table_vertical.jpg') center center / cover no-repeat;
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}
.hero__bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    from { opacity: 0.5; transform: translate(0, 0); }
    to { opacity: 1; transform: translate(-5%, 3%); }
}
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    /* Pattern overlay for texture */
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(201, 168, 76, 0.02) 50px,
            rgba(201, 168, 76, 0.02) 51px
        );
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}
.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white-pure);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
    display: inline-block;
}
.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.hero__scroll-hint span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 50%;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PROOF BAR
   ============================================ */
.proof-bar {
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.proof-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.proof-bar__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.proof-bar__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.proof-bar__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.proof-bar__plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-left: 0.1em;
}
.proof-bar__text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.proof-bar__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.proof-bar__divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.2);
}

/* ============================================
   VENUE SECTION
   ============================================ */
.venue {
    padding: 7rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.venue__intro {
    margin-bottom: 4rem;
    max-width: 700px;
}
.venue__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.venue__card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 360px;
    cursor: pointer;
}
.venue__card--large {
    grid-column: 1 / -1;
    min-height: 500px;
}
.venue__card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transition: transform 0.6s var(--ease-out);
}
.venue__card:hover .venue__card-img {
    transform: scale(1.03);
}
.venue__card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
}
.venue__card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    z-index: 2;
}
.venue__card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 0.5rem;
}
.venue__card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
}

/* Decorative placeholders removed — real images now in use */

/* ============================================
   CELEBRATIONS SECTION
   ============================================ */
.celebrations {
    background: var(--gray-100);
    padding: 7rem 2rem;
}
.celebrations__header {
    max-width: 1280px;
    margin: 0 auto 4rem;
}
.celebrations__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.celebration-card {
    background: var(--white-pure);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.celebration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.celebration-card__img {
    width: 220px;
    min-height: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Event type specific backgrounds */
.celebration-card[data-type="weddings"] .celebration-card__img {
    background: url('images/dancing_vertical.jpg') center 30% / cover no-repeat;
}
.celebration-card[data-type="birthdays"] .celebration-card__img {
    background: url('images/lighting_draping_card.jpg') center 15% / cover no-repeat;
}
.celebration-card[data-type="quinceanera"] .celebration-card__img {
    background: url('images/ashley_quinceanera.jpg') center 35% / cover no-repeat;
}
.celebration-card[data-type="corporate"] .celebration-card__img {
    background: url('images/dessert_display_blue.jpg') center 30% / cover no-repeat;
}

.celebration-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.25rem;
    background: linear-gradient(0deg, rgba(10,10,10,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.celebration-card:hover .celebration-card__overlay { opacity: 1; }
.celebration-card__cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}
.celebration-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.celebration-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.celebration-card__body p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray-500);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 7rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}
.gallery__header {
    margin-bottom: 3.5rem;
}
.gallery__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
    margin-bottom: 3rem;
}
.gallery__item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s var(--ease-out);
}
.gallery__item:hover .gallery__img {
    transform: scale(1.05);
}

/* Gallery images */
#gallery-1 {
    background: url('images/lighting_draping_card.jpg') center 20% / cover no-repeat;
}
#gallery-2 {
    background: url('images/round_tables_crystal_chairs_flowers.jpg') center center / cover no-repeat;
}
#gallery-3 {
    background: url('images/ashley_quinceanera.jpg') center 40% / cover no-repeat;
}
#gallery-4 {
    background: url('images/head_table_vertical.jpg') center center / cover no-repeat;
}
#gallery-5 {
    background: url('images/luxury_decor_vertical.jpg') center center / cover no-repeat;
}
#gallery-6 {
    background: url('images/dancing_dad_daughter_blue_gown.jpg') center 25% / cover no-repeat;
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-pure);
}
.gallery__cta {
    text-align: center;
}

/* ============================================
   EXPERIENCE / TIMELINE
   ============================================ */
.experience {
    background: var(--black);
    padding: 7rem 2rem;
    color: var(--white-pure);
}
.experience__header {
    max-width: 1280px;
    margin: 0 auto 4rem;
}
.experience__header .section-title { color: var(--white-pure); }
.experience__header .section-body { color: rgba(255,255,255,0.6); }

.experience__timeline {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.experience__timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.experience__step {
    text-align: center;
}
.experience__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--black-soft);
    border: 2px solid var(--gold-dark);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--ease-out);
}
.experience__step:hover .experience__step-number {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}
.experience__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 0.5rem;
}
.experience__step-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   TRUST / TESTIMONIAL
   ============================================ */
.trust {
    padding: 6rem 2rem;
    background: var(--white);
}
.trust__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.trust__quote-mark {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}
.trust__quote blockquote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    font-style: italic;
    margin-bottom: 1.25rem;
}
.trust__quote cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
    color: var(--gold-dark);
}
.trust__features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.trust__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.trust__feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.trust__feature h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.trust__feature p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ============================================
   FINAL CTA / BOOKING
   ============================================ */
.final-cta {
    background: var(--plum);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}
.final-cta__inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white-pure);
    margin-bottom: 1.25rem;
}
.final-cta__title em {
    font-style: italic;
    color: var(--gold);
}
.final-cta__body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
}
.final-cta__form {
    text-align: left;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group { width: 100%; }
.form-group--full { grid-column: 1 / -1; }

.final-cta__form input,
.final-cta__form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: var(--white-pure);
    font-size: 0.95rem;
    transition: all 0.3s;
    -webkit-appearance: none;
}
.final-cta__form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.final-cta__form select {
    color: rgba(255,255,255,0.4);
}
.final-cta__form select option {
    background: var(--plum);
    color: var(--white-pure);
}
.final-cta__form input:focus,
.final-cta__form select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}
.final-cta__form .btn {
    width: 100%;
    margin-top: 0.5rem;
}
.form-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-top: 1rem;
}
.final-cta__contact {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.final-cta__social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.final-cta__social:hover { color: var(--gold-light); }
.final-cta__social svg { flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 4rem 2rem 0;
    color: rgba(255,255,255,0.5);
}
.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer__brand .nav__logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}
.footer__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-pure);
}
.footer__tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    max-width: 280px;
}
.footer__address {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.75rem;
    line-height: 1.5;
}
.footer__links {
    display: flex;
    gap: 4rem;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white-pure);
    margin-bottom: 0.5rem;
}
.footer__col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}
.footer__attribution {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}
.footer__attribution a {
    display: flex;
    align-items: center;
}
.footer__attribution-logo {
    height: 22px;
    width: auto;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer__attribution-logo:hover {
    opacity: 1;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .experience__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .experience__timeline::before { display: none; }
    .trust__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        inset: 0;
        background: rgba(10,10,10,0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .nav__links.open {
        opacity: 1;
        pointer-events: all;
    }
    .nav__links a {
        font-size: 1.25rem;
        color: var(--white-pure);
    }
    .nav__cta {
        font-size: 1rem !important;
        padding: 0.8rem 2rem !important;
    }

    .hero__content { padding: 7rem 1.5rem 3rem; }

    .venue__grid {
        grid-template-columns: 1fr;
    }
    .venue__card--large { min-height: 400px; }

    .celebrations__grid {
        grid-template-columns: 1fr;
    }
    .celebration-card {
        flex-direction: column;
    }
    .celebration-card__img {
        width: 100%;
        min-height: 220px;
    }

    .gallery__mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }
    .gallery__item--wide { grid-column: span 1; }

    .experience__timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer__inner {
        flex-direction: column;
    }
    .footer__links {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.25rem;
    }
    .proof-bar__inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .proof-bar__divider {
        width: 40px;
        height: 1px;
    }
    .gallery__mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery__item--tall { grid-row: span 1; }
}
