﻿/* ============================================================
   ENTERPRISE AG SUMMIT â€” SHARED DESIGN SYSTEM v2.0
   Ultra-premium black & gold luxury aesthetic â€” Seascape Beach Resort
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Core Colors */
    --es-bg-dark:           #080808;
    --es-bg-darker:         #040404;
    --es-bg-card:           rgba(14, 14, 14, 0.90);
    --es-bg-card-hover:     rgba(22, 22, 22, 0.95);

    /* Gold Palette */
    --es-gold:              #C9A84C;
    --es-gold-light:        #E0C470;
    --es-gold-pale:         #F0DDA0;
    --es-gold-dark:         #9A7A2E;
    --es-gold-glow:         rgba(201, 168, 76, 0.22);
    --es-gold-glow-strong:  rgba(201, 168, 76, 0.45);

    /* Text */
    --es-cream:             #F5E6C8;
    --es-cream-soft:        #EDE0C8;
    --es-white:             #FAFAF5;
    --es-text-body:         #D0C9BC;
    --es-text-muted:        #8E8880;

    /* Borders */
    --es-border-gold:       rgba(201, 168, 76, 0.40);
    --es-border-subtle:     rgba(201, 168, 76, 0.14);
    --es-border-bright:     rgba(201, 168, 76, 0.70);

    /* Glass-morphism */
    --es-glass-bg:          rgba(12, 10, 6, 0.60);
    --es-glass-border:      rgba(201, 168, 76, 0.28);
    --es-glass-blur:        16px;

    /* Shadows */
    --es-shadow-luxury:     0 8px 48px rgba(0,0,0,0.6), 0 2px 16px rgba(201,168,76,0.08);
    --es-shadow-gold:       0 0 40px rgba(201, 168, 76, 0.18);
    --es-shadow-card:       0 4px 32px rgba(0,0,0,0.5), 0 1px 8px rgba(201,168,76,0.06);

    /* Shimmer gradient */
    --es-gold-shimmer:      linear-gradient(105deg, transparent 40%, rgba(201,168,76,0.18) 50%, transparent 60%);

    /* Typography */
    --es-font-script:       'Pinyon Script', cursive;
    --es-font-heading:      'Cormorant Garamond', Georgia, serif;
    --es-font-body:         'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --es-font-serif:        'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --es-section-pad:           120px;
    --es-section-pad-mobile:    72px;
    --es-container-max:         1100px;

    /* Transitions */
    --es-transition:            0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --es-transition-slow:       0.65s cubic-bezier(0.4, 0, 0.2, 1);
    --es-transition-cinematic:  1.1s cubic-bezier(0.16, 1, 0.3, 1);
    --es-transition-page:       0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga', 'kern';
}

body.enterprise-summit-template {
    margin: 0;
    padding: 0;
    background-color: var(--es-bg-dark);
    color: var(--es-text-body);
    font-family: var(--es-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

.es {
    width: 100%;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--es-gold);
    text-decoration: none;
    transition: color var(--es-transition);
}

a:hover {
    color: var(--es-gold-light);
}

/* ---------- PAGE LOADER (curtain reveal) ---------- */
.es__loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--es-bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity var(--es-transition-page), visibility var(--es-transition-page);
    animation: es-loader-failsafe-hide 0s linear 2.2s forwards;
}

.es__loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.es__loader-wordmark {
    font-family: var(--es-font-script);
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: var(--es-gold);
    text-shadow: 0 2px 40px rgba(201, 168, 76, 0.3);
    opacity: 0;
    transform: translateY(8px);
    animation: es-loader-in 0.5s var(--es-transition-cinematic) 0.1s forwards,
               es-loader-out 0.3s ease-in 0.7s forwards;
}

@keyframes es-loader-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes es-loader-out {
    to { opacity: 0; transform: translateY(-6px); }
}

@keyframes es-loader-failsafe-hide {
    to { opacity: 0; visibility: hidden; }
}

