:root {
    --nav-h: 236px;
    --cool:        #78b950;
    --cool-light:  #9dd475;
    --cool-glow:   rgba(120, 185, 80, 0.25);
    --cool-dim:    rgba(120, 185, 80, 0.08);
    --cool-border: rgba(120, 185, 80, 0.22);
    
    --bg:          #ffffff;
    --bg-mid:      #f1f5f9;
    --bg-card:     #ffffff;
    --text:        #58585a;
    --text-dim:    #6d6d6f;
    --text-muted:  #858587;
    --max:         1180px;
    --orb-size:    clamp(44px, 8vw, 92px);
    --orb-r:       clamp(125px, 21vw, 190px);
}

html { scroll-padding-top: calc(var(--nav-h) + 16px); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lora', sans-serif;
    font-weight: 300;
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
}

a, button, input, textarea, .orbit-satellite, .session-card, .video-placeholder {
    touch-action: manipulation;
}

/* Subtle grain — lightweight CSS pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.008) 2px,
            rgba(0,0,0,0.008) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.008) 2px,
            rgba(0,0,0,0.008) 4px
        );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.6;
    mix-blend-mode: soft-light;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.08;
    color: #0f172a;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

.divider {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cool), transparent);
    margin: 2.8rem 0;
}
.divider.centered { margin: 2.8rem auto; }

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1.25rem 2.4rem;
    font-family: 'Lora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(135deg, var(--cool), #508734);
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 25px var(--cool-glow);
    
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-150%);
    transition: transform 0.6s;
}
@media (hover: hover) {
    .btn-primary:hover::after { transform: translateX(300%); }
    .btn-primary:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 8px 40px var(--cool-glow);
    }
}

.btn-outline {
    display: inline-block;
    padding: 1.25rem 2.4rem;
    font-family: 'Lora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--cool);
    background: transparent;
    border: 1.5px solid var(--cool-border);
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    
}
@media (hover: hover) {
    .btn-outline:hover {
        border-color: var(--cool);
        color: var(--cool);
        background: rgba(120,185,80,0.06);
        box-shadow: 0 0 30px var(--cool-glow);
        transform: translateY(-4px);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 32px 48px;
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(120,185,80,0.12);
    transition: transform 0.9s ease, height 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.navbar.scrolled {
    padding: 22px 48px;
    height: calc(var(--nav-h) - 20px);
    background: #FFFFFF;
    box-shadow: 0 6px 25px rgba(0,0,0,0.07);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-brand {
    flex-shrink: 0;
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    background: linear-gradient(90deg, var(--cool), var(--cool-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-logo {
    height: 172px;
    width: auto;
    display: block;
}

.nav-links {
    flex-shrink: 0;
    display: flex;
    gap: 48px;
    align-items: center;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-links a:hover { color: var(--cool); }

.nav-links .nav-cta {
    color: white;
    padding: 0.75rem 2rem;
}
.nav-links .nav-cta:hover { color: white; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.burger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--cool);
    transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(248,250,252,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu a:first-child {
    margin-top: 90px;
}
.mobile-menu.open {
    display: flex;
    visibility: visible;
    opacity: 1;
}
.mobile-menu a {
    font-size: 1.8rem;
    color: var(--cool);
    text-decoration: none;
    font-family: 'Lora', serif;
    padding: 0.5rem 1rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-h);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(120,185,80,0.12) 0%, transparent 55%),
        radial-gradient(circle at 25% 75%, rgba(139,200,104,0.09) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(40px, 5vw, 80px) clamp(20px, 5vw, 48px) clamp(28px, 3.5vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center;
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--cool);
    margin-bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.hero-label::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--cool);
}

.hero h1 {
    font-size: clamp(3.4rem, 6.8vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 1.8rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--cool);
}
.hero-text {
    font-size: 1.18rem;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 3rem;
}

/* Orbit */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.orbit-heading-group {
    text-align: center;
    margin-bottom: calc(var(--orb-r) + var(--orb-size) / 2 - clamp(140px, 22vw, 220px) / 2 + 32px);
}
.orbit-eyebrow {
    font-family: 'Lora', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: #0f172a;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.orbit-hint {
    font-family: 'Lora', sans-serif;
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cool);
    opacity: 0.8;
    margin-bottom: 1.4rem;
}
.orbit-heading-line {
    width: 36px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--cool), transparent);
    margin: 0 auto;
}

