:root {
    --pearl-navy: #0B1F3A;
    --pearl-gold: #C8A040;
    --pearl-saffron: #C4622A;
    --saffron-dark: #a04e20;
    --error-red: #B91C1C;
    --success-green: #15803D;
    --warm-muted: #6B7280;
    --plum: var(--pearl-navy);
    --plumdark: #07162A;
    --gold: var(--pearl-gold);
    --goldtext: var(--pearl-gold);
    --cream: #f7f5ef;
    --cta: var(--pearl-saffron);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img{max-width: 100%;}

html {
    scroll-behavior: smooth;
}
[data-lucide],
.lucide {
    stroke-width: 1.9;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
     font-family: 'Playfair Display', system-ui, sans-serif;
}
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1A1A2E;
    background: var(--pearl-navy);
    overflow-x: hidden;
}

body,
.reg-input {
    font-family: 'DM Sans', Arial, sans-serif;
}

#hero-section > .container {
    position: relative;
    z-index: 3;
}

/* Fade in on scroll */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-bar-item,
.info-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.info-bar-item svg,.countdown-pill svg,
.info-bar-link svg {
    width: 15px;
    height: 15px;
    color: var(--pearl-gold);
}

/* Pearl shimmer */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.pearl-shimmer {
    background:
        linear-gradient(90deg, transparent 0%, rgba(200, 160, 64, 0.03) 25%, rgba(200, 160, 64, 0.06) 50%, rgba(200, 160, 64, 0.03) 75%, transparent 100%),
        linear-gradient(170deg, var(--pearl-navy) 0%, #123157 100%);
    background-size: 200% 100%, 100% 100%;
    animation: shimmer 6s linear infinite;
}

/* Feature card hover */
.feature-card {
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.feature-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--pearl-gold);
    background: rgba(200, 160, 64, 0.12);
    border: 1px solid rgba(200, 160, 64, 0.22);
    border-radius: 8px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.about-experience,
.story-section,
.info-section {
    background: var(--cream);
}

.community-section {
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.92), rgba(11, 31, 58, 0.98)),
        url("images/konkani-dance2.jpg") center / cover no-repeat;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--pearl-gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-eyebrow svg {
    width: 18px;
    height: 18px;
}

.section-title {
    margin-bottom: 1.25rem;
    color: var(--pearl-navy);
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
}

.section-copy {
    max-width: 620px;
    color: var(--warm-muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.about-icon-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.about-icon-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.75rem;
    align-items: center;
    color: var(--pearl-navy);
    font-weight: 700;
}

.about-icon-list svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    color: var(--pearl-gold);
    background: rgba(200, 160, 64, 0.12);
    border: 1px solid rgba(200, 160, 64, 0.22);
    border-radius: 50%;
}

.about-highlights,
.info-actions {
    margin: 1.75rem 0 1rem;
}

.about-highlights {
    display: grid;
    gap: 0.85rem;
}

.about-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.1rem 1rem;
    align-items: start;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.info-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0 1rem;
    color: var(--pearl-navy);
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.12);
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.info-action:hover,
.info-action:focus-visible,
.info-action.active {
    color: #fff;
    background: var(--pearl-saffron);
    border-color: var(--pearl-saffron);
    transform: translateY(-2px);
}

.info-panel {
    display: none;
}

.about-highlight:hover {
    border-color: var(--pearl-gold);
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.1);
    transform: translateY(-2px);
}

.about-highlight svg {
    grid-row: span 2;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 7px;
    color: var(--pearl-gold);
    background: rgba(200, 160, 64, 0.12);
    border-radius: 50%;
}

.about-highlight h3 {
    margin: 0;
    color: var(--pearl-navy);
    font-size: 1.08rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-highlight p,
.community-header p,
.community-card span,
.info-panel p {
    color: var(--warm-muted);
    line-height: 1.65;
}

.about-image-stack {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(200, 160, 64, 0.34);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(11, 31, 58, 0.22);
}

.about-image-stack > img,
.story-step img,
.chair-profile img,
.info-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-stack > img {
    position: absolute;
    inset: 0;
}

.about-image-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, 0.05), rgba(11, 31, 58, 0.52));
}

