/* ============================================
   BELEZA QUE CURA — Landing Page
   ============================================ */

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

:root {
    /* Color palette */
    --cream: #F9ECE0;
    --cream-soft: #F3E5D5;
    --cream-deep: #EAD8C3;
    --wine: #7B292B;
    --wine-deep: #5C1E20;
    --wine-darker: #4A1517;
    --terracotta: #AC4134;
    --terracotta-soft: #C25742;
    --dark: #2D0E0B;
    --dark-soft: #3A1410;
    --dark-deeper: #1A0806;
    --ink: #2D0E0B;
    --muted: rgba(45, 14, 11, 0.6);
    --muted-light: rgba(249, 236, 224, 0.6);

    /* Type */
    --font-display: 'Italiana', 'Cormorant Garamond', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container: 1320px;
    --gutter: clamp(24px, 5vw, 64px);

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--cream);
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 1024px) {
    body { cursor: auto; }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .3s var(--ease-soft), color .3s var(--ease-soft);
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

em { font-style: italic; font-family: var(--font-serif); font-weight: 400; }
p em { font-size: 24px; line-height: 16px; }

::selection { background: var(--wine); color: var(--cream); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s var(--ease-out), visibility 1s;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; max-width: 320px; }

.loader-logo {
    width: auto;
    height: 160px;
    margin: 0 auto 32px;
    opacity: 0;
    animation: fadeBlurIn 1.2s var(--ease-out) forwards;
    display: flex;
    justify-content: center;
}
.loader-logo-img {
    height: 100%;
    width: auto;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(249, 236, 224, 0.15);
    margin: 0 auto 24px;
    overflow: hidden;
}
.loader-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--cream);
    animation: loadFill 2s var(--ease-out) forwards;
}

.loader-text {
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn .8s ease .5s forwards;
}

@keyframes loadFill { to { width: 100%; } }
@keyframes fadeIn { to { opacity: .7; } }
@keyframes fadeBlurIn {
    from { opacity: 0; filter: blur(20px); transform: scale(.95); }
    to { opacity: 1; filter: blur(0); transform: scale(1); }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor, .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transition: opacity .3s, transform .3s var(--ease-out);
    will-change: transform;
}
.cursor {
    width: 6px;
    height: 6px;
    background: var(--wine);
    margin: -3px 0 0 -3px;
}
.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--wine);
    margin: -18px 0 0 -18px;
    opacity: .5;
    transition: transform .4s var(--ease-out), opacity .3s, width .3s, height .3s, background .3s;
}
.cursor.hover-active { transform: scale(0); }
.cursor-follower.hover-active {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    background: var(--wine);
    opacity: .15;
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower { display: none; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--wine), var(--terracotta));
    z-index: 100;
    transition: width .1s linear;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 28px 0;
    transition: padding .4s var(--ease-soft), background .4s var(--ease-soft), backdrop-filter .4s;
}
.nav.scrolled {
    padding: 16px 0;
    background: rgba(249, 236, 224, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(123, 41, 43, 0.08);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: block;
    height: 38px;
    width: auto;
    transition: height .4s var(--ease-soft), transform .4s var(--ease-soft);
}
.nav-logo img {
    height: 100%;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(15%) sepia(40%) saturate(2200%) hue-rotate(340deg) brightness(85%) contrast(95%);
}
.nav.scrolled .nav-logo { height: 30px; }

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}
.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    color: var(--ink);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wine);
    transition: width .4s var(--ease-out);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--wine);
    color: var(--cream);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: background .4s, transform .4s var(--ease-out), gap .4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: translateY(100%);
    transition: transform .4s var(--ease-out);
    z-index: -1;
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover { gap: 14px; }
.nav-cta .arrow {
    font-style: normal;
    transition: transform .4s var(--ease-out);
    display: inline-block;
}
.nav-cta:hover .arrow { transform: translateX(3px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 80;
    padding: 120px var(--gutter) 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--ease-soft), visibility .5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .35s; }
.mobile-cta {
    margin-top: 12px;
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-soft) !important;
}
.mobile-meta {
    color: var(--cream-soft);
    opacity: .6;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: gap .4s var(--ease-out), transform .4s var(--ease-out);
    cursor: pointer;
}
.btn .arrow { font-style: normal; transition: transform .4s var(--ease-out); }
.btn:hover { gap: 18px; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
    background: var(--wine);
    color: var(--cream);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: translateY(100%);
    transition: transform .5s var(--ease-out);
    z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary .arrow { position: relative; z-index: 1; }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(45, 14, 11, 0.25);
}
.btn-ghost:hover { border-color: var(--wine); color: var(--wine); }

.btn-large {
    padding: 22px 44px;
    font-size: 15px;
    letter-spacing: 0.1em;
}

/* ============================================
   SECTION TITLES & LABELS
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 32px;
}
.section-label .line {
    width: 40px;
    height: 1px;
    background: currentColor;
}
.section-label.light { color: var(--cream); }
.section-label.dark { color: var(--cream); }
.section-label.center {
    display: flex;
    justify-content: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 80px);
    line-height: 1.05;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}
.section-title em {
    color: var(--wine);
    font-style: italic;
    font-family: var(--font-serif);
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--terracotta-soft); }

.section-header { margin-bottom: clamp(60px, 8vw, 100px); }

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--wine-deep) 0%, var(--wine) 50%, var(--terracotta) 100%);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    color: var(--cream);
    transition: transform .6s var(--ease-out);
}
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(249, 236, 224, 0.35);
    border-radius: 2px;
    pointer-events: none;
}
.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(172, 65, 52, 0.5), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 14, 11, 0.4), transparent 50%);
    pointer-events: none;
}

.img-tag {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    margin-bottom: 16px;
    font-weight: 500;
    z-index: 1;
    background: rgba(45, 14, 11, 0.4);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(249, 236, 224, 0.15);
}
.img-tag.light { color: var(--terracotta-soft); }

.img-label {
    font-family: var(--font-display);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--cream);
    max-width: 280px;
    line-height: 1.4;
    z-index: 1;
    opacity: 0.95;
}

.img-meta {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.55;
    margin-top: 14px;
    z-index: 1;
}

/* Variant placeholders specific aspect ratios */
.hero-img { aspect-ratio: 4 / 5; }
.for-who-img {
    aspect-ratio: 4 / 5;
    margin-top: 0;
    max-width: 420px;
}

