/* YogaBalance Zentrum – Redesign v2
   Palette: Deep Navy · Coral · Sand · Purple accent */

:root {
    --navy: #0F3460;
    --navy-light: #1A4F7A;
    --coral: #E94560;
    --coral-dark: #C73E54;
    --sand: #FFF5EE;
    --sand-dark: #F5E6DA;
    --purple: #533483;
    --gold: #F4A261;
    --text: #1A1A2E;
    --muted: #5C5C7A;
    --bg: #FAF9F6;
    --white: #FFFFFF;
    --grad: linear-gradient(135deg, #E94560 0%, #533483 100%);
    --grad-soft: linear-gradient(160deg, rgba(15,52,96,0.92), rgba(83,52,131,0.75));
    --shadow: 0 16px 48px rgba(15, 52, 96, 0.1);
    --shadow-hover: 0 24px 56px rgba(233, 69, 96, 0.18);
    --r: 20px;
    --r-lg: 32px;
    --font-display: 'Lora', Georgia, serif;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --nav-h: 72px;
    --ease: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
a { color: var(--coral); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--purple); }
img { max-width: 100%; height: auto; display: block; }

.tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 0.75rem;
}
.tag::before { content: ''; width: 24px; height: 2px; background: var(--coral); }

.section { padding: 5rem 0; position: relative; }
.section-title { font-size: clamp(2rem, 4.5vw, 2.85rem); margin-bottom: 0.75rem; }
.section-lead { color: var(--muted); max-width: 540px; font-size: 1.05rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* Preloader */
.preloader { position: fixed; inset: 0; z-index: 99999; background: var(--bg); display: grid; place-items: center; transition: opacity 0.5s, visibility 0.5s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-dot { width: 12px; height: 12px; background: var(--coral); border-radius: 50%; animation: pulse 1s ease infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.8);opacity:0.5} }

/* Nav */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); transition: background var(--ease), box-shadow var(--ease); }
.site-nav.sticky { background: rgba(250,249,246,0.94); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(15,52,96,0.06); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.65rem; color: var(--text); text-decoration: none; }
.logo-symbol {
    width: 40px; height: 40px; background: var(--grad);
    border-radius: 12px; display: grid; place-items: center;
    font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: #fff;
}
.logo-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.1; }
.logo-name em { display: block; font-style: normal; font-weight: 500; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); }

.desktop-nav { display: none; gap: 0.25rem; }
@media (min-width: 992px) { .desktop-nav { display: flex; } }
.desktop-nav a {
    font-family: var(--font-head); font-weight: 500; font-size: 0.88rem;
    color: var(--muted); padding: 0.45rem 1rem; border-radius: 999px; transition: all var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--navy); background: var(--sand); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle { width: 42px; height: 42px; border: none; background: var(--sand); border-radius: 10px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
@media (min-width: 992px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 18px; height: 2px; background: var(--navy); border-radius: 2px; }

.btn-main {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: var(--grad); color: #fff !important; border: none;
    font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
    padding: 0.7rem 1.5rem; border-radius: 999px;
    transition: all var(--ease); box-shadow: 0 6px 24px rgba(233,69,96,0.35);
}
.btn-main:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #fff !important; }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--navy); color: var(--navy); background: transparent;
    font-family: var(--font-head); font-weight: 600; padding: 0.65rem 1.4rem;
    border-radius: 999px; transition: all var(--ease);
}
.btn-outline:hover { background: var(--navy); color: #fff !important; }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem; cursor: pointer; }

/* Hero – split editorial */
.hero-split {
    min-height: 100vh; display: grid; grid-template-columns: 1fr;
    padding-top: var(--nav-h);
}
@media (min-width: 992px) { .hero-split { grid-template-columns: 1fr 1fr; min-height: 100vh; } }

.hero-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 1.5rem 3rem;
    background: var(--sand);
    position: relative;
}
@media (min-width: 992px) { .hero-text { padding: 4rem 5vw 4rem  calc((100vw - 1140px)/2 + 12px); } }

