:root {
    --forest: #2D4A3E;
    --forest-light: #3A5F50;
    --terracotta: #C87D5B;
    --terracotta-dark: #B06A48;
    --cream: #FBF7F0;
    --cream-dark: #F0E8D8;
    --charcoal: #1A1A1A;
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --stone: #E2DCD3;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
    --shadow-xl: 0 24px 64px rgba(26, 26, 26, 0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 180ms ease;
    --transition-smooth: 320ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1240px;
    --header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

::selection {
    background: var(--terracotta);
    color: var(--white);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    transition: all var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.97);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--forest);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    z-index: 1001;
}

.logo__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.logo__text span {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-top: -2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav__link {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: -0.01em;
}

.nav__link:hover,
.nav__link:focus-visible {
    color: var(--forest);
    background: rgba(45, 74, 62, 0.05);
}

.nav__link--cta {
    background: var(--terracotta);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-left: 8px;
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(200, 125, 91, 0.25);
}

.nav__link--cta:hover,
.nav__link--cta:focus-visible {
    background: var(--terracotta-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 125, 91, 0.35);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    width: 40px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
    .hamburger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right var(--transition-smooth);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
        align-items: stretch;
    }
    .nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 2px;
        align-items: stretch;
    }
    .nav__link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }
    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 26, 0.5);
        z-index: 999;
    }
    .nav__overlay.active {
        display: block;
    }
}

.hero {
    padding: calc(var(--header-height) + 60px) 28px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 85vh;
}

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding-top: calc(var(--header-height) + 32px);
        padding-bottom: 48px;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-block;
    background: rgba(200, 125, 91, 0.1);
    color: var(--terracotta);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--forest);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero__title em {
    font-style: italic;
    color: var(--terracotta);
    position: relative;
}

.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(212, 168, 83, 0.35);
    z-index: -1;
    border-radius: 4px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 125, 91, 0.3);
}
.btn--primary:hover {
    background: var(--terracotta-dark);
    box-shadow: 0 6px 24px rgba(200, 125, 91, 0.4);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}
.btn--outline:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--lg {
    padding: 16px 34px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}
.btn--sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__shape {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, var(--cream-dark) 0%, var(--cream) 40%, #e8d5c4 100%);
    border-radius: 40% 60% 55% 45% / 45% 50% 50% 55%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: morphBlob 14s ease-in-out infinite;
}

@keyframes morphBlob {
    0%,
    100% {
        border-radius: 40% 60% 55% 45% / 45% 50% 50% 55%;
    }
    25% {
        border-radius: 55% 45% 50% 50% / 55% 45% 55% 45%;
    }
    50% {
        border-radius: 45% 55% 45% 55% / 50% 55% 45% 50%;
    }
    75% {
        border-radius: 50% 50% 55% 45% / 45% 55% 50% 50%;
    }
}

.hero__shape-inner {
    position: absolute;
    inset: 8%;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(45, 74, 62, 0.06) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__shape-emoji {
    font-size: clamp(4rem, 10vw, 7rem);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    animation: floatEmoji 5s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-16px) rotate(3deg);
    }
}

.hero__floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--forest);
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
    pointer-events: none;
}
.hero__floating-badge--1 {
    top: 8%;
    right: 5%;
    animation-delay: 0s;
}
.hero__floating-badge--2 {
    bottom: 15%;
    left: 2%;
    animation-delay: -2.5s;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

.section {
    padding: 80px 28px;
}
.section--cream {
    background: var(--cream);
}
.section--dark {
    background: var(--forest);
    color: var(--white);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px;
}
.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--forest);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section--dark .section__title {
    color: var(--white);
}
.section__subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}
.section--dark .section__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.class-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.class-card__image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.class-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.class-card__image--pasta {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b8 50%, #dcc7a8 100%);
}
.class-card__image--pastry {
    background: linear-gradient(135deg, #fdf2e9 0%, #f5e0d0 50%, #edceb8 100%);
}
.class-card__image--sushi {
    background: linear-gradient(135deg, #eef5f2 0%, #dce8e2 50%, #c8dbd0 100%);
}
.class-card__image--bread {
    background: linear-gradient(135deg, #f9f2e7 0%, #efe0cc 50%, #e5ceb0 100%);
}

.class-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--white);
    color: var(--terracotta);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.class-card__body {
    padding: 22px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.class-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.class-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.class-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.class-card__desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.class-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0ece6;
    padding-top: 14px;
    gap: 10px;
}
.class-card__price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest);
}
.class-card__spots {
    font-size: 0.78rem;
    color: var(--terracotta);
    font-weight: 600;
}

.skeleton {
    background: linear-gradient(90deg, #f0ece6 25%, #e8e3d9 50%, #f0ece6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-card {
    height: 420px;
    border-radius: var(--radius-xl);
}

.how-it-works {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

@media (max-width: 720px) {
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    counter-increment: step;
}
.step-card__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}
.step-card__number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--terracotta);
    opacity: 0.5;
    animation: rotateDash 20s linear infinite;
}
@keyframes rotateDash {
    to {
        transform: rotate(360deg);
    }
}
.step-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 8px;
}
.step-card__desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.testimonial-strip {
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    gap: 28px;
    transition: transform var(--transition-smooth);
}
.testimonial-card {
    min-width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}
.testimonial-card__stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.testimonial-card__text {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}
.testimonial-card__author {
    font-weight: 700;
    color: var(--forest);
    font-size: 0.88rem;
}
.testimonial-card__author span {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 0.78rem;
}

.stats-row {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
@media (max-width: 640px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.stat-item__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: -0.02em;
}
.stat-item__label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.cta-section {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(150deg, var(--forest) 0%, var(--forest-light) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 720px) {
    .cta-section {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 24px;
    }
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.08);
    top: -60px;
    right: -60px;
    pointer-events: none;
}
.cta-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-section__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.cta-section__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer {
    background: #141410;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 28px 32px;
}
.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 860px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 480px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
}
.footer__col h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.footer__col ul {
    list-style: none;
}
.footer__col ul li {
    margin-bottom: 8px;
}
.footer__col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}
.footer__col ul li a:hover {
    color: var(--gold-light);
}
.footer__address {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}
.footer__address a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer__address a:hover {
    color: var(--gold-light);
}
.footer__bottom {
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    z-index: 5000;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner__text {
    font-size: 0.88rem;
    color: #444;
    max-width: 600px;
    line-height: 1.5;
}
.cookie-banner__text a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}
.modal-overlay.active .modal {
    transform: translateY(0);
}
.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f3ef;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--charcoal);
}
.modal__close:hover {
    background: #e8e3d9;
}
.modal__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.modal__subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 22px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0dbd2;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--charcoal);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(200, 125, 91, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.modal__success {
    text-align: center;
    padding: 30px 10px;
}
.modal__success-icon {
    font-size: 3.5rem;
    margin-bottom: 14px;
}
.modal__success-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--forest-light);
    transform: translateY(-3px);
}

.backdrop-blur {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.35);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}
.backdrop-blur.active {
    opacity: 1;
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}