.orbit-wrap {
    position: relative;
    width: clamp(140px, 22vw, 220px);
    height: clamp(140px, 22vw, 220px);
    flex-shrink: 0;
}
.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--cool-border);
    box-shadow: 0 0 0 6px var(--cool-dim), 0 16px 50px rgba(120,185,80,0.12);
    z-index: 1;
}
.orbit-center-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cool);
    text-align: center;
    width: 70%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.23,1,0.32,1);
    line-height: 1.2;
}
.orbit-center-text.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Mist-in effect for centre circle text (one-shot, low-CPU: runs 0.5s on hover then stops) */
@keyframes mistIn {
    0%   { opacity: 0; filter: blur(6px);  transform: translate(-50%, -50%) scale(0.94) translateY(3px); }
    100% { opacity: 1; filter: blur(0);    transform: translate(-50%, -50%) scale(1) translateY(0); }
}
.orbit-center-text.anim {
    animation: mistIn 0.5s ease-out;
}
@media (prefers-reduced-motion: reduce) {
    .orbit-center-text.anim { animation: none; }
}

.orbit-satellite {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--orb-size);
    height: var(--orb-size);
    margin: calc(var(--orb-size) / -2);
    z-index: 4;
    cursor: pointer;
    animation: orbitMove 36s linear infinite;
    animation-delay: var(--orbit-delay);
}
@keyframes orbitMove {
    from { transform: rotate(0deg) translateX(var(--orb-r)) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(var(--orb-r)) rotate(-360deg); }
}
.orbit-satellite-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--cool-border);
    box-shadow: 0 4px 16px rgba(120,185,80,0.12);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (hover: hover) {
    .orbit-satellite:hover .orbit-satellite-inner {
        transform: scale(1.22);
        box-shadow: 0 12px 35px rgba(120,185,80,0.25);
        border-color: var(--cool);
    }
}
.orbit-satellite-label {
    font-family: 'Lora', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cool);
    text-align: center;
    pointer-events: none;
    white-space: normal;
    word-break: break-word;
    line-height: 1.25;
    width: 80%;
}

/* Bigger orb labels on desktop only (tablets & phones keep their smaller sizes) */
@media (min-width: 769px) {
    .orbit-satellite-label {
        font-size: 10px;
    }
}

/* Growth orb — green question mark on the Meet-Your-Guide section background */
.orbit-satellite.orb-growth .orbit-satellite-inner {
    background: var(--bg-mid);
}
.orbit-satellite.orb-growth .orbit-satellite-label {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--cool);
    width: auto;
}


/* Soft wave dividers — link sections together (static SVG, zero CPU) */
.about, .sessions, .expect, .video-section, .book, .footer { position: relative; }
.section-wave {
    position: absolute;
    top: -25px; left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.wave-mid   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C240,24 480,8 720,16 C960,24 1200,7 1440,0 L1440,60 L0,60 Z'%3Cpath d='M0,0 C240,55 480,10 720,32 C960,54 1200,8 1440,0 L1440,90 L0,90 Z' fill='%23f1f5f9'/%3E%3C/svg%3E"); }
.wave-card  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C240,24 480,8 720,16 C960,24 1200,7 1440,0 L1440,60 L0,60 Z'%3Cpath d='M0,0 C240,55 480,10 720,32 C960,54 1200,8 1440,0 L1440,90 L0,90 Z' fill='%23ffffff'/%3E%3C/svg%3E"); }
.wave-ghost { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C240,24 480,8 720,16 C960,24 1200,7 1440,0 L1440,60 L0,60 Z'%3Cpath d='M0,0 C240,55 480,10 720,32 C960,54 1200,8 1440,0 L1440,90 L0,90 Z' fill='rgba%28120,185,80,0.08%29'/%3E%3C/svg%3E"); }

@media (max-width: 768px) {
    .section-wave { top: -12px; height: 30px; }
}

/* Sections */
section { padding: clamp(88px, 9vw, 110px) 0; }
.section-label {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--cool);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2.7rem, 5.2vw, 4.1rem);
    margin-bottom: 1.2rem;
}

/* About */
.about {
    background: var(--bg-mid);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 120px;
    align-items: center;
}
.about-photo {
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--cool-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(120,185,80,0.08);
    position: relative;
}
.about-content p {
    color: var(--text-dim);
    font-size: 1.12rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}
