/* ============================================
   SZEPTEM MALOWANE — Yoga Nidra
   Ethereal, dreamy, nature-inspired design
   ============================================ */

:root {
    /* Olive Garden palette — parchment, sand, olive, sage, bark, olivewood */
    --clr-bg: #f5f0e8;
    --clr-bg-warm: #ede6da;
    --clr-surface: #e8e0d0;
    --clr-surface-light: #f0ebe1;
    --clr-border: rgba(107, 99, 68, 0.12);

    --clr-text: #4a4a3a;
    --clr-text-muted: #7a7660;
    --clr-text-bright: #2d2e1e;

    --clr-accent: #6b6344;
    --clr-accent-warm: #8a9570;
    --clr-accent-glow: rgba(138, 149, 112, 0.15);

    --clr-parchment: #e8e0d0;
    --clr-sand: #c4b99a;
    --clr-olive: #b5c4a1;
    --clr-sage: #8a9570;
    --clr-bark: #6b6344;
    --clr-olivewood: #2d2e1e;

    /* Gradients */
    --grad-hero: linear-gradient(170deg, #e8e0d0 0%, #d5ccb8 30%, #c8d4b8 60%, #e8e0d0 100%);
    --grad-card: linear-gradient(145deg, rgba(232, 224, 208, 0.8), rgba(245, 240, 232, 0.6));
    --grad-accent: linear-gradient(135deg, #8a9570, #6b6344);

    /* Typography */
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Raleway', sans-serif;
    --ff-accent: 'Lora', Georgia, serif;

    /* Spacing */
    --section-pad: clamp(5rem, 10vw, 9rem);
    --container-width: 1140px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--clr-text);
    background: var(--clr-bg);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--clr-accent-warm); }

::selection {
    background: rgba(138, 149, 112, 0.3);
    color: var(--clr-text-bright);
}

/* ---- Layout ---- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow { max-width: 860px; }

.text-center { text-align: center; }

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section__label {
    display: block;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--ff-display);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--clr-text-bright);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section__title--large {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.section__intro {
    font-family: var(--ff-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
}

/* ---- Particles ---- */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 22s; }
.particle:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; animation-delay: 7s; animation-duration: 25s; }
.particle:nth-child(4) { left: 55%; animation-delay: 2s; animation-duration: 20s; }
.particle:nth-child(5) { left: 70%; animation-delay: 5s; animation-duration: 23s; }
.particle:nth-child(6) { left: 85%; animation-delay: 8s; animation-duration: 19s; }
.particle:nth-child(7) { left: 15%; animation-delay: 10s; animation-duration: 21s; }
.particle:nth-child(8) { left: 60%; animation-delay: 12s; animation-duration: 24s; }

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.3; }
    90% { opacity: 0; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
    transition: background 0.5s var(--ease-smooth), padding 0.4s;
}

.nav--scrolled {
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--clr-border);
}

.nav__logo {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--clr-text-bright);
    letter-spacing: 0.05em;
}

.nav__logo:hover { color: var(--clr-accent); }

.nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--grad-accent);
    transition: width 0.4s var(--ease-out);
}

.nav__links a:hover { color: var(--clr-text-bright); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    padding: 0.5rem 1.25rem !important;
    border: 1px solid var(--clr-accent);
    border-radius: 2rem;
    color: var(--clr-accent) !important;
}

.nav__cta:hover {
    background: var(--clr-accent);
    color: var(--clr-parchment) !important;
}

.nav__cta::after { display: none !important; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--clr-text-bright);
    transition: transform 0.3s, opacity 0.3s;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-olivewood);
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero__tagline {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 2.5rem;
}

.hero__title {
    font-family: var(--ff-display);
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.1;
    color: var(--clr-text-bright);
    margin-bottom: 2rem;
}

.hero__title-line {
    display: block;
}

.hero__title-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero__subtitle {
    font-family: var(--ff-accent);
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

.hero__btn {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-text-bright);
    border: 1px solid rgba(138, 149, 112, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.hero__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-accent);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: inherit;
}

.hero__btn:hover {
    color: var(--clr-parchment);
    border-color: transparent;
    transform: translateY(-2px);
}