.about-image-note {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0 1rem;
    color: #fff;
    background: rgba(11, 31, 58, 0.82);
    border: 1px solid rgba(200, 160, 64, 0.48);
    border-radius: 999px;
    font-weight: 800;
}

.about-image-note:hover,
.about-image-note:focus-visible {
    background: var(--pearl-saffron);
}

.about-stat-strip {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(11, 31, 58, 0.86);
    border-top: 1px solid rgba(200, 160, 64, 0.36);
}

.about-stat-strip span {
    padding: 1.1rem;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
}

.about-stat-strip strong {
    display: block;
    color: var(--pearl-gold);
    font-family: 'Playfair Display', system-ui, sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.story-section {
    background: #fff;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.story-step {
    overflow: hidden;
    color: var(--pearl-navy);
    background: var(--cream);
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.story-step img {
    height: 190px;
    display: block;
}

.story-step div {
    padding: 1.15rem;
}

.story-step span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--pearl-saffron);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-step h3 {
    margin-bottom: 0.6rem;
    color: var(--pearl-navy);
    font-size: 1.25rem;
}

.story-step p {
    margin: 0;
    color: var(--warm-muted);
    line-height: 1.55;
}

.story-step:hover,
.story-step:focus-within {
    border-color: var(--pearl-gold);
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.12);
    transform: translateY(-3px);
}