.hero-text h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 1.25rem; color: var(--navy); }
.hero-text h1 span { color: var(--coral); font-style: italic; }
.hero-text p { color: var(--muted); font-size: 1.05rem; max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--sand-dark); }
.hero-meta div strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); }
.hero-meta div span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual { position: relative; min-height: 50vh; overflow: hidden; }
@media (min-width: 992px) { .hero-visual { min-height: auto; } }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 50vh; }
.hero-visual-overlay {
    position: absolute; inset: 0;
    background: var(--grad-soft);
}
.hero-float-card {
    position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    border-radius: var(--r); padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: var(--shadow);
}
.hero-float-card i { font-size: 1.5rem; color: var(--coral); }
.hero-float-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* Wave divider */
.wave-divider { line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; height: 60px; }
.wave-divider.flip { transform: rotate(180deg); margin-top: 0; margin-bottom: -1px; }

/* Why – offset cards */
.why-mosaic {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem;
}
.why-tile {
    background: var(--white); border-radius: var(--r);
    padding: 2rem; box-shadow: var(--shadow);
    transition: transform var(--ease), box-shadow var(--ease);
    border: 1px solid rgba(15,52,96,0.04);
}
.why-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.why-tile:nth-child(1) { grid-column: span 12; }
.why-tile:nth-child(2) { grid-column: span 6; }
.why-tile:nth-child(3) { grid-column: span 6; }
.why-tile:nth-child(4) { grid-column: span 12; }
@media (min-width: 768px) {
    .why-tile:nth-child(1) { grid-column: span 5; }
    .why-tile:nth-child(2) { grid-column: span 7; }
    .why-tile:nth-child(3) { grid-column: span 4; }
    .why-tile:nth-child(4) { grid-column: span 8; }
}
.why-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--sand-dark); line-height: 1; margin-bottom: 0.5rem; }
.why-tile h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-tile p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* Benefits – icon row */
.benefit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 767px) { .benefit-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .benefit-row { grid-template-columns: 1fr; } }

.benefit-pill {
    background: var(--white); border-radius: var(--r);
    padding: 1.5rem; text-align: center;
    border: 2px solid transparent;
    transition: all var(--ease);
}
.benefit-pill:hover { border-color: var(--coral); transform: scale(1.02); }
.benefit-pill i { font-size: 1.6rem; color: var(--purple); margin-bottom: 0.75rem; }
.benefit-pill h5 { font-family: var(--font-head); font-size: 0.92rem; margin-bottom: 0.3rem; }
.benefit-pill p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* Classes – horizontal cards */
.class-stack { display: flex; flex-direction: column; gap: 1rem; }
.class-row {
    display: grid; grid-template-columns: 120px 1fr auto;
    gap: 1.25rem; align-items: center;
    background: var(--white); border-radius: var(--r);
    padding: 1rem; box-shadow: var(--shadow);
    transition: all var(--ease); text-decoration: none; color: inherit;
}
@media (max-width: 575px) { .class-row { grid-template-columns: 80px 1fr; } .class-row .btn-main { display: none; } }
.class-row:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
.class-thumb { width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden; }
.class-thumb img { width: 100%; height: 100%; object-fit: cover; }
.class-row h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--navy); }
.class-row p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Trainers – profile strip */
.trainer-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .trainer-strip { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

.trainer-profile {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    aspect-ratio: 3/4; group: trainer;
}
.trainer-profile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.trainer-profile:hover img { transform: scale(1.06); }
.trainer-cap {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,52,96,0.95) 0%, transparent 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.75rem; color: #fff;
}
.trainer-cap h4 { color: #fff; font-size: 1.2rem; margin-bottom: 0.2rem; }
.trainer-cap span { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* Success band */
.success-band {
    background: var(--navy); border-radius: var(--r-lg);
    padding: 3rem; color: rgba(255,255,255,0.85);
    display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: center;
}
@media (max-width: 767px) { .success-band { grid-template-columns: 1fr; } }
.success-band h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.success-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 575px) { .success-metrics { grid-template-columns: 1fr; } }
.success-metrics strong { display: block; font-family: var(--font-display); font-size: 2.25rem; color: var(--coral); }
.success-metrics span { font-size: 0.82rem; opacity: 0.8; }

/* Testimonials – slider cards */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 991px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
    background: var(--sand); border-radius: var(--r);
    padding: 2rem; position: relative;
}
.testi-card::after {
    content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
    font-family: var(--font-display); font-size: 4rem; color: var(--sand-dark); line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.75rem; }
