/* ============================================================
   LIHOYE XEWISE — Main Stylesheet
   Color palette: Deep slate navy + warm sage green + amber gold
   ============================================================ */

:root {
  --clr-bg:        #f7f6f2;
  --clr-bg-alt:    #eeecea;
  --clr-surface:   #ffffff;
  --clr-navy:      #1a2236;
  --clr-navy-mid:  #263049;
  --clr-sage:      #3d7a5e;
  --clr-sage-lt:   #5a9e7c;
  --clr-sage-pale: #d4ede2;
  --clr-amber:     #c8883a;
  --clr-amber-lt:  #e8a857;
  --clr-amber-pale:#fdf0dc;
  --clr-text:      #1e2a3a;
  --clr-text-mid:  #4a5568;
  --clr-text-lt:   #718096;
  --clr-border:    #dde1e9;

  --shadow-sm:  0 1px 3px rgba(26,34,54,0.06), 0 1px 2px rgba(26,34,54,0.04);
  --shadow-md:  0 4px 12px rgba(26,34,54,0.08), 0 2px 6px rgba(26,34,54,0.06);
  --shadow-lg:  0 10px 32px rgba(26,34,54,0.10), 0 4px 12px rgba(26,34,54,0.07);
  --shadow-xl:  0 20px 60px rgba(26,34,54,0.14), 0 8px 24px rgba(26,34,54,0.08);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --gap:        16px;
  --sec-pad:    clamp(64px, 8vw, 120px);
  --container:  1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.txt-accent      { color: var(--clr-sage); }
.txt-accent-warm { color: var(--clr-amber); }

/* ============================================================
   HEADER
   ============================================================ */

.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,246,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}

.hdr::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--clr-sage);
  transition: left 0.4s ease, right 0.4s ease;
}

.hdr.scrolled::after {
  left: 0; right: 0;
}

.hdr-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.hdr-logo-img { width: 32px; height: 32px; }

.hdr-logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-navy);
  letter-spacing: -0.01em;
}

.hdr-logo-text strong { color: var(--clr-sage); font-weight: 800; }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.hdr-nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.hdr-nav-link:hover,
.hdr-nav-link.active {
  color: var(--clr-sage);
  background: var(--clr-sage-pale);
}

.hdr-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--clr-sage);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(61,122,94,0.25);
}

.hdr-cta:hover {
  background: var(--clr-sage-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,94,0.35);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hdr-mobile {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(247,246,242,0.98);
  border-top: 1px solid transparent;
}

.hdr-mobile.open {
  max-height: 400px;
  border-top-color: var(--clr-border);
}

.hdr-mob-link {
  display: block;
  padding: 14px clamp(16px, 4vw, 40px);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  border-bottom: 1px solid var(--clr-border);
  transition: color 0.2s ease, background 0.2s ease;
}

.hdr-mob-link:hover,
.hdr-mob-link.active { color: var(--clr-sage); background: var(--clr-sage-pale); }

.hdr-mob-cta {
  display: block;
  margin: 16px clamp(16px, 4vw, 40px);
  padding: 12px 20px;
  background: var(--clr-sage);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.25s ease;
}

.hdr-mob-cta:hover { background: var(--clr-sage-lt); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--clr-sage);
  color: #fff;
  box-shadow: 0 2px 10px rgba(61,122,94,0.25);
}
.btn-primary:hover {
  background: var(--clr-sage-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,94,0.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--clr-sage);
  border-color: var(--clr-sage);
}
.btn-outline:hover {
  background: var(--clr-sage);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,94,0.3);
}

.btn-white {
  background: #fff;
  color: var(--clr-navy);
  box-shadow: 0 2px 10px rgba(26,34,54,0.15);
}
.btn-white:hover {
  background: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,34,54,0.2);
}

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-mt { margin-top: 28px; }

/* ============================================================
   SECTION BASICS
   ============================================================ */

.sec { padding: var(--sec-pad) 0; }
.sec-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 12px;
}

.sec-label-light { color: var(--clr-sage-lt); }

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--clr-navy);
  margin-bottom: 16px;
}

