/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Dancing+Script:wght@600;700&display=swap');

/* ==================== DESIGN TOKENS ==================== */
:root {
    /* Brand Colors (in sync with events site) */
    --primary:        #6D1A36;
    --primary-light:  #9B2A4E;
    --primary-dark:   #4A1025;
    --primary-pale:   rgba(109, 26, 54, 0.07);
    --primary-mid:    rgba(109, 26, 54, 0.16);
    --accent:         #1B4F8A;
    --accent-light:   #2E6DB4;
    --accent-pale:    rgba(27, 79, 138, 0.08);

    /* Neutrals */
    --white:          #FFFFFF;
    --off-white:      #F7F2F4;
    --light-bg:       #FAF6F8;
    --cream:          #F9F4EF;
    --border:         #E4D0D7;
    --border-blue:    #C5D8EE;

    /* Text */
    --text-dark:      #1E0D14;
    --text-mid:       #5C3545;
    --text-muted:     #9B7585;

    /* Typography */
    --font-display:   'Cormorant Garamond', Georgia, serif;
    --font-heading:   'Playfair Display', Georgia, serif;
    --font-body:      'DM Sans', system-ui, sans-serif;
    --font-script:    'Dancing Script', cursive;

    /* Layout */
    --header-h:       76px;
    --radius:         16px;
    --radius-sm:      10px;

    /* Shadows */
    --shadow-sm:      0 2px 12px rgba(109,26,54,0.08);
    --shadow-md:      0 8px 32px rgba(109,26,54,0.12);
    --shadow-lg:      0 20px 60px rgba(109,26,54,0.16);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ==================== TYPOGRAPHY SCALE ==================== */
.font-display  { font-family: var(--font-display); }
.font-heading  { font-family: var(--font-heading); }
.font-body     { font-family: var(--font-body); }
.font-script   { font-family: var(--font-script); }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}
.section-heading em {
    font-style: italic;
    color: var(--primary);
}

.section-body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* ==================== GLOBAL BUTTONS ==================== */
.btn-primary-jwils {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(109,26,54,0.28);
}
.btn-primary-jwils:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(109,26,54,0.38);
}

.btn-ghost-jwils {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-ghost-jwils:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: white;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-h);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
}
.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(109,26,54,0.1);
}

.brand-logo { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.25s ease;
    filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,0.35));
}
.brand-logo:hover img { transform: scale(1.06); opacity: 0.9; }
.site-header.scrolled .brand-logo img {
    filter: none;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.site-header.scrolled .brand-name { color: var(--primary); text-shadow: none; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link-item {
    padding: 0.45rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 50px;
    transition: all 0.2s;
}
.nav-link-item:hover { color: white; background: rgba(255,255,255,0.12); }
.site-header.scrolled .nav-link-item { color: var(--text-mid); }
.site-header.scrolled .nav-link-item:hover { color: var(--primary); background: var(--primary-pale); }

.nav-event {
    color: rgba(255,200,180,0.9) !important;
    border: 1px solid rgba(255,200,180,0.35);
}
.site-header.scrolled .nav-event {
    color: var(--primary) !important;
    border-color: var(--primary-mid);
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.4rem;
    background: var(--primary);
    color: white !important;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s;
    box-shadow: 0 3px 12px rgba(109,26,54,0.35);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); color: white; }
.site-header.scrolled .nav-cta { background: var(--primary); }

/* Hamburger */
.navbar-toggler-custom {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1010;
}
.navbar-toggler-custom span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}
.site-header.scrolled .navbar-toggler-custom span { background: var(--primary); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-close {
    position: absolute;
    top: 24px; right: 28px;
    background: none; border: none;
    color: white; font-size: 2rem;
    cursor: pointer; line-height: 1;
}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav-item {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}
.mobile-nav-item:hover { color: white; }

@media (max-width: 991px) {
    .navbar-toggler-custom { display: flex; }
    .site-nav { display: none; }
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
    padding-top: var(--header-h);
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,2,6,0.65) 0%, rgba(10,2,6,0.55) 50%, rgba(10,2,6,0.72) 100%),
        url('images/hero-bg.png') center top/cover no-repeat;
    opacity: 1;
}

/* Grain overlay */
.hero-bg-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,200,180,0.9);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,200,180,0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(109,26,54,0.25);
    backdrop-filter: blur(4px);
}
.label-dot {
    width: 6px; height: 6px;
    background: #FF9080;
    border-radius: 50%;
    animation: labelPulse 2s ease-in-out infinite;
}
@keyframes labelPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: italic;
    color: rgba(255,200,180,0.95);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Hero Image */