.credentials {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cool-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.credential-item {
    color: var(--text-dim);
}

/* Sessions */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 32px;
    margin-top: 100px;
}
.session-card {
    background: var(--bg-card);
    padding: 58px 48px;
    border: 1px solid var(--cool-border);
    border-radius: 12px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (hover: hover) {
    .session-card:hover {
        transform: translateY(-18px);
        box-shadow: 0 35px 70px rgba(120,185,80,0.14);
        border-color: var(--cool);
    }
}
.session-card span:first-child {
    font-size: 4.8rem;
    font-weight: 300;
    color: var(--cool);
    opacity: 0.08;
    position: absolute;
    top: 32px;
    right: 40px;
}
.session-card h3 {
    font-size: 1.65rem;
    margin-bottom: 1.2rem;
}
.session-card p {
    color: var(--text-dim);
    line-height: 1.8;
}
.session-card > span:last-child {
    display: block;
    margin-top: 2.8rem;
    font-size: 0.95rem;
    color: var(--cool);
}

/* Expect */
.expect {
    background: var(--bg-mid);
}
.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}
.expect-quote {
    padding: 68px 54px;
    border: 1px solid var(--cool-border);
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(120,185,80,0.08);
}
.expect-list {
    list-style: none;
}
.expect-list li {
    padding: 2rem 0;
    border-bottom: 1px solid var(--cool-border);
    display: flex;
    gap: 2.4rem;
}
.expect-list li:last-child { border-bottom: none; }

/* Video */
.video-placeholder {
    margin: 80px auto 0;
    aspect-ratio: 16 / 9;
    max-width: 920px;
    background: var(--bg-card);
    border: 1px solid var(--cool-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
@media (hover: hover) {
    .video-placeholder:hover {
        box-shadow: 0 30px 70px rgba(120,185,80,0.18);
    }
}
.play-btn {
    width: 98px;
    height: 98px;
    border: 3px solid var(--cool);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Book */
.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}
.contact-form {
    padding: 62px 56px;
    border: 1px solid var(--cool-border);
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(120,185,80,0.1);
}
input, textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--text);
    margin-bottom: 1.2rem;
    border-radius: 6px;
    font-family: inherit;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--cool);
    box-shadow: 0 0 0 3px rgba(120,185,80,0.1);
}