/* Real image figure for For Who */
figure.for-who-img {
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transition: transform .8s var(--ease-out);
}
figure.for-who-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(45, 14, 11, 0.35) 100%);
    pointer-events: none;
}
figure.for-who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease-out);
}
figure.for-who-img:hover img {
    transform: scale(1.04);
}
.venue-img {
    aspect-ratio: 3 / 2;
    margin-top: 40px;
    max-width: 480px;
}

/* Real image figures */
figure.manifesto-img {
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 30px 80px rgba(45, 14, 11, 0.18);
    transition: transform .8s var(--ease-out);
}
figure.manifesto-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 14, 11, 0.15) 100%);
    pointer-events: none;
}
figure.manifesto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease-out);
}
figure.manifesto-img:hover img {
    transform: scale(1.04);
}

/* Big quote bg */
.big-quote-bg.img-placeholder {
    position: absolute;
    inset: 0;
    border-radius: 0;
    opacity: 0.35;
    z-index: 0;
}
.big-quote-bg.img-placeholder::before { inset: 24px; opacity: .4; }

/* ============================================
   TESTIMONIALS · hidden for now
   ============================================ */
.testimonials { display: none; }

.testimonials {
    padding: clamp(100px, 14vw, 160px) 0;
    background: var(--cream-soft);
    position: relative;
    overflow: hidden;
}
.testimonials-bg {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(172, 65, 52, 0.12), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}
.testimonials-header {
    text-align: center;
    margin-bottom: clamp(56px, 7vw, 96px);
    position: relative;
    z-index: 1;
}
.testimonials-header .section-label { display: inline-flex; }

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

.testimonial {
    background: var(--cream);
    padding: 48px 36px 36px;
    border-radius: 6px;
    position: relative;
    border: 1px solid rgba(123, 41, 43, 0.08);
    transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .4s;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 4px 20px rgba(45, 14, 11, 0.04);
}
.testimonial.featured {
    background: var(--wine-deep);
    color: var(--cream);
    border-color: transparent;
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(45, 14, 11, 0.25);
}
.testimonial:hover {
    transform: translateY(-16px);
    border-color: var(--wine);
    box-shadow: 0 30px 60px rgba(45, 14, 11, 0.15);
}
.testimonial.featured:hover {
    transform: translateY(-22px);
    box-shadow: 0 40px 90px rgba(45, 14, 11, 0.32);
}

.testimonial-mark {
    position: absolute;
    top: 16px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 140px;
    line-height: .7;
    color: var(--wine);
    opacity: 0.12;
    pointer-events: none;
    font-style: italic;
    user-select: none;
}
.testimonial.featured .testimonial-mark {
    color: var(--terracotta-soft);
    opacity: 0.25;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}
.testimonial.featured .testimonial-text { color: var(--cream); }
.testimonial-text em {
    color: var(--wine);
    font-style: italic;
}
.testimonial.featured .testimonial-text em { color: var(--terracotta-soft); }

.testimonial-divider {
    height: 1px;
    background: rgba(123, 41, 43, 0.15);
}
.testimonial.featured .testimonial-divider {
    background: rgba(249, 236, 224, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--cream);
    box-shadow: 0 4px 12px rgba(45, 14, 11, 0.15);
    background: var(--wine-deep);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial.featured .testimonial-avatar {
    border-color: var(--cream);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-name {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--wine-deep);
    line-height: 1.2;
}
.testimonial.featured .testimonial-name { color: var(--cream); }
.testimonial-role {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.testimonial.featured .testimonial-role { color: var(--cream-soft); opacity: 0.7; }

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial.featured { transform: translateY(0); }
}

/* ============================================
   PROGRAM CAROUSEL
   ============================================ */
.program {
    padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
    overflow: hidden;
}

.program-carousel {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 20px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}
.program-carousel.dragging { cursor: grabbing; }
.program-carousel.dragging .program-card { pointer-events: none; }

.program-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: programScroll 50s linear infinite;
    will-change: transform;
}
.program-carousel:hover .program-track { animation-play-state: paused; }
.program-carousel.dragging .program-track { animation: none; }
.program-card-bg,
.program-card img { pointer-events: none; -webkit-user-drag: none; }

@keyframes programScroll {
    to { transform: translateX(-50%); }
}

.program-card {
    position: relative;
    width: clamp(260px, 22vw, 360px);
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
    background: var(--wine-deep);
}
.program-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(45, 14, 11, 0.35);
    z-index: 2;
}

.program-card-bg {
    position: absolute;
    inset: 0;
    background-color: var(--wine-deep);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1.2s var(--ease-out);
    will-change: transform;
}
.program-card:hover .program-card-bg {
    transform: scale(1.08);
}

.program-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(45, 14, 11, 0.15) 0%,
        rgba(45, 14, 11, 0.45) 50%,
        rgba(45, 14, 11, 0.92) 100%
    );
    transition: background .5s var(--ease-out);
    z-index: 1;
}
.program-card:hover .program-card-shade {
    background: linear-gradient(180deg,
        rgba(45, 14, 11, 0.3) 0%,
        rgba(45, 14, 11, 0.65) 40%,
        rgba(45, 14, 11, 0.97) 100%
    );
}

.program-card-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--cream);
    line-height: 1;
    opacity: 0.8;
    transition: opacity .4s, transform .5s var(--ease-out);
}
.program-card:hover .program-card-tag {
    opacity: 1;
    transform: translateY(-4px);
}

