/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* IYA YOGA — MASTER STYLESHEET v3.0                                          */
/* Sections: Variables · Reset · Accessibility · Scroll Progress · Topbar    */
/*           Navbar · Mobile Menu · Buttons · Carousels · FAQ · Newsletter   */
/*           Footer · Home · Retreats · Online · About · In-Person           */
/*           Contact · Retreat Detail · Animations · Dark Mode · Responsive  */
/*           Reduced Motion                                                   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── 1. VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --iya-blue:   #CCEFFF;
  --iya-yellow: #FFF7C5;

  --bg:           #ffffff;
  --text:         #2a2445;
  --nav-bg:       rgba(255,255,255,0.97);
  --soft:         #e6f0f3;
  --border:       rgba(0,0,0,0.08);
  --hero-overlay: rgba(220,235,238,0.55);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;

  --ease:         0.3s ease;
  --container:    1200px;
}

[data-theme="dark"] {
  --bg:           #0f1220;
  --text:         #e8e8f0;
  --nav-bg:       rgba(15,18,32,0.97);
  --soft:         #1d2138;
  --border:       rgba(255,255,255,0.08);
  --hero-overlay: rgba(15,18,32,0.65);
  --iya-blue:     #1b2e47;
  --iya-yellow:   #3d3514;
}

/* ── 2. RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--ease), color var(--ease);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text);
}

h1 { font-size: clamp(2rem,   5vw, 3rem);    }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem);  }

p { font-size:16px; line-height:1.75; margin-bottom:15px; opacity:.9; }

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

section, footer { padding: 80px 10vw; max-width: 100vw; }

.container { max-width: var(--container); margin: 0 auto; }
.container h2 { margin: 50px 0 25px; }

/* Background utilities */
.why-color, .bg-yellow, .card.yellow { background-color: var(--iya-yellow); }
.blue, .blog-home                    { background-color: var(--iya-blue) !important; }
.home-pills .schedule-pill           { background-color: var(--iya-blue) !important; }
.bg-soft                             { background: var(--soft); }

/* The footer element always gets yellow */
footer { background-color: var(--iya-yellow); }

/* ── 3. ACCESSIBILITY ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--text);
  color: var(--bg);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline: 3px solid var(--text); }

/* ── 4. SCROLL PROGRESS ───────────────────────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--text);
  z-index: 9998;
  transition: width .1s linear;
  pointer-events: none;
}

/* ── 5. TOPBAR ────────────────────────────────────────────────────────────── */
.topbar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10vw;
  font-size: 13px;
  font-weight: 500;
  background: var(--iya-blue);
  z-index: 20;
}
.topbar-right { display:flex; align-items:center; gap:16px; }
.social-icons { display:flex; align-items:center; gap:12px; }
.social-icons a { display:flex; align-items:center; justify-content:center; }
.social-icons svg {
  width:20px; height:20px;
  stroke: var(--text); fill:none; stroke-width:1.5;
  transition: opacity var(--ease);
}
.social-icons a:hover svg { opacity:.5; }

/* ── 6. NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 43px;
  width: 100%;
  padding: 22px 10vw;
  z-index: 15;
  transition: all var(--ease);
}

.navbar.scrolled {
  top: 0;
  padding: 14px 10vw;
  background: var(--iya-blue);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

[data-theme="dark"] .navbar.scrolled { background: var(--nav-bg); }

.navbar.menu-open {
  background: transparent !important;
  box-shadow: none !important;
  z-index: 110 !important;
}

.nav-inner {
  max-width: var(--container);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 2px;
  transition: opacity var(--ease);
}
.logo a:hover { opacity:.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-grow: 1;
  justify-content: center;
}
.nav-links > a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
}
.nav-links > a::after {
  content:'';
  position:absolute;
  left:0; bottom:-4px;
  width:0; height:1.5px;
  background: var(--text);
  transition: width var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a.active::after { width:100%; }

.nav-right-controls { display:flex; align-items:center; gap:12px; }

.nav-theme-btn {
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  font-size: 15px;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  display: flex; align-items:center; justify-content:center;
  transition: background var(--ease), transform var(--ease);
}
.nav-theme-btn:hover { background:rgba(0,0,0,.1); transform:translateY(-1px); }
[data-theme="dark"] .nav-theme-btn { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.06); }
[data-theme="dark"] .nav-theme-btn:hover { background:rgba(255,255,255,.18); }

/* Desktop dropdown */
.nav-dropdown { position:relative; display:inline-flex; }

.nav-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg);
  min-width: 210px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  overflow: hidden;
  z-index: 100;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-content a {
  display: block;
  padding: 13px 20px;
  font-size: 14px !important;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
  color: var(--text) !important;
}
.nav-dropdown-content a:last-child { border-bottom:none; }
.nav-dropdown-content a::after     { display:none !important; }
.nav-dropdown-content a:hover      { background:var(--soft); }
[data-theme="dark"] .nav-dropdown-content { background:var(--nav-bg); box-shadow:0 8px 30px rgba(0,0,0,.45); }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column; gap:5px;
  padding: 4px;
  z-index: 115;
}
.hamburger span {
  width:24px; height:2px;
  background: var(--text);
  display: block;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── 7. MOBILE MENU ───────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(204,239,255,.91),rgba(204,239,255,.97)),
              url('6.jpg') center/cover no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  overflow-y: auto;
}
.mobile-menu.active { opacity:1; visibility:visible; }
[data-theme="dark"] .mobile-menu {
  background: linear-gradient(rgba(15,18,32,.92),rgba(15,18,32,.97)),
              url('6.jpg') center/cover no-repeat;
}