.community-header {
    max-width: 760px;
    margin-bottom: 2rem;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.community-header .section-title {
    color: #fff;
}

.community-header p {
    color: rgba(255, 255, 255, 0.78);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.community-card {
    display: grid;
    gap: 0.75rem;
    min-height: 210px;
    padding: 1.25rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    text-align: left;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.community-card svg {
    width: 36px;
    height: 36px;
    color: var(--pearl-gold);
}

.community-card strong {
    font-size: 1.2rem;
}

.community-card span {
    color: rgba(255, 255, 255, 0.72);
}

.community-card:hover,
.community-card:focus-within {
    background: rgba(196, 98, 42, 0.24);
    border-color: rgba(200, 160, 64, 0.62);
    transform: translateY(-3px);
}

.community-summary {
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    line-height: 1.65;
}

.chair-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.chair-profile {
    position: relative;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-around;
    gap: 1.25rem;
    min-height: 260px;
    padding: 1.25rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.chair-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.chair-heading {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.member-list-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 30px;
    padding: 0 0.55rem;
    color: #fff;
    background: rgba(200, 160, 64, 0.18);
    border: 1px solid rgba(200, 160, 64, 0.42);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.member-list-btn:hover,
.member-list-btn:focus-visible {
    background: var(--pearl-saffron);
    border-color: var(--pearl-saffron);
    transform: translateY(-1px);
}

.member-list-btn svg {
    width: 16px;
    height: 16px;
}

.chair-profile-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 580px;
}

.hospitality-profile {
    grid-column: 1 / -1;
}

.hospitality-members-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.chair-profile-person {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chair-image-preview {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: zoom-in;
    text-decoration: none;
}

.chair-profile img {
    width: 88px;
    height: 88px;
    border: 2px solid rgba(200, 160, 64, 0.5);
    border-radius: 50%;
    object-fit: cover;
    transition: filter 0.22s ease, transform 0.22s ease;
}

.chair-image-preview:hover img,
.chair-image-preview:focus-visible img {
    filter: brightness(0.72);
    transform: scale(1.06);
}

.chair-image-preview:focus-visible {
    outline: 3px solid rgba(200, 160, 64, 0.85);
    outline-offset: 4px;
}

.chair-image-zoom {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #073455;
    /* background: rgba(255, 255, 255, 0.92); */
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.86);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chair-image-zoom i,
.chair-image-zoom svg {
    width: 17px;
    height: 17px;
}

.chair-image-preview:hover .chair-image-zoom,
.chair-image-preview:focus-visible .chair-image-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.chair-profile span {
    display: block;
    color: var(--pearl-gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    /* text-transform: uppercase; */
}

.chair-profile .member-list-btn span {
    color: inherit;
    font-size: inherit;
    letter-spacing: 0;
}

.chair-profile strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.committee-card-empty {
    justify-content: center;
    min-height: 88px;
    width: 100%;
}

.cochair-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cochair-profile-card {
    min-height: 180px;
    color: var(--pearl-navy);
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
    border-color: rgba(200, 160, 64, 0.55);
    box-shadow: 0 18px 38px rgba(11, 31, 58, 0.18);
}

.cochair-profile-card .chair-profile-person {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.2rem 1rem;
    align-items: center;
    /* padding: 0.85rem; */
    text-align: left !important;
}

.cochair-profile-card .chair-profile-person img {
    grid-row: span 2;
    width: 132px;
    height: 132px;
    border-color: rgba(200, 160, 64, 0.75);
}

.cochair-profile-card .chair-image-preview {
    grid-row: span 2;
    width: 132px;
    height: 132px;
}

.cochair-profile-card .chair-profile-person strong {
    color: var(--pearl-navy);
    margin-top: 0;
    font-size: 1.28rem;
    line-height: 1.2;
}

.cochair-profile-card .chair-profile-person .chair-image-zoom {
    text-align: center;
    color: #fff;
}
.cochair-profile-card .chair-profile-person span{
    align-self: self-start;
}
.members-modal .modal-content {
    color: var(--pearl-navy);
    background: var(--cream);
    border: 1px solid rgba(200, 160, 64, 0.25);
    border-radius: 8px;
}

.members-modal .modal-header {
    border-bottom-color: rgba(11, 31, 58, 0.12);
}

.members-modal .modal-title {
    color: var(--pearl-navy);
    font-weight: 700;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.member-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 190px;
    padding: 1rem;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 8px;
}

.member-profile img {
    width: 92px;
    height: 92px;
    margin-bottom: 0.75rem;
    border: 2px solid rgba(200, 160, 64, 0.45);
    border-radius: 50%;
    object-fit: cover;
}

.member-profile strong {
    display: block;
    color: var(--pearl-navy);
    font-size: 1rem;
}

.members-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem;
    color: rgba(11, 31, 58, 0.72);
    text-align: center;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 8px;
}

.member-profile span {
    display: block;
    margin-top: 0.25rem;
    color: var(--pearl-saffron);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) 1fr;
    overflow: hidden;
    background: var(--pearl-navy);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(11, 31, 58, 0.22);
}

.info-media {
    min-height: 430px;
}

.info-content {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.info-content .section-eyebrow,
.info-content .section-title,
.info-content h3 {
    color: #fff;
}

.info-action {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.info-action svg {
    width: 18px;
    height: 18px;
}

.info-panel.active {
    display: block;
}

.info-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.info-panel .btn {
    min-height: 46px;
    padding: 0.7rem 1.35rem;
    font-weight: 800;
}

.copy-feedback {
    min-height: 1.5rem;
    margin: 0.8rem 0 0;
    color: var(--success-green) !important;
    font-weight: 800;
}

/* FAQ accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s ease;
}

.faq-content.open {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-chevron {
    transition: transform 0.3s ease;
}

.faq-chevron.open {
    transform: rotate(180deg);
}

/* Nav link hover */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1040;
    /* margin-bottom: -74px; */
    border-top: 1px solid #333;
    color: #fff;
    background: transparent;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-nav.is-scrolled {
    background: rgba(11, 31, 58, 0.9);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.site-nav .btn {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.ks-hero-nav {
    color: #fff;
    margin-bottom: 1rem;
}

.ks-hero-nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
    padding: 0 0 1rem;
}

.site-nav-links {
    min-width: 0;
}

.site-nav-ctas {
    flex-shrink: 0;
}

.ks-hero-nav .site-nav-links {
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.55rem;
}

.ks-hero-nav .nav-link-a {
    font-size: clamp(1.1rem, 0.82vw, 0.95rem);
    white-space: nowrap;
}

.ks-hero-nav .btn {
    min-height: 46px;
    padding: 0.7rem 1.35rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.site-nav .btn-outline-light,
.ks-hero-nav .btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(0, 0, 0, 0.08);
}

.site-nav .btn-outline-light:hover,
.site-nav .btn-outline-light:focus-visible,
.ks-hero-nav .btn-outline-light:hover,
.ks-hero-nav .btn-outline-light:focus-visible {
    color: var(--plumdark);
    background: #fff;
    border-color: #fff;
}

.site-nav #mobile-menu-btn-z5a6 {
    color: #fff;
    padding: 0;
}

.mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 2rem;
    background: rgba(11, 31, 58, 0.97);
    backdrop-filter: blur(14px);
}

.mobile-menu-panel.d-none {
    display: none !important;
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.mobile-menu-close i {
    font-size: 1.2rem;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(360px, 100%);
    gap: 0.8rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    color: #fff;
    background: rgba(200, 160, 64, 0.22);
}

.mobile-nav-primary {
    background: var(--cta);
}

.mobile-nav-outline {
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: transparent;
}

.nav-link-a {
    position: relative;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.2rem;
}

.nav-link-a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link-a:hover::after {
    width: 100%;
}

.nav-item-has-submenu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-link-parent {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link-parent i {
    color: var(--pearl-gold);
    font-size: 0.72rem;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    z-index: 20;
    display: grid;
    min-width: 280px;
    padding: 0.55rem;
    background: rgba(11, 31, 58, 0.97);
    border: 1px solid rgba(200, 160, 64, 0.45);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-submenu a,
.mobile-subnav-link {
    color: #fff;
    text-decoration: none;
}

.nav-submenu a {
    padding: 0.7rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
    color: var(--pearl-gold);
    background: rgba(200, 160, 64, 0.12);
}

.nav-item-has-submenu:hover .nav-submenu,
.nav-item-has-submenu:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-group {
    display: grid;
    gap: 0.55rem;
}

.mobile-nav-dropdown-row {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 0.45rem;
}

.mobile-nav-parent {
    justify-content: center;
}

.mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 4px;
}

.mobile-submenu-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--pearl-gold);
    transition: transform 0.2s ease;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible {
    background: rgba(200, 160, 64, 0.22);
}

.mobile-nav-group.is-open .mobile-submenu-toggle svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    gap: 0.45rem;
    padding: 0 0.65rem;
}

.mobile-nav-group.is-open .mobile-submenu {
    display: grid;
}

.mobile-subnav-link {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(200, 160, 64, 0.1);
    border-left: 2px solid var(--pearl-gold);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-subnav-link:hover,
.mobile-subnav-link:focus-visible {
    color: #fff;
    background: rgba(196, 98, 42, 0.24);
}

.ks-mockup-hero {
    min-height: 720px;
    padding: 3rem 0 3rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.72) 0%, rgba(11, 31, 58, 0.34) 34%, rgba(11, 31, 58, 0.5) 100%),
        url("images/ocean-water.jpg") center center / cover no-repeat;
}

.ks-mockup-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 8%, rgba(200, 160, 64, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(11, 31, 58, 0.2), rgba(11, 31, 58, 0.18) 45%, rgba(11, 31, 58, 0.48));
    pointer-events: none;
}

.ks-hero-intro {
    min-height: 320px;
    margin-bottom: 2.5rem;
}

.ks-hero-seal {
    /* width: clamp(132px, 15vw, 250px); */
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}

.ks-hero-title {
    /* font-family: "Cormorant Garamond", Georgia, serif; */
    font-size: clamp(3rem, 7.5vw, 3rem);
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 7px 12px rgba(0, 0, 0, 0.38);
    font-weight: 700;
}

.ks-hero-title span{
    color: var(--pearl-gold);
    /* font-family: "Cormorant Garamond", Georgia, serif; 
    font-size: clamp(3.1rem, 6vw, 5rem);*/
    font-weight: 700;
  
    
}

.ks-hero-feature-panel {
    padding: clamp(1.25rem, 2.4vw, 1rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 22, 62, 0.32);
    backdrop-filter: blur(3px);
}

.ks-panel-heading {
    display: flex;
    align-items: center;
    min-height: 2rem;
}

.ks-panel-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(0.98rem, 1.4vw, 1rem);
    font-weight: 700;
    line-height: 1.3;
}

.hero-tales-swiper {
    width: 100%;
}

.hero-tales-swiper {
    overflow: hidden;
}

@media (min-width: 992px) {
    .ks-hero-feature-row {
        align-items: stretch;
    }

    .ks-tales-column {
        display: flex;
    }

    .ks-tales-panel {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100%;
    }

    .ks-tales-panel .hero-tales-swiper {
        flex: 1 1 auto;
        min-height: 0;
        overflow: visible;
    }

    .hero-tales-swiper .swiper-wrapper {
        display: flex;
        flex-direction: row;
        gap: 8px;
        height: 100%;
        padding-bottom: 18px;
        transform: none !important;
    }

    .hero-tales-swiper .swiper-slide {
        flex: 1 1 0;
        width: auto !important;
        height: auto !important;
        min-width: 0;
        transition: flex-grow 0.32s ease;
    }

    .hero-tales-swiper .swiper-slide:hover,
    .hero-tales-swiper .swiper-slide:focus-within {
        flex-grow: 5;
    }

    .hero-tales-pagination {
        display: none !important;
    }
}

.ks-tale-card {
    position: relative;
    height: clamp(168px, 14vw, 184px);
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #03264a;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    cursor: zoom-in;
}

@media (min-width: 992px) {
    .ks-tale-card {
        height: 100%;
        min-height: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}

.ks-tale-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.ks-tale-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 18, 42, 0);
    transition: background-color 0.28s ease;
}

.ks-tale-card:hover img,
.ks-tale-card:focus-visible img {
    filter: brightness(0.78);
    transform: scale(1.05);
}

.ks-tale-card:hover::after,
.ks-tale-card:focus-visible::after {
    background: rgba(0, 18, 42, 0.18);
}

.ks-tale-card:focus-visible {
    outline: 3px solid rgba(200, 160, 64, 0.85);
    outline-offset: 4px;
}

.ks-tale-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #073455;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
    opacity: 0;
    transform: translateY(8px) scale(0.88);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.ks-tale-zoom i,
.ks-tale-zoom svg {
    width: 18px;
    height: 18px;
    font-size: 16px;
    text-align: center;
}

.ks-tale-card:hover .ks-tale-zoom,
.ks-tale-card:focus-visible .ks-tale-zoom {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ks-welcome-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(168px, 14vw, 184px);
    color: #fff;
    background: linear-gradient(180deg, #303030 0%, #050505 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

video.ks-welcome-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    border-radius: inherit;
    box-shadow: none;
}

.ks-welcome-video-shell {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 480 / 690;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.ks-video-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    background: rgba(11, 31, 58, 0.18);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
}

.ks-video-play-overlay:hover,
.ks-video-play-overlay:focus-visible {
    background: rgba(11, 31, 58, 0.32);
}

.ks-welcome-video-shell.is-playing .ks-video-play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ks-play-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    color: #fff;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.ks-play-ring i,
.ks-play-ring svg {
    width: 32px;
    height: 32px;
    font-size: 32px;
    margin-left: 4px;
}

.hero-tales-pagination {
    position: static !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    min-height: 14px;
    margin-top: 0.85rem;
    transform: none !important;
}

.hero-tales-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.58);
    opacity: 1;
    margin: 0 !important;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-tales-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 999px;
    background: var(--pearl-gold);
}