.program-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 28px 28px;
    color: var(--cream);
    z-index: 3;
    transform: translateY(0);
    transition: transform .5s var(--ease-out);
}
.program-card-content h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 10px;
    font-weight: 400;
    transition: transform .5s var(--ease-out);
}
.program-card-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream-soft);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity .5s var(--ease-out), max-height .5s var(--ease-out), transform .5s var(--ease-out);
}
.program-card:hover .program-card-content p {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
}
.program-card:hover .program-card-content h3 {
    transform: translateY(-6px);
}

@media (max-width: 600px) {
    .program-card { width: 260px; }
    /* mobile: show overlay text always */
    .program-card-content p {
        opacity: 1;
        max-height: 100px;
        transform: none;
    }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    will-change: opacity, transform, filter;
}
.reveal[data-reveal="fade"] {
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
    transform: translateY(20px);
}
.reveal[data-reveal="up"] {
    transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
    transform: translateY(50px);
    filter: blur(6px);
}
.reveal[data-reveal="left"] {
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
    transform: translateX(-40px);
}
.reveal[data-reveal="right"] {
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
    transform: translateX(40px);
}
.reveal[data-reveal="blur"] {
    transition: opacity 1.6s var(--ease-out), filter 1.6s var(--ease-out), transform 1.6s var(--ease-out);
    filter: blur(20px);
    transform: translateY(30px) scale(0.96);
}
.reveal[data-reveal="scale"] {
    transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
    transform: scale(0.9);
    filter: blur(10px);
}

.reveal.in {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-bg-image {
    position: absolute;
    inset: -10% -5% -10% 30%;
    background-image: url('../img/hero-background.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    will-change: transform;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            var(--cream) 0%,
            var(--cream) 30%,
            rgba(249, 236, 224, 0.92) 45%,
            rgba(249, 236, 224, 0.55) 60%,
            rgba(249, 236, 224, 0.15) 78%,
            rgba(249, 236, 224, 0) 100%
        ),
        linear-gradient(180deg,
            rgba(249, 236, 224, 0.35) 0%,
            transparent 30%,
            transparent 70%,
            rgba(249, 236, 224, 0.4) 100%
        );
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(123, 41, 43, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 41, 43, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.5) 0%, transparent 50%);
    -webkit-mask-image: radial-gradient(circle at 20% 50%, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.hero-bg-glow {
    position: absolute;
    top: 60%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(172, 65, 52, 0.18) 0%, transparent 65%);
    filter: blur(60px);
    animation: floatGlow 12s ease-in-out infinite;
}
@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 380px;
        align-items: flex-start;
        min-height: 100svh;
        background: var(--cream);
    }
    /* Bg image becomes a bottom strip — keeps text area clean cream */
    .hero-bg-image {
        inset: auto 0 0 0;
        height: 65vh;
        background-image: url('../img/hero-background-mobile.png');
        background-position: center bottom;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 1;
        transform: none !important;
    }
    .hero-bg-overlay { display: none; }
    .hero-bg-grid { display: none; }
    .hero-bg-glow { display: none; }
    .hero-scroll { display: none !important; }
    /* Push text content above image strip with breathing room */
    .hero-content {
        padding-bottom: 65vh;
    }
    /* Specific mobile typography adjustments */
    .hero-overline { font-size: 10px; }
    .hero-tagline { margin-bottom: 12px; }
    .meta-city { display: none; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

.hero-text {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

/* Floating circular badge bottom-right of hero */
.hero-badge {
    position: absolute;
    right: clamp(16px, 4vw, 64px);
    bottom: clamp(80px, 12vh, 140px);
    width: clamp(110px, 11vw, 160px);
    height: clamp(110px, 11vw, 160px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(45, 14, 11, 0.25));
}
.hero-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    animation: rotateSlow 25s linear infinite;
}

@media (max-width: 1024px) {
    .hero-badge { display: none; }
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 32px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(123, 41, 43, 0.2);
    border-radius: 100px;
    background: rgba(249, 236, 224, 0.5);
    backdrop-filter: blur(6px);
}
.hero-overline .dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
}
.hero-overline .dot.pulse {
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(172, 65, 52, 0.7);
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(172, 65, 52, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(172, 65, 52, 0); }
}

@media (max-width: 1024px) {
    .hero-overline { font-size: 10px; gap: 10px; padding: 6px 14px; }
    .hero-tagline { margin-bottom: 12px; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.2vw, 96px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--wine-deep);
    margin-bottom: 28px;
    font-weight: 400;
}
.hero-title em {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--terracotta);
    margin: 0 0.05em;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 30px);
    color: var(--wine);
    margin-bottom: 28px;
    line-height: 1.2;
    font-weight: 300;
}

.hero-sub {
    font-size: clamp(15.5px, 1.15vw, 18px);
    line-height: 1.7;
    color: var(--ink);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0.85;
}
.hero-sub em { color: var(--wine); font-weight: 500; font-size: 24px; line-height: 16px;}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-meta {
    display: flex;
    gap: clamp(24px, 4vw, 56px);
    padding-top: 32px;
    border-top: 1px solid rgba(123, 41, 43, 0.15);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-meta-value {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--wine-deep);
    font-weight: 700;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 60px;
}
.hero-scroll-line {
    position: relative;
    width: 60px;
    height: 1px;
    background: rgba(45, 14, 11, 0.2);
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 30%;
    background: var(--wine);
    animation: scrollLine 2.5s var(--ease-soft) infinite;
}
@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(330%); }
}

