/* ============================================================
   Firjani Vietnam Landing — Brand burgundy + gold + cream
   ============================================================ */

:root {
    --burgundy: #7A1F2E;
    --burgundy-dark: #5C1622;
    --burgundy-light: #9C2E40;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941F;
    --cream: #FAF6F0;
    --cream-2: #F2EBDD;
    --charcoal: #1F1B1A;
    --charcoal-2: #2B2624;
    --gray-300: #E5E0D8;
    --gray-500: #8B847A;
    --gray-700: #4A4540;
    --white: #FFFFFF;
    --success: #16A34A;
    --danger: #B91C1C;
    --whatsapp: #25D366;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 4px rgba(31, 27, 26, 0.05);
    --shadow-md: 0 4px 12px rgba(31, 27, 26, 0.08);
    --shadow-lg: 0 12px 36px rgba(31, 27, 26, 0.12);
    --shadow-xl: 0 24px 60px rgba(31, 27, 26, 0.16);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--charcoal); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    padding: 6px 14px;
    background: rgba(122, 31, 46, 0.08);
    border-radius: 100px;
    margin-bottom: 18px;
}
.eyebrow--gold { color: var(--gold-dark); background: rgba(212, 175, 55, 0.12); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    line-height: 1;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

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

.btn--outline { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn--outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: #1eb858; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost { background: var(--gray-300); color: var(--gray-500); cursor: not-allowed; }

.btn[disabled] { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    transition: var(--transition);
    padding: 18px 0;
}
.nav.is-scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); transition: var(--transition); }
.nav.is-scrolled .nav__brand { color: var(--charcoal); }
.nav__brand-mark {
    width: 38px; height: 38px;
    background: var(--burgundy);
    color: var(--gold);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.04em;
}
.nav__brand-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; }
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
}
.nav__links a:hover { color: var(--gold); opacity: 1; }
.nav.is-scrolled .nav__links a { color: var(--charcoal); }
.nav.is-scrolled .nav__links a:hover { color: var(--burgundy); }

@media (max-width: 860px) {
    .nav__links { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: hero-zoom 18s ease-out forwards; }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at center bottom, rgba(31, 27, 26, 0.4) 0%, rgba(31, 27, 26, 0.85) 100%),
        linear-gradient(180deg, rgba(122, 31, 46, 0.35) 0%, rgba(31, 27, 26, 0.6) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 880px; }

/* 2-col layout: text left, ad creative right (stacks on mobile) */
.hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 64px;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}
.hero__content:has(.hero__layout) { max-width: 1180px; text-align: left; }
.hero__text { display: flex; flex-direction: column; align-items: flex-start; }
.hero__layout .hero__ctas { justify-content: flex-start; margin-bottom: 40px; }
.hero__layout .hero__strip { justify-content: flex-start; }
.hero__layout .hero__title-script::after { left: 0; transform: none; width: 80%; }

.hero__poster {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 380px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,0.6),
        0 0 0 1px rgba(212, 175, 55, 0.35),
        0 0 60px -10px rgba(212, 175, 55, 0.25);
    transform: rotate(1.5deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.hero__poster::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 40%);
    pointer-events: none; z-index: 1;
}
.hero__poster:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow:
        0 40px 100px -20px rgba(0,0,0,0.7),
        0 0 0 1px rgba(212, 175, 55, 0.55),
        0 0 80px -10px rgba(212, 175, 55, 0.4);
}
.hero__poster img { display: block; width: 100%; height: auto; }

