:root {
    --white:#ffffff;
    --ivory:#fffaf1;
    --cream:#fff2df;
    --soft:#f9f5ef;
    --ink:#1f1d2b;
    --ink-2:#373244;
    --muted:#756f80;
    --line:rgba(31,29,43,0.1);
    --line-2:rgba(255,255,255,0.16);
    --gold:#f7c74c;
    --gold-2:#ffd979;
    --orange:#ff8a00;
    --red-orange:#f15a24;
    --pink:#ec2f78;
    --rose:#ff7ba8;
    --teal:#00c9c9;
    --jade:#079d86;
    --green:#00a52f;
    --lime:#a8ee00;
    --blue:#2763ff;
    --purple:#8b3dff;
    --night:#0d1024;
    --night-2:#17112a;
    --shadow:0 26px 80px rgba(255,115,0,0.13);
    --shadow-soft:0 18px 55px rgba(31,29,43,0.1);
    --shadow-dark:0 28px 90px rgba(13,16,36,0.26);
    --radius-xl:34px;
    --radius-lg:26px;
    --radius-md:18px;
    --container:1360px;
}

* {
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html {
    scroll-behavior:smooth;
}

body {
    min-height:100vh;
    overflow-x:hidden;
    color:var(--ink);
    font-family:"Be Vietnam Pro",sans-serif;
    background:radial-gradient(circle at 10% 8%,rgba(0,201,201,0.13),transparent 28%),radial-gradient(circle at 92% 10%,rgba(236,47,120,0.12),transparent 28%),radial-gradient(circle at 50% 5%,rgba(255,217,121,0.28),transparent 34%),linear-gradient(180deg,#ffffff 0%,var(--ivory) 38%,#ffffff 100%);
}

body::before {
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    pointer-events:none;
    background-image:radial-gradient(rgba(255,138,0,0.12) 1px,transparent 1px);
    background-size:28px 28px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.68),transparent 78%);
}

a {
    color:inherit;
    text-decoration:none;
}

button,
input,
select,
textarea {
    font:inherit;
}

svg {
    display:block;
}

img {
    max-width:100%;
    display:block;
}

.container {
    width:min(var(--container),calc(100% - 64px));
    margin:0 auto;
}

.display,
h1,
h2 {
    font-family:"Playfair Display",serif;
}

/* Header - Option 2:airy professional */

        .site-header {
    position:sticky;
    top:0;
    z-index:60;
    padding:16px 0;
    background:rgba(255,255,255,0.72);
    border-bottom:1px solid rgba(31,29,43,.06);
    backdrop-filter:blur(22px);
}

.nav-shell {
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:26px;
    min-height:76px;
    padding:10px 12px 10px 18px;
    border:1px solid rgba(31,29,43,.08);
    border-radius:26px;
    background:rgba(255,255,255,.78);
}

.brand {
    display:inline-flex;
    align-items:center;
    gap:13px;
    min-width:230px;
}

.logo-arc {
    position:absolute;
    inset:0;
    border-radius:50%;
    background:conic-gradient(from 212deg,var(--orange),var(--gold),var(--lime),var(--green),var(--teal),var(--blue),var(--purple),var(--pink),var(--orange));
    mask:radial-gradient(farthest-side,transparent 66%,#000 68% 78%,transparent 80%);
    transform:rotate(-8deg);
}

.logo-flower {
    position:absolute;
    left:8px;
    top:7px;
    width:28px;
    height:26px;
    background:radial-gradient(circle at 50% 82%,#e30613 0 13%,transparent 14%),linear-gradient(135deg,var(--gold),var(--orange) 72%,#df002e);
    border-radius:80% 10% 80% 10%;
    transform:rotate(45deg);
    filter:none;
}

.logo-flower::before,
.logo-flower::after {
    content:"";
    position:absolute;
    width:28px;
    height:18px;
    background:linear-gradient(135deg,var(--gold),var(--orange));
    border-radius:100% 12% 100% 12%;
    bottom:-3px;
}

.logo-flower::before {
    left:-18px;
    transform:rotate(-32deg);
}

.logo-flower::after {
    right:-18px;
    transform:rotate(82deg);
}

.logo-person {
    position:absolute;
    left:24px;
    bottom:3px;
    width:39px;
    height:30px;
    border-radius:70% 0 70% 0;
    background:linear-gradient(135deg,var(--teal),var(--green));
    transform:skewX(-22deg) rotate(16deg);
}

.logo-dot {
    position:absolute;
    left:26px;
    top:24px;
    width:13px;
    height:13px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--teal),var(--green));
    box-shadow:none;
}

