/* style.css - Page 4: Retreats & Workshops
   Last updated: 2026-07-06
   Layout: Filtered Card Grid
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --bg-primary: #FDFBF7;
    --bg-secondary: #F9F3EB;
    --bg-tertiary: #E9D8B4;
    --deep-ocean: #0F3D4C;
    --mid-ocean: #164E63;
    --lagoon: #2F6F7E;
    --accent-turquoise: #2EC4B6;
    --accent-aqua: #4FD1C5;
    --clay-earth: #B78A60;
    --warm-dune: #D6B98C;
    --soft-sand: #E9D8B4;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background-color: var(--bg-primary); line-height: 1.5; }
body[data-lang="en"] { direction: ltr; }
body[data-lang="he"] { direction: rtl; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ========================================
   LANGUAGE CONTROLS
   ======================================== */
.lang-btn {
    padding: 8px 16px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.lang-btn.active { color: var(--accent-turquoise); border-color: var(--accent-turquoise); }
.lang-btn:hover { color: var(--accent-turquoise); }
.lang-separator { color: var(--text-light); font-size: 14px; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(183, 138, 96, 0.15);
}
.header-lang-section { display: flex; align-items: center; min-width: 140px; }
.lang-controls-inline { display: flex; align-items: center; gap: 8px; }
.header-nav { display: flex; align-items: center; gap: 12px; }
.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--deep-ocean); }
.nav-link--active { color: var(--deep-ocean); border-bottom: 2px solid var(--accent-turquoise); padding-bottom: 2px; }
.nav-separator { color: var(--warm-dune); font-size: 12px; }
.header-logo { display: flex; align-items: center; min-width: 140px; justify-content: flex-end; }
.header-logo-img { height: 36px; width: auto; }

/* Hamburger */
.hamburger-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.hamburger-btn span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }
.hamburger-btn.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 61, 76, 0.96);
    z-index: 200;
    align-items: center;
    justify-content: center;
}
.mobile-nav-overlay.is-open { display: flex; }
.mobile-nav-menu { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--soft-sand);
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--accent-turquoise); }
.mobile-nav-link--active { color: var(--accent-turquoise); }

/* Side Nav */
.side-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
body[data-lang="en"] .side-nav { left: 24px; }
body[data-lang="he"] .side-nav { right: 24px; left: auto; }
.side-nav-links { display: flex; flex-direction: column; gap: 12px; }
.side-link {
    writing-mode: vertical-rl;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.6;
}
.side-link:hover { color: var(--deep-ocean); opacity: 1; }

/* ========================================
   HERO
   ======================================== */
.hero {
    --hero-height: 55vh;
    --hero-min-height: 420px;
    position: relative;
    height: var(--hero-height);
    min-height: var(--hero-min-height);
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}
.hero-fallback {
    position: absolute; inset: 0; z-index: 0;
}
.hero-fallback img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.78) saturate(0.9);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(15,61,76,0.6) 0%, rgba(15,61,76,0.15) 55%, transparent 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 760px;
    padding: 0 80px;
}
body[data-lang="he"] .hero-content { padding: 0 80px 0 40px; }
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    color: var(--soft-sand);
    line-height: 1.05;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }
.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(233, 216, 180, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease-out 0.25s, transform 0.65s ease-out 0.25s;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--soft-sand);
    color: var(--deep-ocean);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.2s, transform 0.15s;
    opacity: 0;
    transition: opacity 0.5s ease-out 0.45s, border-color 0.2s, transform 0.15s;
}
.cta-button.visible { opacity: 1; }
.cta-button:hover { border-color: var(--deep-ocean); transform: translateY(-1px); }
.scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: opacity 0.4s;
}
.scroll-indicator.faded { opacity: 0; }
.scroll-dot {
    width: 6px; height: 6px;
    background: var(--soft-sand);
    border-radius: 50%;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }

/* ========================================
   EVENTS SECTION
   ======================================== */
.events-section {
    padding-top: 0;
    background: var(--bg-primary);
}

/* Featured banner */
.featured-banner {
    background: var(--deep-ocean);
    padding: 14px 80px;
}
.featured-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.featured-dot {
    width: 8px; height: 8px;
    background: var(--accent-turquoise);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.featured-banner p {
    font-size: 13px;
    color: var(--soft-sand);
    flex: 1;
}
.featured-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--soft-sand);
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Events container */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 80px 80px;
}

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(183, 138, 96, 0.2);
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 24px;
    border: 1.5px solid rgba(183, 138, 96, 0.4);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--deep-ocean); color: var(--deep-ocean); }
.filter-btn.active {
    background: var(--deep-ocean);
    color: var(--soft-sand);
    border-color: var(--deep-ocean);
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.event-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(183, 138, 96, 0.18);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(15, 61, 76, 0.1); }
.event-card--featured {
    border-color: var(--deep-ocean);
    border-width: 2px;
}
.event-card.hidden { display: none; }