@media (max-width: 1024px) {
    .hero { padding-top: 120px; }
    .hero-text { max-width: 100%; }
}
@media (max-width: 600px) {
    .hero-meta { flex-wrap: wrap; gap: 20px 16px; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--dark);
    color: var(--cream);
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid rgba(249, 236, 224, 0.08);
    border-bottom: 1px solid rgba(249, 236, 224, 0.08);
}
.marquee-track {
    display: flex;
    gap: 60px;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: 0.02em;
}
.marquee-track .sep {
    color: var(--terracotta-soft);
    font-size: 0.6em;
}
@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    @keyframes marqueeScroll {
    to { transform: translateX(-150%); }
}
    .marquee-track { animation: marqueeScroll 15s linear infinite;}
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
    position: relative;
    padding: clamp(100px, 14vw, 180px) 0;
    overflow: hidden;
    background: var(--cream);
}

.manifesto-bg-text {
    position: absolute;
    bottom: -50px;
    right: -100px;
    font-family: var(--font-display);
    font-size: clamp(200px, 30vw, 480px);
    line-height: 1;
    color: var(--wine);
    opacity: 0.04;
    pointer-events: none;
    letter-spacing: -0.05em;
    z-index: 0;
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 92px);
    line-height: 1.02;
    color: var(--wine-deep);
    font-weight: 400;
    letter-spacing: -0.015em;
    max-width: 1100px;
    margin-bottom: clamp(56px, 7vw, 96px);
    position: relative;
    z-index: 1;
}
.manifesto-title span { display: block; }
.manifesto-title em {
    color: var(--terracotta);
    font-style: italic;
    font-family: var(--font-serif);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
    position: relative;
    z-index: 1;
}

.manifesto-right p {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.75;
    margin-bottom: 28px;
    color: var(--ink);
}
.manifesto-right p:last-of-type { margin-bottom: 40px; }
.manifesto-right strong { font-weight: 500; color: var(--wine); }
.manifesto-right em { color: var(--wine); }

.manifesto-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}
.sig-line {
    width: 60px;
    height: 1px;
    background: var(--wine);
}
.sig-text {
    font-family: var(--font-display);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--wine);
}

@media (max-width: 900px) {
    .manifesto-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream-soft);
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar {
    background: var(--cream);
    padding: 48px 36px;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(123, 41, 43, 0.08);
    transition: transform .6s var(--ease-out), border-color .4s, background .4s;
    overflow: hidden;
}
.pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
    opacity: 0;
    transition: opacity .5s var(--ease-out);
    z-index: 0;
}
.pillar:hover,
.pillar.active {
    transform: translateY(-8px);
    border-color: var(--wine);
}
.pillar:hover::before,
.pillar.active::before { opacity: 1; }
.pillar:hover .pillar-num,
.pillar:hover h3,
.pillar:hover p,
.pillar.active .pillar-num,
.pillar.active h3,
.pillar.active p { color: var(--cream); }
.pillar:hover .pillar-num,
.pillar.active .pillar-num { opacity: .45; }

.pillar > * { position: relative; z-index: 1; transition: color .4s; }

.pillar-num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--wine);
    opacity: 0.25;
    margin-bottom: 32px;
    line-height: 1;
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--wine-deep);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.pillar p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { padding: 36px 28px; }
}

/* ============================================
   BIG QUOTE
   ============================================ */
.big-quote {
    background: var(--dark);
    color: var(--cream);
    padding: clamp(100px, 14vw, 180px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.big-quote::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 14, 11, 0.85) 0%, rgba(45, 14, 11, 0.92) 100%);
    z-index: 1;
}
.big-quote::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(172, 65, 52, 0.18) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
}
.big-quote .container { position: relative; z-index: 3; }

.quote-mark {
    color: var(--terracotta-soft);
    font-size: 32px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.big-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 96px);
    line-height: 1.1;
    max-width: 1100px;
    margin: 0 auto 48px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.big-quote blockquote em {
    color: var(--terracotta-soft);
    font-style: italic;
    font-family: var(--font-serif);
}

.quote-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: .7;
    position: relative;
    z-index: 1;
}
.quote-author .line {
    width: 40px;
    height: 1px;
    background: currentColor;
}

/* ============================================
   PROGRAM
   ============================================ */
.program { background: var(--cream); }
.program-header { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.program-header .section-label { display: inline-flex; }

/* ============================================
   SPEAKERS
   ============================================ */
.speakers {
    padding: clamp(100px, 14vw, 180px) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.speakers::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -20%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(172, 65, 52, 0.10), transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.speakers-header {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 100px);
    position: relative;
    z-index: 1;
}
.speakers-header .section-label { display: inline-flex; }

/* Carousel container */
.speakers-carousel {
    position: relative;
    z-index: 1;
}

/* Stage — all slides stacked in same grid cell, only active visible */
.speakers-stage {
    display: grid;
    position: relative;
}

/* Each slide uses the featured layout */
.speaker-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(24px) scale(0.985);
    filter: blur(14px);
    transition: opacity .9s var(--ease-out), filter .9s var(--ease-out), transform .9s var(--ease-out), visibility 0s .9s;
}
.speaker-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    filter: blur(0);
    transition: opacity .9s var(--ease-out), filter .9s var(--ease-out), transform .9s var(--ease-out), visibility 0s 0s;
    z-index: 2;
}

/* Controls */
.speakers-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    margin-top: clamp(48px, 6vw, 72px);
}

.speakers-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(123, 41, 43, 0.25);
    background: var(--cream);
    color: var(--wine);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .4s var(--ease-out), color .4s, border-color .4s, transform .5s var(--ease-out), box-shadow .4s;
    position: relative;
    overflow: hidden;
}
.speakers-arrow svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform .4s var(--ease-out);
}
.speakers-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--wine);
    transform: scale(0);
    border-radius: 50%;
    transition: transform .5s var(--ease-out);
}
.speakers-arrow:hover {
    color: var(--cream);
    border-color: var(--wine);
    box-shadow: 0 12px 30px rgba(123, 41, 43, 0.25);
}
.speakers-arrow:hover::before { transform: scale(1.05); }
.speakers-arrow.prev:hover svg { transform: translateX(-3px); }
.speakers-arrow.next:hover svg { transform: translateX(3px); }
.speakers-arrow:active { transform: scale(0.95); }
.speakers-arrow:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 4px;
}

