/* ================================================================
   ADVENTURE NATURE LOVERS — v8 Modern Redesign
   Bento grid · Bold typography · Rounded containers · Hiking magazine
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --olive: #7B8B6F;
  --olive-dark: #5E6B54;
  --olive-deep: #4A5442;
  --olive-light: #96A48B;
  --olive-pale: #B5C0AD;
  --cream: #F0ECE3;
  --cream-warm: #F6F3EC;
  --cream-light: #FAF8F4;
  --cream-dark: #E0DBD0;
  --plum: #4A0E3D;
  --plum-light: #6B2057;
  --plum-mid: #8A3572;
  --plum-pale: #C47EB0;
  --plum-faint: #F0E0EB;
  --ink: #1A1A18;
  --ink2: #4A4A45;
  --ink3: #8A857F;
  --bg: var(--cream);
  --bg2: var(--cream-dark);
  --bg3: var(--cream-light);
  --danger: #B03A2E;
  --success: #3E8E5C;
  --warning: #C07820;
  --sky: #2E5090;
  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: var(--display);
  --mw: 1200px;
  --rad: 24px;
  --rad-sm: 16px;
  --rad-lg: 32px;
  --shadow: 0 2px 20px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.08);
  --ease: cubic-bezier(.22,1,.36,1);
  /* legacy compat */
  --r: var(--rad-sm);
  --forest: var(--olive-deep); --forest-light: var(--olive-dark);
  --moss: var(--olive); --sage: var(--olive-light); --leaf: var(--olive-pale);
  --earth: var(--plum); --earth-light: var(--plum-light);
  --bark: var(--plum); --warmth: var(--plum-mid); --berry: var(--plum-mid);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--ink);
  line-height: 1.65; font-weight: 400; font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--olive-pale); color: var(--olive-deep); }
a { color: var(--ink); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--plum); }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   NAV — floating pill style
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: var(--mw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 100px; padding: 0 .6rem 0 1rem;
  border: 1px solid rgba(123,139,111,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.nav-logo { height: 38px; width: auto; cursor: pointer; border-radius: 8px; transition: transform .3s var(--ease); }
.nav-logo:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 500; color: var(--ink2);
  padding: 8px 16px; border-radius: 100px;
  cursor: pointer; transition: all .3s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--ink); background: rgba(123,139,111,.08); }
