* {
    box-sizing: border-box
}

:root {
    --c1: #8CE4FF;
    --c2: #FEEE91;
    --c3: #FFA239;
    --c4: #FF5656;
    --bg: #f5fbff;
    --text: #19323c;
    --muted: #4e6570;
    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --radius: 1.2rem;
    --pill: 999px;
    --shadow: 0 10px 35px rgba(25, 50, 60, .12);
    --glass: rgba(255, 255, 255, .58);
    --border: 1px solid rgba(255, 255, 255, .5);
    --font: Inter, Segoe UI, Arial, sans-serif
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--text);
    background: linear-gradient(140deg, var(--bg), #fff4eb 60%, #fff);
    scroll-behavior: smooth
}

a {
    color: inherit;
    text-decoration: none;
    transition: .25s ease
}

.container {
    width: min(1120px, 92%);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(245, 251, 255, .75);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid rgba(25, 50, 60, .08)
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-sm);
    padding: .9rem 0
}

.brand {
    display: block;
}

.brand img {
    width: 4rem;
    position: relative;
    z-index: 20;
}

.brand img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.brand:hover img {
    transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .brand img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .brand img {
        width: 3rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .brand img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .brand img {
        width: 2rem;
        position: relative;
        z-index: 20;
    }
}

.menu {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

.menu-left {
    justify-content: flex-start
}

.menu-right {
    justify-content: flex-end
}

.menu a {
    padding: .55rem .95rem;
    border-radius: var(--pill);
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(25, 50, 60, .1)
}

.menu a:hover,
.menu a:focus-visible {
    transform: translateY(-1px);
    background: #fff
}

.hero {
    padding: var(--space-xl) 0 var(--space-lg)
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--space-md);
    align-items: center
}

.glass {
    background: var(--glass);
    border: var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    border-radius: var(--radius)
}

.hero-copy {
    padding: var(--space-lg)
}

.eyebrow {
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .78rem
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin: .1rem 0 .8rem
}

h1 {
    font-size: clamp(1.9rem, 4.1vw, 3rem)
}

h2 {
    font-size: clamp(1.35rem, 2.8vw, 2rem)
}

p,
li {
    line-height: 1.65;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1.3rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: .72rem 1.08rem;
    border-radius: var(--pill);
    font-weight: 700;
    transition: .25s ease
}

.btn-primary {
    background: linear-gradient(120deg, var(--c3), var(--c4));
    color: #fff
}

.btn-soft {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(25, 50, 60, .15)
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px)
}

.hero-fragments {
    position: relative;
    min-height: 420px
}

.frag {
    position: absolute;
    width: 62%;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform .35s ease, filter .35s ease
}

.frag:hover {
    transform: scale(1.03);
    filter: saturate(1.08)
}

.frag-a {
    top: 0;
    left: 0;
    rotate: -5deg
}

.frag-b {
    top: 21%;
    right: 0;
    rotate: 4deg
}

.frag-c {
    bottom: 0;
    left: 20%;
    rotate: -2deg
}

.section {
    padding: var(--space-lg) 0
}

.tint {
    background: linear-gradient(135deg, rgba(140, 228, 255, .2), rgba(254, 238, 145, .18))
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md)
}

.card {
    padding: var(--space-md)
}

.card i {
    font-size: 1.5rem;
    color: var(--c4)
}

.section-head {
    max-width: 760px;
    margin-bottom: 1rem
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.schedule-grid article {
    padding: 1rem
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md)
}

ul {
    padding-left: 1.1rem
}

.text-link {
    font-weight: 700;
    display: inline-flex;
    gap: .4rem;
    align-items: center
}

.map-box iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 1rem
}

.cta {
    padding: var(--space-lg);
    text-align: center
}

.site-footer {
    padding: var(--space-lg) 0;
    background: rgba(255, 255, 255, .72);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(25, 50, 60, .08)
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.footer-grid a {
    display: block;
    margin: .4rem 0;
    color: var(--muted)
}

.footer-grid a:hover {
    color: var(--text)
}

.page-stack {
    display: grid;
    gap: 1rem
}

.page-stack article,
.legal {
    padding: 1.2rem
}

form {
    display: grid;
    gap: .45rem
}

input,
textarea {
    width: 100%;
    padding: .7rem .85rem;
    border-radius: .7rem;
    border: 1px solid rgba(25, 50, 60, .25);
    background: #fff;
    color: var(--text)
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(140, 228, 255, .55);
    border-color: var(--c1)
}

.check {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-top: .25rem
}

.error {
    min-height: 1rem;
    color: #b11f1f;
    font-size: .84rem
}

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(860px, 94%);
    padding: 1rem;
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(25, 50, 60, .12);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: none;
    z-index: 60
}

.cookie-actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .6rem
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(25, 50, 60, .35);
    display: none;
    place-items: center;
    z-index: 70
}

.cookie-panel {
    padding: 1.2rem;
    min-width: min(420px, 92%);
    display: grid;
    gap: .7rem
}

.cookie-panel label {
    display: flex;
    gap: .6rem;
    align-items: center
}

.legal h1 {
    margin-bottom: .8rem
}

.legal h2 {
    margin-top: 1.1rem
}

@media (max-width:980px) {

    .hero-wrap,
    .split,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .three-col,
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-fragments {
        min-height: 360px
    }

    .frag {
        width: 55%
    }
}

@media (max-width:680px) {
    .header-grid {
        grid-template-columns: 1fr;
        justify-items: center
    }

    .menu-left,
    .menu-right,
    .menu {
        justify-content: center
    }

    .three-col,
    .schedule-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 1.5rem
    }

    .hero-fragments {
        min-height: 300px
    }

    .frag {
        width: 68%
    }
}