.menu-content { flex-grow:1; padding:0 6vw 80px; }

.mobile-nav-links li { border-bottom:1px solid rgba(0,0,0,.08); }
.mobile-nav-links li:last-child { border-bottom:none; }
[data-theme="dark"] .mobile-nav-links li { border-bottom-color:rgba(255,255,255,.1); }

.mobile-nav-links a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 600;
  color: var(--text) !important;
  letter-spacing: .5px;
  transition: opacity var(--ease);
}
.mobile-nav-links a:hover { opacity:.6; }

.mobile-dropdown-btn {
  background:none; border:none;
  width:100%; text-align:left;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 600;
  color: var(--text) !important;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
}
.mobile-submenu { max-height:0; overflow:hidden; transition:max-height .3s ease; padding-left:16px; }
.mobile-submenu.open { max-height:250px; }
.mobile-submenu li  { border-bottom:none !important; }
.mobile-submenu a   { padding:10px 0 !important; font-size:16px !important; opacity:.8; }

/* ── 8. BUTTONS & EYEBROW ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--iya-blue);
  color: var(--text);
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  text-align: center;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.1); }

.hero-btn { background:var(--text); color:var(--bg); }
.hero-btn:hover { box-shadow:0 8px 20px rgba(0,0,0,.2); }

.btn-dark {
  background: var(--text); color: var(--bg);
  border: none; width:100%; padding:13px; border-radius:10px;
  font-family: var(--font-body); font-size:14px; font-weight:600;
  cursor:pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  display: block; text-align: center;
}
.btn-dark:hover { transform:translateY(-2px); box-shadow:0 6px 15px rgba(0,0,0,.15); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  opacity: .7; margin-bottom: 12px;
}

.eyebrow-badge {
  display: inline-block;
  background: var(--iya-yellow); color: #000;
  padding: 5px 14px; border-radius: 20px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ── 9. CAROUSELS ─────────────────────────────────────────────────────────── */
.carousel-wrapper {
  position:relative;
  max-width: var(--container);
  margin: 40px auto;
  overflow: hidden;
}
.carousel { overflow:hidden; width:100%; }
.carousel-track { display:flex; gap:20px; will-change:transform; }
.slide {
  flex: 0 0 calc(33.333% - 13.34px);
  position: relative;
  text-decoration: none;
  color: var(--text);
}
.blog-home .slide { padding-bottom:25px; }
.slide img { width:100%; height:260px; object-fit:cover; border-radius:16px; }

.nav-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:42px; height:42px; border-radius:50%; border:none;
  background:rgba(0,0,0,.65); color:#fff; font-size:18px;
  cursor:pointer; z-index:10;
  display:flex; align-items:center; justify-content:center;
  transition: background var(--ease), transform .2s;
}
.nav-btn:hover { background:var(--text); transform:translateY(-50%) scale(1.05); }
.prev { left:0; }
.next { right:0; }

.caption { padding:14px 5px 0; text-align:center; font-size:14px; opacity:.9; }

/* ── 10. FAQ ──────────────────────────────────────────────────────────────── */
.faq-container { max-width:800px; margin:auto; }
.faq-container h2 { text-align:center; margin-bottom:40px; }
.faqs-home { background:var(--bg); }
.faq-item  { border-bottom:1px solid var(--soft); }

.faq-question {
  width:100%; background:none; border:none;
  padding:22px 0; text-align:left;
  font-family: var(--font-body);
  font-size:16px; font-weight:600; color:var(--text);
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  transition: opacity var(--ease);
}
.faq-question:hover { opacity:.75; }
.faq-question .icon { font-size:22px; font-weight:300; flex-shrink:0; transition:transform var(--ease); }

.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p { padding-bottom:20px; opacity:.8; margin:0; }

.faq-item.active .faq-answer { max-height:300px; }
.faq-item.active .icon        { transform:rotate(45deg); }