.sec-title-light { color: #fff; }

.sec-sub {
  font-size: 1.05rem;
  color: var(--clr-text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.sec-sub-light { color: rgba(255,255,255,0.75); }

.sec-body {
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.sec-body-light { color: rgba(255,255,255,0.8); }

.sec-header { margin-bottom: 48px; }
.sec-header-center { text-align: center; }
.sec-header-center .sec-sub { margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */

.sec-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,34,54,0.82) 0%,
    rgba(26,34,54,0.65) 50%,
    rgba(61,122,94,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(61,122,94,0.3);
  border: 1px solid rgba(90,158,124,0.5);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--clr-amber-lt);
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   BENTO GRID
   ============================================================ */

.sec-bento { background: var(--clr-bg); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--gap);
}

.bento-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-cell:hover {
  box-shadow: var(--shadow-xl);
}

.bento-lg {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 400px;
  background: var(--clr-navy);
  position: relative;
}

.bento-sm {
  grid-column: span 4;
  min-height: 190px;
}

.bento-wide {
  grid-column: span 12;
  min-height: 120px;
}

.bento-accent {
  background: var(--clr-sage);
  color: #fff;
}

.bento-light {
  background: var(--clr-amber-pale);
  border: 1px solid rgba(200,136,58,0.15);
}

.bento-dark {
  background: var(--clr-navy-mid);
  color: #fff;
}

.bento-img-cell {
  background: var(--clr-bg-alt);
  position: relative;
}

.bento-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-md);
}

.bento-inner { width: 100%; height: 100%; position: relative; }
.bento-inner-pad { padding: clamp(20px, 3vw, 32px); }

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-img-fill {
  position: absolute;
  inset: 0;
}

.bento-overlay-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,34,54,0.92) 0%, rgba(26,34,54,0.3) 60%, transparent 100%);
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber-lt);
  margin-bottom: 10px;
}

.bento-h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-h3-sm {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
}

.bento-h3-dark { color: var(--clr-navy); }

.bento-ico {
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.bento-ico-dark { color: var(--clr-amber); }

.bento-p-sm {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.bento-p-dark { color: var(--clr-text-mid); }

.bento-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.bento-stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-stat-ico {
  font-size: 1.4rem;
  color: var(--clr-sage);
  margin-bottom: 4px;
}

.bento-stat-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: -0.01em;
}

.bento-stat-desc {
  font-size: 0.82rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
}

.bento-divider {
  width: 1px;
  height: 60px;
  background: var(--clr-border);
  flex-shrink: 0;
}

.bento-img-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(26,34,54,0.7), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */

.sec-values {
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
}

.sec-values::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,122,94,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.crd {
  background: var(--clr-navy-mid);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(61,122,94,0.3);
}

.crd-ico-wrap {
  width: 52px; height: 52px;
  background: rgba(61,122,94,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.crd:hover .crd-ico-wrap { background: rgba(61,122,94,0.3); }

.crd-ico { font-size: 1.3rem; color: var(--clr-sage-lt); }

.crd-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.crd-txt {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   COURSE OUTLINE
   ============================================================ */

.sec-outline { background: var(--clr-bg-alt); }

.outline-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.outline-left { padding-top: 8px; }

.outline-right {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.pillar-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-1:hover { box-shadow: -4px 0 0 var(--clr-sage), var(--shadow-lg); }
.pillar-2:hover { box-shadow: -4px 0 0 var(--clr-amber), var(--shadow-lg); }
.pillar-3:hover { box-shadow: -4px 0 0 var(--clr-navy), var(--shadow-lg); }

.pillar-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  letter-spacing: -0.04em;
}

.pillar-content { flex: 1; }

.pillar-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.65;
}

.pillar-ico {
  font-size: 1.4rem;
  color: var(--clr-border);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.pillar-1:hover .pillar-ico { color: var(--clr-sage); }
.pillar-2:hover .pillar-ico { color: var(--clr-amber); }
.pillar-3:hover .pillar-ico { color: var(--clr-navy-mid); }

/* ============================================================
   BEGINNERS TEASER
   ============================================================ */

.sec-beginners { background: var(--clr-bg); }

.beginners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.beginners-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.beginners-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.beginners-img-wrap:hover .beginners-img { transform: scale(1.03); }

/* ============================================================
   CTA SECTION
   ============================================================ */

.sec-cta { background: var(--clr-bg-alt); }

.cta-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.cta-bg-img {
  position: absolute;
  inset: 0;
}

.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,34,54,0.88) 0%,
    rgba(26,34,54,0.7) 50%,
    rgba(61,122,94,0.4) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 80px);
  max-width: 600px;
}

.cta-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */

.glass-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 32px rgba(26,34,54,0.08), 0 2px 8px rgba(26,34,54,0.04);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.sec-page-hero {
  padding-top: calc(70px + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(40px, 6vw, 80px);
  background: var(--clr-bg);
}

.sec-page-hero-teal { background: var(--clr-navy); }

.page-h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--clr-navy);
  margin-bottom: 20px;
  max-width: 720px;
}