.brand-text {
    display:grid;
    gap:3px;
}

.brand-title {
    display:block;
    color:var(--red-orange);
    font-size:13px;
    font-weight:900;
    line-height:1.1;
    text-transform:uppercase;
    letter-spacing:.02em;
}

.brand-title b {
    display:block;
    color:var(--orange);
    font-size:18px;
    letter-spacing:.01em;
}

.brand-subtitle {
    display:inline-flex;
    width:fit-content;
    color:var(--jade);
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.desktop-nav {
    justify-self:center;
    display:flex;
    align-items:center;
    gap:10px;
    min-height:48px;
    /*padding:4px;
    border:1px solid rgba(31,29,43,.07);
    border-radius:999px;
    backgr*/ound:rgba(255,250,241,.72);
    color:#4f4d5f;
    font-size:13px;
    font-weight:850;
}

.desktop-nav a {
    display:inline-flex;
    align-items:center;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    transition:.24s ease;
    white-space:nowrap;
}

.desktop-nav a:hover {
    color:var(--red-orange);
    background:rgba(255,138,0,.08);
}

.desktop-nav a.active {
    color:var(--ink);
    background:white;
    border:1px solid rgba(255,138,0,.16);
}

.header-actions {
    justify-self:end;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

.event-pill {
    display:inline-flex;
    align-items:center;
    gap:9px;
    min-height:46px;
    padding:0 15px;
    border:1px solid rgba(0,201,201,.18);
    border-radius:999px;
    background:rgba(236,255,252,.68);
    color:var(--jade);
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.event-pill::before {
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--teal),var(--green));
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:46px;
    padding:13px 21px;
    border:0;
    border-radius:999px;
    font-weight:900;
    cursor:pointer;
    transition:.25s ease;
    white-space:nowrap;
}

.btn svg {
    width:18px;
    height:18px;
    transition:.25s ease;
}

.btn:hover svg {
    transform:translateX(3px);
}

.btn-primary {
    color:white;
    background:linear-gradient(135deg,#ffb000,var(--orange),var(--pink));
    box-shadow:0 18px 40px rgba(236,47,120,.2);
}

.btn-primary:hover {
    transform:translateY(-3px);
    box-shadow:0 22px 54px rgba(236,47,120,.27);
}

.site-header .btn-primary,
.site-header .btn-primary:hover {
    box-shadow:none;
}

.btn-ghost {
    color:var(--orange);
    background:rgba(255,255,255,.86);
    border:1px solid rgba(255,138,0,.28);
    box-shadow:0 12px 35px rgba(255,138,0,.08);
}

.btn-ghost:hover {
    transform:translateY(-3px);
    background:white;
}

.btn-dark {
    color:white;
    background:linear-gradient(135deg,var(--night),#2b1749);
    box-shadow:0 18px 42px rgba(13,16,36,.18);
}

.menu-btn {
    display:none;
    width:46px;
    height:46px;
    border:1px solid var(--line);
    border-radius:16px;
    background:white;
    color:var(--ink);
    cursor:pointer;
    box-shadow:none;
}

.menu-btn span {
    display:block;
    width:18px;
    height:2px;
    margin:4px auto;
    background:currentColor;
    border-radius:99px;
    transition:.25s ease;
}

.menu-btn.is-open span:nth-child(1) {
    transform:translateY(6px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
    opacity:0;
}

.menu-btn.is-open span:nth-child(3) {
    transform:translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    display:none;
    margin-top:10px;
    padding:12px;
    border:1px solid rgba(31,29,43,.08);
    border-radius:24px;
    background:rgba(255,255,255,.94);
    box-shadow:none;
}

.mobile-nav a {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:13px 12px;
    border-radius:16px;
    font-weight:850;
    color:#4f4d5f;
}

.mobile-nav a:hover {
    color:var(--red-orange);
    background:rgba(255,138,0,.08);
}

/* Hero */

.hero {
    position:relative;
    padding:70px 0 64px;
    background-image: url(../images/hero-background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow:hidden;
}

.hero::before {
    content:"";
    position:absolute;
    right:-10%;
    top:2%;
    width:62%;
    height:86%;
    background:radial-gradient(circle at 70% 42%,rgba(255,213,0,.25),transparent 34%),radial-gradient(circle at 55% 50%,rgba(0,201,201,.18),transparent 42%);
    filter:blur(2px);
    pointer-events:none;
}

.hero-grid {
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.kicker {
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--orange);
    font-size:36px;
    font-family:"Playfair Display",serif;
    font-weight:800;
    font-style:italic;
}

.sparkle {
    color:var(--gold);
    filter:drop-shadow(0 5px 8px rgba(255,213,0,.25));
}

.hero h1 {
    font-size:clamp(58px,7.2vw,100px);
    letter-spacing:-0.05em;
    text-transform:uppercase;
}

.hero h1 span {
    display:block;
    background:linear-gradient(90deg,var(--orange),#ff5f00,var(--pink));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-lead {
    max-width:690px;
    margin-top:24px;
    color:var(--jade);
    font-size:18px;
    font-weight:800;
    line-height:1.75;
}

.event-meta {
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:28px;
}

.meta-item {
    display:flex;
    align-items:center;
    gap:12px;
    min-width:220px;
}

.meta-icon {
    display:grid;
    width:44px;
    height:44px;
    place-items:center;
    border-radius:16px;
    color:var(--orange);
    background:white;
    border:1px solid rgba(255,138,0,.18);
    box-shadow:0 12px 30px rgba(255,138,0,.08);
}

.meta-icon svg {
    width:21px;
    height:21px;
}

.meta-item strong {
    display:block;
    font-size:15px;
}

.meta-item small {
    display:block;
    margin-top:2px;
    color:var(--muted);
    font-weight:700;
}

.hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.hero-stats {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:30px;
    max-width:670px;
}

.stat-chip {
    padding:16px;
    border-radius:20px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.82);
    box-shadow:var(--shadow-soft);
}

.stat-chip strong {
    display:block;
    color:var(--orange);
    font-size:25px;
    line-height:1;
}

.stat-chip span {
    display:block;
    margin-top:7px;
    color:var(--muted);
    font-size:12px;
    font-weight:800;
}

.hero-visual {
    position:relative;
    min-height:510px;
}

.rainbow-ring {
    position:absolute;
    right:15px;
    top:10px;
    width:min(520px,92vw);
    height:min(520px,92vw);
    border-radius:50%;
    background:conic-gradient(from 210deg,var(--orange),var(--gold),var(--lime),var(--green),var(--teal),var(--blue),var(--purple),var(--pink),var(--orange));
    mask:radial-gradient(farthest-side,transparent 70%,#000 71% 80%,transparent 81%);
    transform:rotate(-8deg);
}

.hero-figure {
    position:absolute;
    right:70px;
    top:95px;
    width:365px;
    height:390px;
}

.figure-body {
    position:absolute;
    left:91px;
    bottom:28px;
    width:154px;
    height:320px;
    border-radius:80% 20% 80% 20%;
    background:linear-gradient(160deg,var(--teal),#08c8a5 42%,var(--green));
    transform:rotate(-24deg) skewX(-8deg);
    box-shadow:0 34px 80px rgba(0,169,101,.2);
}

.figure-ribbon {
    position:absolute;
    left:0;
    bottom:46px;
    width:330px;
    height:118px;
    border-radius:50%;
    border-bottom:34px solid rgba(0,165,47,.96);
    border-left:18px solid transparent;
    transform:rotate(16deg);
}

.figure-dot {
    position:absolute;
    left:144px;
    top:139px;
    width:54px;
    height:54px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--teal),var(--green));
    box-shadow:0 16px 38px rgba(0,169,101,.22);
}

.lotus {
    position:absolute;
    left:105px;
    top:0;
    width:166px;
    height:120px;
    filter:drop-shadow(0 28px 28px rgba(255,138,0,.18));
}

.lotus::before {
    content:"";
    position:absolute;
    left:52px;
    top:0;
    width:62px;
    height:106px;
    border-radius:80% 80% 42% 42%;
    background:linear-gradient(180deg,var(--gold),var(--orange) 62%,#e30613);
}

.lotus::after {
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:166px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(90deg,rgba(0,201,201,.18),rgba(0,165,47,.35),rgba(236,47,120,.42),rgba(255,138,0,.08));
}

.petal-left,
.petal-right {
    position:absolute;
    top:38px;
    width:90px;
    height:72px;
    background:linear-gradient(135deg,var(--gold),var(--orange));
    border-radius:92% 12% 92% 12%;
}

.petal-left {
    left:10px;
    transform:rotate(30deg);
}

.petal-right {
    right:10px;
    transform:rotate(62deg);
}

.city {
    position:absolute;
    right:0;
    bottom:4px;
    width:96%;
    height:170px;
    border-radius:34px;
    overflow:hidden;
    background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,194,79,.25));
}

.city::before {
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:90px;
    background:linear-gradient(90deg,rgba(255,138,0,.1),rgba(0,201,201,.13),rgba(236,47,120,.09));
    clip-path:polygon(0 90%,8% 52%,14% 75%,24% 36%,30% 70%,43% 30%,50% 72%,58% 45%,66% 75%,76% 22%,84% 62%,100% 40%,100% 100%,0 100%);
}

.person {
    position:absolute;
    bottom:34px;
    width:20px;
    height:38px;
    border-radius:50% 50% 40% 40%;
    background:rgba(255,138,0,.52);
}

.person.one {
    left:56px;
}

.person.two {
    left:112px;
    transform:scale(.82);
    background:rgba(0,157,136,.55);
}

.person.three {
    right:94px;
    background:rgba(236,47,120,.45);
}

.star {
    position:absolute;
    width:20px;
    height:20px;
    color:var(--gold);
}

.star::before {
    content:"✦";
    font-size:22px;
}

.star.s1 {
    top:20px;
    left:30px;
}

.star.s2 {
    top:140px;
    right:18px;
    color:var(--pink);
}

.star.s3 {
    bottom:125px;
    left:50px;
    color:var(--teal);
}

/* General sections */

.section {
    padding:76px 0;
}

.section-head {
    display:flex;
    justify-content:space-between;
    gap:30px;
    align-items:flex-end;
    margin-bottom:34px;
}

.section-kicker {
    color: var(--orange) !important;
    font-size: 15px;
    font-weight: 800 !important;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-title {
    margin-top:8px;
    margin-bottom: 20px;
    color:var(--orange);
    font-size:clamp(34px,4.3vw,56px);
    line-height:1.05;
    letter-spacing:-.04em;
}

.title-center {
    text-align:center;
}

.section-desc {
    max-width:560px;
    color:var(--muted);
    line-height:1.75;
    font-weight:600;
}

/* 3 meets */

.three-meet {
    background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,250,241,.9));
}

.meet-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.meet-card {
    position:relative;
    display:grid;
    grid-template-columns:80px 1fr;
    gap:18px;
    align-items:center;
    border-radius:26px;
    background:rgba(255,255,255,.9);
    border:1.5px solid var(--line);
    padding:24px;
    box-shadow:var(--shadow-soft);
    overflow:hidden;
    transition:.25s ease;
}

.meet-card:hover {
    transform:translateY(-5px);
    box-shadow:0 26px 70px rgba(32,36,58,.12);
}

.meet-card::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:58px;
    height:4px;
    border-radius:99px 99px 0 0;
    transform:translateX(-50%);
    background:currentColor;
}

.meet-card.teal {
    color:var(--teal);
    border-color:rgba(0,201,201,.35);
}

.meet-card.orange {
    color:var(--orange);
    border-color:rgba(255,138,0,.35);
}

.meet-card.pink {
    color:var(--pink);
    border-color:rgba(236,47,120,.32);
}

.meet-icon {
    display:grid;
    width:70px;
    height:70px;
    place-items:center;
    border-radius:50%;
    background:currentColor;
    box-shadow:0 14px 28px rgba(0,0,0,.08);
}

.meet-icon svg {
    width:32px;
    height:32px;
    color:white;
}

.meet-card h3 {
    font-size:24px;
}

.meet-card p {
    margin-top:8px;
    color:var(--muted);
    line-height:1.6;
    font-weight:600;
}

/* About / goals */

        .about-grid {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:42px;
    align-items:start;
}

.about-card {
    border-radius:var(--radius-xl);
    background:rgba(255,255,255,.86);
    border:1px solid var(--line);
    padding:32px;
    box-shadow:var(--shadow-soft);
}

.about-card h3 {
    font-size:29px;
    color:var(--ink);
    line-height:1.15;
    letter-spacing:-.03em;
}

.about-card p {
    margin-top:14px;
    margin-bottom: 10px;
    color:var(--ink-2);
    line-height:1.8;
    font-weight:400;
}

.goals-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.goal-card {
    position:relative;
    overflow:hidden;
    padding:22px;
    border-radius:24px;
    background:white;
    border:1px solid var(--line);
    box-shadow:0 14px 36px rgba(31,29,43,.06);
    transition:.25s ease;
}

.goal-card:hover {
    transform:translateY(-4px);
    border-color:rgba(255,138,0,.25);
}

.goal-card::before {
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:4px;
    background:linear-gradient(180deg,var(--teal),var(--orange),var(--pink));
}

.goal-card strong {
    display:block;
    font-size:18px;
    color:var(--ink);
}

.goal-card span {
    display:block;
    margin-top:8px;
    color:var(--muted);
    font-size:14px;
    line-height:1.65;
    font-weight:600;
}

/* Audience */

        .audience-section {
    background:linear-gradient(180deg,#fff,#fff8ec);
}

.audience-pill {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border:1px solid rgba(255,138,0,.18);
    border-radius:999px;
    background:rgba(255,255,255,.9);
    box-shadow:var(--shadow-soft);
    overflow:hidden;
    margin-top:28px;
}

.audience-item {
    padding:26px 18px;
    text-align:center;
    border-right:1px solid var(--line);
}

.audience-item:last-child {
    border-right:0;
}

.audience-item svg {
    width:32px;
    height:32px;
    margin:0 auto 10px;
    color:var(--teal);
}

.audience-item strong {
    display:block;
    font-size:14px;
    line-height:1.45;
}

.age-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:22px;
}

.age-card {
    padding:24px;
    border-radius:26px;
    border:1px solid var(--line);
    background:white;
    box-shadow:var(--shadow-soft);
}

.age-card b {
    display:inline-flex;
    padding:8px 12px;
    border-radius:999px;
    background:linear-gradient(135deg,#fff2bd,#ffe0a2);
    color:#83530a;
    font-size:13px;
}

.age-card h3 {
    margin-top:16px;
    font-size:20px;
    color:var(--ink);
}

.age-card p {
    margin-top:10px;
    color:var(--muted);
    line-height:1.7;
    font-weight:500;
}

/* Activities */

        .activity-tabs {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
    margin:24px 0 32px;
}

.tab-btn {
    border:1px solid var(--line);
    border-radius:999px;
    background:#fff;
    color:var(--muted);
    padding:10px 15px;
    font-weight:900;
    cursor:pointer;
    transition:.22s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color:#fff;
    border-color:transparent;
    background:linear-gradient(135deg,var(--orange),var(--pink));
}

.activity-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.activity-card {
    display:grid;
    grid-template-columns:43% 1fr;
    gap:18px;
    align-items:center;
    min-height:145px;
    padding:14px;
    border-radius:24px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow-soft);
    transition:.25s ease;
}

.activity-card:hover {
    transform:translateY(-5px);
    border-color:rgba(255,138,0,.28);
}

.activity-img {
    min-height:116px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    background:var(--cream);
}

.activity-img::before {
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 25% 25%,rgba(255,255,255,.7),transparent 25%),linear-gradient(135deg,var(--teal),var(--green),var(--gold),var(--orange),var(--pink));
    opacity:.9;
}

.activity-card.meet .activity-img::before {
    background:linear-gradient(135deg,#fff4df,rgba(0,201,201,.28)),radial-gradient(circle at 30% 70%,var(--green),transparent 25%);
}

.activity-card.music .activity-img::before {
    background:linear-gradient(135deg,#111,#5c216a,#ff8a00);
}

.activity-card.sale .activity-img::before {
    background:linear-gradient(135deg,#fff4df,#ffdba9,#00c9c9);
}

.activity-card.zone .activity-img::before {
    background:linear-gradient(135deg,#9be7ff,#fff176,#ff8a00,#ff4aa2);
}

.activity-card.pet .activity-img::before {
    background:radial-gradient(circle at 50% 35%,#fff 0 9%,transparent 10%),radial-gradient(circle at 50% 58%,#f4c391 0 30%,transparent 31%),linear-gradient(135deg,#dbfff6,#fff5dd);
}

.activity-card.art .activity-img::before {
    background:radial-gradient(circle at 32% 36%,var(--jade),transparent 18%),radial-gradient(circle at 68% 58%,var(--lime),transparent 18%),linear-gradient(135deg,#eefbf5,#fff1da);
}

.activity-card.podcast .activity-img::before {
    background:linear-gradient(135deg,var(--night),var(--blue),var(--teal));
}

.activity-content h3 {
    font-size:20px;
    line-height:1.2;
    cursor: pointer;
}

.activity-content p {
    margin-top:8px;
    color:var(--muted);
    font-size:14px;
    line-height:1.55;
    font-weight:600;
}

.activity-more {
    display:inline-grid;
    place-items:center;
    width:34px;
    height:34px;
    margin-top:14px;
    border-radius:50%;
    border:1px solid currentColor;
    color:var(--orange);
    background:white;
    cursor:pointer;
}

/* Schedule */

        .schedule-section {
    background:linear-gradient(180deg,#fffaf1,#fff);
}

.schedule-wrap {
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:36px;
}

.schedule-wrap::before {
    content:"";
    position:absolute;
    left:12%;
    right:12%;
    top:44px;
    height:2px;
    background:linear-gradient(90deg,var(--teal),var(--orange),var(--pink));
    opacity:.45;
}

.schedule-card {
    position:relative;
    padding:26px 28px;
    border:1px solid var(--line);
    border-radius:26px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow-soft);
    text-align:left;
}

.schedule-card::before {
    content:"";
    position:absolute;
    top:38px;
    left:50%;
    width:12px;
    height:12px;
    border-radius:50%;
    background:currentColor;
    transform:translate(-50%,-50%);
    box-shadow:0 0 0 8px rgba(255,255,255,.86);
}

.schedule-card.teal {
    color:var(--teal);
}

.schedule-card.orange {
    color:var(--orange);
}

.schedule-card.pink {
    color:var(--pink);
}

.schedule-card h3 {
    margin-top:28px;
    font-size:22px;
}

.schedule-card .time {
    display:block;
    margin-top:4px;
    color:currentColor;
    font-weight:900;
}

.schedule-card ul {
    margin-top:14px;
    padding-left:18px;
    color:var(--ink);
    line-height:1.85;
    font-weight:600;
}

.day-agenda {
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
    margin-top:22px;
}

.day-item {
    padding:16px 12px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 12px 30px rgba(31,29,43,.05);
    text-align:center;
}

.day-item strong {
    display:block;
    color:var(--orange);
    font-size:14px;
}

.day-item span {
    display:block;
    margin-top:8px;
    color:var(--muted);
    font-size:12px;
    line-height:1.45;
    font-weight:700;
}

/* Registration */

        .register-panel {
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:.82fr 1fr;
    gap:40px;
    align-items:center;
    padding:54px;
    border-radius:38px;
    background:linear-gradient(135deg,rgba(0,201,201,.16),rgba(255,213,0,.18),rgba(236,47,120,.16));
    box-shadow:var(--shadow);
}

.register-panel::before {
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 4% 85%,rgba(0,165,47,.28),transparent 24%),radial-gradient(circle at 98% 0%,rgba(255,138,0,.22),transparent 28%);
    pointer-events:none;
}

.register-copy,
.register-form {
    position:relative;
    z-index:1;
}

.register-copy h2 {
    font-size:48px;
    color:var(--red-orange);
    line-height:1.02;
    letter-spacing:-.04em;
}

.register-copy p {
    margin-top:14px;
    color:var(--muted);
    font-weight:700;
    line-height:1.7;
}

.benefits {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}

.benefit {
    display:flex;
    align-items:center;
    gap:8px;
    padding:11px 13px;
    border-radius:999px;
    background:white;
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    box-shadow:0 12px 28px rgba(32,36,58,.06);
}

.register-form {
    padding:26px;
    border-radius:28px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow-soft);
}

.form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.form-group.full {
    grid-column:1 / -1;
}

label {
    display:block;
    margin-bottom:7px;
    font-size:14px;
    color:#575364;
    font-weight:700;
}

input,
select {
    width:100%;
    height:48px;
    border:1px solid var(--line);
    border-radius:14px;
    background:white;
    padding:0 14px;
    outline:none;
    color:#757575;
}

input:focus,
select:focus {
    border-color:rgba(255,138,0,.45);
    box-shadow:0 0 0 4px rgba(255,138,0,.12);
}

.submit-btn {
    grid-column:1 / -1;
    height:50px;
}

.security {
    grid-column:1 / -1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:4px;
    color:var(--muted);
    font-size:13px;
    font-weight:700;
}

.footer {
    padding:30px 0;
    background:#fff;
    border-top:1px solid var(--line);
}

.footer-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

.socials {
    display:flex;
    gap:10px;
}

.social {
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:50%;
    color:white;
    font-size:13px;
    font-weight:900;
}

.social.fb {
    background:#315ccf;
}

.social.ig {
    background:linear-gradient(135deg,#ffba00,#ec2f78,#7038ff);
}

.social.tk {
    background:#111;
}

.social.yt {
    background:#f00;
}

.reveal {
    opacity:0;
    transform:translateY(22px);
    transition:.7s ease;
}

.reveal.show {
    opacity:1;
    transform:translateY(0);
}

.modal {
    position:fixed;
    inset:0;
    z-index:80;
    display:none;
    place-items:center;
    padding:20px;
    background:rgba(35,34,51,.38);
    backdrop-filter:blur(14px);
}

.modal.open {
    display:grid;
}

.modal-card {
    width:min(620px,100%);
    border-radius:28px;
    background:white;
    padding:30px;
    box-shadow:0 30px 90px rgba(35,34,51,.22);
}

.modal-head {
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.modal h3 {
    font-size:30px;
    color:var(--orange);
}

.modal p {
    margin-top:12px;
    color:var(--muted);
    line-height:1.8;
    font-weight:600;
}

.close-modal {
    width:42px;
    height:42px;
    border:1px solid var(--line);
    border-radius:14px;
    background:white;
    cursor:pointer;
    font-size:24px;
    color:var(--ink);
}

.toast {
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:90;
    display:none;
    max-width:350px;
    padding:15px 18px;
    border-radius:18px;
    background:white;
    box-shadow:0 20px 70px rgba(35,34,51,.18);
    color:var(--ink);
    font-weight:800;
    border:1px solid rgba(255,138,0,.18);
}

.toast.show {
    display:block;
    animation:toast .3s ease forwards;
}

@keyframes toast {
    from {
        opacity:0;
        transform:translateY(14px);
    }
    to {
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width:1080px) {
    .desktop-nav,
    .event-pill {
        display:none;
    }
    .menu-btn {
        display:block;
    }
    .mobile-nav.open {
        display:block;
    }
    .nav-shell {
        border-radius:24px;
        grid-template-columns:auto auto;
    }
    .header-top-inner {
        justify-content:center;
        text-align:center;
    }
    .top-right {
        display:none;
    }
    .hero-grid,
    .about-grid,
    .register-panel {
        grid-template-columns:1fr;
    }
    .hero-visual {
        min-height:520px;
    }
    .meet-grid,
    .activity-grid,
    .schedule-wrap,
    .age-grid {
        grid-template-columns:repeat(2,1fr);
    }
    .goals-grid,
    .metric-grid {
        grid-template-columns:repeat(2,1fr);
    }
    .audience-pill {
        grid-template-columns:repeat(2,1fr);
        border-radius:28px;
    }
    .audience-item {
        border-bottom:1px solid var(--line);
    }
    .section-head {
        display:block;
    }
    .section-desc {
        margin-top:14px;
    }
    .day-agenda {
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:760px) {
    .container {
        width:min(100% - 28px,var(--container));
    }
    .header-top {
        display:none;
    }
    .nav-shell {
        padding:8px;
    }
    .brand {
        min-width:auto;
        padding:5px;
    }
    .brand-title {
        font-size:12px;
    }
    .brand-title b {
        font-size:15px;
    }
    .brand-subtitle {
        display:none;
    }
    .header-actions .btn-primary {
        display:none;
    }
    .hero {
        padding-top:48px;
    }
    .hero h1 {
        font-size:54px;
    }
    .kicker {
        font-size:28px;
    }
    .hero-stats,
    .meet-grid,
    .activity-grid,
    .schedule-wrap,
    .form-grid,
    .audience-pill,
    .age-grid,
    .goals-grid,
    .bridge-cards,
    .day-agenda {
        grid-template-columns:1fr;
    }
    .activity-card {
        grid-template-columns:1fr;
    }
    .register-panel {
        padding:28px;
        border-radius:28px;
    }
    .register-copy h2 {
        font-size:38px;
    }
    .hero-visual {
        min-height:435px;
    }
    .rainbow-ring {
        right:-45px;
        top:20px;
        width:420px;
        height:420px;
    }
    .hero-figure {
        right:-5px;
        top:80px;
        transform:scale(.82);
        transform-origin:top right;
    }
    .section {
        padding:58px 0;
    }
    .section-title {
        font-size:36px;
    }
    .footer-inner {
        flex-direction:column;
        align-items:flex-start;
    }
}

.brand-logo {
    width:80px;
    height:auto;
    object-fit:contain;
    display:block;
}

.logo-arc,
.logo-flower,
.logo-person,
.logo-dot {
    display:none !important;
}

.activity-img img {
    width:100%;
    height:165px;
    min-height:116px;
    object-fit:cover;
    display:block;
    cursor: pointer;
    transition:.35s ease;
}

.activity-img:has(img)::before {
    display:none;
}

.activity-card:hover .activity-img img {
    transform:scale(1.06);
}

@media(max-width:760px) {
    .brand-logo {
        width:94px;
    }
}

.m-bottom{
    margin-bottom: 10px;
}

.chromeframe {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    width: 100% !important;
    z-index: 99999999999999 !important;
    background-color: #ffff00 !important;
    color: #000 !important;
    height: 25px;
    line-height: 25px;
    padding: 0.2em 0;
    text-align: center !important;
}

#timeoutsess {
    display: none;
}

#timeoutsess a {
    color: #2f70a7 !important;
}


/* Info die */

.nv-infodie {
    margin: 0 auto;
    border-width: 1px;
    border-color: #dcdcdc82;
    border-style: solid;
    background-color: #fff;
    position: absolute;
    min-height: 300px !important;
    min-width: 300px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    border-radius: 20px;
}

.nv-infodie .panel-body {
    display: table-cell;
    vertical-align: middle;
}

.nv-infodie .logo {
    max-width: 200px;
    margin-bottom: 10px;
    height: auto;
    margin: 0 auto 20px;
}
/* Premium Custom Modal Styles */
#activities-block-{BLOCK_ID} .activity-custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(10 6 22 / 38%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    z-index: 100000;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* Scrollbar customize inside modal */
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-wrapper::-webkit-scrollbar {
    width: 8px;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 0 20px 20px 0;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 127, 0.2);
    border-radius: 4px;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 127, 0.4);
}

/* When modal active, scale up and fade in wrapper */
#activities-block-{BLOCK_ID} .activity-custom-modal.modal-active .modal-wrapper {
    transform: scale(1);
    opacity: 1;
}

#activities-block-{BLOCK_ID} .activity-custom-modal .close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100002;
    transition: all 0.3s ease;
    padding: 0;
    outline: none !important;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .close-modal-btn:hover {
    background: linear-gradient(135deg, #ff007f, #7f00ff);
    border-color: transparent;
    transform: rotate(90deg);
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-body-content {
    padding: 30px;
    min-height: 250px;
    line-height: 1.7;
    color: #2b2a2a;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-body-content h2,
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-body-content h3{
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

#activities-block-{BLOCK_ID} .activity-custom-modal .modal-body-content ul{
    padding-left: 20px;
}

#activities-block-{BLOCK_ID} .activity-custom-modal .modal-loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #b0aabf;
    font-size: 15px;
    font-weight: 500;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 0, 127, 0.1);
    border-top: 3px solid #ff007f;
    border-radius: 50%;
    animation: spin-custom 1s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}
@keyframes spin-custom {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#activities-block-{BLOCK_ID} .activity-custom-modal .modal-ajax-content {
    animation: modalContentFadeIn 0.5s ease forwards;
}
@keyframes modalContentFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal Content Adjustments */
#activities-block-{BLOCK_ID} .activity-custom-modal .activity-detail-container {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-top: none !important;
    background: transparent !important;
}
#activities-block-{BLOCK_ID} .activity-custom-modal .back-btn {
    display: none !important; /* Hide back button in modal */
}

.text-center{
    text-align: center;
}

.successfully-box svg{
    fill: #049d86;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
}

.successfully-box h3{
    font-size: 16px;
    font-weight: 600;
    color: #049d86;
}

.successfully-box p{
    color: #fff;
    font-style: italic;
    font-size: 15px;
}