:root {
    --ink: #0a1628;
    --emerald: #059669;
    --emerald-soft: #ecfdf5;
    --teal: #0d9488;
    --mist: #f6f8fb;
    --muted: #5b6573;
    --line: #e8edf2;
    --shadow: 0 18px 40px rgba(10, 22, 40, .06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }

#loading, .site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .35s ease, visibility .35s ease;
}
#loading.is-hidden, #loading.done, .site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.site-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
.site-loader-logo {
    width: auto;
    height: 72px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(10, 22, 40, .08);
}
#loading .spinner {
    width: 70px;
    text-align: center;
}
#loading .spinner > div {
    width: 14px;
    height: 14px;
    margin: 0 3px;
    background-color: var(--emerald);
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loading .spinner .bounce1 { animation-delay: -.32s; }
#loading .spinner .bounce2 { animation-delay: -.16s; }
@keyframes sk-bouncedelay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
h1, h2, h3, .font-display { font-family: "Plus Jakarta Sans", sans-serif; }

/* Nav */
.site-nav {
    position: fixed;
    left: 0; right: 0;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(243,244,246,.8);
    padding: 14px 0;
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #4b5563;
}
.nav-links a:hover { color: var(--ink); background: #f9fafb; }
.nav-links a.is-active { color: var(--emerald); background: var(--emerald-soft); }
.nav-links .nav-cta {
    display: none;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .2s ease;
}
.btn-dark { background: var(--ink); color: #fff; padding: 10px 20px; box-shadow: 0 10px 22px rgba(10,22,40,.14); }
.btn-dark:hover { background: var(--emerald); transform: translateY(-1px); }
.btn-hero { padding: 14px 28px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: #e5e7eb; padding: 12px 26px; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-emerald { background: #10b981; color: #fff; padding: 14px 28px; }
.menu-toggle {
    display: none;
    width: 42px; height: 42px;
    border: 0; border-radius: 12px;
    background: #f3f4f6;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span { width: 16px; height: 2px; background: var(--ink); display: block; }

/* Hero: Aura model */
.hero {
    position: relative;
    padding: 118px 0 80px;
    overflow: hidden;
    background: #fff;
}
.hero-media {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-media-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 72% center;
}
.hero-media-shape {
    position: absolute;
    left: -8%;
    top: -18%;
    width: min(720px, 68%);
    max-width: none;
    height: auto;
    opacity: .95;
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #fff 0%, rgba(255,255,255,.88) 32%, rgba(255,255,255,.42) 62%, rgba(255,255,255,.12) 100%);
}
.hero .hero-media-photo { opacity: .55; }
.page-hero .hero-media-photo { opacity: 1; }
.hero-dots-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(16, 185, 129, 0.082) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-glow-a {
    width: 600px; height: 600px; top: 0; right: 0;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
    transform: translate(20%, -30%);
}
.hero-glow-b {
    width: 400px; height: 400px; bottom: 0; left: 0;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    transform: translate(-20%, 30%);
}
.hero-3d {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .3;
}
.hero-3d canvas { display: block; width: 100%; height: 100%; }
.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-copy { width: 46%; flex-shrink: 0; }
.hero-visual { width: 54%; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 1px 2px rgba(5,150,105,.08);
}
.pulse { position: relative; width: 10px; height: 10px; }
.pulse-ping, .pulse-dot {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #10b981;
}
.pulse-ping { animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite; opacity: .6; }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(36px, 4.6vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--ink);
}
.shiny {
    background-image: linear-gradient(120deg, #059669 0%, #059669 35%, #60a5fa 50%, #059669 65%, #059669 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.lead { color: #4b5563; font-size: 18px; max-width: 32rem; margin: 0 0 26px; line-height: 1.7; }
.checks { list-style: none; margin: 0 0 32px; padding: 0; }
.checks li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}
.check-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    display: grid; place-items: center;
    font-size: 9px;
    flex-shrink: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.stats-inline { margin-bottom: 28px; border-top: 0; padding-top: 0; }
.stat strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}
.stat span { font-size: 12px; color: #6b7280; margin-top: 4px; display: block; }
.stat-rule { width: 1px; height: 42px; background: #e5e7eb; }

.hero-tabs {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    gap: 6px;
}
.hero-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    background: transparent;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    opacity: .4;
}
.hero-tab.is-active {
    background: rgba(5, 150, 105, 0.082);
    color: #059669;
    border-color: rgba(5, 150, 105, 0.19);
    opacity: 1;
}
.hero-gallery {
    display: flex;
    gap: 10px;
    height: 500px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(17, 24, 39, .2);
}
.hero-panel {
    position: relative;
    flex: 0.6;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex .7s ease;
}
.hero-panel.is-active { flex: 4; }
.hero-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 100%);
}
.hero-panel.is-active::after {
    background: linear-gradient(to top, rgba(5,150,105,.93) 0%, rgba(5,150,105,.33) 40%, transparent 70%);
}
.hero-panel-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(24px);
    transition: .5s ease;
    color: #fff;
}
.hero-panel.is-active .hero-panel-copy { opacity: 1; transform: none; }
.hero-panel-title { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hero-panel-title h3 { margin: 0; font-size: 18px; font-weight: 900; }
.hero-panel-ico {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    display: grid; place-items: center;
}
.hero-panel-copy p { margin: 0; color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.5; }
.hero-panel-vert {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(-90deg);
    pointer-events: none;
    opacity: 1;
}
.hero-panel.is-active .hero-panel-vert { opacity: 0; }
.hero-live-dot {
    position: absolute;
    top: 16px; right: 16px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    z-index: 3;
}

/* Sections */
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 28px 0 48px; }
.section-cta-wrap { padding-top: 0; }
.section-mist { background: linear-gradient(180deg, #f7f9fc 0%, #fff 55%); }
.kicker-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #374151;
}
.section h2 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.12;
}
.h2-sm { font-size: clamp(28px, 3.4vw, 36px) !important; margin-bottom: 28px !important; }
.center { text-align: center; }
.sub { color: var(--muted); max-width: 620px; margin: 0 auto 40px; }

.focus-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.focus-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px 16px 20px;
    box-shadow: var(--shadow);
    text-align: center;
}
.focus-mint { background: #f8fafc; }
.focus-ice { background: #f8fbff; }
.focus-lilac { background: #faf8ff; }
.focus-peach { background: #fffaf6; }
.focus-sand { background: #fffdf8; }
.focus-mark {
    width: 48px; height: 48px; border-radius: 14px;
    margin: 0 auto 14px;
    display: grid; place-items: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800; font-size: 14px; letter-spacing: .02em;
    background: #fff;
    border: 1px solid rgba(10,22,40,.06);
    color: var(--ink);
}
.focus-mint .focus-mark { color: #047857; background: #ecfdf5; }
.focus-ice .focus-mark { color: #1d4ed8; background: #eff6ff; }
.focus-lilac .focus-mark { color: #6d28d9; background: #f5f3ff; }
.focus-peach .focus-mark { color: #c2410c; background: #fff7ed; }
.focus-sand .focus-mark { color: #b45309; background: #fffbeb; }
.focus-card b { display: block; font-size: 16px; }
.focus-meta {
    display: inline-block;
    margin: 8px 0 6px;
    color: var(--emerald);
    font-weight: 800;
    font-size: 13px;
}
.focus-card small { color: #6b7280; display: block; line-height: 1.4; }

.marquee { overflow: hidden; }
.marquee-track {
    display: flex; gap: 12px; width: max-content;
    animation: ticker 28s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 999px; padding: 10px 16px; font-weight: 700; font-size: 14px;
}
.chip i {
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; font-size: 11px; font-style: normal; font-weight: 800;
    background: var(--ink);
}

.banner {
    background: linear-gradient(135deg, #fff7ed, #ecfdf5);
    border: 1px solid #e8f5ee;
    border-radius: 24px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.banner strong { display: block; font-size: 22px; font-family: "Plus Jakarta Sans", sans-serif; }
.banner p { margin: 6px 0 0; color: var(--muted); }

.section-dark { background: var(--ink); color: #fff; }
.section-dark .sub, .section-dark p { color: #9ca3af; }
.section-dark .kicker-pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #6ee7b7; }
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.number {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 28px 20px;
}
.number strong { display: block; font-size: 40px; font-weight: 900; margin-bottom: 6px; }
.number span { color: #9ca3af; }

.section-story { padding-top: 72px; }
.section-courses-first { padding-top: 72px; }
.founder {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.founder-copy { padding-top: 12px; }
.founder-photo {
    background: linear-gradient(180deg, #ecfdf5, #d1fae5);
    border-radius: 36px;
    min-height: 420px;
    display: grid;
    place-items: end center;
    overflow: hidden;
}
.founder-photo img { width: 86%; }
.quote {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 16px 0 20px;
}

.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.prog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .25s ease;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,22,40,.08); }
.prog-head { padding: 24px; position: relative; overflow: hidden; color: #fff; min-height: 132px; }
.prog-head::before, .prog-head::after {
    content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1);
}
.prog-head::before { width: 112px; height: 112px; right: -24px; top: -24px; }
.prog-head::after { width: 80px; height: 80px; right: -8px; bottom: -32px; }
.tone-emerald { background: linear-gradient(135deg, #10b981, #0d9488); }
.tone-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.tone-indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
.tone-rose { background: linear-gradient(135deg, #f43f5e, #be123c); }
.tone-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tone-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.prog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; position: relative; z-index: 1; }
.prog-tags span {
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
}
.prog-head h3 { margin: 0; font-size: 20px; position: relative; z-index: 1; }
.prog-body { padding: 22px; }
.prog-body p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.prog-meta {
    display: flex; gap: 16px; flex-wrap: wrap;
    font-size: 12px; color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 14px; margin-bottom: 14px;
}
.prog-meta i { color: var(--emerald); margin-right: 4px; }
.prog-link { color: var(--emerald); font-weight: 800; font-size: 14px; }
.section-cta { margin-top: 36px; }

.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.adv { display: grid; gap: 16px; }
.adv-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; }
.adv-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--ink); color: #6ee7b7;
    display: grid; place-items: center;
}
.adv-item p { margin: 4px 0 0; color: var(--muted); }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.story {
    background: #fff;
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.story h3 { margin: 0 0 10px; font-size: 20px; }
.story p { color: var(--muted); min-height: 92px; }

.about-photo {
    margin-top: 28px;
    background: linear-gradient(180deg, #ecfdf5, #d1fae5);
    border-radius: 28px;
    overflow: hidden;
    min-height: 280px;
    display: grid;
    place-items: end center;
}
.about-photo img { width: 78%; }

.about-faq { max-width: 760px; }
.faq-list { display: grid; gap: 10px; }
.faq {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
}
.faq button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: none;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
.faq button i { color: var(--emerald); transition: transform .2s ease; }
.faq.is-open button i { transform: rotate(180deg); }
.faq-body {
    display: none;
    padding: 0 18px 16px;
    color: var(--muted);
    font-size: 15px;
}
.faq.is-open .faq-body { display: block; }
.story-who { display: flex; gap: 12px; align-items: center; }
.story-who b { display: block; }
.story-who span { color: #6b7280; font-size: 13px; }
.story-avatar {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    font-weight: 800; font-size: 16px; color: #065f46;
    background: #ecfdf5; flex-shrink: 0;
}

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.visit-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 28px;
    padding: 32px;
}
.map-wrap { border-radius: 28px; overflow: hidden; min-height: 340px; border: 1px solid #eef2f7; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; }

.cta-box {
    background: #111827;
    color: #fff;
    border-radius: 28px;
    padding: 44px 40px;
    margin-bottom: 8px;
}
.cta-box h2 { color: #fff; }
.cta-box p { color: #9ca3af; }
.cta-box .btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.cta-box .btn-ghost:hover { border-color: #fff; }

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    padding: 140px 0 72px;
    overflow: hidden;
    background: #fff;
}
.page-hero-copy { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; margin: 16px 0 12px; }
.page-hero .lead { color: var(--muted); font-size: 18px; max-width: 620px; }
.course-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.subject-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.subject-list li {
    background: #f3f4f6;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}

.contact-intro {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
.section-contact-cards {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px clamp(24px, 5vw, 48px) 64px;
    box-sizing: border-box;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: min(1200px, 100%);
    margin: 0 auto;
}
.contact-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(10,22,40,.04);
    transition: .2s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: #d1fae5; }
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--emerald-soft);
    color: var(--emerald);
    margin-bottom: 14px;
}
.contact-card h3 { margin: 0 0 8px; font-size: 18px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: start;
}
.contact-form-card, .contact-aside .visit-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 28px;
    padding: 32px;
}
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 6px; }
.contact-form label span { font-size: 13px; font-weight: 700; color: #374151; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #6ee7b7;
    box-shadow: 0 0 0 4px rgba(16,185,129,.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-alert {
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
}
.form-alert.is-success { background: #ecfdf5; color: #047857; }
.form-alert.is-error { background: #fef2f2; color: #b91c1c; }
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}
.contact-aside { display: grid; gap: 18px; }
.contact-form-card h2, .contact-aside h2 { margin: 10px 0 8px; }
.site-footer { background: #070b12; color: #9ca3af; padding: 72px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.15fr; gap: 28px; }
.site-footer h4 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 9px 0; font-size: 14px; }
.site-footer a:hover { color: #6ee7b7; }
.footer-brand img { height: 42px; background: #fff; border-radius: 8px; padding: 4px 8px; margin-bottom: 14px; }
.footer-brand p { margin: 0; max-width: 320px; line-height: 1.7; }
.footer-bottom {
    margin-top: 36px;
    padding: 16px 0 4px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    font-size: 12px;
    letter-spacing: .02em;
}
.footer-copy {
    color: #8b93a2;
    white-space: nowrap;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
}
.artliery-credits--footer {
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
}
.artliery-credit-link {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}
.artliery-credit-link:hover { color: #6ee7b7; }

.artliery-credits--float { flex-shrink: 0; }
.artliery-credit-combo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 4px 3px 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 24px rgba(10,22,40,.22);
    transition: background .2s ease, box-shadow .2s ease;
}
.artliery-credits--float .artliery-credit-combo {
    gap: 4px;
    padding: 2px 3px 2px 8px;
    box-shadow: 0 6px 18px rgba(10,22,40,.18);
}
.artliery-credit-combo:hover,
.artliery-credit-combo:focus-within {
    background: rgba(30, 30, 30, 0.96);
    box-shadow: 0 10px 28px rgba(10,22,40,.28);
}
.artliery-credits--float .artliery-credit-combo:hover,
.artliery-credits--float .artliery-credit-combo:focus-within {
    box-shadow: 0 8px 22px rgba(10,22,40,.22);
}
.artliery-credit-label {
    color: #e5e7eb;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap;
}
.artliery-credits--float .artliery-credit-label { font-size: 10px; }
.artliery-credit-label:hover { color: #fff; }
.artliery-credit-wa-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.artliery-credits--float .artliery-credit-wa-inline {
    width: 18px;
    height: 18px;
    font-size: 10px;
}
.artliery-credit-wa-inline:hover { filter: brightness(1.08); color: #fff; }

.com-container {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.com-stack { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.com-button {
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center; border: 0; cursor: pointer;
    box-shadow: 0 10px 24px rgba(10,22,40,.18); background: #fff;
}
.wa-button { background: #25d366; }
.call-button { background: var(--ink); }
.com-options { display: none; margin-bottom: 10px; background: #fff; border-radius: 16px; box-shadow: 0 16px 40px rgba(10,22,40,.12); min-width: 240px; overflow: hidden; }
.com-options.is-open { display: block; }
.com-option { display: flex; gap: 12px; align-items: center; padding: 12px 14px; cursor: pointer; }
.com-option:hover { background: #f8fafc; }
.com-option-text h4 { margin: 0; font-size: 14px; }
.com-option-text p { margin: 2px 0 0; font-size: 12px; color: #6b7280; }

@media (max-width: 1100px) {
    .focus-grid { grid-template-columns: repeat(3, 1fr); }
    .prog-grid, .story-grid, .numbers, .footer-grid, .contact-layout { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
    .hero-media-photo { object-position: 80% center; }
    .hero-media::after {
        background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.55) 100%);
    }
    .page-hero { min-height: 400px; padding: 128px 0 64px; }
    .hero-grid, .founder, .why-grid, .visit-grid, .contact-layout, .contact-cards { grid-template-columns: 1fr; }
    .hero-grid { flex-direction: column; }
    .hero-copy, .hero-visual { width: 100%; }
    .hero-gallery { height: 340px; }
    .nav-links {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px 20px;
        border-bottom: 1px solid #e5e7eb;
    }
    .nav-links.is-open { display: flex; }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .nav-links.is-open .nav-cta { display: inline-flex; }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0;
        padding-left: 20px;
        padding-right: 72px;
    }
    .footer-copy {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        flex: none;
    }
    .footer-bottom .artliery-credits { display: none; }
}
@media (max-width: 640px) {
    .com-container { right: 14px; bottom: 14px; }
    .hero { padding: 110px 0 72px; }
    .focus-grid, .prog-grid, .story-grid, .numbers, .footer-grid { grid-template-columns: 1fr; }
    .hero-tab span { display: none; }
    .hero-stats { flex-wrap: wrap; }
    .hero-actions, .banner, .form-row, .form-actions { flex-direction: column; align-items: stretch; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
}