@media (max-width: 991.98px) {
    .ks-mockup-hero {
        min-height: auto;
        padding: 6.25rem 0 3rem;
    }

    .ks-hero-intro {
        min-height: auto;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-tales-swiper {
        height: clamp(260px, 52vw, 380px);
    }

    .hero-tales-swiper .ks-tale-card {
        height: 100%;
    }

    .about-image-stack,
    .info-media {
        min-height: 340px;
    }

    .community-grid,
    .info-shell {
        grid-template-columns: 1fr;
    }

    .chair-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hospitality-members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 575.98px) {
    .ks-mockup-hero {
        padding-top: 3.25rem;
    }

    .ks-hero-feature-panel {
        border-radius: 12px;
    }

    .ks-panel-title {
        font-size: 0.95rem;
    }

    .info-actions,
    .story-timeline {
        grid-template-columns: 1fr;
    }

    .info-actions {
        display: grid;
    }

    .info-action {
        justify-content: center;
        width: 100%;
    }

    .about-stat-strip {
        grid-template-columns: 1fr;
    }

    .about-stat-strip span {
        padding: 0.75rem;
    }

    .story-timeline {
        display: grid;
    }

    .chair-profile {
        /* align-items: center; */
    }

    .chair-grid,
    .chair-profile-row,
    .hospitality-members-grid,
    .members-grid {
        grid-template-columns: 1fr;
    }

    .cochair-profile-card .chair-profile-person img {
        width: 112px;
        height: 112px;
    }

    .cochair-profile-card .chair-image-preview {
        width: 112px;
        height: 112px;
    }

    .info-content {
        padding: 1.25rem;
    }

}
  

/* Register form inputs */
.reg-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'DM Sans', sans-serif;
}
 