/* Counter */
.speakers-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    color: var(--wine-deep);
    position: relative;
    padding: 0 4px;
}
.counter-current,
.counter-total {
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1;
    min-width: 1.8ch;
    text-align: center;
}
.counter-current {
    color: var(--wine);
    transition: opacity .3s;
}
.counter-total {
    color: var(--muted);
    opacity: 0.5;
    font-size: clamp(18px, 1.6vw, 22px);
}
.counter-divider {
    color: var(--muted);
    opacity: 0.4;
    font-size: clamp(18px, 1.8vw, 24px);
}
.counter-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 1px;
    background: rgba(123, 41, 43, 0.15);
    overflow: hidden;
}
.counter-progress span {
    display: block;
    height: 100%;
    background: var(--wine);
    width: calc(100% / 6);
    transform: translateX(0);
    transition: transform .6s var(--ease-out);
}

/* Dots */
.speakers-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}
.speaker-dot {
    width: 30px;
    height: 4px;
    border-radius: 100px;
    border: none;
    background: rgba(123, 41, 43, 0.2);
    cursor: pointer;
    padding: 0;
    transition: background .4s, width .4s var(--ease-out);
    position: relative;
}
.speaker-dot::before {
    /* expand hit area without growing visual */
    content: '';
    position: absolute;
    inset: -10px;
}
.speaker-dot:hover { background: rgba(123, 41, 43, 0.4); }
.speaker-dot.is-active {
    background: var(--wine);
    width: 48px;
}

@media (max-width: 600px) {
    .speakers-arrow { width: 48px; height: 48px; }
    .speakers-arrow svg { width: 18px; height: 18px; }
    .speakers-controls { gap: 20px; }
    .speaker-dot { width: 24px; }
    .speaker-dot.is-active { width: 36px; }
}

.speaker-featured-img {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 40px 100px rgba(45, 14, 11, 0.22);
    border-radius: 6px;
    overflow: hidden;
    margin: 0;
    position: relative;
    transition: transform .8s var(--ease-out);
}
.speaker-featured-img:hover { transform: translateY(-8px); }
figure.speaker-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease-out);
}
figure.speaker-featured-img:hover img { transform: scale(1.04); }
figure.speaker-featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(45, 14, 11, 0.15) 100%);
    pointer-events: none;
}

.speaker-featured-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.speaker-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
    padding: 8px 18px;
    background: rgba(172, 65, 52, 0.08);
    border: 1px solid rgba(172, 65, 52, 0.25);
    border-radius: 100px;
    align-self: flex-start;
}
.pill-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(172, 65, 52, 0.7);
}

.speaker-featured-name {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 78px);
    line-height: .95;
    color: var(--wine-deep);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.speaker-featured-role {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(17px, 1.5vw, 22px);
    color: var(--wine);
    margin: -10px 0 0;
    font-weight: 300;
}

.speaker-featured-bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
}
.speaker-featured-bio p {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.7;
    color: var(--ink);
    opacity: 0.85;
}
.speaker-featured-bio strong { color: var(--wine); font-weight: 500; }
.speaker-featured-bio em { color: var(--wine); }

/* Topic block */
.speaker-topic {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    border-left: 2px solid var(--wine);
    background: rgba(123, 41, 43, 0.04);
    border-radius: 0 4px 4px 0;
}
.speaker-topic.featured {
    padding: 24px 28px;
    border-left-width: 3px;
    margin-top: 8px;
}
.topic-label {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--wine);
    font-weight: 500;
}
.topic-title {
    font-family: var(--font-display);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.35;
    color: var(--wine-deep);
}
.speaker-topic.featured .topic-title {
    font-size: clamp(18px, 1.5vw, 24px);
}

/* Speakers grid (other 5) */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.speaker-card {
    background: var(--cream);
    border: 1px solid rgba(123, 41, 43, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .4s;
    display: flex;
    flex-direction: column;
}
.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(45, 14, 11, 0.15);
    border-color: var(--wine);
}

.speaker-img {
    aspect-ratio: 4 / 5;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.speaker-img img,
.speaker-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.speaker-card:hover .speaker-img img { transform: scale(1.06); }

.speaker-info {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.speaker-name {
    font-family: var(--font-display);
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.1;
    color: var(--wine-deep);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.speaker-bio {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    flex-grow: 1;
}

.speaker-card .speaker-topic {
    padding: 14px 16px;
    margin-top: 4px;
}
.speaker-card .topic-label { font-size: 9px; }
.speaker-card .topic-title { font-size: 14.5px; line-height: 1.3; }

/* Responsive */
@media (max-width: 1024px) {
    .speaker-slide { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .speaker-featured-img { max-width: 100%; }
}

/* ============================================
   FOR WHO
   ============================================ */
.for-who {
    background: var(--wine-deep);
    color: var(--cream);
    padding: clamp(100px, 14vw, 180px) 0;
    position: relative;
    overflow: hidden;
}
.for-who::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(172, 65, 52, 0.3), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.for-who-header {
    max-width: 1100px;
    margin-bottom: clamp(56px, 7vw, 96px);
    position: relative;
    z-index: 1;
}
.for-who-header .section-title {
    color: var(--cream);
}
.for-who-header .section-title em {
    color: var(--terracotta-soft);
}

.for-who-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
    position: relative;
    z-index: 1;
}

.for-who-left { display: flex; flex-direction: column; }

.underline-deco {
    position: relative;
    display: inline-block;
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--terracotta-soft);
}
.underline-deco::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--terracotta-soft);
    opacity: .6;
}

.for-who-lead {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(20px, 1.8vw, 26px);
    color: var(--cream-soft);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 32px;
    max-width: 440px;
}