.hero__btn:hover::before { opacity: 1; }
.hero__btn span, .hero__btn { position: relative; z-index: 1; }

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--clr-accent), transparent);
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* ---- About ---- */
.section--about {
    background:
        radial-gradient(ellipse 50% 40% at 0% 50%, rgba(181, 196, 161, 0.15) 0%, transparent 70%),
        var(--clr-bg);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.about__image-frame {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about__text p {
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.about__tags {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: 2rem;
    color: var(--clr-text-muted);
    background: var(--clr-surface);
}

/* ---- Yoga Nidra Section ---- */
.section--nidra {
    background:
        radial-gradient(ellipse 60% 30% at 80% 20%, rgba(138, 149, 112, 0.08) 0%, transparent 70%),
        var(--clr-bg-warm);
}

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

.nidra__card {
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: transform 0.5s var(--ease-out), border-color 0.5s;
}

.nidra__card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 149, 112, 0.18);
}

.nidra__card-icon {
    width: 48px;
    height: 48px;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

.nidra__card h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--clr-text-bright);
    margin-bottom: 1rem;
}

.nidra__card p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.nidra__quote {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    position: relative;
}

.nidra__quote::before,
.nidra__quote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--grad-accent);
}

.nidra__quote::before { top: 0; }
.nidra__quote::after { bottom: 0; }

.nidra__quote p {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--clr-text-bright);
}

/* Stages */
.nidra__stages {
    margin-top: 2rem;
}

.nidra__stages-title {
    font-family: var(--ff-display);
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--clr-text-bright);
    text-align: center;
    margin-bottom: 3rem;
}

.stages__list {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.stages__list::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
    opacity: 0.2;
}

.stage {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem 0;
}

.stage__number {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-accent);
    min-width: 56px;
    text-align: center;
    position: relative;
}

.stage__content h4 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--clr-text-bright);
    margin-bottom: 0.25rem;
}

.stage__content p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
}

/* ---- Oferta ---- */
.section--oferta {
    background:
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(196, 185, 154, 0.12) 0%, transparent 70%),
        var(--clr-bg);
}

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

.oferta__card {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    transition: transform 0.5s var(--ease-out), border-color 0.5s;
}

.oferta__card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 149, 112, 0.18);
}

.oferta__card-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.oferta__card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.oferta__card:hover .oferta__card-visual img {
    transform: scale(1.05);
}

.oferta__card-body {
    padding: 2rem;
}

.oferta__card-body h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--clr-text-bright);
    margin-bottom: 0.75rem;
}

.oferta__card-body p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.25rem;
}

.oferta__price {
    font-family: var(--ff-accent);
    font-size: 0.9rem;
    color: var(--clr-accent-warm);
}

/* ---- Harmonogram ---- */
.section--schedule {
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(138, 149, 112, 0.07) 0%, transparent 70%),
        var(--clr-bg-warm);
}

.schedule__list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule__item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: 1rem;
    transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.schedule__item:hover {
    border-color: rgba(138, 149, 112, 0.18);
    transform: translateX(4px);
}

.schedule__date {
    text-align: center;
    min-width: 60px;
}

.schedule__day {
    display: block;
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--clr-text-bright);
    line-height: 1;
}

.schedule__month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-accent);
    margin-top: 0.25rem;
}

.schedule__details {
    flex: 1;
}

.schedule__details h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--clr-text-bright);
    margin-bottom: 0.25rem;
}

.schedule__details h3 em {
    color: var(--clr-accent);
}

.schedule__details p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.schedule__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.schedule__price {
    font-family: var(--ff-accent);
    color: var(--clr-accent-warm);
    font-size: 0.95rem;
}

.schedule__btn {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--clr-accent);
    border-radius: 2rem;
    color: var(--clr-accent);
    white-space: nowrap;
    transition: all 0.4s var(--ease-out);
}

.schedule__btn:hover {
    background: var(--clr-accent);
    color: var(--clr-parchment);
}

.schedule__note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.92rem;
    color: var(--clr-text-muted);
}

.schedule__note a {
    color: var(--clr-accent);
}

/* ---- Blog ---- */
.section--blog {
    background: var(--clr-bg);
}

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