.reg-input:focus {
    border-color: var(--pearl-gold);
}
.reg-input.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
.reg-input::placeholder,   .reg-input option{
    color: rgba(255, 255, 255, 0.4);
}

select.reg-input {
    appearance: none;
    cursor: pointer;
}

.ks-bg-infobg {
    background-color: var(--pearl-navy);
}

.ks-bg-cream {
    background-color: var(--cream);
}

.ks-bg-gold {
    background-color: var(--cta);
}

.btn.ks-bg-gold:hover,
.btn.ks-bg-gold:focus-visible,
.mobile-nav-primary:hover,
.mobile-nav-primary:focus-visible {
    color: #fff;
    background-color: var(--saffron-dark);
}

.ks-bg-gold-soft {
    background-color: rgba(21, 128, 61, 0.1);
}

.ks-text-gold {
    color: var(--goldtext);
}

.form-success-message {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-green);
}

.form-success-message svg {
    width: 22px;
    height: 22px;
}

.form-error-message {
    margin: 0;
    color: var(--error-red);
    font-size: 0.95rem;
    font-weight: 700;
}

.ks-text-plum {
    color: var(--plum);
    border:0 ;
}

.ks-text-plum-60 {
    color: var(--warm-muted);
}

.ks-text-white-30 {
    color: rgba(255, 255, 255, 0.3);
}