@media (max-width: 960px) {
    .hero__layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero__content:has(.hero__layout) { text-align: center; }
    .hero__text { align-items: center; }
    .hero__layout .hero__ctas { justify-content: center; }
    .hero__layout .hero__strip { justify-content: center; }
    .hero__layout .hero__title-script::after { left: 50%; transform: translateX(-50%); width: 60%; }
    .hero__poster { max-width: 320px; transform: rotate(0); }
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero__title-accent { color: var(--gold); }
.hero__title-script { font-style: italic; font-weight: 600; color: var(--white); position: relative; }
.hero__title-script::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero__price-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 22px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 100px;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}
.hero__price-label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__price-amount { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hero__price-unit { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero__strip {
    display: inline-flex; gap: 24px; align-items: center; flex-wrap: wrap;
    justify-content: center;
    padding: 18px 28px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.hero__strip strong { color: var(--gold); font-weight: 600; }
.hero__strip-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.2); }

.hero__scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

@media (max-width: 600px) {
    .hero__strip-divider { display: none; }
    .hero__strip { gap: 6px 16px; padding: 14px 20px; }
    .hero__ctas .btn { width: 100%; }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section--cream { background: var(--cream-2); }
.section--dark { background: var(--charcoal); color: rgba(255,255,255,0.85); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}
.section__title--light { color: var(--white); }
.section__sub {
    color: var(--gray-700);
    font-size: 1.08rem;
    line-height: 1.6;
}
.section--dark .section__sub { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section__head { margin-bottom: 44px; }
}

/* ============================================================
   Experiences (3 destinations)
   ============================================================ */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.exp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.exp-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.exp-card:hover .exp-card__media img { transform: scale(1.06); }
.exp-card__num {
    position: absolute;
    top: 16px; right: 16px;
    width: 44px; height: 44px;
    background: rgba(31, 27, 26, 0.6);
    backdrop-filter: blur(8px);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.exp-card__body { padding: 28px 26px 30px; }
.exp-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 10px;
}
.exp-card__title { font-size: 1.6rem; margin-bottom: 12px; }
.exp-card__body p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ============================================================
   Inclusions
   ============================================================ */
.incl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.incl-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-300);
}
.incl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.incl-card__icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.incl-card__icon svg { width: 28px; height: 28px; }
.incl-card__title { font-size: 1.15rem; margin-bottom: 6px; font-family: var(--font-heading); }
.incl-card__desc { color: var(--gray-700); font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 768px) { .incl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .incl-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}
.pricing__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--white);
    margin: 16px 0 20px;
    line-height: 1.2;
}
.pricing__desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.pricing__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing__list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 0.98rem; }
.pricing__list svg { color: var(--gold); flex-shrink: 0; }

.pricing__card {
    background: var(--white);
    color: var(--charcoal);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.pricing__card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--gold), transparent 60%);
    z-index: -1;
    opacity: 0.4;
}
.pricing__card-tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.pricing__card-price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 6px; }
.pricing__currency { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: var(--burgundy); margin-top: 8px; }
.pricing__amount { font-family: var(--font-heading); font-size: clamp(3.4rem, 7vw, 5rem); font-weight: 800; color: var(--burgundy); line-height: 1; letter-spacing: -0.03em; }
.pricing__card-unit { color: var(--gray-700); font-size: 0.95rem; margin-bottom: 22px; }
.pricing__card-note { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 22px; line-height: 1.5; }
.pricing__card-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--burgundy);
    border-bottom: 1px solid rgba(122, 31, 46, 0.25);
    padding-bottom: 1px;
    transition: var(--transition);
}
.pricing__card-link:hover { color: var(--burgundy-dark); border-color: var(--burgundy); }

@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; gap: 40px; } .pricing__card { padding: 36px 26px; } }

/* ============================================================
   Dates table
   ============================================================ */
.dates-toolbar { display: flex; justify-content: flex-end; max-width: 880px; margin: 0 auto 24px; }
.dates-toggle { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; font-size: 0.92rem; color: var(--gray-700); }
.dates-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.dates-toggle__track {
    width: 44px; height: 24px;
    background: var(--gray-300);
    border-radius: 100px;
    position: relative;
    transition: var(--transition-fast);
}
.dates-toggle__thumb {
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.dates-toggle input:checked + .dates-toggle__track { background: var(--burgundy); }
.dates-toggle input:checked + .dates-toggle__track .dates-toggle__thumb { transform: translateX(20px); }

.dates { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.dates__month {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
}
.dates__month[data-avail="0"]:not(.is-revealed) { display: none; }

.dates__month-header {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 18px 28px 12px;
    border-bottom: 1px solid var(--gray-300);
}
.dates__month-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--burgundy);
    letter-spacing: 0.02em;
}
.dates__month-header span { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.04em; }

.dates__list { list-style: none; display: flex; flex-direction: column; }
.dates__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid var(--gray-300);
    transition: var(--transition-fast);
}
.dates__row:last-child { border-bottom: none; }
.dates__row:hover { background: var(--cream); }
.dates__row.is-soldout { display: none; opacity: 0.5; }
.dates.is-revealed .dates__row.is-soldout { display: grid; }
.dates.is-revealed .dates__row.is-soldout .dates__range,
.dates.is-revealed .dates__row.is-soldout .dates__price { text-decoration: line-through; }

.dates__range { font-weight: 600; font-size: 0.98rem; }
.dates__price { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--burgundy); }
.dates__price span { font-family: var(--font-body); font-size: 0.78rem; color: var(--gray-500); font-weight: 400; margin-left: 2px; }
.dates__seats { display: flex; }
.dates__action { display: flex; justify-content: flex-end; }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.badge--ok { background: rgba(22, 163, 74, 0.12); color: var(--success); }
.badge--low { background: rgba(212, 175, 55, 0.18); color: var(--gold-dark); }
.badge--soldout { background: rgba(185, 28, 28, 0.1); color: var(--danger); }

