:root {
    --brand: #1a7a3a;
    --brand-hover: #156532;
    --brand-glow: rgba(26, 122, 58, 0.2);
    --bg: #f7f3ec;
    --bg-alt: #ffffff;
    --header-bg: #0a2e1a;
    --gold: #d4a853;
    --gold-dim: rgba(212, 168, 83, 0.12);
    --text: #1a1a1a;
    --text-soft: #5a5a5a;
    --text-muted: #9a9a9a;
    --line: #e0d8cc;
    --radius: 12px;
    --radius-sm: 8px;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-family: "Sora", "Manrope", sans-serif;
}

h1 { font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem); font-weight: 650; }
h3 { font-size: 1rem; font-weight: 600; }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
    width: min(960px, calc(100% - 3rem));
    margin: 0 auto;
}

/* --- Header --- */

.header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(236, 232, 224, 0.9);
    flex-shrink: 0;
}

.logo img {
    height: 28px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav a {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(236, 232, 224, 0.5);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
}

.nav a:hover {
    color: rgba(236, 232, 224, 0.8);
    background: rgba(236, 232, 224, 0.06);
}

.nav a.active {
    color: #fff;
    background: rgba(236, 232, 224, 0.1);
}

.lang-switch {
    display: inline-flex;
    margin-left: 0.3rem;
    padding: 0.1rem;
    border: 1px solid rgba(236, 232, 224, 0.1);
    border-radius: 6px;
}

.lang-btn {
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: rgba(236, 232, 224, 0.3);
    font: inherit;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.35rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: rgba(236, 232, 224, 0.1);
    color: rgba(236, 232, 224, 0.85);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(236, 232, 224, 0.12);
    border-radius: 6px;
    padding: 0.35rem;
    cursor: pointer;
    color: rgba(236, 232, 224, 0.5);
}

/* --- Panels --- */

.panel {
    display: none;
    padding: 3rem 0 4rem;
}

.panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

/* --- Eyebrow --- */

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand);
    display: block;
    margin-bottom: 0.5rem;
}

/* --- Buttons --- */

.btn {
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.55rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    gap: 0.35rem;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 3px 12px rgba(26, 122, 58, 0.2);
}

.btn-primary:hover {
    background: var(--brand-hover);
    box-shadow: 0 5px 18px rgba(26, 122, 58, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-soft);
    border-color: var(--line);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: #c0b8a8;
}

/* --- Notice --- */

.notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 0.75rem;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-size: 0.82rem;
    color: var(--text-soft);
}

.notice strong { color: var(--text); }

.notice a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --- Hero --- */

.hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.hero h1 {
    margin-bottom: 0.75rem;
    max-width: 18ch;
}

.hero-sub {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 56ch;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
}

.hero-trust span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-trust svg {
    width: 13px;
    height: 13px;
    stroke: var(--brand);
    flex-shrink: 0;
}

/* --- Companies card --- */