.ks-text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.ks-border-gold-30 {
    border-color: rgba(21, 128, 61, 0.3) !important;
}

.ks-border-white-5 {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.ks-hover-bg-golddark:hover {
    background-color: var(--saffron-dark);
}

.ks-hover-text-goldtext:hover {
    color: var(--pearl-gold);
}

.ks-tracking-wider {
    letter-spacing: .05em;
}

.ks-tracking-eyebrow {
    letter-spacing: .2em;
}

.ks-text-xs {
    font-size: .75rem;
    line-height: 1rem;
}

.ks-text-sm {
    /* font-size: .875rem; */
    line-height: 1.25rem;
}

.ks-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.ks-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.ks-text-info {
    font-size: .75rem;
}

.ks-leading-relaxed {
    line-height: 1.625;
}

.ks-max-2xl {
    max-width: 42rem;
}

.ks-max-3xl {
    max-width: 48rem;
}

.ks-max-6xl {
    max-width: 72rem;
}

.ks-grid-1 {
    grid-template-columns: 1fr;
}

.ks-icon-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.ks-icon-6 {
    width: 1.5rem;
    height: 1.5rem;
}

i.ks-icon-5,
i.ks-icon-6,
svg.ks-icon-5,
svg.ks-icon-6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

i.ks-icon-5,
svg.ks-icon-5 {
    font-size: 1.1rem;
}

i.ks-icon-6,
svg.ks-icon-6 {
    font-size: 1.35rem;
}

.ks-transition {
    transition: all .15s ease;
}

.ks-py-3-5 {
    padding-top: .875rem;
    padding-bottom: .875rem;
}

.nav-link-a,
.mobile-nav-link,
.mobile-subnav-link,
footer a {
    text-decoration: none;
}
footer {
    background: var(--pearl-navy);
    color: rgba(255, 255, 255, 0.65);
    padding: 70px 0 0;
}

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--cta);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
    color: #fff;
    background: var(--saffron-dark);
}