.for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 16px;
}
.for-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    font-size: 16.5px;
    line-height: 1.65;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(249, 236, 224, 0.1);
    color: var(--cream-soft);
}
.for-list li:last-child { border-bottom: none; padding-bottom: 0; }
.check {
    color: var(--terracotta-soft);
    font-size: 18px;
    flex-shrink: 0;
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .for-who-grid { grid-template-columns: 1fr; }
}

/* ============================================
   DIFFERENTIALS
   ============================================ */
.differentials {
    padding: clamp(100px, 14vw, 160px) 0;
    background: var(--cream);
}

.differentials .section-title { margin-bottom: clamp(60px, 8vw, 100px); }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.diff-card {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid rgba(123, 41, 43, 0.15);
    position: relative;
    transition: border-color .4s;
}
.diff-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wine);
    transition: width .6s var(--ease-out);
}
.diff-card:hover::after { width: 100%; }

.diff-num {
    font-family: var(--font-display);
    font-size: clamp(60px, 7vw, 100px);
    color: var(--wine);
    line-height: 1;
    display: inline-block;
}
.diff-symbol {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 70px);
    color: var(--terracotta);
    line-height: 1;
}
.diff-card p {
    margin-top: 24px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
}

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

/* ============================================
   VENUE
   ============================================ */
.venue {
    padding: clamp(100px, 14vw, 180px) 0;
    background: var(--cream-soft);
    position: relative;
    overflow: hidden;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.venue-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 130px);
    line-height: .95;
    color: var(--wine-deep);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.venue-title em {
    color: var(--terracotta);
    font-style: italic;
    font-family: var(--font-serif);
}

.venue-sub {
    font-family: var(--font-serif);
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 56px;
    max-width: 480px;
    font-weight: 300;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.venue-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(123, 41, 43, 0.15);
    align-items: start;
}
.venue-row:last-child { border-bottom: 1px solid rgba(123, 41, 43, 0.15); }
.venue-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    font-weight: 500;
}
.venue-value {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.5;
}
.venue-value a:hover { color: var(--wine); }

/* Venue card */
.venue-visual {
    position: relative;
    aspect-ratio: 1 / 1.1;
}
.venue-card {
    width: 100%;
    height: 100%;
    background-color: var(--wine);
    background-image: url('../img/imagem-balneario.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--cream);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(45, 14, 11, 0.3);
    isolation: isolate;
}
/* Multi-layer overlay: keeps the photo visible, secures text contrast,
   echoes the brand's wine + terracota glow */
.venue-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(45, 14, 11, 0.35) 0%, rgba(45, 14, 11, 0.85) 100%),
        linear-gradient(135deg, rgba(123, 41, 43, 0.55) 0%, rgba(123, 41, 43, 0.25) 50%, rgba(45, 14, 11, 0.65) 100%);
    z-index: 1;
}
.venue-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 15%, rgba(172, 65, 52, 0.45), transparent 55%),
        radial-gradient(circle at 80% 85%, rgba(45, 14, 11, 0.55), transparent 50%);
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}
.venue-card > * { position: relative; z-index: 3; }

.venue-date {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.venue-day {
    font-family: var(--font-display);
    font-size: clamp(100px, 14vw, 200px);
    color: var(--cream);
    line-height: .85;
    letter-spacing: -0.03em;
}
.venue-month {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(28px, 3.5vw, 48px);
    margin-top: 12px;
    color: var(--cream-soft);
}
.venue-year {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: .6;
}

.venue-divider {
    height: 1px;
    background: rgba(249, 236, 224, 0.2);
    margin: 32px 0;
}

.venue-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.venue-monogram {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0;
    color: var(--cream);
}

.venue-stamp {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
    opacity: .8;
    animation: rotateSlow 20s linear infinite;
    z-index: 3;
}
.venue-stamp svg { width: 100%; height: 100%; }
.venue-stamp text {
    font-size: 14px;
    letter-spacing: 0.1em;
    fill: var(--cream);
    font-family: var(--font-sans);
    font-weight: 500;
}
@keyframes rotateSlow {
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .venue-grid { grid-template-columns: 1fr; }
    .venue-card { padding: 36px; }
}

/* ============================================
   TICKETS / SETORES
   ============================================ */
.tickets {
    padding: clamp(100px, 14vw, 180px) 0;
    background: var(--dark);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.tickets-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.tickets-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 1100px;
    max-height: 1100px;
    background: radial-gradient(circle, rgba(172, 65, 52, 0.22) 0%, transparent 60%);
    filter: blur(80px);
}
.tickets-monogram {
    position: absolute;
    bottom: -100px;
    right: -100px;
    font-family: var(--font-display);
    font-size: 40vw;
    color: var(--wine);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

.tickets-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(56px, 7vw, 96px);
}

.tickets-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.05;
    margin: 28px 0 24px;
    letter-spacing: -0.015em;
    color: var(--cream);
    font-weight: 400;
}
.tickets-title em {
    color: var(--terracotta-soft);
    font-style: italic;
    font-family: var(--font-serif);
}

.tickets-sub {
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
    color: var(--cream-soft);
    font-weight: 300;
    margin-bottom: 28px;
}

.tickets-urgency {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    padding: 10px 22px;
    border: 1px solid rgba(172, 65, 52, 0.3);
    background: rgba(172, 65, 52, 0.08);
    border-radius: 100px;
    font-weight: 500;
}
.urgency-dot {
    width: 7px;
    height: 7px;
    background: var(--terracotta-soft);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(172, 65, 52, 0.7);
}

/* SCROLL CUE — small chevron bouncing down, sits right under the urgency pill */
.tickets-scroll-cue {
    display: block;
    width: 18px;
    height: 18px;
    margin: 18px auto 0;
    color: var(--terracotta-soft);
    animation: scrollCueBounce 2s ease-in-out infinite;
}
@keyframes scrollCueBounce {
    0%, 100% { transform: translateY(0); opacity: 0.45; }
    50% { transform: translateY(5px); opacity: 1; }
}