/* ---------- CONTAINER ---------- */
.es__container {
    max-width: var(--es-container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- TYPOGRAPHY ---------- */
.es__title {
    font-family: var(--es-font-script);
    font-size: clamp(3.4rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--es-gold);
    line-height: 1.05;
    text-align: center;
    margin-bottom: 28px;
    text-shadow: 0 2px 40px rgba(201, 168, 76, 0.25);
    letter-spacing: 0.01em;
    opacity: 0;
    animation: es-fade-up 0.9s var(--es-transition-cinematic) 0.7s forwards;
}

.es__section-title {
    font-family: var(--es-font-heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--es-gold);
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: 0.04em;
    font-feature-settings: 'liga';
}

.es__section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: var(--es-border-bright);
    margin: 18px auto 0;
}

/* ---------- SECTIONS ---------- */
.es__section {
    padding: var(--es-section-pad) 0;
    position: relative;
}

.es__section:nth-child(even):not(.es__venue):not(.es__stats-bar) {
    background-color: var(--es-bg-darker);
}

/* ---------- HERO (SHARED BASE) ---------- */
.es__hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--es-bg-dark);
}

/* YouTube background video wrap (all pages) */
.es__hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;           /* above es__hero-bg, below overlay */
    pointer-events: none;
}

/* 16:9 cover technique — iframe always fills the hero viewport */
.es__hero-video-wrap .es__yt-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;      /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.78vh;  /* 16:9 inverse */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Mute / unmute toggle button */
.es__mute-btn {
    position: absolute;
    bottom: 88px;
    right: 32px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.5);
    background: rgba(4, 4, 4, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(245, 230, 200, 0.75);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: border-color var(--es-transition),
                color var(--es-transition),
                background var(--es-transition),
                transform var(--es-transition);
}

.es__mute-btn:hover {
    border-color: var(--es-gold);
    color: var(--es-gold);
    background: rgba(4, 4, 4, 0.75);
    transform: scale(1.08);
}

.es__mute-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Default state: muted icon visible, sound-on icon hidden */
.es__mute-btn .es__mute-icon--off { display: block; }
.es__mute-btn .es__mute-icon--on  { display: none;  }

/* After user unmutes: swap icons */
.es__mute-btn.is-unmuted .es__mute-icon--off { display: none;  }
.es__mute-btn.is-unmuted .es__mute-icon--on  { display: block; }

/* Ken Burns background for sales pages */
.es__hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.08);
    animation: es-ken-burns 20s ease-in-out infinite alternate;
}

@keyframes es-ken-burns {
    from { transform: scale(1.08) translate(0, 0); }
    to   { transform: scale(1.0)  translate(-1%, 0.5%); }
}

.es__hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(4, 4, 4, 0.86) 0%,
        rgba(8, 8, 8, 0.52) 35%,
        rgba(8, 8, 8, 0.48) 65%,
        rgba(4, 4, 4, 0.90) 100%
    );
}

.es__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 32px;
    max-width: 860px;
}

.es__hero-location {
    font-family: var(--es-font-heading);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--es-cream);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 0.95s forwards;
}

.es__location-icon {
    color: var(--es-gold);
    font-size: 0.55em;
    vertical-align: middle;
    margin-right: 10px;
}

.es__hero-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--es-font-heading);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--es-gold);
    letter-spacing: 0.08em;
    margin-bottom: 36px;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 1.05s forwards;
}

.es__date-line {
    display: inline-block;
    width: 64px;
    height: 1px;
    background: var(--es-border-gold);
    flex-shrink: 0;
}

.es__hero-tagline {
    font-family: var(--es-font-heading);
    font-size: clamp(1.15rem, 2.6vw, 1.55rem);
    font-style: italic;
    color: var(--es-cream);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 1.15s forwards;
}

.es__hero-subtitle {
    font-family: var(--es-font-body);
    font-size: 0.9rem;
    color: var(--es-text-muted);
    margin-bottom: 44px;
    font-weight: 300;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 1.25s forwards;
}

.es__hero-badge {
    margin-bottom: 24px;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 0.6s forwards;
}

.es__hero-badge-text {
    display: inline-block;
    font-family: var(--es-font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--es-gold);
    border: 1px solid var(--es-border-gold);
    padding: 8px 32px;
}

/* ---------- BACK LINK ---------- */
.es__back-link {
    display: inline-block;
    font-family: var(--es-font-body);
    font-size: 0.78rem;
    color: var(--es-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 36px;
    transition: color var(--es-transition);
    opacity: 0;
    animation: es-fade-up 0.6s ease 1.5s forwards;
}

.es__back-link:hover {
    color: var(--es-gold);
}

/* ---------- INVITATION BADGE (GROWERS HERO) ---------- */
.es__invitation-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 0.9s forwards;
}