/* Footer */
.footer {
    padding: 70px 0 0;
    background: var(--bg-mid);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand .footer-logo {
    font-size: 1.4rem;
    font-family: 'Lora', serif;
    font-weight: 500;
    background: linear-gradient(90deg, var(--cool), var(--cool-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-desc {
    margin-top: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Lora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.25rem 0;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: var(--cool);
}

.footer-bottom {
    border-top: 1px solid var(--cool-border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .hero-inner, .about-grid, .expect-grid, .book-grid { 
        grid-template-columns: 1fr; 
        gap: 60px; 
    }
}

@media (max-width: 768px) {
    .navbar { padding: 20px 20px; }
    .navbar { position: relative; z-index: 1000; }
    .nav-logo { height: 90px; }
    .navbar.scrolled { padding: 16px 20px; }
    .navbar.scrolled { height: calc(var(--nav-h) - 8px); }
    .nav-links { display: none; }
    .burger { display: flex; }
    .container { padding: 0 20px; }
    .hero { padding-top: 0; align-items: flex-start; }
    html { scroll-padding-top: 0; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 12px;
        padding-bottom: 60px;
    }
    .hero h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
    .hero-text { font-size: 1rem; }
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        text-align: center;
        padding: 1.1rem 1.5rem;
    }

    .btn-primary, .btn-outline {
        letter-spacing: 2px;
    }

    input, textarea {
        font-size: 16px;
    }

    :root {
        --nav-h: 130px;
        --orb-size: 72px;
        --orb-r: 140px;
    }
    .orbit-wrap {
        width: 110px;
        height: 110px;
    }

    section:not(.hero), .about, .sessions, .expect, .video-section, .book {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .about-grid, .expect-grid, .book-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .about-photo {
        aspect-ratio: 3/2 !important;
        min-height: 220px;
    }
    .credentials {
        grid-template-columns: 1fr !important;
    }

    .sessions-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 48px !important;
    }
    .session-card {
        padding: 36px 28px !important;
    }

    .expect-quote {
        padding: 36px 28px !important;
    }

    .video-placeholder { margin-top: 40px !important; }

    .contact-form {
        padding: 32px 24px !important;
    }

    .section-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
}

@media (max-width: 480px) {
    .nav-brand { font-size: 1.4rem; }
    .nav-logo { height: 90px; }
    .navbar { padding: 16px 16px; }
    .navbar.scrolled { padding: 12px 16px; }
    .navbar.scrolled { height: calc(var(--nav-h) - 8px); }
    :root {
        --nav-h: 122px;
        --orb-size: 66px;
        --orb-r: 122px;
    }
    .orbit-wrap {
        width: 96px;
        height: 96px;
    }
    .orbit-satellite-label {
        font-size: 7px;
    }

    .section-title { font-size: clamp(1.85rem, 8vw, 2.4rem) !important; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
    .hero-text { font-size: 0.95rem; }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        padding: 1rem 1.2rem;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .play-btn {
        width: 72px;
        height: 72px;
    }
    .play-btn svg { width: 24px; height: 28px; }

    .expect-list li {
        gap: 1.2rem;
        padding: 1.4rem 0;
    }
    .expect-quote blockquote {
        font-size: 1.35rem !important;
    }

    .session-card {
        padding: 32px 24px !important;
    }

    .contact-form {
        padding: 28px 20px !important;
    }

    .footer {
        padding: 60px 0 48px;
    }
    .footer > .container > div {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
}

/* Nav centre tagline - bilingual, subtle */
.nav-tagline {
    flex: 1 1 auto;
    margin-right: 80px;
    align-self: flex-start;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    font-family: 'Lora', sans-serif;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.nav-tagline-en {
    font-weight: 600;
    color: var(--cool);
}
.nav-tagline-sk {
    font-weight: 600;
    color: var(--cool);
}

/* Hide tagline where it would crowd the logo + links (laptops <=1366 and mobile) */
@media (max-width: 1200px) {
    .nav-tagline { display: none; }
}

/* Bilingual gap text under the mobile nav - style matches lines A/B on heal-thy-relationships.com */
.hero-tagline {
    display: none;
}
@media (max-width: 768px) {
    .hero-tagline {
        display: block;
        grid-column: 1 / -1;
        text-align: center;
        font-size: 0.62rem;
        color: #6aab43;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    .hero-tagline div + div {
        margin-top: 4px;
    }
}

/* '?' orb — wheel of misfortunes around the centre circle (desktop hover only) */
.orbit-center-text.growth-active {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    font-style: italic;
    pointer-events: none;
}
.g-wheel {
    position: relative;
    width: 100%;
    height: 100%;
}
.g-item {
    position: absolute;
    font-size: clamp(8px, 1.5vw, 10.5px);
    line-height: 1.15;
    color: var(--cool);
    white-space: nowrap;
    opacity: 0.92;
}
.g-curve {
    top: 0; left: 0;
    width: 100%;
    height: 26px;
}
.g-curve text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 10.5px;
    fill: var(--cool);
    letter-spacing: 0.04em;
}
.g-tl { top: 14%; left: 5%;  transform: rotate(-9deg); }
.g-tr { top: 14%; right: 5%; transform: rotate(9deg); }
.g-ml { top: 42%; left: 2%;  transform: rotate(-15deg); }  /* tilted upward */
.g-mr { top: 42%; right: 2%; transform: rotate(13deg); }   /* going downhill */
.g-bl { bottom: 17%; left: 5%;  transform: rotate(-9deg); }
.g-br { bottom: 14%; right: 3%; transform: rotate(10deg); }
.g-centre {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    line-height: 1.35;
    font-size: clamp(7px, 1.45vw, 9.5px);
}
.g-broken {
    bottom: 6%; right: 13%;
    transform: rotate(-2deg);
    letter-spacing: 0.02em;
}
.g-broken span { display: inline-block; margin: 0 2px; }
.g-broken .g-n { position: relative; margin: 0 2px; }
.g-broken .g-s {
    position: absolute;
    top: 100%; left: 0;
    font-size: 0.62em;
    letter-spacing: 0;
    margin: 0;
}
.g-bottom {
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.03em;
}
@media (prefers-reduced-motion: reduce) {
    .orbit-center-text.growth-active { transition: none; }
}