@media (max-width: 720px) {
    .dates__row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 20px; }
    .dates__action { grid-column: 1 / -1; }
    .dates__action .btn { width: 100%; }
    .dates__seats { grid-column: 1 / -1; }
    .dates__month-header { padding: 16px 20px 10px; }
}

/* ============================================================
   Why Firjani
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-300);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card__icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
}
.why-card__icon svg { width: 30px; height: 30px; }
.why-card__icon--burgundy { background: rgba(122, 31, 46, 0.1); color: var(--burgundy); }
.why-card__icon--gold { background: rgba(212, 175, 55, 0.18); color: var(--gold-dark); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-heading); }
.why-card p { color: var(--gray-700); font-size: 0.9rem; line-height: 1.55; }

.brands {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}
.brands__intro { font-size: 0.95rem; color: var(--gray-700); margin-bottom: 22px; letter-spacing: 0.01em; }
.brands__intro strong { color: var(--burgundy); }
.brands__list { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.brands__item { text-align: center; }
.brands__name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.brands__desc { font-size: 0.82rem; color: var(--gray-500); }
.brands__divider { width: 1px; height: 36px; background: var(--gray-300); }

@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } .brands__divider { display: none; } .brands__list { gap: 20px; } }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: var(--transition);
}
.testi:hover { background: rgba(255,255,255,0.07); border-color: rgba(212, 175, 55, 0.4); }
.testi__stars { color: var(--gold); letter-spacing: 0.18em; margin-bottom: 16px; }
.testi p { color: rgba(255,255,255,0.88); font-size: 0.97rem; line-height: 1.65; margin-bottom: 22px; font-style: italic; }
.testi footer { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}
.testi__name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.testi__loc { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ============================================================
   CTA / Lead form
   ============================================================ */
.cta-section { background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%); }
.cta-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 56px 50px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}
.cta-card__head { text-align: center; margin-bottom: 36px; }
.cta-card__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.cta-card__sub { color: var(--gray-700); font-size: 1.02rem; max-width: 580px; margin: 0 auto; line-height: 1.6; }

.lead-form { display: flex; flex-direction: column; gap: 18px; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--gray-700); }
.lead-form label em { color: var(--gray-500); font-style: normal; font-weight: 400; }
.lead-form input,
.lead-form select,
.lead-form textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition-fast);
    width: 100%;
}
.lead-form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%237A1F2E' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.lead-form textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(122, 31, 46, 0.1); }
.lead-form input:invalid:not(:placeholder-shown) { border-color: var(--danger); }

.lead-form__actions { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.lead-form__actions .btn { flex: 1; min-width: 200px; }

.lead-form__note {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
}
.lead-form__note.is-success { background: rgba(22, 163, 74, 0.1); color: var(--success); border: 1px solid rgba(22, 163, 74, 0.3); }
.lead-form__note.is-error { background: rgba(185, 28, 28, 0.08); color: var(--danger); border: 1px solid rgba(185, 28, 28, 0.25); }

@media (max-width: 720px) {
    .cta-card { padding: 36px 24px; }
    .lead-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { max-width: 360px; }
.footer__brand .nav__brand { color: var(--white); margin-bottom: 14px; display: inline-flex; }
.footer__brand p { font-size: 0.92rem; line-height: 1.6; margin-top: 8px; }
.footer__group { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.04em; margin-top: 14px; }

.footer__col h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: var(--transition-fast); }
.footer__col a:hover { color: var(--gold); }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

@media (max-width: 800px) {
    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer__brand { grid-column: 1 / -1; max-width: 100%; }
}

/* ============================================================
   Floating WhatsApp FAB
   ============================================================ */
.wa-fab {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 99;
    transition: var(--transition);
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); }
.wa-fab__pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    z-index: -1;
    animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

@media (max-width: 600px) { .wa-fab { width: 54px; height: 54px; bottom: 16px; right: 16px; } }

/* ============================================================
   Motion One — performance hints + hover overrides
   (animations live in assets/js/main.js)
   ============================================================ */
.exp-card, .incl-card, .why-card, .testi, .pricing__card, .cta-card, .dates__month, .wa-fab,
[data-motion], .hero__bg img, .hero__content { will-change: transform, opacity; }

/* Disable CSS hover transforms — Motion drives these for smoother springs */
.exp-card:hover { transform: none; }
.exp-card:hover .exp-card__media img { transform: none; }
.incl-card:hover { transform: none; }
.why-card:hover { transform: none; }
.btn--gold:hover, .btn--whatsapp:hover { transform: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-motion] { opacity: 1 !important; transform: none !important; }
}