.es__invitation-text {
    font-family: var(--es-font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--es-gold);
}

.es__invitation-line {
    display: inline-block;
    width: 64px;
    height: 1px;
    background: var(--es-border-gold);
}

/* Wax seal SVG badge */
.es__wax-seal {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 0.75s forwards;
}

/* ---------- BUTTONS ---------- */
.es__button {
    display: inline-block;
    font-family: var(--es-font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 17px 44px;
    border: none;
    cursor: pointer;
    transition: all var(--es-transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.es__button--primary {
    background: var(--es-gold);
    color: var(--es-bg-dark);
}

.es__button--primary:hover {
    background: var(--es-gold-light);
    color: var(--es-bg-dark);
    box-shadow: 0 6px 44px var(--es-gold-glow-strong);
    transform: translateY(-3px);
}

.es__button--secondary {
    background: transparent;
    color: var(--es-gold);
    border: 1px solid var(--es-border-gold);
}

.es__button--secondary:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: var(--es-gold);
    color: var(--es-gold-light);
    transform: translateY(-2px);
}

.es__hero-cta {
    opacity: 0;
    animation: es-fade-up 0.8s var(--es-transition-cinematic) 1.35s forwards;
}

/* ---------- SCROLL HINT ---------- */
.es__scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: opacity 0.4s ease;
}

.es__scroll-text {
    font-family: var(--es-font-body);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--es-text-muted);
}

.es__scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--es-gold), transparent);
    animation: es-scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes es-scroll-pulse {
    0%, 100% { opacity: 0.25; transform: scaleY(0.5) translateY(-4px); }
    50%       { opacity: 1;    transform: scaleY(1)   translateY(0); }
}

/* ---------- STATS BAR ---------- */
.es__stats-bar {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.es__stats-bar-inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: var(--es-glass-bg);
    backdrop-filter: blur(var(--es-glass-blur));
    -webkit-backdrop-filter: blur(var(--es-glass-blur));
    border-top: 1px solid var(--es-glass-border);
    border-bottom: 1px solid var(--es-glass-border);
    flex-wrap: wrap;
}

.es__stats-bar-item {
    flex: 1;
    min-width: 160px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.es__stats-bar-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.es__stats-bar-item + .es__stats-bar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--es-glass-border);
}

.es__stats-bar-number {
    font-family: var(--es-font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--es-gold);
    line-height: 1;
    display: block;
    letter-spacing: -0.01em;
}

.es__stats-bar-label {
    font-family: var(--es-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--es-text-muted);
    margin-top: 6px;
    display: block;
}

/* ---------- IMAGE DIVIDER ---------- */
.es__img-divider {
    position: relative;
    height: 44vh;
    min-height: 260px;
    overflow: hidden;
    background-color: var(--es-bg-darker);
}

.es__img-divider-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 0.1s linear;
}

.es__img-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4,4,4,0.62) 0%,
        rgba(8,8,8,0.30) 50%,
        rgba(4,4,4,0.62) 100%
    );
    z-index: 1;
}

.es__img-divider-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.es__img-divider-caption span {
    font-family: var(--es-font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--es-cream);
    opacity: 0.7;
}

/* ---------- BENEFIT CARDS GRID ---------- */
.es__benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.es__benefit-card {
    background: var(--es-bg-card);
    border: 1px solid var(--es-border-subtle);
    padding: 44px 36px;
    text-align: center;
    transition: all var(--es-transition-slow);
    opacity: 0;
    transform: translateY(28px);
    position: relative;
    overflow: hidden;
}

.es__benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--es-gold), transparent);
    opacity: 0;
    transition: opacity var(--es-transition-slow);
}

.es__benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(201,168,76,0.10) 50%, transparent 60%);
    background-size: 300% 100%;
    opacity: 0;
    pointer-events: none;
}

.es__benefit-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.es__benefit-card:hover {
    background: var(--es-bg-card-hover);
    border-color: var(--es-border-gold);
    box-shadow: var(--es-shadow-card);
    transform: translateY(-6px) !important;
}