.page-h1-light { color: #fff; }

.page-intro {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--clr-text-mid);
  line-height: 1.7;
  max-width: 600px;
}

.page-intro-light { color: rgba(255,255,255,0.75); }

/* ============================================================
   OUR STORY PAGE
   ============================================================ */

.sec-story { background: var(--clr-bg); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-img-wrap:hover .story-img { transform: scale(1.03); }

.sec-mission {
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
}

.mission-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.mission-cell {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
}

.mission-main {
  grid-column: span 2;
  background: var(--clr-navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
}

.mission-quote {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-quote-ico {
  font-size: 1.8rem;
  color: var(--clr-sage-lt);
}

.mission-quote-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-navy);
  line-height: 1.6;
  font-style: italic;
}

.mission-stat-cell {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mission-stat-alt { background: rgba(61,122,94,0.12); }

.mission-ico { font-size: 1.6rem; color: var(--clr-sage-lt); }

.mission-stat-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.mission-stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.sec-approach { background: var(--clr-bg-alt); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.approach-item {
  padding: 28px;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.approach-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-sage-pale);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}

.approach-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
}

.approach-body {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ============================================================
   WORKSHOPS PAGE
   ============================================================ */

.sec-workshops-grid { background: var(--clr-bg); }

.ws-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

.ws-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-cell:hover { box-shadow: var(--shadow-xl); }

.ws-featured {
  grid-column: span 7;
  min-height: 500px;
  background: var(--clr-navy);
  position: relative;
}

.ws-cell-inner { width: 100%; height: 100%; position: relative; }

.ws-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-featured-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,34,54,0.95) 0%, rgba(26,34,54,0.5) 60%, transparent 100%);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.ws-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber-lt);
  margin-bottom: 12px;
}

.ws-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.ws-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ws-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ws-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
}

.ws-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-sage-lt);
}