.blog__card {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    transition: transform 0.5s var(--ease-out), border-color 0.5s;
}

.blog__card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 149, 112, 0.18);
}

.blog__card-image {
    height: 180px;
    position: relative;
}

.blog__card-image--1 {
    background: linear-gradient(145deg, #c4b99a 0%, #b5c4a1 50%, #d5ccb8 100%);
}

.blog__card-image--2 {
    background: linear-gradient(145deg, #b5c4a1 0%, #8a9570 50%, #b5c4a1 100%);
}

.blog__card-image--3 {
    background: linear-gradient(145deg, #8a9570 0%, #6b6344 50%, #8a9570 100%);
}

.blog__card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 240, 232, 0.25), transparent 60%);
}

.blog__card-body {
    padding: 1.75rem;
}

.blog__date {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.08em;
}

.blog__card-body h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--clr-text-bright);
    margin: 0.75rem 0;
    line-height: 1.35;
}

.blog__card-body p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.blog__read-more {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-accent);
    position: relative;
}

.blog__read-more::after {
    content: ' \2192';
    transition: transform 0.3s;
    display: inline-block;
}

.blog__read-more:hover::after {
    transform: translateX(4px);
}

/* ---- FAQ ---- */
.section--faq {
    background:
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(181, 196, 161, 0.12) 0%, transparent 70%),
        var(--clr-bg-warm);
}

.faq__list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq__item {
    border: 1px solid var(--clr-border);
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--clr-surface);
    transition: border-color 0.4s;
}

.faq__item[open] {
    border-color: rgba(138, 149, 112, 0.18);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--clr-text-bright);
    list-style: none;
    user-select: none;
    transition: color 0.3s;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover { color: var(--clr-accent); }

.faq__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--clr-accent);
    transition: transform 0.4s var(--ease-out);
}

.faq__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq__icon::after {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq__item[open] .faq__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq__answer {
    padding: 0 1.75rem 1.5rem;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.faq__answer a {
    color: var(--clr-accent);
}

/* ---- Contact ---- */
.section--contact {
    background:
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(138, 149, 112, 0.07) 0%, transparent 70%),
        var(--clr-bg);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact__item {
    margin-bottom: 2rem;
}

.contact__item h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
}

.contact__item a,
.contact__item p {
    font-size: 1.05rem;
    color: var(--clr-text-bright);
    line-height: 1.6;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__group {
    position: relative;
}

.form__group input,
.form__group textarea {
    width: 100%;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--clr-text-bright);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 0.5rem;
    padding: 1.1rem 1.25rem 0.6rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-glow);
}

.form__group label {
    position: absolute;
    left: 1.25rem;
    top: 0.9rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
}

.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
    top: 0.3rem;
    font-size: 0.65rem;
    color: var(--clr-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form__submit {
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-parchment);
    background: var(--grad-accent);
    border: none;
    border-radius: 3rem;
    padding: 1rem 2.5rem;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(138, 149, 112, 0.25);
}

/* ---- Footer ---- */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-bg);
}

.footer__inner {
    text-align: center;
}

.footer__logo {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--clr-text-bright);
}

.footer__tagline {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin: 0.75rem 0 1.5rem;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    transition: all 0.4s var(--ease-out);
}

.footer__social a:hover {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    opacity: 0.6;
}

/* ---- Reveal animations ---- */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal { transform: translateY(20px); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
    .nav__toggle { display: flex; }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(245, 240, 232, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.5s var(--ease-out);
        border-left: 1px solid var(--clr-border);
    }

    .nav__links.open { right: 0; }

    .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .nav__toggle.open span:nth-child(2) { opacity: 0; }
    .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

    .about__grid { grid-template-columns: 1fr; gap: 2rem; }
    .about__image-frame { max-width: 300px; margin: 0 auto; }

    .nidra__grid,
    .oferta__grid,
    .blog__grid { grid-template-columns: 1fr; }

    .schedule__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .schedule__date {
        display: flex;
        gap: 0.5rem;
        align-items: baseline;
    }

    .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .section__title {
        font-size: clamp(1.7rem, 6vw, 2.5rem);
    }

    .stages__list::before { left: 20px; }
    .stage__number { min-width: 40px; font-size: 1.2rem; }
}