/* GRID — 3 cards side by side */
.tickets-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* BASE CARD */
.ticket-card {
    position: relative;
    background: rgba(249, 236, 224, 0.04);
    border: 1px solid rgba(249, 236, 224, 0.12);
    border-radius: 8px;
    padding: 40px 32px 32px;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .6s var(--ease-out), border-color .4s, box-shadow .6s var(--ease-out), background .4s;
}
.ticket-card:hover {
    transform: translateY(-8px);
    border-color: rgba(172, 65, 52, 0.6);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    background: rgba(249, 236, 224, 0.06);
}

/* FEATURED card (Luxo) — wine gradient */
.ticket-card.featured {
    background: linear-gradient(180deg, var(--wine) 0%, var(--wine-deep) 100%);
    border-color: rgba(249, 236, 224, 0.18);
    box-shadow: 0 30px 80px rgba(123, 41, 43, 0.4), 0 0 0 1px rgba(172, 65, 52, 0.3) inset;
    transform: translateY(-12px);
}
.ticket-card.featured:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 100px rgba(123, 41, 43, 0.5), 0 0 0 1px rgba(172, 65, 52, 0.5) inset;
}

/* PRIME — terracota tones (warm copper) */
.ticket-card.prime {
    background: linear-gradient(180deg, rgba(172, 65, 52, 0.18) 0%, rgba(172, 65, 52, 0.08) 100%);
    border-color: rgba(172, 65, 52, 0.35);
}
.ticket-card.prime:hover {
    border-color: rgba(172, 65, 52, 0.7);
    background: linear-gradient(180deg, rgba(172, 65, 52, 0.24) 0%, rgba(172, 65, 52, 0.12) 100%);
    box-shadow: 0 30px 70px rgba(172, 65, 52, 0.28);
}
.ticket-card.prime .ticket-icon {
    background: rgba(172, 65, 52, 0.25);
    border-color: rgba(172, 65, 52, 0.5);
    color: #E8806E;
}
.ticket-card.prime .ticket-card-name { color: #F4D9CE; }
.ticket-card.prime .price-tag {
    background: rgba(172, 65, 52, 0.25);
    color: #F4D9CE;
}
.ticket-card.prime .price-savings {
    background: rgba(172, 65, 52, 0.22);
    border-color: rgba(172, 65, 52, 0.5);
    color: #F4D9CE;
}
.ticket-card.prime .ticket-card-features li::before {
    background: rgba(172, 65, 52, 0.25);
    border-color: rgba(172, 65, 52, 0.5);
}
.ticket-card.prime .ticket-card-cta {
    background: var(--terracotta);
    color: var(--cream);
}
.ticket-card.prime .ticket-card-cta::before { background: var(--cream); }
.ticket-card.prime .ticket-card-cta:hover { color: var(--terracotta); }

/* ESSENCIAL — cream / neutral (soft, entry tier) */
.ticket-card.essential {
    background: linear-gradient(180deg, rgba(249, 236, 224, 0.08) 0%, rgba(249, 236, 224, 0.02) 100%);
    border-color: rgba(249, 236, 224, 0.22);
}
.ticket-card.essential:hover {
    border-color: rgba(249, 236, 224, 0.5);
    background: linear-gradient(180deg, rgba(249, 236, 224, 0.12) 0%, rgba(249, 236, 224, 0.04) 100%);
    box-shadow: 0 30px 70px rgba(249, 236, 224, 0.1);
}
.ticket-card.essential .ticket-icon {
    background: rgba(249, 236, 224, 0.12);
    border-color: rgba(249, 236, 224, 0.3);
    color: var(--cream);
}
.ticket-card.essential .ticket-card-name { color: var(--cream); }
.ticket-card.essential .price-tag {
    background: rgba(249, 236, 224, 0.12);
    color: var(--cream);
}
.ticket-card.essential .price-savings {
    background: rgba(249, 236, 224, 0.12);
    border-color: rgba(249, 236, 224, 0.3);
    color: var(--cream);
}
.ticket-card.essential .ticket-card-features li::before {
    background: rgba(249, 236, 224, 0.1);
    border-color: rgba(249, 236, 224, 0.3);
}
.ticket-card.essential .ticket-card-features li::after {
    border-color: var(--cream);
}
.ticket-card.essential .ticket-card-cta {
    background: var(--cream);
    color: var(--dark);
}
.ticket-card.essential .ticket-card-cta::before { background: var(--terracotta); }
.ticket-card.essential .ticket-card-cta:hover { color: var(--cream); }

.ticket-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--cream);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(172, 65, 52, 0.4);
    white-space: nowrap;
}

/* Icon */
.ticket-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(172, 65, 52, 0.12);
    border: 1px solid rgba(172, 65, 52, 0.3);
    color: var(--terracotta-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: transform .5s var(--ease-out);
}
.ticket-icon svg { width: 26px; height: 26px; }
.ticket-card.featured .ticket-icon {
    background: rgba(249, 236, 224, 0.15);
    border-color: rgba(249, 236, 224, 0.3);
    color: var(--cream);
}
.ticket-card:hover .ticket-icon {
    transform: rotate(10deg) scale(1.05);
}

/* Name & tagline */
.ticket-card-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.ticket-card-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--cream-soft);
    opacity: 0.75;
    margin-bottom: 32px;
    font-weight: 300;
}

/* Price block */
.ticket-card-price {
    padding: 24px 0;
    border-top: 1px solid rgba(249, 236, 224, 0.12);
    border-bottom: 1px solid rgba(249, 236, 224, 0.12);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.ticket-card.featured .ticket-card-price {
    border-color: rgba(249, 236, 224, 0.2);
}

.price-tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(172, 65, 52, 0.15);
    border-radius: 100px;
}
.ticket-card.featured .price-tag {
    background: rgba(249, 236, 224, 0.15);
    color: var(--cream);
}