.scroll-top-btn:focus-visible {
    outline: 3px solid rgba(196, 98, 42, 0.35);
    outline-offset: 3px;
}

body.tales-lightbox-open {
    overflow: hidden;
}

.tales-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.tales-lightbox.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tales-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.88);
    border: 0;
}

.tales-lightbox-panel {
    position: relative;
    z-index: 1;
    /* width: min(940px, 92vw); */
    max-height: 88vh;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.24s ease;
}

.tales-lightbox.show .tales-lightbox-panel {
    transform: translateY(0) scale(1);
}

.tales-lightbox-panel img {
    display: block;
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 6px;
    background: var(--pearl-navy);
}

.tales-lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--cta);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.tales-lightbox-close i {
    font-size: 20px;
}

.tales-lightbox-close:hover,
.tales-lightbox-close:focus-visible {
    background: var(--saffron-dark);
}

.tales-lightbox-caption {
    margin: 10px 4px 0;
    color: var(--plum);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.share-fab {
    position: fixed;
    right: 24px;
    bottom: 88px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.share-toggle,
.share-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--pearl-navy);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.24);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.share-toggle {
    background: var(--cta);
    border: 0;
}

.share-toggle i,
.share-toggle svg,
.share-menu-link i,
.share-menu-link svg {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.share-toggle {
    position: relative;
}

.share-toggle-icon {
    position: absolute;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.share-toggle .close-icon {
    opacity: 0;
    transform: scale(0.7) rotate(-90deg);
}

.share-fab.open .share-toggle .share-icon {
    opacity: 0;
    transform: scale(0.7) rotate(90deg);
}

.share-fab.open .share-toggle .close-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.share-toggle:hover,
.share-toggle:focus-visible,
.share-menu-link:hover,
.share-menu-link:focus-visible {
    color: #fff;
    background: var(--saffron-dark);
    transform: translateY(-2px);
}

.share-menu {
    display: flex;
    flex-direction: column;
    gap: 9px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.share-fab.open .share-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.share-menu-link {
    width: 42px;
    height: 42px;
    background: rgba(11, 31, 58, 0.94);
    backdrop-filter: blur(8px);
}

.share-menu-link i,
.share-menu-link svg {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.footer-event-item .fi {
    color: var(--pearl-gold);
    flex-shrink: 0;
    width: 16px;
    margin-top: 2px;
    text-align: center;
}
#mobile-menu-btn-z5a6,
.faq-toggle {
    background: transparent;
    border: 0;
}

@media (min-width: 576px) {
    .ks-grid-sm-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .ks-grid-md-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ks-text-info {
        font-size: .8rem;
    }

    .ks-md-text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 992px) {
    .ks-grid-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1400px; /* Changes default 1140px to 1400px */
  }
}