.nav-links a.on { color: var(--cream-light); background: var(--olive-deep); }
.nav-lang {
  font-size: .78rem; font-weight: 600; padding: 6px 14px;
  background: var(--cream); border: 1px solid rgba(123,139,111,.15);
  color: var(--ink2); border-radius: 100px; cursor: pointer; font-family: var(--sans);
}
.nav-lang option { background: #fff; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.3rem; cursor: pointer; padding: 8px; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--sans); font-size: .85rem;
  font-weight: 600; border: none; cursor: pointer; transition: all .4s var(--ease);
  border-radius: 100px; letter-spacing: .2px;
}
.btn-primary { background: var(--ink); color: var(--cream-light); }
.btn-primary:hover { background: var(--plum); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,14,61,.2); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream-light); }
.btn-warm { background: var(--olive); color: #fff; }
.btn-warm:hover { background: var(--olive-dark); }
.btn-sm { padding: 10px 20px; font-size: .8rem; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════
   HERO — large rounded video/image container
   ═══════════════════════════════════════════ */
.hero {
  position: relative; padding: 6rem 2rem 0; margin-top: 0;
}
.hero-container {
  max-width: var(--mw); margin: 0 auto;
  position: relative; border-radius: var(--rad-lg);
  overflow: hidden; min-height: 520px;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; background: var(--olive-deep);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-inner {
  position: relative; z-index: 2; padding: 3rem;
  max-width: 600px; width: 100%;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 400; color: #fff; line-height: 1.12;
  margin-bottom: 1rem; letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--olive-pale); }
.hero-desc {
  font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.7;
  margin-bottom: 1.5rem; max-width: 420px;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Slide nav hint (bottom right) */
.hero-nav {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 3;
  display: flex; align-items: center; gap: .8rem;
}
.hero-nav a {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; transition: all .3s var(--ease);
}
.hero-nav a:hover { background: #fff; color: var(--ink); transform: scale(1.08); }

/* ═══════════════════════════════════════════
   BENTO GRID — asymmetric feature layout
   ═══════════════════════════════════════════ */
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}
.bento-card {
  background: var(--cream-warm); border-radius: var(--rad);
  overflow: hidden; transition: all .45s var(--ease);
  position: relative; cursor: pointer;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-card-img {
  width: 100%; height: 100%; min-height: 240px;
  object-fit: cover; transition: transform .6s var(--ease);
}
.bento-card:hover .bento-card-img { transform: scale(1.04); }
.bento-card-body { padding: 1.5rem; }
.bento-card-label {
  font-size: .7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--olive); margin-bottom: .4rem;
}
.bento-card h3 {
  font-family: var(--display); font-size: 1.3rem; font-weight: 400;
  color: var(--ink); line-height: 1.25; margin-bottom: .4rem;
  
}
.bento-card p { font-size: .85rem; color: var(--ink2); line-height: 1.6; }
.bento-card-overlay {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}
.bento-card-overlay h3 { color: #fff; }
.bento-card-overlay p { color: rgba(255,255,255,.8); }
.bento-card-overlay .bento-card-label { color: var(--olive-pale); }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section { padding: 4rem 0; }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.section-title {
  font-family: var(--display); font-size: 2.2rem; font-weight: 400;
  color: var(--ink); line-height: 1.1; letter-spacing: -.01em;
}
.section-sub {
  font-size: .7rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--olive); margin-bottom: .3rem;
}
.section-desc {
  font-size: .92rem; color: var(--ink2);
  max-width: 480px; line-height: 1.7;
}

/* ═══════════════════════════════════════════
   COURSE CARDS — rounded, modern
   ═══════════════════════════════════════════ */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.course-card {
  background: var(--cream-warm); border-radius: var(--rad); overflow: hidden;
  transition: all .45s var(--ease); border: 1px solid rgba(0,0,0,.04);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-img {
  height: 200px; background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  position: relative; overflow: hidden;
}
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.course-card:hover .course-img img { transform: scale(1.05); }
.course-type-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px; border-radius: 100px; font-size: .7rem;
  font-weight: 600; color: #fff; backdrop-filter: blur(12px);
  background: rgba(0,0,0,.3);
}
.course-spots {
  position: absolute; bottom: 14px; right: 14px;
  padding: 5px 12px; border-radius: 100px; font-size: .7rem;
  font-weight: 600; background: #fff; color: var(--ink);
}
.course-body { padding: 1.3rem; }
.course-date {
  font-size: .78rem; font-weight: 500; color: var(--olive);
  margin-bottom: .4rem; display: flex; align-items: center; gap: .4rem;
}
.course-card h3 {
  font-family: var(--display); font-size: 1.1rem; font-weight: 400;
  color: var(--ink); margin-bottom: .3rem; line-height: 1.25; 
}
.course-card p { font-size: .82rem; color: var(--ink2); line-height: 1.55; margin-bottom: .8rem; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .8rem; border-top: 1px solid rgba(0,0,0,.06);
}
.course-price { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); }
.course-price small { font-size: .7rem; font-weight: 400; color: var(--ink3); display: block; }
.course-book {
  padding: 9px 20px; font-size: .78rem; font-weight: 600;
  background: var(--ink); color: var(--cream-light); border: none; cursor: pointer;
  border-radius: 100px; font-family: var(--sans); transition: all .3s var(--ease);
}
.course-book:hover { background: var(--plum); }
.course-book.full { background: var(--ink3); cursor: default; }

/* ═══════════════════════════════════════════
   COURSE PAGE LAYOUTS — responsive
   ═══════════════════════════════════════════ */
.courses-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 2rem;
}
.courses-sidebar { position: sticky; top: 80px; align-self: start; }
.course-detail-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem;
}
.course-detail-layout > div:last-child { position: sticky; top: 80px; align-self: start; }

/* ═══════════════════════════════════════════
   CALENDAR
   ═══════════════════════════════════════════ */