.hero-image-col { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}
.hero-img-frame {
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 80px 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.15);
}
.hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hero-img-frame:hover .hero-img { transform: scale(1.03); }

.hero-img-accent-1 {
    position: absolute;
    top: -20px; right: -20px;
    width: 200px; height: 200px;
    border: 3px solid var(--primary-light);
    border-radius: 20px 20px 80px 20px;
    z-index: 1;
    opacity: 0.5;
}
.hero-img-accent-2 {
    position: absolute;
    bottom: -15px; left: -15px;
    width: 160px; height: 160px;
    border: 3px solid rgba(27,79,138,0.5);
    border-radius: 50px;
    z-index: 1;
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px; left: -20px;
    z-index: 5;
    background: white;
    border-radius: var(--radius);
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}
.hero-floating-badge i {
    font-size: 1.6rem;
    color: var(--primary);
}
.hero-floating-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ==================== TICKER BAND ==================== */
.ticker-band {
    background: var(--primary);
    padding: 0.85rem 0;
    overflow: hidden;
}
.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}
.ticker-dot { color: rgba(255,200,180,0.7); font-size: 0.5rem; }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==================== MAIN CONTENT WRAPPER ==================== */
.main-content {
    background: var(--white);
}

/* ==================== SECTION BLOCKS ==================== */
.section-block {
    padding: 6rem 0;
}
.section-cream { background: var(--light-bg); }

/* ==================== ABOUT SECTION ==================== */
.about-img-mosaic {
    position: relative;
    height: 440px;
}
.mosaic-main {
    position: absolute;
    top: 0; left: 0;
    width: 80%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    z-index: 2;
    box-shadow: var(--shadow-md);
}
.mosaic-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    z-index: 3;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}
.mosaic-badge {
    position: absolute;
    top: 20px; right: -10px;
    z-index: 5;
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.values-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0;
}
.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-pale);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.value-pill i { color: var(--accent); }

/* ==================== FOUNDER ==================== */
.founder-portrait-wrap {
    position: relative;
    display: inline-block;
}
.founder-portrait {
    width: 100%;
    max-width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px 20px 80px 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--off-white);
}
.founder-quote-chip {
    position: absolute;
    top: -12px; right: -12px;
    width: 48px; height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.founder-intro-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.founder-intro-text em { color: var(--primary); font-style: normal; }

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    margin: 1.5rem 0;
}
.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 500;
}
.expertise-item i { color: var(--primary); flex-shrink: 0; }

.founder-quote {
    border-left: 3px solid var(--primary);
    padding-left: 1.25rem;
    margin: 1.5rem 0 0;
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--primary);
    font-style: normal;
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
    border-color: var(--primary-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-icon {
    width: 52px; height: 52px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}
.service-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
}
.service-card:hover .service-cta { gap: 0.7rem; }

/* ==================== WHY CHOOSE US (honeycomb — preserved) ==================== */
:root {
    --honeycomb-coral: var(--primary);
    --honeycomb-dark:  var(--text-dark);
    --honeycomb-grey:  var(--text-muted);
    --honeycomb-bg:    var(--light-bg);
    --honeycomb-card:  var(--white);
    --hex-w: 210px;
    --hex-h: 242px;
    --gap: 10px;
    --overlap: 61px;
}

.why-section {
    background: var(--light-bg);
    padding: 5rem 0;
}
.why-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 3.5rem;
}

.comb { display: flex; flex-direction: column; align-items: center; }
.hex-row { display: flex; justify-content: center; gap: var(--gap); }
.hex-row + .hex-row { margin-top: calc(-1 * var(--overlap)); }