/* ── 11. NEWSLETTER ───────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--iya-blue);
  padding: 80px 5vw;
  text-align: center;
}
.newsletter-inner { max-width:600px; margin:0 auto; }
.newsletter-inner h2 { font-size:clamp(1.6rem,3vw,2rem); margin-bottom:12px; }
.newsletter-inner > p { font-size:15px; opacity:.8; margin-bottom:28px; }

.newsletter-form {
  display:flex; gap:10px;
  justify-content:center; flex-wrap:wrap;
}
.newsletter-form input[type="email"] {
  padding:14px 22px;
  width:100%; max-width:340px;
  border:none; border-radius:30px;
  font-family: var(--font-body); font-size:15px;
  background: var(--bg); color: var(--text);
  outline:none; transition:box-shadow var(--ease);
}
.newsletter-form input[type="email"]:focus-visible {
  box-shadow:0 0 0 3px rgba(42,36,69,.2);
}
.newsletter-btn {
  background: var(--text); color: var(--bg); border:none;
  padding:14px 28px; border-radius:30px;
  font-family: var(--font-body); font-size:15px; font-weight:600;
  cursor:pointer; white-space:nowrap;
  transition: transform var(--ease), box-shadow var(--ease);
  display: inline-block;
}
.newsletter-btn:hover { transform:translateY(-2px); box-shadow:0 6px 15px rgba(0,0,0,.15); }

/* ── 12. FOOTER ───────────────────────────────────────────────────────────── */
.footer-wave {
  background: var(--iya-yellow);
  overflow:hidden; line-height:0; margin-bottom:-1px;
  pointer-events:none;
}
.footer-wave svg { display:block; width:calc(100% + 1.3px); height:60px; }
.footer-wave-fill { fill: var(--iya-blue); }

.site-footer { padding:60px 10vw; }

.footer {
  display:flex; flex-direction:column;
  align-items:center; text-align:center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,2.8rem);
  font-weight:700; letter-spacing:2px; line-height:1.2;
  margin-bottom:25px;
}

.footer-contact-row {
  display:flex; flex-direction:row; gap:30px;
  margin-bottom:25px;
  font-style:normal; flex-wrap:wrap; justify-content:center;
}
.contact-item {
  display:flex; align-items:center; gap:10px;
  font-size:16px; font-weight:500;
  transition:opacity var(--ease);
}
.contact-item:hover { opacity:.7; }
.contact-item .icon { width:22px; height:22px; stroke:currentColor; flex-shrink:0; }

.footer-social { margin-bottom:40px; }

.footer-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:40px;
  text-align:left;
  max-width:900px; width:100%;
  margin-bottom:40px;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size:12px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  margin-bottom:16px; opacity:.6;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col li { margin:0; }
.footer-col a  { font-size:14px; font-weight:500; opacity:.8; transition:opacity var(--ease); }
.footer-col a:hover { opacity:1; text-decoration:underline; }

.footer-copy { font-size:12px; opacity:.4; margin:0; letter-spacing:.5px; }

/* Floating WhatsApp */
.floating-whatsapp {
  position:fixed; bottom:28px; right:28px;
  width:58px; height:58px;
  background:#25D366; color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(37,211,102,.4);
  z-index:1000;
  transition: transform var(--ease), box-shadow var(--ease);
  animation: pulse-green 2.5s infinite;
}
.floating-whatsapp svg { width:32px; height:32px; }
.floating-whatsapp:hover {
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 10px 28px rgba(37,211,102,.55);
  animation:none;
}
@keyframes pulse-green {
  0%   { box-shadow:0 0 0 0   rgba(37,211,102,.6); }
  70%  { box-shadow:0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow:0 0 0 0   rgba(37,211,102,0); }
}

/* ── 13. HOME PAGE ────────────────────────────────────────────────────────── */
.hero {
  background:url('16.jpg') center/cover no-repeat;
  position:relative;
  padding-top:260px;
  height:780px;
}
.hero-wavy { padding-bottom:200px; }
.hero-overlay { position:absolute; inset:0; background:var(--hero-overlay); }
.hero-content { position:relative; z-index:2; max-width:620px; }
.hero h1 { font-size:clamp(2.4rem,6vw,3.6rem); line-height:1.05; margin-bottom:20px; letter-spacing:-.5px; }
.hero p   { font-size:18px; margin-bottom:40px; font-weight:400; opacity:.95; }

/* SVG wave dividers */
.custom-shape-divider-bottom {
  position:absolute; bottom:0; left:0;
  width:100%; overflow:hidden; line-height:0;
  transform:rotate(180deg); z-index:2;
}
.custom-shape-divider-bottom svg { position:relative; display:block; width:calc(100% + 1.3px); height:60px; }
.custom-shape-divider-top {
  position:relative; top:-1px; left:0;
  width:100%; overflow:hidden; line-height:0; margin-bottom:-2px;
}
.custom-shape-divider-top svg { position:relative; display:block; width:calc(100% + 1.3px); height:60px; }
.shape-fill-yellow { fill:var(--iya-yellow); }
.shape-fill-blue   { fill:var(--iya-blue);   }

/* About / split content */
.about-content {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center;
  max-width:var(--container); margin:0 auto;
}
.about-content h2 { font-size:clamp(1.6rem,3.5vw,2.4rem); margin-bottom:20px; }
.about-content .img {
  width:100%; height:420px; object-fit:cover;
  border-radius:20px; box-shadow:0 15px 40px rgba(0,0,0,.1);
}

/* Cards */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.card {
  border-radius:20px; padding:20px;
  transition: transform var(--ease), box-shadow var(--ease);
  display:block; color:var(--text);
}
.card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.08); }
.card img   { width:100%; height:210px; object-fit:cover; border-radius:12px; }
.card h3    { margin:15px 0 8px; font-size:18px; }
.card p     { font-size:14px; opacity:.8; margin-bottom:8px; }
.meta       { font-size:13px; font-weight:600; opacity:.65; }