.ws-sm {
  grid-column: span 5;
  min-height: 240px;
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ws-teal { background: var(--clr-sage); color: #fff; }
.ws-light { background: var(--clr-amber-pale); }

.ws-tag-sm {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.ws-tag-dark { color: var(--clr-amber); }

.ws-sm-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ws-sm-title-dark { color: var(--clr-navy); }

.ws-sm-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.ws-sm-desc-dark { color: var(--clr-text-mid); }

.ws-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.ws-link:hover { gap: 10px; color: #fff; }

.ws-link-dark { color: var(--clr-sage); }
.ws-link-dark:hover { color: var(--clr-navy); }

.ws-medium {
  grid-column: span 6;
  min-height: 220px;
  padding: clamp(20px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
}

.ws-dark { background: var(--clr-navy-mid); color: #fff; }
.ws-accent-cell { background: var(--clr-amber); color: var(--clr-navy); }

.ws-med-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.ws-med-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.8;
}

.ws-med-ico {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  opacity: 0.18;
}

.ws-full {
  grid-column: span 12;
  border-radius: var(--radius-lg);
}

.ws-full-inner {
  display: flex;
  align-items: stretch;
  min-height: 280px;
}

.ws-full-text {
  flex: 1;
  padding: clamp(28px, 3vw, 48px);
}

.ws-full-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.ws-full-desc {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

.ws-full-img {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.ws-full-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-format { background: var(--clr-bg-alt); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.fmt-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fmt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-sage-pale);
}

.fmt-ico {
  font-size: 1.6rem;
  color: var(--clr-sage);
  margin-bottom: 16px;
}

.fmt-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
}

.fmt-desc {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ============================================================
   FOR BEGINNERS PAGE
   ============================================================ */

.sec-beginner-intro { background: var(--clr-bg); }

.bgi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.bgi-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.bgi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bgi-img-wrap:hover .bgi-img { transform: scale(1.03); }

.sec-first-steps { background: var(--clr-bg-alt); }

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.step-day {
  display: inline-block;
  padding: 6px 14px;
  background: var(--clr-sage);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.step-card {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

.sec-faq-beginners { background: var(--clr-bg); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.faq-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.faq-ico { color: var(--clr-sage); flex-shrink: 0; margin-top: 2px; }

.faq-a {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

.sec-beginner-cta { background: var(--clr-bg-alt); }

.beg-cta-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  box-shadow: var(--shadow-xl);
}

.beg-cta-content {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.beg-cta-h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.beg-cta-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.beg-cta-img {
  overflow: hidden;
}

.beg-cta-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.beg-cta-card:hover .beg-cta-img-el { transform: scale(1.04); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.sec-contact-main { background: var(--clr-bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.contact-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 28px;
}

.frm { display: flex; flex-direction: column; gap: 18px; }

.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.frm-field { display: flex; flex-direction: column; gap: 6px; }
.frm-field-full { width: 100%; }

.frm-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-navy);
  letter-spacing: 0.02em;
}

.frm-input {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.frm-input:focus {
  border-color: var(--clr-sage);
  box-shadow: 0 0 0 3px rgba(61,122,94,0.12);
}

.frm-input::placeholder { color: var(--clr-text-lt); }

.frm-textarea { resize: vertical; min-height: 130px; }

.frm-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.frm-chk {
  width: 18px;
  height: 18px;
  border: 2px solid var(--clr-border);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-sage);
}

.frm-check-label {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
}

.frm-link { color: var(--clr-sage); font-weight: 700; }
.frm-link:hover { text-decoration: underline; }

.frm-submit-wrap { display: flex; }
.frm-submit { min-height: 48px; }

.contact-info-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-ico {
  font-size: 1rem;
  color: var(--clr-sage);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--clr-text-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-detail-val {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text);
  font-weight: 500;
}

.contact-link { transition: color 0.2s ease; }
.contact-link:hover { color: var(--clr-sage); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.sec-contact-faq { background: var(--clr-bg-alt); }

.cfaq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.cfaq-item {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cfaq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cfaq-q {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.cfaq-a {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.ftr {
  background: var(--clr-navy);
  padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
}

.ftr-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ftr-logo-img { width: 36px; height: 36px; filter: brightness(0) invert(1); opacity: 0.85; }

.ftr-logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.ftr-logo-text strong { color: var(--clr-sage-lt); font-weight: 800; }

.ftr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.ftr-link {
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.ftr-link:hover {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.07);
}

.ftr-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.ftr-contact i { margin-right: 6px; color: var(--clr-sage-lt); }
.ftr-contact a { color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.ftr-contact a:hover { color: rgba(255,255,255,0.9); }

.ftr-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  width: 100%;
}

.ftr-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.ftr-legal-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.ftr-legal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.ftr-legal-link:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanks-body { min-height: 100vh; display: flex; flex-direction: column; }

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
}

.thanks-stage {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.thanks-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-sage);
  animation: dotPulse 0.8s ease forwards;
  transform: scale(0);
}

@keyframes dotPulse {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.thanks-h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: -0.025em;
  animation: fadeUp 0.6s ease 0.6s both;
}

.thanks-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-sage);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.5s ease 1.1s both;
  transition: gap 0.2s ease, color 0.2s ease;
}

.thanks-link:hover { gap: 14px; color: var(--clr-sage-lt); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-main {
  padding-top: 70px;
  min-height: 80vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
}

.legal-header { margin-bottom: 48px; }

.legal-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--clr-text-lt);
}

.legal-body { display: flex; flex-direction: column; gap: 36px; }

.legal-intro {
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
}

.legal-intro a { color: var(--clr-sage); font-weight: 600; }
.legal-intro a:hover { text-decoration: underline; }

.legal-group { display: flex; flex-direction: column; gap: 14px; }

.legal-h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-navy);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--clr-sage-pale);
}

.legal-h2-plain {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-navy);
}

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

.legal-group a { color: var(--clr-sage); font-weight: 600; }
.legal-group a:hover { text-decoration: underline; }

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 4px;
}

.legal-list li {
  font-size: 0.93rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-sage);
}

.legal-numbered .legal-clause {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.legal-clause-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-sage);
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 2px;
}

.legal-clause-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }

.legal-clause-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-navy);
}