.hex {
    width: var(--hex-w); height: var(--hex-h);
    flex-shrink: 0;
    opacity: 0;
    animation: rise 0.55s ease forwards;
}
.hex .face {
    width: 100%; height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--honeycomb-card);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,.07));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    text-align: center;
    transition: filter .3s, background .3s, transform .3s;
}
.hex:hover .face {
    background: #fff5f7;
    filter: drop-shadow(0 14px 32px rgba(109,26,54,.2));
    transform: translateY(-7px) scale(1.05);
}
.hex .icon {
    width: 34px; height: 34px;
    color: var(--primary);
    margin-bottom: 10px;
    flex-shrink: 0;
}
.hex-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin: 0; }
.hex-desc  { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

@keyframes rise {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hex-row:nth-child(1) .hex:nth-child(1) { animation-delay: .05s }
.hex-row:nth-child(1) .hex:nth-child(2) { animation-delay: .15s }
.hex-row:nth-child(1) .hex:nth-child(3) { animation-delay: .25s }
.hex-row:nth-child(2) .hex:nth-child(1) { animation-delay: .08s }
.hex-row:nth-child(2) .hex:nth-child(2) { animation-delay: .18s }
.hex-row:nth-child(2) .hex:nth-child(3) { animation-delay: .28s }
.hex-row:nth-child(2) .hex:nth-child(4) { animation-delay: .38s }

/* Tablet large — shrink hex sizes slightly */
@media (max-width: 900px) {
    :root { --hex-w: 164px; --hex-h: 189px; --gap: 8px; --overlap: 50px; }
    .hex .icon { width: 28px; height: 28px; margin-bottom: 8px; }
    .hex-title { font-size: 0.82rem; }
    .hex-desc  { font-size: 0.68rem; }
}

/* Tablet 768px — row 2 has 4 hexes which overflows: switch to 3-col card grid */
@media (max-width: 820px) {
    .comb {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
    }
    .hex-row { display: contents; }
    .hex-row + .hex-row { margin-top: 0; }
    .hex { width: 100%; height: auto; opacity: 1; animation: none; }
    .hex .face {
        clip-path: none;
        border-radius: 14px;
        padding: 1.5rem 1.1rem;
        min-height: 150px;
        border: 1px solid var(--border);
        filter: none;
        box-shadow: var(--shadow-sm);
        background: var(--white);
    }
    .hex:hover .face {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        filter: none;
        background: #fff5f7;
    }
    .hex .icon { width: 30px; height: 30px; margin-bottom: 10px; }
    .hex-title { font-size: 0.88rem; }
    .hex-desc  { font-size: 0.72rem; margin-top: 4px; }
}

/* Mobile — 2-column card grid */
@media (max-width: 700px) {
    .comb {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }
    .hex-row {
        display: contents;
    }
    .hex-row + .hex-row { margin-top: 0; }
    .hex {
        width: 100%; height: auto;
        opacity: 1; animation: none;
    }
    .hex .face {
        clip-path: none;
        border-radius: 14px;
        padding: 1.25rem 1rem;
        min-height: 140px;
        border: 1px solid var(--border);
        filter: none;
        box-shadow: var(--shadow-sm);
        background: var(--white);
    }
    .hex:hover .face {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        filter: none;
        background: #fff5f7;
    }
    .hex .icon { width: 28px; height: 28px; margin-bottom: 8px; }
    .hex-title { font-size: 0.88rem; }
    .hex-desc  { font-size: 0.72rem; margin-top: 4px; }
}

/* Small mobile — single column */
@media (max-width: 400px) {
    .comb { grid-template-columns: 1fr; }
}

/* ==================== BRANDS / PORTFOLIO ==================== */
.brands-grid-section {
    background: linear-gradient(135deg, #1A0614 0%, var(--primary-dark) 40%, #2A1030 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.brands-grid-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(109,26,54,0.25), transparent 70%);
    pointer-events: none;
}

.brand-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.brand-card:hover {
    transform: translateY(-14px) scale(1.05);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}
.brand-card.special {
    background: linear-gradient(135deg, rgba(109,26,54,0.95), rgba(74,16,37,0.95));
    border: 2px solid rgba(255,200,180,0.4);
    box-shadow: 0 0 35px rgba(109,26,54,0.6);
}
.brand-card p {
    margin: 0;
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.03em;
}
.brand-card p small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.75;
    display: block;
}
@media (max-width: 767px) {
    .brand-card { height: 100px; }
    .brand-card p { font-size: 0.88rem; }
}

/* ==================== EVENTS PROMO ==================== */
.events-promo-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.events-promo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 440px;
}

.events-promo-left {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.events-promo-left::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 220px; height: 220px;
    border: 40px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}
.events-promo-left::after {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 140px; height: 140px;
    border: 25px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}

.events-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,200,180,0.9);
    border: 1px solid rgba(255,200,180,0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    width: fit-content;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.events-promo-heading {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.events-promo-heading em {
    font-style: italic;
    color: rgba(255,200,180,0.9);
}

.events-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.events-details-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.events-details-row i { color: rgba(255,200,180,0.8); }

.events-promo-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-event-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}
.btn-event-cta:hover {
    background: var(--off-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

.events-promo-right {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}
.events-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.events-promo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(30,13,20,0.9) 0%, transparent 100%);
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.events-countdown-mini {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.mini-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    min-width: 64px;
}
.mini-val {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}
.mini-lbl {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

@media (max-width: 767px) {
    .events-promo-card { grid-template-columns: 1fr; }
    .events-promo-left { padding: 2.5rem 2rem; }
    .events-promo-right { min-height: 260px; }
}

/* ==================== TESTIMONIALS V2 ==================== */
.testimonial-card-v2 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.testimonial-card-v2:hover {
    border-color: var(--primary-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.testimonial-card-v2 p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}
.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==================== GOOGLE REVIEWS CTA ==================== */
.google-reviews-cta {
    margin-top: 1rem;
}
.google-reviews-inner {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}
.google-reviews-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.google-logo {
    height: 24px;
    width: auto;
}
.google-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    display: block;
}
.google-rating-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.google-reviews-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    flex-shrink: 0;
}
.google-reviews-right p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    max-width: 340px;
}
.btn-sm-jwils {
    padding: 0.55rem 1.4rem !important;
    font-size: 0.85rem !important;
}
.btn-outline-jwils {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary-mid);
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline-jwils:hover {
    background: var(--primary-pale);
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 575px) {
    .google-reviews-inner { padding: 1.5rem; gap: 1.25rem; }
    .google-reviews-divider { width: 100%; height: 1px; }
}

/* ==================== COURSES SECTION ==================== */
.courses-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, #0D3060 100%);
    overflow: hidden;
}
.courses-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
}
.courses-text { max-width: 520px; }
.courses-deco {
    position: relative;
    flex-shrink: 0;
    width: 200px; height: 200px;
}
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}
.deco-ring-1 { width: 200px; height: 200px; animation: deco-spin 12s linear infinite; }
.deco-ring-2 { width: 140px; height: 140px; animation: deco-spin 8s linear infinite reverse; }
.deco-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
}
@keyframes deco-spin {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
}