:root {
    --c1: #8CE4FF;
    --c2: #FEEE91;
    --c3: #FFA239;
    --c4: #FF5656;
    --bg: #f5fbff;
    --text: #19323c;
    --muted: #4e6570;
    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --radius: 1.2rem;
    --pill: 999px;
    --shadow: 0 10px 35px rgba(25, 50, 60, .12);
    --glass: rgba(255, 255, 255, .58);
    --border: 1px solid rgba(255, 255, 255, .5);
    --font: Inter, Segoe UI, Arial, sans-serif;
    --ring: 0 0 0 4px rgba(140, 228, 255, .35)
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease
}

.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@keyframes softLift {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }

    100% {
        transform: translateY(0)
    }
}

@media (prefers-reduced-motion:no-preference) {
    .frag {
        animation: softLift 9s ease-in-out infinite
    }
}

.planner {
    border-radius: var(--radius);
    padding: 1rem
}

.planner-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .75rem
}

.planner-title {
    max-width: 720px
}

.planner-title p {
    margin: .2rem 0 0
}

.planner-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: var(--space-md);
    align-items: start
}

.planner-groups {
    display: grid;
    gap: .9rem
}

.group {
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(25, 50, 60, .08);
    border-radius: 1rem;
    padding: .9rem
}

.group h3 {
    margin: 0 0 .55rem;
    font-size: 1rem
}

.chips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.chip {
    appearance: none;
    border: 1px solid rgba(25, 50, 60, .16);
    background: rgba(255, 255, 255, .75);
    color: var(--text);
    padding: .55rem .85rem;
    border-radius: var(--pill);
    cursor: pointer;
    font-weight: 700;
    transition: transform .18s ease, background .18s ease, border-color .18s ease
}

.chip:hover {
    transform: translateY(-1px)
}

.chip[aria-pressed="true"] {
    background: linear-gradient(120deg, var(--c1), rgba(254, 238, 145, .95));
    border-color: rgba(25, 50, 60, .28)
}

.starter-week {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(25, 50, 60, .08);
    border-radius: 1rem;
    padding: 1rem
}

.starter-week h3 {
    margin: .1rem 0 .5rem
}

.starter-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.6
}

.starter-meta {
    margin-top: .6rem;
    color: var(--muted);
    font-size: .95rem
}

.accordion {
    display: grid;
    gap: .65rem
}

.faq-item {
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(25, 50, 60, .08);
    border-radius: 1rem;
    overflow: hidden
}

.faq-trigger {
    width: 100%;
    text-align: left;
    appearance: none;
    background: transparent;
    border: 0;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 800
}

.faq-trigger:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: 1rem
}

.faq-trigger i {
    transition: transform .25s ease
}

.faq-item[data-open="true"] .faq-trigger i {
    transform: rotate(90deg)
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item[data-open="true"] .faq-panel {
    max-height: 420px
}

.faq-panel .faq-body {
    padding: 0 1rem 1rem;
    color: var(--muted);
    line-height: 1.65
}

.timeline {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: var(--space-md)
}

.timeline-nav {
    display: grid;
    gap: .6rem
}

.tbtn {
    appearance: none;
    border: 1px solid rgba(25, 50, 60, .14);
    background: rgba(255, 255, 255, .7);
    border-radius: 1rem;
    padding: .8rem 1rem;
    cursor: pointer;
    text-align: left;
    font-weight: 800;
    transition: transform .18s ease, border-color .18s ease
}

.tbtn:hover {
    transform: translateY(-1px)
}

.tbtn[aria-current="true"] {
    border-color: rgba(255, 86, 86, .35);
    box-shadow: 0 0 0 4px rgba(255, 86, 86, .15)
}

.timeline-panel {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(25, 50, 60, .08);
    border-radius: 1rem;
    padding: 1rem
}

.timeline-panel h3 {
    margin: .1rem 0 .5rem
}

.persona {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: start
}

.persona-nav {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

.pwrap {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(25, 50, 60, .08);
    border-radius: 1rem;
    padding: 1rem
}

.kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-top: .9rem
}

.kpi {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(25, 50, 60, .08);
    border-radius: 1rem;
    padding: .85rem
}

.kpi strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: .15rem
}

@media (max-width:980px) {

    .hero-wrap,
    .split,
    .footer-grid,
    .planner-grid,
    .timeline,
    .persona {
        grid-template-columns: 1fr
    }

    .three-col,
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-fragments {
        min-height: 360px
    }

    .frag {
        width: 55%
    }

    .kpis {
        grid-template-columns: 1fr
    }
}

@media (max-width:680px) {
    .header-grid {
        grid-template-columns: 1fr;
        justify-items: center
    }

    .menu-left,
    .menu-right,
    .menu {
        justify-content: center
    }

    .three-col,
    .schedule-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 1.5rem
    }

    .hero-fragments {
        min-height: 300px
    }

    .frag {
        width: 68%
    }

    .planner-grid {
        gap: 1rem
    }

    .persona {
        gap: 1rem
    }
}

.pad-panel {
    padding: 1.2rem
}

.title-tight {
    margin-top: .2rem
}

.mt-1 {
    margin-top: 1rem
}

.mt-link {
    margin-top: .9rem
}

.accordion-tight {
    margin-top: .95rem
}

.panel-tight {
    margin: .1rem 0 .6rem;
    font-size: 1.2rem
}

.btn-tight {
    margin-top: 1rem
}

.link-tight {
    margin-top: .9rem
}

.planner-h2-tight {
    margin: 0 0 .4rem
}

.section-head-tight {
    margin: .2rem 0 0
}

.mt-compact {
    margin-top: .6rem
}