/* Card image */
.card-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image--retreat { background: var(--deep-ocean); }
.card-image--breathing { background: var(--lagoon); }
.card-image--meditation { background: #2A6B65; }
.card-image--training { background: var(--mid-ocean); }
.card-image-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.card-image-label { font-size: 12px; color: rgba(255,255,255,0.25); }
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
body[data-lang="he"] .card-badge { right: auto; left: 12px; }
.card-badge--open { background: var(--soft-sand); color: var(--deep-ocean); }
.card-badge--soon { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }

/* Card body */
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.card-category-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 10px;
}
.card-category-tag--retreat { background: rgba(15,61,76,0.1); color: var(--deep-ocean); }
.card-category-tag--breathing { background: rgba(46,196,182,0.12); color: #0F6E56; }
.card-category-tag--meditation { background: rgba(42,107,101,0.12); color: #1D5C58; }
.card-spots { font-size: 11px; color: #C0392B; font-weight: 500; }
.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}
.card-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.card-details { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.card-detail-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.card-icon { flex-shrink: 0; color: var(--clay-earth); }
.card-cta {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--text-light);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 1.5px solid rgba(183, 138, 96, 0.4);
}
.card-cta:hover { background: var(--deep-ocean); color: #FDFBF7; border-color: var(--deep-ocean); }
/* "More details" matches the filter chips (transparent + clay border) — hover fills blue */
.card-cta--notify {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(183, 138, 96, 0.4);
}
.card-cta--notify:hover { background: var(--deep-ocean); color: #FDFBF7; border-color: var(--deep-ocean); }
.card-register-btn { margin-top: 10px; }

/* retreat-modal */
.retreat-modal-overlay { position:fixed; inset:0; background:rgba(15,61,76,0.7);
  z-index:600; display:flex; align-items:center; justify-content:center; padding:20px; }
.retreat-modal { background:#FDFBF7; border-radius:12px; max-width:420px;
  width:100%; padding:36px 40px; position:relative; text-align:center; }
.retreat-modal h2 { font-family:var(--font-heading); font-size:26px; color:var(--deep-ocean); margin-bottom:8px; }
.retreat-modal .close-modal-btn { position:absolute; top:12px; right:16px; font-size:18px;
  background:none; border:none; color:#999; cursor:pointer; line-height:1; }
body[data-lang="he"] .retreat-modal .close-modal-btn { right:auto; left:16px; }
.reg-options { display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.reg-option-btn { width:100%; padding:14px; border-radius:6px; font-size:14px; font-weight:600; cursor:pointer; border:none; }
.reg-option-btn--wa { background:var(--accent-turquoise); color:var(--deep-ocean); }
.reg-option-btn--form { background:transparent; color:var(--deep-ocean); border:1.5px solid var(--deep-ocean); }
.reg-form { display:none; flex-direction:column; gap:12px; margin-top:20px; text-align:right; }
.reg-form.active { display:flex; }
body[data-lang="en"] .reg-form { text-align:left; }
.reg-form .form-input { width:100%; padding:11px 14px; border:1px solid #DCD3C4; border-radius:6px;
  font-size:14px; font-family:inherit; box-sizing:border-box; background:#fff; }
.reg-form textarea.form-input { min-height:90px; resize:vertical; }
.reg-form .form-submit { width:100%; padding:13px; background:var(--deep-ocean); color:#FDFBF7;
  border:none; border-radius:6px; font-size:14px; font-weight:600; cursor:pointer; }
.reg-back-btn { background:none; border:none; color:#999; font-size:13px; cursor:pointer; margin-top:4px; }
/* workshop category tag (parity with retreat/breathing/meditation) */
.card-category-tag--workshop { background:rgba(47,111,126,0.12); color:#2F6F7E; }

/* No results */
.no-results {
    display: none;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    padding: 40px 0;
}
.no-results.visible { display: block; }

/* ========================================
   ABOUT THE WORK
   ======================================== */
.about-work {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 80px;
}
.about-work-inner { max-width: 760px; margin: 0 auto; }
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.section-label span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay-earth);
    white-space: nowrap;
}
.label-rule {
    flex: 1;
    border: none;
    border-top: 1px solid var(--warm-dune);
}
.label-rule--light { border-top-color: rgba(255,255,255,0.3); }
.about-work h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 400;
    color: var(--deep-ocean);
    line-height: 1.2;
    margin-bottom: 28px;
}
.about-work-body { display: flex; flex-direction: column; gap: 16px; }
.about-work-body p { font-size: 16px; color: var(--text-light); line-height: 1.75; }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--deep-ocean);
    padding: var(--spacing-lg) 80px;
    text-align: center;
}
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-section .section-label { justify-content: center; }
.contact-section .section-label span { color: var(--accent-turquoise); }
.contact-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 400;
    color: var(--soft-sand);
    margin-bottom: 16px;
}
.contact-section p {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 400;
    color: var(--soft-sand);
    line-height: 1.3;
    margin-bottom: 32px;
}
/* WhatsApp button — same design as the card buttons (transparent + clay border, hover fills blue) */
.contact-cta {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: rgba(233, 216, 180, 0.85);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 1.5px solid rgba(233, 216, 180, 0.4);
}
.contact-cta:hover { background: var(--bg-secondary); color: var(--deep-ocean); border-color: var(--bg-secondary); }

/* ========================================
   FOOTER (same as other pages)
   ======================================== */
.footer { background: var(--bg-secondary); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 60px 80px 40px; }
.footer-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(183, 138, 96, 0.25); }
.footer-title { font-family: var(--font-heading); font-size: 28px; font-weight: 400; color: var(--deep-ocean); margin-bottom: 6px; }
.footer-tagline { font-size: 14px; color: var(--text-light); font-style: italic; margin-bottom: 4px; }
.footer-subtitle { font-size: 13px; color: var(--clay-earth); }
.footer-logo-img { height: 44px; width: auto; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; margin-bottom: 48px; }
.footer-nav-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-earth); margin-bottom: 12px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 13px; color: var(--text-light); transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--deep-ocean); }
.footer-coming-soon { opacity: 0.5; cursor: default; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(183, 138, 96, 0.25); margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.lets-talk-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--deep-ocean);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-ocean);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.lets-talk-btn:hover { background: var(--deep-ocean); color: var(--soft-sand); }
.footer-contact { text-align: center; }
.footer-location { font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
.footer-contact-links { display: flex; align-items: center; gap: 10px; justify-content: center; font-size: 13px; }
.footer-contact-links a { color: var(--clay-earth); }
.contact-divider { color: var(--warm-dune); }
.footer-social { display: flex; justify-content: center; gap: 20px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(183, 138, 96, 0.35); color: var(--text-light); transition: all 0.2s; }
.social-icon:hover { border-color: var(--deep-ocean); color: var(--deep-ocean); }
.footer-bottom-bar { background: var(--bg-tertiary); padding: 16px 80px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 12px; color: var(--text-light); }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { font-size: 12px; color: var(--text-light); }
.legal-divider { color: var(--warm-dune); font-size: 12px; }

/* Breathing button */
.breathing-btn-wrapper {
    position: fixed;
    top: 170px;
    right: 20px;
    z-index: 1000;
    transition: opacity 0.1s linear;
}
body[data-lang="he"] .breathing-btn-wrapper { right: auto; left: 20px; }
.breathing-app-btn {
    padding: 14px 34px;
    background: #0F3D4C;
    color: white;
    border: none;
    border-radius: 22px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: btnRipple 2s ease-in-out infinite;
    transition: background 0.3s ease;
}
.breathing-app-btn:hover {
    background: #164E63;
    animation: none;
    text-decoration: none;
}
@keyframes btnRipple {
    0%   { box-shadow: 0 0 0 0 rgba(46,196,182,0.65), 0 2px 8px rgba(0,0,0,0.15); }
    70%  { box-shadow: 0 0 0 14px rgba(46,196,182,0), 0 2px 8px rgba(0,0,0,0.15); }
    100% { box-shadow: 0 0 0 0 rgba(46,196,182,0), 0 2px 8px rgba(0,0,0,0.15); }
}

/* Lang switching flash */
.lang-switching { opacity: 0; transition: opacity 0.2s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .events-container { padding: 40px 40px 60px; }
    .about-work { padding: var(--spacing-md) 40px; }
    .contact-section { padding: var(--spacing-md) 40px; }
    .footer-main { padding: 48px 40px 32px; }
    .footer-bottom-bar { padding: 14px 40px; }
    .featured-banner { padding: 14px 40px; }
    .hero-content { padding: 0 40px; }
}
@media (max-width: 768px) {
    .site-header { padding: 14px 20px; }
    .header-nav { display: none; }
    .hamburger-btn { display: flex; }
    .side-nav { display: none; }
    .hero-content { padding: 0 24px; }
    .featured-banner { padding: 12px 24px; }
    .events-container { padding: 32px 24px 48px; }
    .cards-grid { grid-template-columns: 1fr; }
    .about-work { padding: var(--spacing-md) 24px; }
    .contact-section { padding: var(--spacing-md) 24px; }
    .footer-main { padding: 40px 24px 24px; }
    .footer-bottom-bar { padding: 14px 24px; }
    .footer-header { flex-direction: column; gap: 16px; }
    .footer-nav-grid { grid-template-columns: repeat(2, 1fr); }
    .scroll-indicator { left: 24px; }
}
@media (max-width: 480px) {
    .breathing-btn-wrapper {
        top: auto !important;
        bottom: 16px !important;
        left: auto !important;
        right: 16px !important;
        transform: none !important;
        z-index: 999 !important;
    }
    .breathing-app-btn {
        font-size: 13px;
        padding: 9px 18px;
    }
}
@media (max-width: 480px) {
    .filter-bar { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 12px; }
    .footer-nav-grid { grid-template-columns: 1fr; }
}