.companies-card {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.companies-card h2 {
    margin-bottom: 0.75rem;
}

.companies-card > p {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 56ch;
}

.companies-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.companies-features li {
    font-size: 0.85rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.companies-features svg {
    width: 14px;
    height: 14px;
    stroke: var(--brand);
    flex-shrink: 0;
}

/* --- Panel headers --- */

.panel-header {
    margin-bottom: 1.5rem;
}

.panel-header h2 {
    margin-bottom: 0.5rem;
}

.panel-header p {
    color: var(--text-soft);
    font-size: 0.92rem;
    max-width: 52ch;
}

/* --- Programs --- */

.program-list {
    display: grid;
    gap: 0.5rem;
}

.program-item {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    align-items: center;
    transition: border-color 0.2s;
}

.program-item:hover {
    border-color: var(--brand);
}

.program-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin-bottom: 0.15rem;
}

.program-item h3 {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.program-desc {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.program-link {
    color: var(--brand);
    font-weight: 600;
    font-size: 0.82rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}

.program-link:hover { gap: 0.5rem; }

.program-link svg {
    width: 12px;
    height: 12px;
}

/* --- CTA row --- */

.cta-row {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.cta-row p {
    color: var(--text-soft);
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

/* --- Approach --- */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.step {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.25rem;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.step p {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* --- About --- */

.about-layout {
    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 2.5rem;
    align-items: center;
}

.about-photo {
    width: min(180px, 100%);
    justify-self: center;
}

.about-photo img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid var(--gold-dim);
}

.about-copy p {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-top: 1rem;
}

.about-facts li {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    display: grid;
    gap: 0.1rem;
}

.about-facts strong {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
}

.about-facts span {
    font-size: 0.78rem;
    color: var(--text-soft);
    line-height: 1.3;
}

/* --- FAQ --- */

.faq-list {
    display: grid;
    gap: 0.4rem;
    max-width: 600px;
}

.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--gold);
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-family: inherit;
}

.faq-trigger::after {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    transition: transform 0.3s;
}

.faq-item.open .faq-trigger::after {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.open .faq-panel {
    max-height: 200px;
}

.faq-panel p {
    padding: 0 1rem 0.85rem;
    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* --- Footer --- */

.footer {
    border-top: 1px solid var(--line);
    padding: 1.5rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer a { color: var(--text-muted); transition: color 0.2s; }
.footer a:hover { color: var(--text); }

.footer-links {
    display: flex;
    gap: 1rem;
}

/* --- Blog --- */

.blog-grid {
    display: grid;
    gap: 0.75rem;
}

.blog-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    transition: all 0.2s;
}

.blog-card:hover {
    border-color: var(--brand);
}

.blog-card-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.blog-card h2 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.blog-card h2 a { color: var(--text); transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--brand); }

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 600;
}

.blog-article {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.blog-article-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.blog-article-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.blog-article-body p {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.blog-article-body h2 {
    font-size: 1.1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

.blog-cta {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    text-align: center;
}

.blog-cta p {
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Cookie --- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    padding: 0.75rem 1rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show { display: block; }

.cookie-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-actions { display: flex; gap: 0.4rem; }

.cookie-content p {
    font-size: 0.82rem;
    color: var(--text-soft);
}

.cookie-content a {
    color: var(--brand);
    text-decoration: underline;
}

/* --- Reveal --- */

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) and (min-width: 701px) {
    .nav a {
        font-size: 0.72rem;
        padding: 0.25rem 0.42rem;
    }

    .logo span { display: none; }
}

/* --- Booking / Contact / Legal pages --- */

.contact-main,
.booking-main,
.legal-main {
    padding: 2rem 0 3rem;
}

.contact-layout,
.booking-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 700px) {
    .contact-layout,
    .booking-layout,
    .legal-layout {
        grid-template-columns: 1fr;
    }
}

.contact-card,
.form-card,
.legal-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.contact-card h2,
.legal-card h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-card ol {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-card li,
.legal-card p,
.legal-card li {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand);
    margin-top: 0.75rem;
    margin-bottom: 0.3rem;
}

.legal-card ul {
    display: grid;
    gap: 0.3rem;
}

.legal-card ul li {
    padding-left: 0.85rem;
    position: relative;
}

.legal-card ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

.legal-card a {
    color: var(--brand);
    font-weight: 600;
}

.contact-block {
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.contact-block h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--brand);
    margin-bottom: 0.4rem;
}

.contact-block a {
    font-weight: 600;
    color: var(--brand);
}

.contact-block ul {
    display: grid;
    gap: 0.3rem;
}

.contact-block ul li {
    padding-left: 0.85rem;
    position: relative;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.contact-block ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.contact-highlights li {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-soft);
}

.slot-booker {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem;
    background: var(--bg-alt);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.slot-header h3,
.slot-time-title {
    font-size: 1rem;
    margin: 0;
}

.slot-nav {
    display: inline-flex;
    gap: 0.4rem;
}

.slot-nav-btn {
    border: 1px solid var(--line);
    background: var(--bg-alt);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.slot-nav-btn:hover {
    border-color: var(--brand);
    color: var(--text);
}

.slot-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slot-range-label {
    margin-bottom: 0.6rem;
    color: var(--text-soft);
    font-size: 0.85rem;
}

.slot-timezone {
    margin-bottom: 0.65rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.slot-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.slot-day-btn {
    border: 1px solid var(--line);
    background: var(--bg-alt);
    color: var(--text-soft);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.25rem;
    text-align: center;
    cursor: pointer;
    display: grid;
    gap: 0.1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.slot-day-btn:hover {
    border-color: var(--brand);
}

.slot-day-btn.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.slot-day-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.75;
}

.slot-day-date {
    font-weight: 700;
    font-size: 0.88rem;
}

.slot-times {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.slot-time-btn {
    border: 1px solid var(--line);
    background: var(--bg-alt);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 0.35rem 0.35rem;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.slot-time-btn:hover {
    border-color: var(--brand);
}

.slot-time-btn.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.booking-request-form {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.booking-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

/* --- Form fields --- */

.field {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
}

.field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(26, 122, 58, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.preset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.preset-chip {
    border: 1px solid var(--line);
    background: var(--bg-alt);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.preset-chip:hover {
    border-color: var(--brand);
    color: var(--text);
}

.preset-chip.active {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.form-notice {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-soft);
    min-height: 1.2rem;
}

.form-notice.show {
    color: var(--brand);
    font-weight: 600;
}

.form-microcopy {
    margin-top: 0.4rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-microcopy a {
    color: var(--brand);
    font-weight: 600;
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-toolbar {
        display: grid;
        grid-template-columns: 1fr;
    }

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

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

/* --- Mobile --- */

@media (max-width: 700px) {
    .menu-toggle { display: inline-flex; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-alt);
        border-bottom: 1px solid var(--line);
        padding: 0.5rem;
        flex-direction: column;
        z-index: 10;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav.open { display: flex; }

    .nav a {
        color: var(--text-soft);
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .nav a:hover { background: var(--bg); color: var(--text); }

    .lang-switch { margin-left: 0; align-self: flex-start; margin-top: 0.25rem; }
    .lang-btn { font-size: 0.7rem; padding: 0.2rem 0.4rem; }
    .lang-btn.active { background: var(--brand); color: #fff; }

    .header { position: relative; }
    .header-inner { height: 54px; }

    .panel { padding: 2rem 0 3rem; }

    .steps { grid-template-columns: 1fr; }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-photo { width: min(120px, 100%); }

    .program-item { grid-template-columns: 1fr; }
    .program-link { justify-self: start; }

    .about-facts { grid-template-columns: 1fr 1fr; }

    .footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