.es__benefit-card:hover::before {
    opacity: 1;
}

.es__benefit-card:hover::after {
    opacity: 1;
    animation: es-shimmer-slide 0.8s ease;
}

/* Card SVG icons */
.es__benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    color: var(--es-gold);
    opacity: 0.80;
}

.es__benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.es__benefit-title {
    font-family: var(--es-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--es-gold);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.es__benefit-desc {
    font-size: 0.9rem;
    color: var(--es-text-body);
    line-height: 1.65;
    font-weight: 300;
}

/* ---------- VENUE SECTION ---------- */
.es__venue {
    position: relative;
    overflow: hidden;
    padding: var(--es-section-pad) 0;
}

.es__venue-bg {
    position: absolute;
    inset: 0;
    /* Aerial panorama of Seascape Beach Resort — Source: seascaperesort.com (official) */
    background-image: url('https://framerusercontent.com/images/lhteMlh47uz75AtCzHY2JwcNurE.jpg');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
}

.es__venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 4, 4, 0.90) 0%,
        rgba(8, 8, 8, 0.72) 50%,
        rgba(4, 4, 4, 0.92) 100%
    );
}

.es__venue-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.es__venue-name {
    font-family: var(--es-font-heading);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--es-cream);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.es__venue-tagline {
    font-family: var(--es-font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--es-gold);
    margin-bottom: 28px;
}

.es__venue-desc {
    max-width: 680px;
    margin: 0 auto 44px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--es-text-body);
    font-weight: 300;
}

.es__venue-highlights {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--es-border-subtle);
}

.es__venue-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--es-font-heading);
    font-size: 0.95rem;
    color: var(--es-cream);
    font-weight: 400;
}

.es__venue-highlight-icon {
    color: var(--es-gold);
}

.es__venue-details {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.es__venue-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.es__venue-detail strong {
    font-family: var(--es-font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--es-gold);
}

.es__venue-detail span {
    font-size: 0.88rem;
    color: var(--es-cream-soft);
    font-weight: 300;
}

/* ---------- CONTACT / CTA SECTION ---------- */
.es__contact {
    text-align: center;
}

.es__contact-lead {
    font-family: var(--es-font-heading);
    font-size: 1.15rem;
    color: var(--es-cream-soft);
    max-width: 580px;
    margin: -28px auto 52px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
}

.es__contact-cards {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.es__contact-card {
    text-align: center;
    padding: 36px 44px;
    border: 1px solid var(--es-border-subtle);
    background: var(--es-bg-card);
    min-width: 220px;
    transition: all var(--es-transition-slow);
}

.es__contact-card:hover {
    border-color: var(--es-border-gold);
    box-shadow: var(--es-shadow-gold);
    transform: translateY(-4px);
}

.es__contact-name {
    font-family: var(--es-font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--es-cream);
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.es__contact-phone {
    display: inline-block;
    font-family: var(--es-font-body);
    font-size: 1.1rem;
    color: var(--es-gold);
    letter-spacing: 0.06em;
    padding: 10px 24px;
    border: 1px solid var(--es-border-gold);
    transition: all var(--es-transition);
}

.es__contact-phone:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--es-gold);
    color: var(--es-gold-light);
    box-shadow: 0 0 28px var(--es-gold-glow);
}

.es__contact-url {
    font-family: var(--es-font-body);
    font-size: 0.82rem;
    color: var(--es-text-muted);
    letter-spacing: 0.06em;
    margin-top: 20px;
}

/* Urgency badge */
.es__urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--es-font-body);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--es-gold);
    border: 1px solid var(--es-border-gold);
    padding: 11px 30px;
    margin-bottom: 52px;
}

.es__urgency-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--es-gold);
    animation: es-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes es-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--es-gold-glow); }
    50%       { box-shadow: 0 0 0 7px transparent; }
}

/* ---------- FOOTER ---------- */
.es__footer {
    background: var(--es-bg-darker);
    border-top: 1px solid var(--es-border-subtle);
    padding: 56px 32px;
    text-align: center;
}

.es__footer-content {
    max-width: var(--es-container-max);
    margin: 0 auto;
}

.es__footer-divider {
    width: 80px;
    height: 1px;
    background: var(--es-border-subtle);
    margin: 20px auto;
}