/* Schedule section */
.schedule h4 {
  margin:40px 0 15px;
  font-family: var(--font-body);
  font-size:13px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; opacity:.8;
}
.schedule h4 span {
  font-weight:400; font-size:12px; opacity:.7;
  margin-left:8px; background:var(--bg);
  padding:3px 10px; border-radius:20px;
  letter-spacing:0; text-transform:none;
}
.schedule-pills, .home-pills {
  display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px;
}
.home-pills {
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:16px;
}
.schedule-pill {
  background:var(--bg); border-radius:40px; padding:12px 22px;
  display:flex; align-items:center; gap:14px;
  box-shadow:0 3px 12px rgba(0,0,0,.05);
  border:1px solid var(--border);
}
.home-pills .schedule-pill { border:none; justify-content:flex-start; }

.pill-time { font-family:var(--font-display); font-size:17px; font-weight:800; line-height:1.2; }
.pill-time small { font-family:var(--font-body); font-size:11px; font-weight:500; opacity:.6; }
.pill-type { font-size:13px; font-weight:700; line-height:1.2; opacity:.85; }

/* Team carousel */
.home-teachers { margin-top:60px; }
.home-teachers .slide { display:flex; flex-direction:column; }
.home-teachers .caption { position:static !important; background:transparent !important; color:var(--text) !important; padding:14px 5px 0 !important; text-align:center; }

/* Blog / media */
.blog-iframe { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-bottom:50px; }
.blog-iframe iframe { width:100%; aspect-ratio:16/9; border-radius:16px; border:none; }