.legal-clause-body p {
  font-size: 0.93rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
}


.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--clr-navy);
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-mid);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--clr-bg-alt); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

.ck-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(460px, calc(100vw - 32px));
  display: none;
}

.ck-wrap.visible { display: block; }

.ck-card {
  background: var(--clr-navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(26,34,54,0.3), 0 4px 16px rgba(26,34,54,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-compact {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ck-msg {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  flex: 1;
}

.ck-link { color: var(--clr-sage-lt); font-weight: 700; }
.ck-link:hover { text-decoration: underline; }

.ck-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ck-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Nunito Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.ck-accept {
  background: var(--clr-sage);
  color: #fff;
}

.ck-accept:hover { background: var(--clr-sage-lt); }

.ck-settings {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}

.ck-settings:hover { background: rgba(255,255,255,0.18); }

.ck-panel {
  display: none;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ck-panel.visible { display: block; }

.ck-panel-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.ck-category {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ck-category:last-of-type { border-bottom: none; }

.ck-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.ck-cat-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.ck-cat-always {
  font-size: 0.75rem;
  color: var(--clr-sage-lt);
  font-weight: 600;
}

.ck-cat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.ck-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.ck-chk { opacity: 0; width: 0; height: 0; position: absolute; }

.ck-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ck-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.ck-chk:checked + .ck-slider { background: var(--clr-sage); }
.ck-chk:checked + .ck-slider::before { transform: translateX(18px); }

.ck-panel-btns {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.ck-save {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  flex: 1;
}

.ck-save:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .outline-split { grid-template-columns: 1fr; }
  .outline-left { padding-top: 0; }
  .ws-featured { grid-column: span 12; min-height: 460px; }
  .ws-sm { grid-column: span 6; }
  .ws-medium { grid-column: span 6; }
  .ws-full-img { width: 260px; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid .fmt-card:last-child { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-col { order: -1; }
  .contact-info-card { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-info-title { grid-column: span 2; }
  .contact-map { margin-top: 16px; }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .bento-lg { grid-column: span 12; min-height: 320px; }
  .bento-sm { grid-column: span 12; }
  .bento-wide { grid-column: span 12; }
  .bento-row { flex-direction: column; }
  .bento-divider { width: 60px; height: 1px; }
  .bento-stat { padding: 16px 20px; }

  .vals-grid { grid-template-columns: 1fr; }

  .approach-grid { grid-template-columns: 1fr; }

  .story-grid { grid-template-columns: 1fr; }
  .story-img-col { order: -1; }

  .mission-bento { grid-template-columns: 1fr; }
  .mission-main { grid-column: span 1; }

  .beginners-grid { grid-template-columns: 1fr; }
  .beginners-img-wrap { order: -1; }

  .bgi-grid { grid-template-columns: 1fr; }
  .bgi-img-wrap { order: -1; }

  .step-item { grid-template-columns: 80px 1fr; }

  .faq-grid { grid-template-columns: 1fr; }

  .beg-cta-card { grid-template-columns: 1fr; }
  .beg-cta-img { display: none; }

  .ws-bento { display: flex; flex-direction: column; }
  .ws-featured { min-height: 400px; }
  .ws-full-img { display: none; }

  .format-grid { grid-template-columns: 1fr; }
  .format-grid .fmt-card:last-child { grid-column: span 1; }

  .frm-row { grid-template-columns: 1fr; }

  .cfaq-grid { grid-template-columns: 1fr; }

  .contact-info-card { grid-template-columns: 1fr; }
  .contact-info-title { grid-column: span 1; }

  .cta-content { padding: clamp(28px, 5vw, 48px); }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; }
  .ck-compact { flex-direction: column; align-items: flex-start; }
  .step-item { grid-template-columns: 1fr; }
  .step-marker { flex-direction: row; align-items: center; }
}