.es__footer-brand {
    font-family: var(--es-font-script);
    font-size: 2.2rem;
    color: var(--es-gold);
    margin-bottom: 4px;
    text-shadow: 0 1px 20px rgba(201, 168, 76, 0.15);
}

.es__footer-company {
    font-size: 0.83rem;
    color: var(--es-text-muted);
    margin-bottom: 20px;
    line-height: 2;
}

.es__footer-company strong {
    color: var(--es-cream-soft);
    font-weight: 500;
}

.es__footer-company a {
    color: var(--es-gold-dark);
}

.es__footer-company a:hover {
    color: var(--es-gold);
}

.es__footer-copyright {
    font-size: 0.72rem;
    color: var(--es-text-muted);
    letter-spacing: 0.05em;
    opacity: 0.5;
}

/* ---------- ABOUT SECTION (LANDING) ---------- */
.es__about-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.es__about-lead {
    font-family: var(--es-font-heading);
    font-size: 1.2rem;
    color: var(--es-cream);
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 400;
}

.es__about-content p {
    font-size: 0.94rem;
    color: var(--es-text-body);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 52px;
}

.es__about-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.es__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.es__stat.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.es__stat-number {
    font-family: var(--es-font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--es-gold);
    line-height: 1;
    letter-spacing: -0.01em;
}

.es__stat-label {
    font-family: var(--es-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--es-text-muted);
}

/* ---------- VALUE PROP (VENDORS) ---------- */
.es__value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.es__value-lead {
    font-family: var(--es-font-heading);
    font-size: 1.25rem;
    color: var(--es-cream);
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 400;
}

.es__value-content p {
    font-size: 0.94rem;
    color: var(--es-text-body);
    line-height: 1.75;
    font-weight: 300;
}

/* ---------- VERTICAL TIMELINE (VENDORS â€” HOW IT WORKS) ---------- */
.es__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 8px;
}

.es__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: var(--es-border-subtle);
    transform: translateX(-50%);
}

.es__timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 72px;
    position: relative;
    opacity: 0;
    transition: opacity var(--es-transition-slow), transform var(--es-transition-slow);
}

.es__timeline-step:nth-child(odd) {
    flex-direction: row;
    transform: translateX(-28px);
}

.es__timeline-step:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(28px);
}

.es__timeline-step.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.es__timeline-node {
    position: absolute;
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--es-border-gold);
    background: var(--es-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: border-color var(--es-transition), box-shadow var(--es-transition);
    flex-shrink: 0;
}

.es__timeline-step.is-visible .es__timeline-node {
    border-color: var(--es-gold);
    box-shadow: 0 0 28px var(--es-gold-glow);
}

.es__timeline-number {
    font-family: var(--es-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--es-gold);
    line-height: 1;
}

.es__timeline-content {
    width: calc(50% - 44px);
    padding: 4px 0;
}

.es__timeline-step:nth-child(odd) .es__timeline-content {
    text-align: right;
    padding-right: 56px;
    padding-left: 0;
}

.es__timeline-step:nth-child(even) .es__timeline-content {
    text-align: left;
    padding-left: 56px;
    padding-right: 0;
    margin-left: auto;
}

.es__timeline-title {
    font-family: var(--es-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--es-cream);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.es__timeline-desc {
    font-size: 0.9rem;
    color: var(--es-text-body);
    line-height: 1.65;
    font-weight: 300;
}

/* ---------- INVITATION INTRO (GROWERS) ---------- */
.es__invitation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.es__pull-quote-mark {
    font-family: var(--es-font-heading);
    font-size: 6rem;
    color: var(--es-gold);
    line-height: 0.6;
    display: block;
    margin-bottom: 12px;
    opacity: 0.35;
}

.es__invitation-lead {
    font-family: var(--es-font-heading);
    font-size: 1.3rem;
    color: var(--es-cream);
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 400;
    font-style: italic;
}

.es__highlight-text {
    color: var(--es-gold);
    font-weight: 500;
}

.es__invitation-content p {
    font-size: 0.94rem;
    color: var(--es-text-body);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 16px;
}

.es__invitation-content strong {
    color: var(--es-gold);
    font-weight: 500;
}

/* ---------- ALL-INCLUSIVE (GROWERS) ---------- */
.es__all-inclusive {
    background: var(--es-bg-darker);
}

.es__inclusive-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 60px;
}