/* Testimonials (home — yellow cards) */
.testimonial-card {
  background-color:var(--iya-yellow);
  position:relative; border-radius:16px; padding:28px;
  height:100%; display:flex; flex-direction:column;
}
.testimonial-review { font-size:14px; font-style:italic; flex-grow:1; line-height:1.7; opacity:.9; }
.testimonial-footer { margin-top:20px; }
.reviewer-name      { font-weight:700; font-size:14px; }
.reviewer-img {
  position:absolute; right:20px; bottom:-18px;
  width:56px; height:56px; border-radius:50%; overflow:hidden;
  border:3px solid var(--bg); box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.reviewer-img img { width:100%; height:100%; object-fit:cover; }

/* Google reviews */
.google-badge {
  display:inline-flex; align-items:center; gap:12px;
  background:var(--bg); padding:12px 24px;
  border-radius:40px;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
  border:1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.google-badge:hover { transform:translateY(-2px); box-shadow:0 12px 30px rgba(0,0,0,.1); }
.google-stars { color:#FBBC05; font-size:18px; letter-spacing:2px; line-height:1; display:block; margin-bottom:2px; }
.trust-wall { display:flex; justify-content:center; flex-wrap:wrap; gap:20px; margin-bottom:50px; }

/* Map */
.map-container { width:100%; height:350px; border-radius:20px; overflow:hidden; box-shadow:0 8px 30px rgba(0,0,0,.06); }

/* ── 14. RETREATS PAGE ────────────────────────────────────────────────────── */
.premium-hero {
  height:90vh; min-height:600px;
  background-attachment:fixed; background-position:center; background-size:cover;
  display:flex; align-items:center; justify-content:center;
  position:relative; padding:0 5vw;
}
.hero-glass-panel {
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.3);
  padding:60px 50px; border-radius:24px;
  text-align:center; max-width:780px;
  color:#fff; box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.hero-glass-panel h1 { font-size:clamp(2.5rem,7vw,4.5rem); line-height:1; margin-bottom:20px; color:#fff; }
.hero-glass-panel p  { font-size:17px; opacity:.9; line-height:1.65; margin:0; }

.retreat-catalog { padding:100px 0; background:var(--bg); }

.cinematic-row {
  display:flex; align-items:center;
  max-width:1300px; margin:0 auto 110px; gap:70px; padding:0 5vw;
}
.cinematic-row.reverse { flex-direction:row-reverse; }
.cinematic-media { flex:1; position:relative; }
.cinematic-media img {
  width:100%; height:580px; object-fit:cover;
  border-radius:24px; box-shadow:0 20px 50px rgba(0,0,0,.1);
}
.media-badge {
  position:absolute; top:28px; left:-18px;
  background:var(--text); color:var(--bg);
  padding:10px 22px; border-radius:30px;
  font-weight:700; letter-spacing:1px; font-size:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.cinematic-row.reverse .media-badge { left:auto; right:-18px; }

.cinematic-content { flex:1; }
.quick-facts {
  display:flex; gap:20px; flex-wrap:wrap;
  font-weight:700; font-size:12px; letter-spacing:1.5px;
  text-transform:uppercase; opacity:.55; margin-bottom:14px;
}
.cine-title { font-size:clamp(2rem,4vw,2.8rem); margin-bottom:18px; }
.cine-desc  { font-size:17px; line-height:1.75; opacity:.8; margin-bottom:28px; }
.cine-features { margin-bottom:36px; }
.cine-features li { font-size:15px; margin-bottom:12px; display:flex; align-items:center; gap:14px; opacity:.85; }
.cine-link { font-size:15px; font-weight:700; border-bottom:2px solid var(--text); padding-bottom:4px; transition:opacity var(--ease); }
.cine-link:hover { opacity:.6; }

/* Daily schedule timeline */
.schedule-timeline {
  max-width:800px; margin:0 auto;
  background:var(--bg); border-radius:20px; padding:40px;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
}
.timeline-block { display:flex; margin-bottom:25px; padding-bottom:25px; border-bottom:1px dashed var(--border); }
.timeline-block:last-child { margin:0; padding:0; border:none; }
.timeline-time { flex:0 0 130px; font-family:var(--font-display); font-size:17px; font-weight:800; padding-right:20px; }
.timeline-content h4 { font-size:18px; margin-bottom:6px; }
.timeline-content p  { font-size:14px; opacity:.8; margin:0; }

/* ── 15. ONLINE CLASSES PAGE ──────────────────────────────────────────────── */
.online-page-wrapper { padding-top:150px; padding-bottom:60px; }
.online-title {
  font-size:clamp(1.8rem,5vw,2.5rem); margin-bottom:35px;
  display:flex; align-items:baseline; flex-wrap:wrap; gap:14px;
}
.online-subtitle { font-family:var(--font-body); font-size:16px; font-weight:400; opacity:.65; }
.online-notice   { font-size:14px; opacity:.75; margin-bottom:60px; line-height:1.8; }

.section-heading-online {
  font-family: var(--font-body);
  font-size:13px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  margin:55px 0 22px; opacity:.7;
}
.info-text-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-bottom:40px; }
.info-text-grid h4 { font-size:16px; margin-bottom:10px; }
.dash-list { font-size:14px; line-height:1.9; opacity:.85; }

.pricing-cards-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pricing-cards-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:700px; }

.price-card-white {
  background:var(--bg); border-radius:20px; padding:28px 20px;
  text-align:center; display:flex; flex-direction:column;
  box-shadow:0 4px 20px rgba(0,0,0,.04);
  border:1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card-white:hover { transform:translateY(-4px); box-shadow:0 12px 35px rgba(0,0,0,.08); }
.price-card-white h3    { font-size:20px; margin-bottom:10px; }
.price-details          { font-size:13px; opacity:.75; line-height:1.7; margin:15px 0; flex-grow:1; }
.empty-details          { min-height:50px; }
.price-bottom h2        { font-size:30px; margin-bottom:4px; }
.price-bottom > p       { font-size:13px; opacity:.7; margin-bottom:18px; }
.private-desc           { font-size:14px; opacity:.75; margin:12px 0 24px; line-height:1.6; flex-grow:1; }

.testimonial-card-yellow {
  background:var(--iya-yellow); padding:28px; border-radius:20px;
  height:100%; display:flex; flex-direction:column; justify-content:space-between;
}
.testimonial-card-yellow p { font-size:13px; line-height:1.7; margin-bottom:20px; opacity:.9; }
.testi-footer     { display:flex; justify-content:space-between; align-items:flex-end; }
.testi-footer span{ font-weight:700; font-size:13px; }
.testi-footer img { width:48px; height:48px; border-radius:50%; object-fit:cover; }

/* ── 16. ABOUT PAGE ───────────────────────────────────────────────────────── */
.about-hero {
  background: var(--iya-blue);
  min-height:75vh; display:flex; align-items:center;
  padding:160px 10vw 80px;
}
.editorial-split  { display:flex; gap:80px; align-items:flex-start; }
.editorial-left   { flex:1; }
.editorial-right  { flex:1.2; }
.editorial-right p{ font-size:17px; line-height:1.85; margin-bottom:22px; opacity:.85; }

.inline-link {
  font-weight:700; text-decoration:underline;
  text-decoration-thickness:1.5px; text-underline-offset:3px;
  transition:opacity var(--ease);
}
.inline-link:hover { opacity:.6; }

.philosophy-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.phil-card {
  background:var(--bg); padding:40px 28px; border-radius:20px;
  text-align:center; box-shadow:0 8px 25px rgba(0,0,0,.04);
  border:1px solid var(--border); transition:transform var(--ease);
}
.phil-card:hover { transform:translateY(-4px); }
.phil-icon { font-size:40px; margin-bottom:14px; }
.phil-card h3 { font-size:20px; margin-bottom:12px; }
.phil-card p  { font-size:14px; opacity:.8; line-height:1.65; margin:0; }

.founder-spotlight {
  display:flex; gap:60px; align-items:center;
  background:var(--soft); padding:60px; border-radius:30px;
}
.founder-img { flex:1; }
.founder-img img { width:100%; height:480px; object-fit:cover; border-radius:20px; box-shadow:0 20px 40px rgba(0,0,0,.1); }
.founder-content { flex:1.2; }
.founder-content p { font-size:15px; line-height:1.75; opacity:.85; margin-bottom:18px; }

.core-teachers-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.teacher-editorial-card {
  background:var(--bg); border-radius:24px; overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
  border:1px solid var(--border);
  display:flex; flex-direction:column;
  transition:transform var(--ease);
}
.teacher-editorial-card:hover { transform:translateY(-4px); }
.teacher-editorial-card img  { width:100%; height:320px; object-fit:cover; }
.teacher-ed-info             { padding:36px; }
.teacher-ed-info h3          { font-size:2rem; margin-bottom:4px; }
.teacher-ed-info .role {
  display:inline-block;
  font-family:var(--font-body); font-weight:600;
  font-size:12px; letter-spacing:2px; text-transform:uppercase;
  opacity:.5; margin-bottom:20px;
}
.teacher-ed-info p { font-size:14px; line-height:1.7; opacity:.85; margin-bottom:12px; }

/* ── 17. IN-PERSON CLASSES PAGE ───────────────────────────────────────────── */
.dropin-intro  { font-size:17px; opacity:.85; margin-bottom:35px; }
.dropin-details { padding-top:60px; }
.dropin-details h3 { font-size:20px; margin-top:30px; margin-bottom:14px; }
.dropin-venue      { font-size:16px; font-weight:500; margin:25px 0; opacity:.85; }
.dropin-details ul.custom-bullets { padding:0; margin-bottom:20px; }
.dropin-details ul.custom-bullets li { font-size:15px; margin-bottom:10px; opacity:.85; padding-left:20px; position:relative; }
.dropin-details ul.custom-bullets li::before { content:'•'; position:absolute; left:0; font-size:18px; font-weight:700; }

/* ── 18. CONTACT PAGE ─────────────────────────────────────────────────────── */
.contact-page-wrapper { padding-top:150px; padding-bottom:80px; }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-top:40px; }

.contact-form-container {
  padding:40px; border-radius:20px;
  background:var(--iya-blue);
  box-shadow:0 8px 30px rgba(0,0,0,.04);
}
.form-row { display:flex; gap:20px; }
.form-row .contact-form-group { flex:1; }
.contact-form-group { margin-bottom:20px; }
.contact-form-group label {
  display:block; font-size:12px; font-weight:700;
  letter-spacing:1px; text-transform:uppercase;
  margin-bottom:8px; opacity:.8;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-select {
  width:100%; padding:15px 18px;
  background:var(--bg); border:1px solid var(--border);
  border-radius:12px;
  font-family:var(--font-body); font-size:15px; color:var(--text);
  outline:none; transition:border-color var(--ease), box-shadow var(--ease);
}
.contact-form-group input:focus-visible,
.contact-form-group textarea:focus-visible,
.contact-select:focus-visible {
  border-color:var(--text);
  box-shadow:0 0 0 3px rgba(42,36,69,.1);
  outline:none;
}
.contact-form-group textarea { resize:vertical; min-height:140px; }
.contact-info-container { display:flex; flex-direction:column; justify-content:center; }

.info-card { display:flex; align-items:flex-start; gap:20px; margin-bottom:32px; }
.info-icon {
  background:var(--iya-yellow);
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-icon svg { width:22px; height:22px; }
.info-content h4 { font-size:17px; margin-bottom:4px; }
.info-content p  { font-size:14px; margin-bottom:0; opacity:.8; }
.info-content small { display:block; margin-top:3px; opacity:.65; font-size:13px; }

.travel-guide { background:var(--iya-yellow); padding:24px 28px; border-radius:18px; margin-top:10px; }
.travel-guide h4 { font-size:18px; margin-bottom:12px; }
.travel-guide li { font-size:13px; opacity:.9; line-height:1.7; margin-bottom:6px; padding-left:16px; position:relative; }
.travel-guide li::before { content:'→'; position:absolute; left:0; opacity:.7; }

/* ── 19. RETREAT DETAIL PAGE ──────────────────────────────────────────────── */
.bento-gallery {
  display:grid;
  grid-template-columns:2fr 1fr; grid-template-rows:250px 250px;
  gap:14px; border-radius:24px; overflow:hidden; margin-bottom:40px;
}
.bento-gallery div { overflow:hidden; }
.bento-gallery img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.bento-gallery div:hover img { transform:scale(1.03); }
.bento-main { grid-row:span 2; }

.retreat-split-layout { display:flex; gap:50px; align-items:flex-start; }
.retreat-deep-dive {
  flex:1.8; background:var(--bg);
  padding:48px; border-radius:24px;
  box-shadow:0 8px 35px rgba(0,0,0,.04);
  border:1px solid var(--border);
}
.divider { border:0; height:1px; background:var(--border); margin:36px 0; }
.detail-section h2 { font-size:1.7rem; margin-bottom:18px; }
.detail-section p  { font-size:15px; line-height:1.75; opacity:.85; margin-bottom:14px; }

.incl-grid-small { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.incl-grid-small li { font-size:14px; margin-bottom:10px; opacity:.85; padding-left:18px; position:relative; }
.incl-grid-small li::before { content:'✓'; position:absolute; left:0; opacity:.7; }

/* Modern vertical timeline */
.modern-timeline { position:relative; padding-left:35px; }
.modern-timeline::before {
  content:''; position:absolute;
  left:5px; top:8px; bottom:8px;
  width:2px; background:var(--border);
}
.timeline-item { position:relative; margin-bottom:28px; }
.timeline-item::before {
  content:''; position:absolute;
  left:-35.5px; top:4px;
  width:13px; height:13px; border-radius:50%;
  background:var(--text); border:3px solid var(--bg);
  box-shadow:0 0 0 2px var(--border);
}
.timeline-item .time  { font-size:12px; font-weight:700; opacity:.55; margin-bottom:3px; letter-spacing:.5px; }
.timeline-item .event { font-size:16px; font-weight:500; opacity:.9; }
.timeline-desc        { font-size:13px !important; opacity:.65 !important; margin-top:4px !important; }
.highlight-meal .event { font-weight:800; }
.highlight-meal::before { background:#B54238; box-shadow:0 0 0 3px rgba(181,66,56,.2); }

.mini-teacher-flex { display:flex; gap:16px; flex-wrap:wrap; }
.mini-teacher {
  display:flex; align-items:center; gap:14px;
  background:var(--soft); padding:14px 18px; border-radius:16px;
  color:var(--text); transition:transform var(--ease);
}
.mini-teacher:hover { transform:translateY(-3px); }
.mini-teacher img   { width:46px; height:46px; border-radius:50%; object-fit:cover; }
.mini-teacher span  { font-size:12px; opacity:.65; }

/* Sticky booking card */
.retreat-sidebar-right { flex:1; position:sticky; top:120px; }
.sticky-booking-card {
  background:var(--bg); padding:34px; border-radius:24px;
  box-shadow:0 16px 50px rgba(0,0,0,.08); border:1px solid var(--border);
}
.price-header { border-bottom:1px solid var(--border); padding-bottom:20px; margin-bottom:22px; }
.from-text    { display:block; font-size:13px; font-weight:600; opacity:.65; margin-bottom:4px; }
.price-big    { font-family:var(--font-display); font-size:44px; font-weight:800; line-height:1; }
.booking-form .form-group { margin-bottom:18px; }
.booking-form label {
  display:block; font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:1px;
  margin-bottom:7px; opacity:.7;
}
.booking-form select {
  width:100%; padding:13px 16px;
  border:1px solid var(--border); border-radius:10px;
  font-family:var(--font-body); font-size:14px;
  background:var(--bg); color:var(--text);
  cursor:pointer; outline:none; transition:border-color var(--ease);
}
.booking-form select:focus-visible { border-color:var(--text); }
.trust-badges { margin-top:22px; font-size:13px; opacity:.65; text-align:center; }
.trust-badges p { margin-bottom:6px; }
.trust-badges a { text-decoration:underline; font-weight:600; }

/* Schedule + excursions */
.schedule-grid-split { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.excursion-card { padding:32px; border-radius:22px; margin-bottom:22px; transition:transform var(--ease); color:#2a2445; }
.excursion-card:hover { transform:translateY(-4px); }
.exc-day { font-size:11px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; opacity:.65; margin-bottom:10px; }
.excursion-card h3 { font-size:1.5rem; margin-bottom:10px; color:inherit; }
.excursion-card p  { font-size:15px; opacity:.85; margin:0; line-height:1.65; color:inherit; }

/* Inclusions */
.incl-grid  { display:grid; grid-template-columns:1fr 1.5fr; gap:80px; }
.incl-text h2 { font-size:clamp(2rem,4vw,3rem); margin-bottom:16px; }
.incl-lists { display:flex; gap:60px; background:var(--soft); padding:48px; border-radius:24px; }
.incl-column { flex:1; }
.incl-column h4 { font-size:18px; margin-bottom:22px; padding-bottom:10px; border-bottom:1px solid rgba(0,0,0,.1); }
.incl-column li { margin-bottom:14px; font-size:15px; opacity:.9; position:relative; padding-left:22px; }
.incl-column li::before { content:'✓'; position:absolute; left:0; font-size:12px; top:3px; }
.incl-column.muted       { opacity:.6; }
.incl-column.muted li::before { content:'✕'; }

/* ── 20. ANIMATIONS ───────────────────────────────────────────────────────── */
.reveal {
  opacity:0; transform:translateY(32px);
  transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.active { opacity:1; transform:translateY(0); }

/* ── 21. DARK MODE ────────────────────────────────────────────────────────── */
[data-theme="dark"] img { filter:brightness(.85) contrast(1.05); }

[data-theme="dark"] .site-footer,
[data-theme="dark"] .footer         { color:#fff; }
[data-theme="dark"] .footer-tagline { color:#fff; }

[data-theme="dark"] .retreat-deep-dive,
[data-theme="dark"] .sticky-booking-card,
[data-theme="dark"] .price-card-white,
[data-theme="dark"] .phil-card,
[data-theme="dark"] .teacher-editorial-card,
[data-theme="dark"] .schedule-timeline { background:var(--nav-bg); border-color:rgba(255,255,255,.06); }

[data-theme="dark"] .hero-glass-panel  { background:rgba(15,18,32,.45); border-color:rgba(255,255,255,.1); }
[data-theme="dark"] .founder-spotlight { background:var(--nav-bg); }
[data-theme="dark"] .incl-lists        { background:var(--nav-bg); }
[data-theme="dark"] .google-badge      { background:var(--nav-bg); border-color:rgba(255,255,255,.06); }
[data-theme="dark"] .nav-dropdown-content { background:var(--nav-bg); box-shadow:0 8px 30px rgba(0,0,0,.5); }
[data-theme="dark"] .contact-form-container { background:var(--nav-bg); }
[data-theme="dark"] .contact-form-group input,
[data-theme="dark"] .contact-form-group textarea,
[data-theme="dark"] .contact-select   { background:var(--bg); border-color:rgba(255,255,255,.1); color:#fff; }
[data-theme="dark"] .media-badge      { background:var(--iya-yellow); color:#000; }
[data-theme="dark"] .cine-link        { color:var(--accent); border-color:var(--accent); }
[data-theme="dark"] .inline-link      { color:#fff; }
[data-theme="dark"] .eyebrow-badge    { color:#000; }
[data-theme="dark"] .booking-form select { background:var(--bg); border-color:rgba(255,255,255,.1); }

/* ── 22. RESPONSIVE ───────────────────────────────────────────────────────── */

/* Give inner pages breathing room from the fixed navbar on large screens */
@media (min-width:769px) {
  .online-page-wrapper,
  .contact-page-wrapper { padding-top:200px !important; }
}

@media (max-width:1100px) {
  .pricing-cards-4 { grid-template-columns:repeat(2,1fr); }
  .incl-grid        { grid-template-columns:1fr; gap:40px; }
  .incl-lists       { flex-direction:column; gap:40px; padding:30px; }
}

@media (max-width:900px) {
  .hero-glass-panel    { padding:40px 30px; }
  .hero-glass-panel h1 { font-size:clamp(2rem,6vw,3rem); }
  .cinematic-row,
  .cinematic-row.reverse    { flex-direction:column; gap:35px; margin-bottom:70px; }
  .cinematic-media img      { height:380px; }
  .editorial-split          { flex-direction:column; gap:35px; }
  .philosophy-grid          { grid-template-columns:1fr; gap:20px; }
  .founder-spotlight        { flex-direction:column; padding:30px; gap:35px; }
  .founder-img img          { height:380px; }
  .core-teachers-grid       { grid-template-columns:1fr; }
  .retreat-split-layout     { flex-direction:column; gap:28px; }
  .retreat-sidebar-right    { position:relative; top:0; width:100%; }
  .retreat-deep-dive        { padding:28px 20px; }
  .bento-gallery            { grid-template-columns:1fr; grid-template-rows:240px 180px 180px; }
  .bento-main               { grid-row:auto; }
  .incl-grid-small          { grid-template-columns:1fr; }
  .schedule-grid-split      { grid-template-columns:1fr; gap:60px; }
}

@media (max-width:768px) {
  section, footer   { padding:50px 5vw; }
  .site-footer      { padding:50px 5vw; }

  /* Nav */
  .topbar           { display:none; }
  .navbar           { top:0; padding:18px 5vw; }
  .nav-links        { display:none; }
  .hamburger        { display:flex; }
  .nav-right-controls { gap:10px; }

  /* Hero */
  .hero             { height:auto; min-height:580px; padding-top:160px; }
  .hero h1          { font-size:clamp(2rem,7vw,2.8rem); }

  /* About / content */
  .about-content    { grid-template-columns:1fr; gap:30px; }
  .about-content-reverse { display:flex; flex-direction:column-reverse; }
  .about-content .img    { height:300px; }
  .mobile-text-left      { text-align:left; }
  .card-grid             { grid-template-columns:1fr; }
  .home-pills            { grid-template-columns:1fr !important; }
  .slide                 { flex:0 0 100%; }

  /* Pricing */
  .info-text-grid   { grid-template-columns:1fr; gap:28px; }
  .pricing-cards-4,
  .pricing-cards-2  { grid-template-columns:1fr; }

  /* Inner pages */
  .online-page-wrapper  { padding-top:120px; }
  .contact-page-wrapper { padding-top:120px; }
  .about-hero           { padding-top:130px; min-height:auto; }

  /* Contact */
  .contact-grid     { grid-template-columns:1fr; gap:40px; }
  .form-row         { flex-direction:column; gap:0; }
  .contact-form-container { padding:25px 18px; }

  /* Footer */
  .footer-contact-row  { flex-direction:column; gap:16px; align-items:center; }
  .footer-grid         { grid-template-columns:repeat(auto-fit,minmax(130px,1fr)); gap:24px; }

  /* Newsletter */
  .newsletter-form { flex-direction:column; align-items:center; }
  .newsletter-form input[type="email"] { max-width:100%; }

  /* Timeline */
  .timeline-block  { flex-direction:column; }
  .timeline-time   { flex:none; margin-bottom:8px; }

  .trust-wall { flex-direction:column; align-items:center; }
}

/* ── 23. REDUCED MOTION ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .reveal             { opacity:1; transform:none; }
  .floating-whatsapp  { animation:none; }
  .premium-hero       { background-attachment:scroll; }
}