.calendar {
  background: var(--cream-warm); border-radius: var(--rad); padding: 1.2rem;
  border: 1px solid rgba(0,0,0,.04);
}
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cal-header h4 { font-family: var(--display); font-size: 1rem; color: var(--ink);  }
.cal-header button {
  background: var(--cream); border: 1px solid rgba(0,0,0,.08); color: var(--ink2);
  cursor: pointer; border-radius: 50%; width: 32px; height: 32px; font-size: .9rem;
  transition: all .3s;
}
.cal-header button:hover { background: var(--ink); color: #fff; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-weekday { font-size: .68rem; font-weight: 600; color: var(--ink3); padding: 4px; text-transform: uppercase; letter-spacing: .5px; }
.cal-day {
  padding: 6px 2px; font-size: .82rem; color: var(--ink2); cursor: pointer;
  border-radius: 10px; transition: all .2s;
}
.cal-day:hover { background: var(--ink); color: #fff; }
.cal-day.today { font-weight: 700; color: var(--plum); }
.cal-day.has-course { font-weight: 700; color: #fff; background: var(--olive); border-radius: 10px; }
.cal-dot { width: 5px; height: 5px; border-radius: 50%; margin: 2px auto 0; display: block; }
.cal-day.other-month { color: var(--ink3); opacity: .3; }

/* ═══════════════════════════════════════════
   FILTERS
   ═══════════════════════════════════════════ */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filter-btn {
  padding: 8px 20px; font-size: .8rem; font-weight: 500;
  background: var(--cream-warm); border: 1px solid rgba(0,0,0,.06);
  color: var(--ink2); border-radius: 100px; cursor: pointer;
  font-family: var(--sans); transition: all .3s var(--ease);
}
.filter-btn:hover, .filter-btn.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ═══════════════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════════════ */
.philosophy { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.philosophy-img { border-radius: var(--rad); overflow: hidden; }
.philosophy-img img { width: 100%; height: 360px; object-fit: cover; }
.philosophy-text h2 {
  font-family: var(--display); font-size: 1.8rem; font-weight: 400;
  color: var(--ink); margin-bottom: .8rem;  line-height: 1.15;
}
.philosophy-text p { color: var(--ink2); line-height: 1.8; margin-bottom: .8rem; font-size: .92rem; }

/* ═══════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════ */
.features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature-card {
  padding: 2rem 1.5rem; background: var(--cream-warm);
  border-radius: var(--rad); transition: all .4s var(--ease);
  border: 1px solid rgba(0,0,0,.04); position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2rem; margin-bottom: .8rem; }
.feature-card h3 {
  font-family: var(--display); font-size: 1.05rem; font-weight: 400;
  color: var(--ink); margin-bottom: .4rem; 
}
.feature-card p { font-size: .85rem; color: var(--ink3); line-height: 1.6; }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery img {
  width: 100%; height: 200px; object-fit: cover; border-radius: var(--rad-sm);
  transition: all .5s var(--ease); cursor: pointer;
}
.gallery img:hover { transform: scale(1.03); }

/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.blog-card {
  background: var(--cream-warm); border-radius: var(--rad); overflow: hidden;
  transition: all .45s var(--ease); border: 1px solid rgba(0,0,0,.04);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { height: 200px; object-fit: cover; width: 100%; transition: transform .6s var(--ease); }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 1.3rem; }
.blog-card-date { font-size: .7rem; color: var(--olive); margin-bottom: .3rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.blog-card h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: .3rem;  }
.blog-card p { font-size: .82rem; color: var(--ink2); line-height: 1.55; }

/* ═══════════════════════════════════════════
   ARTICLE
   ═══════════════════════════════════════════ */
.article { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.article h1 { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem;  }
.article-meta { font-size: .82rem; color: var(--olive); margin-bottom: 2rem; font-weight: 500; }
.article-content { font-size: 1rem; line-height: 1.9; color: var(--ink2); }
.article-content p { margin-bottom: 1.2rem; }
.article-content img { border-radius: var(--rad); margin: 1.5rem 0; }

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .72rem; font-weight: 600;
  color: var(--ink2); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: #fff;
  border: 1px solid rgba(0,0,0,.1); color: var(--ink);
  font-family: var(--sans); font-size: .9rem; border-radius: 14px;
  transition: all .3s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(123,139,111,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══════════════════════════════════════════
   BOOKING FORM
   ═══════════════════════════════════════════ */
.booking-card {
  background: var(--cream-warm); border-radius: var(--rad); padding: 2rem;
  border: 1px solid rgba(0,0,0,.04);
}
.booking-card h3 { font-family: var(--display); color: var(--ink); margin-bottom: 1.5rem; font-size: 1.3rem;  }

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: center; }
.about-img img { border-radius: var(--rad); }
.about-content h1 { font-family: var(--display); font-size: 2.2rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem;  }
.about-content p { color: var(--ink2); line-height: 1.85; margin-bottom: .8rem; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-item {
  background: var(--cream-warm); border-radius: var(--rad-sm); padding: 1.3rem 1.5rem;
  margin-bottom: .6rem; cursor: pointer; border: 1px solid rgba(0,0,0,.04);
  transition: all .3s var(--ease);
}
.faq-item:hover { border-color: rgba(0,0,0,.1); }
.faq-q {
  font-family: var(--display); font-size: 1rem; font-weight: 400;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  
}
.faq-a { display: none; margin-top: .6rem; font-size: .9rem; color: var(--ink2); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--ink3); font-weight: 300; font-style: normal; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--ink); color: rgba(255,255,255,.5);
  padding: 3rem 0 1.5rem; margin-top: 2rem;
  border-radius: var(--rad-lg) var(--rad-lg) 0 0;
}
.footer-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand img { height: 40px; width: auto; border-radius: 8px; margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer h4 {
  font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .8rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: .3rem; }
.footer a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .3s; }
.footer a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--mw); margin: 0 auto; padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 2rem;
  display: flex; justify-content: space-between; font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer-newsletter { display: flex; gap: .5rem; margin-top: .5rem; }
.footer-newsletter input {
  padding: 10px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #fff; font-family: var(--sans); font-size: .82rem; border-radius: 100px; flex: 1;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.25); }
.footer-newsletter button {
  padding: 10px 20px; background: #fff; color: var(--ink);
  border: none; cursor: pointer; border-radius: 100px;
  font-family: var(--sans); font-size: .8rem; font-weight: 600; transition: all .3s;
}
.footer-newsletter button:hover { background: var(--olive-pale); }

/* ═══════════════════════════════════════════
   PAGE HEADER — minimal, no colored bar
   ═══════════════════════════════════════════ */
.page-header {
  padding: 8rem 2rem 2rem; text-align: left;
}
.page-header .container { max-width: var(--mw); margin: 0 auto; }
.page-header h1 {
  font-family: var(--display); font-size: 2.8rem; font-weight: 400;
  color: var(--ink); line-height: 1.1;
}
.page-header p { font-size: .92rem; color: var(--ink3); margin-top: .4rem; }

/* ═══════════════════════════════════════════
   SUCCESS
   ═══════════════════════════════════════════ */
.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-page h1 { font-family: var(--display); font-size: 2rem; color: var(--ink); margin-bottom: 1rem;  }
.success-page p { color: var(--ink2); line-height: 1.85; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   UPLOAD (Admin)
   ═══════════════════════════════════════════ */
.upload-zone {
  border: 2px dashed rgba(0,0,0,.12); border-radius: var(--rad-sm);
  padding: 2rem; text-align: center; cursor: pointer;
  transition: all .3s var(--ease); background: #fff; position: relative;
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--olive); background: var(--cream-warm); }
.upload-zone .upload-label { font-size: .85rem; color: var(--ink3); display: block; }
.upload-zone .upload-label strong { color: var(--olive-dark); }
.upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-preview { margin-top: .8rem; display: flex; align-items: center; gap: .8rem; }
.upload-preview img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.upload-preview .upload-name { font-size: .82rem; color: var(--ink2); font-weight: 500; }
.upload-preview .upload-remove { font-size: .75rem; color: var(--danger); cursor: pointer; border: none; background: none; font-family: var(--sans); text-decoration: underline; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .8s var(--ease) both; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .courses-grid, .blog-grid, .features-row { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .philosophy, .about-layout { grid-template-columns: 1fr; }
  .courses-layout { grid-template-columns: 1fr; }
  .courses-sidebar { position: static; }
  .course-detail-layout { grid-template-columns: 1fr; }
  .course-detail-layout > div:last-child { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 64px; left: 1rem; right: 1rem;
    background: #fff; flex-direction: column;
    padding: 1rem; gap: .2rem;
    border-radius: var(--rad); box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,.06);
  }
  .nav-toggle { display: block; }
  .hero-nav { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .page-header { text-align: center; }
}
@media (max-width: 600px) {
  .courses-grid, .blog-grid, .features-row, .bento { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero-container { min-height: 400px; border-radius: var(--rad); }
  .hero-inner { padding: 1.5rem; }
  .nav { padding: .6rem .8rem; }
  .nav-inner { padding: 0 .5rem 0 .8rem; height: 50px; }
  .nav-logo { height: 32px; }
  .page-header { padding: 5rem 1.2rem 1.2rem; }
  .page-header h1 { font-size: 1.8rem; }
  .container { padding: 0 1rem; }
  .hero { padding: 4rem .8rem 0; }
  .section { padding: 2rem 0; }
  .philosophy-img img { height: 220px; }
  .footer { border-radius: var(--rad) var(--rad) 0 0; padding: 2rem 0 1rem; }
  .footer-bottom { flex-direction: column; gap: .3rem; text-align: center; }
  .about-layout { gap: 1.5rem; }
  .about-img img { max-height: 280px; object-fit: cover; border-radius: var(--rad-sm); }
  .faq-item { padding: 1rem 1.2rem; }

  /* ─── Course cards mobile ─── */
  .course-card { border-radius: var(--rad-sm); }
  .course-img { height: 200px; }
  .course-body { padding: 1rem; }
  .course-card h3 { font-size: 1.1rem; }
  .course-card p { font-size: .85rem; margin-bottom: .6rem; }
  .course-footer { flex-direction: row; align-items: center; gap: .8rem; }
  .course-price { font-size: .95rem; }
  .course-book { padding: 10px 18px; font-size: .8rem; white-space: nowrap; }

  /* ─── Filters — horizontal scroll on mobile ─── */
  .filters {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem; margin-bottom: 1rem;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; font-size: .78rem; padding: 7px 16px; }

  /* ─── Course detail mobile ─── */
  .course-detail-layout { gap: 1.5rem; }
  .booking-card { padding: 1.2rem; border-radius: var(--rad-sm); }
  .booking-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }

  /* ─── Blog cards mobile ─── */
  .blog-card img { height: 180px; }
  .blog-card-body { padding: 1rem; }
  .blog-card h3 { font-size: 1rem; }

  /* ─── Feature cards mobile ─── */
  .feature-card { padding: 1.4rem 1.2rem; text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .feature-icon { font-size: 1.8rem; margin-bottom: 0; flex-shrink: 0; }
  .feature-card h3 { font-size: 1rem; }

  /* ─── Calendar mobile ─── */
  .calendar { padding: 1rem; border-radius: var(--rad-sm); }
  .cal-day { padding: 8px 2px; font-size: .85rem; }

  /* ─── Buttons mobile ─── */
  .btn { padding: 12px 22px; font-size: .84rem; }
  .btn-sm { padding: 10px 18px; font-size: .8rem; }

  /* ─── Section headers mobile ─── */
  .section-title { font-size: 1.6rem; }
  .section-header { gap: .8rem; }
  .section-desc { font-size: .88rem; }

  /* ─── Swipe dots — more space from bottom ─── */
  .swipe-indicator { bottom: .8rem; }
  .swipe-dots { padding: 6px 12px; }
}

/* ═══════════════════════════════════════════
   SWIPE NAVIGATION INDICATOR
   ═══════════════════════════════════════════ */
.swipe-indicator {
  position: fixed; bottom: 1.2rem; left: 50%;
  transform: translateX(-50%); z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.swipe-dots {
  display: flex; gap: 6px; align-items: center;
  background: rgba(26,26,24,.7); backdrop-filter: blur(16px);
  padding: 8px 14px; border-radius: 100px;
}
.swipe-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.3); transition: all .3s var(--ease);
  display: block;
}
.swipe-dot.on {
  width: 22px; border-radius: 100px;
  background: #fff;
}
.swipe-dot:hover { background: rgba(255,255,255,.6); }
.swipe-hint {
  font-size: .72rem; font-weight: 600; color: #fff;
  background: rgba(26,26,24,.75); backdrop-filter: blur(12px);
  padding: 5px 14px; border-radius: 100px;
  white-space: nowrap; transition: opacity .2s;
  opacity: 0; pointer-events: none;
  letter-spacing: .3px;
}

/* Touch feedback */
@media (hover: none) {
  .swipe-indicator { bottom: 1rem; }
  .course-card:hover, .blog-card:hover, .feature-card:hover, .faq-item:hover, .bento-card:hover {
    transform: none; box-shadow: var(--shadow);
  }
}

/* Safe area for notch phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .swipe-indicator { bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
}