@media (max-width: 767px) {
    .courses-inner { flex-direction: column; }
    .courses-deco { display: none; }
}

/* ==================== PAYMENT ==================== */
.payment-form-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.jwils-input {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.jwils-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(109,26,54,0.1);
    outline: none;
}

/* Photo Stack */
.photo-stack {
    position: relative;
    width: 300px; height: 240px;
}
.photo-stack img {
    position: absolute;
    width: 185px;
    border: 5px solid var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    cursor: pointer;
}
.photo-stack:hover img { transform: scale(1.04); }
.photo-stack .center {
    z-index: 3; top: 0; left: 50%;
    transform: translateX(-50%) translateY(-10px);
}
.photo-stack .left {
    z-index: 2; top: 25px; left: 0;
    transform: rotate(-10deg);
}
.photo-stack .right {
    z-index: 2; top: 25px; right: 0;
    transform: rotate(10deg);
}
@media (max-width: 767px) {
    .photo-stack { width: 210px; height: 160px; margin-bottom: 2rem; }
    .photo-stack img { width: 130px; }
}

/* ==================== CONTACT ==================== */
.contact-details-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 44px; height: 44px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact-item a, .contact-item span {
    font-size: 0.95rem;
    color: var(--text-mid);
    transition: color 0.2s;
}
.contact-item a:hover { color: var(--primary); }

.contact-form-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.social-icons-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.social-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary-pale);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.25s;
}
.social-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}
.social-icon-light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.75);
}
.social-icon-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 991px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .footer-top { grid-template-columns: 1fr; }
}

.footer-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.25s, transform 0.25s;
}
.footer-brand img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: rgba(255,200,180,0.75);
    margin-top: 0.75rem;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links-col h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.25rem;
}
.footer-links-col a, .footer-links-col span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-links-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 575px) {
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ==================== WHATSAPP STICKY ==================== */
.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 999;
    animation: waPulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}
.whatsapp-sticky-btn:hover { transform: scale(1.12); color: white; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.65); }
    60%       { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ==================== RESPONSIVE TWEAKS ==================== */
@media (max-width: 991px) {
    .hero-img-wrap { max-width: 380px; }
    .hero-img { height: 440px; }
    .hero-floating-badge { left: 0; }
}

@media (max-width: 767px) {
    .section-block { padding: 4rem 0; }
    .hero-section { min-height: auto; padding-bottom: 4rem; }
    .hero-img-wrap { max-width: 100%; margin-top: 2rem; }
    .hero-img { height: 340px; }
    .hero-img-frame { border-radius: 16px 16px 50px 16px; }
    .hero-floating-badge { display: none; }
    .hero-stats { gap: 1rem; }
    .stat-num { font-size: 1.6rem; }
    .about-img-mosaic { height: 320px; }
    .founder-portrait { height: 320px; }
    .expertise-grid { grid-template-columns: 1fr; }
    .payment-form-wrap, .contact-form-wrap { padding: 1.75rem; }
}

@media (max-width: 575px) {
    .hero-headline { font-size: 2.4rem; }
    .hero-ctas { flex-direction: column; }
    .btn-primary-jwils, .btn-ghost-jwils { width: 100%; justify-content: center; }
    .section-block { padding: 3rem 0; }
}