.price-amount {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-family: var(--font-display);
    line-height: 1;
    color: var(--cream);
}
.price-currency {
    font-size: clamp(18px, 1.5vw, 22px);
    margin-top: 6px;
    opacity: 0.8;
}
.price-value {
    font-size: clamp(48px, 5vw, 68px);
    letter-spacing: -0.02em;
}
.price-cents {
    font-size: clamp(20px, 1.8vw, 26px);
    margin-top: 8px;
    opacity: 0.7;
}

.price-after {
    font-size: 13px;
    color: var(--cream-soft);
    opacity: 0.6;
    margin: 0;
}
.price-after s {
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(249, 236, 224, 0.4);
}

.price-savings {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(172, 65, 52, 0.15);
    border: 1px solid rgba(172, 65, 52, 0.3);
    border-radius: 100px;
    margin-top: 4px;
}
.ticket-card.featured .price-savings {
    background: rgba(249, 236, 224, 0.18);
    color: var(--cream);
    border-color: rgba(249, 236, 224, 0.35);
}

/* Features list */
.ticket-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.ticket-card-features li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--cream-soft);
    opacity: 0.85;
}
.ticket-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(172, 65, 52, 0.2);
    border: 1px solid rgba(172, 65, 52, 0.4);
}
.ticket-card-features li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--terracotta-soft);
    border-bottom: 1.5px solid var(--terracotta-soft);
    transform: rotate(-45deg);
}
.ticket-card.featured .ticket-card-features li::before {
    background: rgba(249, 236, 224, 0.15);
    border-color: rgba(249, 236, 224, 0.3);
}
.ticket-card.featured .ticket-card-features li::after {
    border-color: var(--cream);
}
.ticket-card-features strong { color: var(--cream); font-weight: 500; }

/* CTA */
.ticket-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    background: var(--cream);
    color: var(--dark);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: gap .4s var(--ease-out), transform .3s var(--ease-out);
    margin-top: auto;
}
.ticket-card-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--terracotta);
    transform: translateY(100%);
    transition: transform .5s var(--ease-out);
    z-index: 0;
}
.ticket-card-cta:hover { gap: 16px; }
.ticket-card-cta:hover::before { transform: translateY(0); }
.ticket-card-cta:hover { color: var(--cream); }
.ticket-card-cta span,
.ticket-card-cta .arrow { position: relative; z-index: 1; }
.ticket-card-cta .arrow {
    font-style: normal;
    transition: transform .4s var(--ease-out);
}
.ticket-card-cta:hover .arrow { transform: translateX(4px); }

/* Featured card CTA — keep terracota glow */
.ticket-card.featured .ticket-card-cta {
    background: var(--terracotta);
    color: var(--cream);
    box-shadow: 0 12px 30px rgba(172, 65, 52, 0.35);
}
.ticket-card.featured .ticket-card-cta::before {
    background: var(--cream);
}
.ticket-card.featured .ticket-card-cta:hover { color: var(--dark); }

/* Footer note */
.tickets-note {
    position: relative;
    z-index: 1;
    margin-top: 56px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--cream-soft);
    opacity: 0.65;
}
.tickets-note a {
    color: var(--terracotta-soft);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .tickets-grid { grid-template-columns: 1fr; gap: 32px; max-width: 540px; margin: 0 auto; }
    .ticket-card.featured { transform: translateY(0); }
    .ticket-card.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 600px) {
    .ticket-card { padding: 36px 24px 28px; }
    .ticket-card.featured { padding-top: 44px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: clamp(100px, 14vw, 180px) 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.faq-side p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid rgba(123, 41, 43, 0.15);
    transition: padding .4s;
}
.faq-item:last-child { border-bottom: 1px solid rgba(123, 41, 43, 0.15); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    color: var(--wine-deep);
    font-weight: 400;
    transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--wine); }

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .4s var(--ease-out), background .3s, color .3s;
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--wine);
    color: var(--cream);
    border-color: var(--wine);
}

.faq-content {
    padding: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 90%;
    animation: faqOpen .5s var(--ease-out);
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: clamp(80px, 10vw, 120px) 0 32px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 6vw, 100px);
    margin-bottom: 80px;
}

.footer-brand p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--cream-soft);
    margin-top: 24px;
}
.footer-logo {
    height: 110px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    margin-bottom: 24px;
    font-weight: 500;
}
.footer-col a, .footer-col p {
    display: block;
    font-size: 14.5px;
    color: var(--cream-soft);
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
    border-top: 1px solid rgba(249, 236, 224, 0.1);
    padding-top: 32px;
}

.footer-marquee {
    overflow: hidden;
    margin: 32px -100% 32px;
    padding: 32px 0;
    border-top: 1px solid rgba(249, 236, 224, 0.08);
    border-bottom: 1px solid rgba(249, 236, 224, 0.08);
}
.footer-marquee-track {
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(60px, 9vw, 130px);
    color: var(--wine);
    opacity: .3;
    letter-spacing: -0.01em;
}
.footer-marquee-track span:nth-child(even) {
    color: var(--terracotta);
    font-size: 0.4em;
    opacity: .8;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--cream-soft);
    opacity: .5;
    flex-wrap: wrap;
}

.footer-credit {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(249, 236, 224, 0.08);
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.55;
    font-weight: 400;
}
.footer-credit a {
    color: var(--terracotta-soft);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    margin-left: 4px;
    transition: color .3s var(--ease-soft);
}
.footer-credit a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform .4s var(--ease-out);
}
.footer-credit a:hover { color: var(--cream); }
.footer-credit a:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .footer-cols { grid-template-columns: 1fr; }
}

/* ============================================
   ACCESSIBILITY: reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}