.es__inclusive-title {
    font-family: var(--es-font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--es-gold);
    white-space: nowrap;
}

.es__inclusive-line {
    display: inline-block;
    width: 80px;
    height: 1px;
    background: var(--es-border-gold);
}

.es__inclusive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 840px;
    margin: 0 auto 48px;
}

.es__inclusive-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--es-bg-card);
    border: 1px solid var(--es-border-subtle);
    padding: 28px 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--es-transition-slow);
}

.es__inclusive-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.es__inclusive-item:hover {
    border-color: var(--es-border-gold);
    transform: translateY(-3px);
}

.es__inclusive-item-icon {
    color: var(--es-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.es__inclusive-item-body {
    flex: 1;
}

.es__inclusive-item-title {
    font-family: var(--es-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--es-cream);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.es__inclusive-item-desc {
    font-size: 0.87rem;
    color: var(--es-text-muted);
    font-weight: 300;
    line-height: 1.55;
}

/* "No cost" gold banner */
.es__no-cost-banner {
    max-width: 840px;
    margin: 0 auto;
    padding: 28px 40px;
    border: 1px solid var(--es-border-gold);
    background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(8,8,8,0) 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.es__no-cost-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(201,168,76,0.12) 50%, transparent 60%);
    background-size: 300% 100%;
    animation: es-shimmer-slide 5s ease-in-out infinite;
}

.es__no-cost-banner-text {
    font-family: var(--es-font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--es-gold-light);
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

.es__no-cost-banner-sub {
    font-family: var(--es-font-body);
    font-size: 0.78rem;
    color: var(--es-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 7px;
    position: relative;
    z-index: 1;
}

/* ---------- SHARED KEYFRAME ANIMATIONS ---------- */
@keyframes es-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes es-shimmer-slide {
    0%   { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* ---------- CONTACT EMAIL ---------- */
.es__contact-email {
    display: block;
    font-family: var(--es-font-body);
    font-size: 0.78rem;
    letter-spacing: 0.10em;
    color: rgba(201, 168, 76, 0.65);
    text-decoration: none;
    margin-top: 8px;
    transition: color var(--es-transition);
}

.es__contact-email:hover {
    color: var(--es-gold-light);
}

/* ---------- DATA-ANIMATE BASE ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--es-transition-slow), transform var(--es-transition-slow);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    :root {
        --es-section-pad: var(--es-section-pad-mobile);
    }

    .es__benefits-grid {
        grid-template-columns: 1fr;
    }

    .es__stats-bar-item + .es__stats-bar-item::before {
        display: none;
    }

    .es__stats-bar-item {
        flex: 0 0 50%;
        padding: 20px 16px;
    }

    .es__inclusive-grid {
        grid-template-columns: 1fr;
    }

    .es__timeline::before {
        left: 20px;
    }

    .es__timeline-step,
    .es__timeline-step:nth-child(odd),
    .es__timeline-step:nth-child(even) {
        flex-direction: column;
        padding-left: 56px;
        transform: translateX(0);
    }

    .es__timeline-node {
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .es__timeline-content,
    .es__timeline-step:nth-child(odd) .es__timeline-content,
    .es__timeline-step:nth-child(even) .es__timeline-content {
        width: 100%;
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .es__about-stats {
        gap: 32px;
    }

    .es__stat-number {
        font-size: 2.6rem;
    }

    .es__venue-details {
        flex-direction: column;
        gap: 24px;
    }

    .es__venue-highlights {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .es__contact-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .es__contact-card {
        min-width: unset;
        width: 100%;
        max-width: 320px;
    }

    .es__hero-content {
        padding: 48px 20px;
    }

    .es__container {
        padding: 0 20px;
    }

    .es__inclusive-header {
        flex-wrap: wrap;
    }

    .es__inclusive-line {
        width: 40px;
    }

    .es__venue-bg {
        background-attachment: scroll;
    }

    .es__img-divider-bg {
        background-attachment: scroll;
    }

    /* Hide YouTube video and mute button on mobile — CSS bg image shows instead */
    .es__hero-video-wrap {
        display: none;
    }

    .es__mute-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .es__title {
        font-size: 2.8rem;
    }

    .es__section-title {
        font-size: 1.7rem;
    }

    .es__benefit-card {
        padding: 32px 22px;
    }

    .es__button {
        padding: 15px 30px;
        font-size: 0.78rem;
    }

    .es__date-line {
        width: 28px;
    }

    .es__stats-bar-item {
        flex: 0 0 100%;
    }

    .es__no-cost-banner {
        padding: 22px 24px;
    }
}

/* ---------- WP ADMIN BAR COMPATIBILITY ---------- */
body.enterprise-summit-template.admin-bar .es__hero {
    min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
    body.enterprise-summit-template.admin-bar .es__hero {
        min-height: calc(100vh - 46px);
    }
}

/*================================================================
  PULL QUOTE SECTION — wrapper for standalone pull quote sections
================================================================*/

.es__pull-quote-section {
    background: var(--es-bg-darker);
    padding: clamp(72px, 8vw, 112px) 0;
}

/*================================================================
  SUMMIT AGENDA — shared by vendor and grower pages
================================================================*/

.es__agenda {
    background: var(--es-bg-dark);
}

.es__agenda-subtitle {
    text-align: center;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: rgba(245, 230, 200, 0.65);
    max-width: 600px;
    margin: -16px auto 52px;
    line-height: 1.8;
    font-style: italic;
}

.es__agenda-days {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 860px;
    margin: 0 auto 44px;
}

.es__agenda-day {
    border: 1px solid var(--es-border-subtle);
    border-top: 2px solid var(--es-gold);
    background: var(--es-glass-bg);
}

.es__agenda-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--es-border-subtle);
    background: rgba(201, 168, 76, 0.04);
}

.es__agenda-day-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.es__agenda-day-num {
    font-family: var(--es-font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--es-gold);
    font-weight: 600;
}

.es__agenda-day-name {
    font-family: var(--es-font-heading);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    color: var(--es-cream);
    letter-spacing: 0.02em;
}

.es__agenda-day-theme {
    font-family: var(--es-font-body);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--es-text-muted);
}

.es__agenda-items {
    padding: 8px 0;
}

.es__agenda-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    transition: background var(--es-transition);
}

.es__agenda-item:last-child {
    border-bottom: none;
}

.es__agenda-item:hover {
    background: rgba(201, 168, 76, 0.04);
}

.es__agenda-time {
    font-family: var(--es-font-body);
    font-size: 0.78rem;
    letter-spacing: 0.10em;
    color: var(--es-gold);
    opacity: 0.75;
    padding-top: 2px;
    white-space: nowrap;
}

.es__agenda-event {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.es__agenda-event strong {
    font-family: var(--es-font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--es-cream);
    letter-spacing: 0.01em;
}

.es__agenda-event span {
    font-size: 0.82rem;
    color: rgba(245, 230, 200, 0.55);
    line-height: 1.6;
}

.es__agenda-day--departure {
    border-top-color: var(--es-border-gold);
    opacity: 0.72;
}

.es__agenda-attire {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.10em;
    color: var(--es-text-muted);
    max-width: 860px;
    margin: 0 auto;
    padding-top: 12px;
    font-style: italic;
}

@media (max-width: 768px) {
    .es__agenda-day-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .es__agenda-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 20px;
    }

    .es__agenda-time {
        font-size: 0.72rem;
    }
}

/* ============================================================
   STICKY SECTION NAV
   ============================================================ */
.es__sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transform: translateY(-100%);
    transition: transform var(--es-transition);
    background: rgba(4, 4, 4, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--es-border-subtle);
}

.es__sticky-nav.is-visible {
    transform: translateY(0);
}

.es__sticky-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
    height: 48px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

.es__sticky-nav-inner::-webkit-scrollbar {
    display: none;
}

.es__sticky-nav-link {
    font-family: var(--es-font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--es-text-muted);
    text-decoration: none;
    padding: 4px 14px;
    transition: color var(--es-transition);
    flex-shrink: 0;
}

.es__sticky-nav-link:hover,
.es__sticky-nav-link.is-active {
    color: var(--es-gold-light);
}

.es__sticky-nav-sep {
    font-size: 0.45rem;
    color: var(--es-border-gold);
    flex-shrink: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
    .es__sticky-nav-inner {
        justify-content: flex-start;
    }
}