.testi-card p { font-size: 0.92rem; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.testi-user { display: flex; align-items: center; gap: 0.75rem; }
.testi-user img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--coral); }
.testi-user strong { display: block; font-size: 0.85rem; font-family: var(--font-head); }
.testi-user span { font-size: 0.75rem; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
@media (max-width: 991px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list .accordion-item { border: none; margin-bottom: 0.6rem; border-radius: var(--r) !important; overflow: hidden; background: var(--white); box-shadow: 0 2px 12px rgba(15,52,96,0.05); }
.faq-list .accordion-button { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; padding: 1.1rem 1.25rem; background: var(--white); color: var(--navy); }
.faq-list .accordion-button:not(.collapsed) { background: var(--navy); color: #fff; }
.faq-list .accordion-button:not(.collapsed)::after { filter: brightness(10); }
.faq-list .accordion-body { font-size: 0.9rem; color: var(--muted); padding: 1rem 1.25rem; }

/* Blog preview */
.blog-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 991px) { .blog-row { grid-template-columns: 1fr; } }
.blog-mini {
    border-radius: var(--r); overflow: hidden; background: var(--white);
    box-shadow: var(--shadow); transition: all var(--ease); height: 100%;
    display: flex; flex-direction: column;
}
.blog-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-mini-img { height: 180px; overflow: hidden; }
.blog-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease); }
.blog-mini:hover .blog-mini-img img { transform: scale(1.05); }
.blog-mini-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-mini-body h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.blog-mini-body p { font-size: 0.82rem; color: var(--muted); flex: 1; }
.read-link { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; margin-top: 0.75rem; }

/* CTA */
.cta-block {
    background: var(--grad); border-radius: var(--r-lg);
    padding: 3rem; color: #fff;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-block h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.35rem; }
.cta-block p { opacity: 0.9; margin: 0; }
.cta-block .btn-outline { border-color: #fff; color: #fff; }
.cta-block .btn-outline:hover { background: #fff; color: var(--coral) !important; }

/* Page banner */
.page-top {
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    background: var(--navy); color: #fff;
}
.page-top h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); }
.crumb { display: flex; gap: 0.5rem; font-size: 0.85rem; margin-top: 0.75rem; opacity: 0.75; }
.crumb a { color: #fff; }

/* Course cards page */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .course-grid { grid-template-columns: 1fr; } }

.course-box {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow); transition: all var(--ease);
}
.course-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.course-box img { width: 100%; height: 190px; object-fit: cover; }
.course-box .inner { padding: 1.5rem; }
.course-box h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.course-box ul { list-style: none; padding: 0; margin: 1rem 0; font-size: 0.85rem; color: var(--muted); }
.course-box li { padding: 0.25rem 0; }
.course-box li i { color: var(--coral); margin-right: 0.4rem; width: 14px; }

/* Pricing */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 991px) { .price-row { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
.price-card {
    background: var(--white); border-radius: var(--r-lg); padding: 2.25rem 1.75rem;
    text-align: center; box-shadow: var(--shadow); position: relative;
    border: 2px solid transparent; transition: all var(--ease);
}
.price-card.pop { border-color: var(--coral); background: linear-gradient(180deg, var(--sand) 0%, var(--white) 50%); transform: scale(1.04); }
.price-card .price { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--navy); }
.price-card .price small { font-size: 0.9rem; color: var(--muted); }
.pop-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 999px; text-transform: uppercase; }

/* Schedule */
.schedule-wrap { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.schedule-wrap table { margin: 0; }
.schedule-wrap th { background: var(--navy); color: #fff; padding: 0.9rem 1rem; font-family: var(--font-head); font-size: 0.85rem; }
.schedule-wrap td { padding: 0.75rem 1rem; font-size: 0.88rem; border-color: var(--sand); }

/* Blog full */
.blog-masonry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 767px) { .blog-masonry { grid-template-columns: 1fr; } }
.article-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.article-card .top { height: 220px; overflow: hidden; }
.article-card .top img { width: 100%; height: 100%; object-fit: cover; }
.article-card .body { padding: 2rem; }
.article-cat { display: inline-block; background: var(--sand); color: var(--coral); font-size: 0.68rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 999px; margin-bottom: 0.65rem; text-transform: uppercase; }
.article-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.65rem; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 991px) { .contact-split { grid-template-columns: 1fr; } }
.info-block {
    display: flex; gap: 1rem; padding: 1.15rem;
    background: var(--white); border-radius: var(--r); margin-bottom: 0.85rem;
    box-shadow: 0 2px 12px rgba(15,52,96,0.05);
}
.info-block i { width: 42px; height: 42px; min-width: 42px; background: var(--sand); border-radius: 10px; display: grid; place-items: center; color: var(--coral); }
.form-panel { background: var(--white); border-radius: var(--r-lg); padding: 2.25rem; box-shadow: var(--shadow); }
.form-panel .form-control, .form-panel .form-select {
    border: 2px solid var(--sand-dark); border-radius: 12px; padding: 0.75rem 1rem;
}
.form-panel .form-control:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(233,69,96,0.12); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; height: 360px; margin-top: 2.5rem; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* About extras */
.mission-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 767px) { .mission-duo { grid-template-columns: 1fr; } }
.mission-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow); border-top: 4px solid var(--coral); }
.studio-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; }
@media (max-width: 767px) { .studio-gallery { grid-template-columns: 1fr; } }
.studio-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); min-height: 200px; }
.studio-gallery .big { grid-row: span 2; min-height: 420px; }
@media (max-width: 767px) { .studio-gallery .big { grid-row: span 1; min-height: 240px; } }

.timeline-v { border-left: 3px solid var(--sand-dark); padding-left: 2rem; }
.timeline-v .item { position: relative; padding-bottom: 2rem; }
.timeline-v .item::before { content: ''; position: absolute; left: -2rem; top: 0.4rem; width: 12px; height: 12px; background: var(--coral); border-radius: 50%; transform: translateX(-7.5px); }
.timeline-v .yr { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; color: var(--coral); letter-spacing: 0.1em; }

/* Legal */
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.65rem; color: var(--navy); }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 0.93rem; }
.legal-note { background: var(--sand); padding: 1rem 1.25rem; border-radius: var(--r); font-size: 0.85rem; margin-bottom: 2rem; border-left: 4px solid var(--coral); }

/* Footer */
.site-foot { background: var(--navy); color: rgba(255,255,255,0.7); margin-top: 4rem; }
.foot-top { padding: 4rem 0 2rem; }
.foot-logo .logo-name { color: #fff; }
.site-foot h6 { color: var(--gold); font-family: var(--font-head); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--ease); }
.site-foot ul a:hover { color: var(--coral); }
.social-row { display: flex; gap: 0.65rem; margin-top: 1.25rem; }
.social-row a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: all var(--ease); }
.social-row a:hover { background: var(--coral); color: #fff; }
.foot-form { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.foot-form input[type=email] { flex: 1; min-width: 160px; border: none; border-radius: 999px 0 0 999px; padding: 0.6rem 1rem; }
.foot-form .btn-main { border-radius: 0 999px 999px 0; padding: 0.6rem 1rem; }
.consent-check { width: 100%; font-size: 0.72rem; color: rgba(255,255,255,0.55); display: flex; gap: 0.4rem; align-items: flex-start; margin-top: 0.5rem; }
.consent-check a { color: var(--gold); }
.form-msg { width: 100%; font-size: 0.82rem; color: var(--gold); display: none; }
.form-msg.show { display: block; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; font-size: 0.8rem; }
.foot-bottom a { color: rgba(255,255,255,0.6); }

.nav-drawer { background: var(--navy) !important; color: #fff; }
.nav-drawer a { display: block; padding: 0.85rem 0; color: rgba(255,255,255,0.85); font-family: var(--font-head); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-drawer a:hover { color: var(--coral); }

.go-top {
    position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
    background: var(--grad); color: #fff; border: none; border-radius: 50%;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all var(--ease); z-index: 900; cursor: pointer; box-shadow: var(--shadow);
}
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--navy); color: rgba(255,255,255,0.85); padding: 1rem 0;
    transform: translateY(100%); transition: transform var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-wrap p { margin: 0; font-size: 0.85rem; max-width: 680px; }
.cookie-wrap a { color: var(--gold); }

img.lazy { opacity: 0; transition: opacity 0.5s; }
img.lazy.loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
