@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap");

:root {
  --bg: #f7f3ea;
  --bg-2: #efe7d8;
  --ink: #172014;
  --ink-soft: #273322;
  --muted: #69705f;
  --muted-2: #a08f71;
  --card: #ffffff;
  --card-soft: #f1eadc;
  --line: rgba(23, 32, 20, 0.12);
  --line-soft: rgba(23, 32, 20, 0.07);
  --dark: #1d2a1b;
  --dark-2: #263821;
  --dark-warm: #6d3f2f;
  --accent: #9a2f35;
  --gold: #c4a158;
  --on-dark: #faf6eb;
  --on-dark-muted: #c8c1ae;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shell: 1216px;
  --gap-side: 32px;
  --font: "General Sans", "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gap-side);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Drop the transition once the fade should be complete so the visible
   end-state always paints, even where transition timelines are frozen. */
.reveal.reveal-settled { opacity: 1 !important; transform: none !important; transition: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Badge / eyebrow pill ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow.on-dark { border-color: rgba(243, 242, 236, 0.22); color: var(--on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 8px 8px 8px 26px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.btn .ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover .ic { transform: translate(3px, -3px); }
.btn-dark { background: var(--dark); color: var(--on-dark); }
.btn-dark .ic { background: #fff; color: var(--ink); }
.btn-dark:hover { background: #2a2922; }
.btn-warm { background: var(--dark-warm); color: var(--on-dark); }
.btn-warm .ic { background: #f3f2ec; color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-light .ic { background: var(--dark); color: #fff; }

/* ---------- Image fallback placeholder ---------- */
.img-wrap { position: relative; display: block; overflow: hidden; background: var(--card-soft); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, #e7e6e0 0 10px, #efeee9 10px 20px);
  color: #9b9a90;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  padding: 16px;
}

section { position: relative; }

/* ---------- Header (shared inner) ---------- */
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.brand .mark { width: 34px; height: 34px; flex: none; color: var(--accent); }
.brand .word { display: flex; align-items: baseline; gap: 8px; font-size: 25px; letter-spacing: 0; }
.brand .word b { font-weight: 600; }
.brand .word span { font-size: 13px; font-weight: 600; color: var(--muted); }

/* In-hero header removed — navigation lives only in the sticky bar, which is
   hidden while in the hero and slides DOWN once scrolled past it. */

/* Sticky bar: hidden while in the hero, slides DOWN into view once scrolled
   past the hero, slides back up on return. Rounded bottom corners. */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(247, 243, 234, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 14px 40px -22px rgba(20, 19, 14, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  transform: translateY(calc(-100% - 30px));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-nav.show { transform: translateY(0); }
.sticky-nav .bar-inner {
  max-width: var(--shell);
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.sticky-nav .brand .word { font-size: 23px; }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a, .nav-links .has-sub > button {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links .has-sub > button:hover { color: #000; }
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > button { text-transform: uppercase; }
.nav-links .has-sub .sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: 0 24px 50px -22px rgba(20, 19, 14, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.22s;
}
.nav-links .has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-links .has-sub .sub a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.nav-links .has-sub .sub a:hover { background: var(--bg-2); }
.nav-cta { display: none; }
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  place-items: center;
}
.burger span { position: relative; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu sheet */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 16px var(--gap-side) max(28px, env(safe-area-inset-bottom));
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease, visibility 0.5s;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open { transform: none; opacity: 1; visibility: visible; }
.mobile-menu__close { transition: transform 0.3s ease, background 0.25s ease; }
.mobile-menu__close:hover { transform: rotate(90deg); background: var(--accent); }
.mobile-menu__links a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s, padding-left 0.2s;
}
.mobile-menu.open .mobile-menu__links a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-menu__links a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu__links a:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-menu__links a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu__links a:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu.open .mobile-menu__links a:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu__links a:nth-child(6) { transition-delay: 0.33s; }
.mobile-menu.open .mobile-menu__links a:nth-child(7) { transition-delay: 0.38s; }
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
.mobile-menu__close {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  margin: auto 0;
  padding: 24px 0;
}
.mobile-menu__links a {
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 14px 2px;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__links a:active,
.mobile-menu__links a:hover { color: var(--accent); padding-left: 8px; }
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--accent);
  color: #fff;
  padding: 18px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mobile-menu__cta:active { background: #7f2830; }

/* ---------- Hero ---------- */
.hero-outer {
  width: 100%;
  margin-top: 0;
}
.hero {
  position: relative;
  width: 100%;
  min-height: 105vh;
  min-height: 105svh;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 60px 72px 92px;
  color: #fff;
  isolation: isolate;
}
.hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero .hero-bg .img-wrap { width: 100%; height: 100%; }
.hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 14, 7, 0.82) 0%, rgba(8, 14, 7, 0.30) 48%, rgba(8, 14, 7, 0.45) 100%),
    linear-gradient(180deg, rgba(8,10,6,0.22) 0%, rgba(8,10,6,0.10) 30%, rgba(8,10,6,0.88) 100%);
}
.hero-brand {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 34px;
  text-align: center;
}
.hero-brand .mark {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  color: var(--accent);
}
.hero-word .accent-l { color: var(--accent); }
.hero-word {
  font-size: 156px;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}
.hero-legal {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255,255,255,0.78);
}
.hero-lead { max-width: 860px; }
.hero-foot {
  padding-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero-foot-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 52ch;
}
.hero-h {
  font-size: 46px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 4px;
  max-width: none;
}
.hero-sub { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 48ch; margin: 0; }
.hero-card {
  flex: none;
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px;
  background: rgba(23, 32, 20, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
}
.hero-card .thumb { width: 130px; height: 116px; border-radius: 14px; flex: none; }
.hero-card .avatars { display: flex; }
.hero-card .avatars .av { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); margin-left: -12px; overflow: hidden; }
.hero-card .avatars .av:first-child { margin-left: 0; }
.hero-card .big { display: flex; align-items: center; gap: 14px; }
.hero-card .num { font-size: 38px; font-weight: 600; line-height: 1; }
.hero-card .cap { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 6px; max-width: 28ch; }

@media (max-height: 820px) and (min-width: 721px) {
  .hero {
    padding-top: 36px;
    padding-bottom: 34px;
  }
  .hero-word {
    font-size: 132px;
  }
  .hero-foot {
    padding-top: 24px;
  }
  .hero-h {
    font-size: 46px;
    margin-bottom: 16px;
  }
  .hero-card {
    padding: 14px;
  }
  .hero-card .thumb {
    width: 112px;
    height: 96px;
  }
}

/* ---------- Section scaffolding ---------- */
.sec { padding-block: 80px; }
.sec-pad-lg { padding-block: 100px; }
#about { padding-bottom: 52px; }
#services { padding-top: 52px; }
.h-display {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
  margin: 22px 0 0;
}
.lead { font-size: 17px; line-height: 1.65; color: var(--muted); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.about-head .h-display { max-width: 17ch; }
.about-col-img { display: flex; flex-direction: column; gap: 10px; }
.about-col-img .img-wrap { height: 332px; border-radius: var(--radius-md); }
.about-col-img .lead { font-size: 16px; }
.about-event {
  position: relative;
  height: 442px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 34px;
  color: #fff;
}
.about-event h3 { margin-left: auto; margin-right: auto; }
.about-event .img-wrap { position: absolute; inset: 0; border-radius: 0; z-index: 0; }
.about-event::after { content:""; position:absolute; inset:0; z-index: 1; background: linear-gradient(180deg, rgba(12,15,9,0.78), rgba(12,15,9,0.6) 60%, rgba(12,15,9,0.74)); transition: opacity 0.4s ease; }
.about-event:hover::after { opacity: 0.5; }
.about-event > * { position: relative; z-index: 2; }
.about-event h3 { font-size: 26px; font-weight: 600; line-height: 1.18; margin: 0 0 20px; max-width: 14ch; }
.about-event .ev-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; min-width: 0; }
.svc-left .lead { margin-top: 28px; max-width: 44ch; }
.svc-nav { display: flex; gap: 14px; margin-top: 44px; }
.svc-nav-slot--mobile { display: none; }
.svc-nav button {
  width: 58px; height: 58px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.25s, color 0.25s;
}
.svc-nav button:hover { background: var(--dark); color: #fff; }
.svc-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.svc-nav button:disabled:hover { background: transparent; color: inherit; }
.svc-stage { position: relative; width: 100%; min-width: 0; overflow: hidden; border-radius: var(--radius-lg); }
.svc-track { display: flex; width: 100%; min-width: 0; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.svc-slide { flex: 0 0 100%; min-width: 0; position: relative; isolation: isolate; }
.svc-slide::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none; background: linear-gradient(180deg, transparent 48%, rgba(16,21,13,0.3)); }
.svc-slide .img-wrap { height: 400px; border-radius: var(--radius-lg); }
.svc-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: 0 24px 50px -26px rgba(20,19,14,0.45);
}
.svc-caption h4 { font-size: 24px; font-weight: 600; margin: 0 0 8px; }
.svc-caption p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- Instructors (dark) ---------- */
.dark-block {
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 161, 88, 0.16), transparent 28%),
    linear-gradient(135deg, var(--dark) 0%, #243821 56%, #35271d 100%);
  color: var(--on-dark);
  border-radius: var(--radius-xl);
  margin: 0 var(--gap-side);
}
.instructors { padding-block: 76px 120px; }
.instructors .head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.instructors .h-display { color: var(--on-dark); }
.inst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 80px; }
.inst { display: grid; grid-template-columns: 84px 1fr; gap: 26px; align-items: start; }
.process-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243,242,236,0.2);
  border-radius: var(--radius-md);
  background: rgba(243,242,236,0.07);
  color: #d5bd7a;
}
.process-icon svg { width: 46px; height: 46px; }
.inst .name { font-size: 22px; font-weight: 600; margin: 0; }
.inst .role { font-size: 15px; color: var(--on-dark-muted); margin: 4px 0 0; }
.inst .rule { height: 1px; background: rgba(243,242,236,0.16); margin: 12px 0; }
.inst .bio { font-size: 15px; line-height: 1.6; color: var(--on-dark-muted); margin: 0; }

/* ---------- Testimonials ---------- */
.tst { padding: 80px 0 92px; overflow: hidden; }
.tst .head { margin-bottom: 56px; }
.tst .head .h-display { margin-top: 18px; }
.season-shell { overflow: hidden; }
.season-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  outline: none;
}
.season-slider::-webkit-scrollbar { display: none; }
.season-slider:focus-visible { box-shadow: inset 0 0 0 2px var(--accent); border-radius: var(--radius-md); }
.season-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.season-slider img { pointer-events: none; user-select: none; }
.season-bar {
  position: relative;
  height: 6px;
  margin-top: 28px;
  border-radius: 999px;
  background: rgba(20, 30, 16, 0.1);
}
.season-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  min-width: 40px;
  border-radius: 999px;
  background: var(--dark);
  opacity: 0.3;
  cursor: grab;
  touch-action: none;
  transition: background 0.2s ease, height 0.2s ease, opacity 0.25s ease;
}
.season-bar:hover .season-thumb { opacity: 1; }
.season-thumb:hover { height: 10px; }
.season-thumb:active { cursor: grabbing; background: var(--accent); height: 10px; opacity: 1; }
.tcard {
  flex: 0 0 350px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  scroll-snap-align: start;
  user-select: none;
}
.season-img { width: 100%; height: 224px; flex: none; }
.season-copy { flex: 1; display: flex; flex-direction: column; padding: 25px 26px 26px; }
.tcard p.quote { font-size: 17px; line-height: 1.5; color: var(--ink-soft); margin: 0 0 auto; }
.season-copy .nm { margin-top: 24px; font-size: 15px; font-weight: 600; color: var(--accent); }
.season-copy .rl { margin-top: 4px; font-size: 20px; font-weight: 600; color: var(--ink); }

/* ---------- Pricing ---------- */
.pricing { padding-block: 80px 88px; }
.pricing .head { margin-bottom: 84px; }
.pricing .head .h-display { margin-top: 18px; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.pcard { position: relative; display: flex; flex-direction: column; margin-top: 0; }
.pcard.s2, .pcard.s3 { margin-top: 0; }
.ptab {
  display: inline-block;
  align-self: flex-start;
  margin-left: 32px;
  text-align: left;
  background: var(--dark);
  color: var(--on-dark);
  font-size: 16px; font-weight: 600;
  padding: 11px 22px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}
.pbody {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: -22px;
  background: var(--card-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 48px 32px 34px;
}
.pcard.feature .pbody { background: #ececea; }
.price { display: flex; align-items: baseline; gap: 10px; }
.price .amt { font-size: 48px; font-weight: 600; letter-spacing: 0; }
.price .per { font-size: 15px; color: var(--muted); }
.pdesc { color: var(--muted); font-size: 16px; line-height: 1.55; margin: 18px 0 30px; max-width: 26ch; }
.plist { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 14px; }
.plist li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.plist li::before { content: ""; width: 7px; height: 7px; background: var(--accent); flex: none; }
.pbody .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Blog ---------- */
.blog { padding-block: 24px 88px; }
.blog .head { margin-bottom: 56px; }
.blog .head .h-display { margin-top: 18px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bcard {
  position: relative;
  height: 392px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}
.bcard .img-wrap { position: absolute; inset: 0; border-radius: 0; z-index: 0; }
.bcard::after { content:""; position:absolute; inset:0; z-index: 1; background: linear-gradient(180deg, rgba(20,18,12,0.05) 20%, rgba(20,18,12,0.55) 60%, rgba(20,18,12,0.9) 100%); }
.bcard > * { position: relative; z-index: 2; }
.bcard h3 { font-size: 24px; font-weight: 600; line-height: 1.2; margin: 0 0 16px; max-width: 18ch; }
.bcard .date { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; color: rgba(255,255,255,0.85); }
.bcard:first-child h3 { max-width: 20ch; }
.bcard:first-child { grid-row: span 1; }

/* ---------- FAQ ---------- */
.faq { padding-block: 80px 88px; }
.faq .head { text-align: center; margin-bottom: 60px; }
.faq .head .h-display { margin-top: 18px; }
.faq-list { max-width: 1120px; margin: 0 auto; display: grid; gap: 18px; }
.faq-item {
  background: var(--card-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 28px 34px;
  font-size: 22px; font-weight: 500; color: var(--ink);
  text-align: left;
}
.faq-q .chev { transition: transform 0.35s; flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 34px 28px; color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 70ch; }

/* ---------- CTA ---------- */
.cta { padding: 0 var(--gap-side) 110px; }
.cta-inner {
  max-width: var(--shell);
  margin: 0 auto;
  background:
    linear-gradient(135deg, #6d3f2f 0%, #2f3e24 100%);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  overflow: hidden;
  color: #fff;
}
.cta-text { padding: 42px 46px; align-self: center; }
.cta-text h2 { font-size: 38px; font-weight: 600; line-height: 1.08; letter-spacing: 0; margin: 0 0 16px; max-width: 16ch; }
.cta-text p { font-size: 15px; line-height: 1.55; color: rgba(243,242,236,0.78); margin: 0 0 20px; max-width: 46ch; }
.contact-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; margin: -4px 0 20px; }
.contact-lines a { color: #fff; font-size: 14px; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.cta-img { padding: 26px 26px 26px 0; }
.cta-img .img-wrap { height: 100%; min-height: 330px; border-radius: var(--radius-lg); }

/* ---------- Footer ---------- */
.footer { background: #11170f; color: var(--on-dark); padding: 90px 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr; gap: 40px; position: relative; z-index: 2; }
.footer .brand { color: #f3f2ec; margin-bottom: 22px; }
.footer .f-about { color: var(--on-dark-muted); font-size: 16px; line-height: 1.6; max-width: 34ch; }
.footer h5 { font-size: 14px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; color: #f3f2ec; margin: 6px 0 22px; }
.footer .f-links { display: grid; gap: 12px; }
.footer .f-links a { color: var(--on-dark-muted); font-size: 16px; transition: color 0.2s; }
.footer .f-links a:hover { color: #fff; }
.footer .sub-row { display: flex; gap: 16px; align-items: flex-end; }
.footer .field { flex: 1; }
.footer .field input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(243,242,236,0.35);
  padding: 12px 0; color: #fff; font-size: 16px; font-family: inherit; outline: none;
}
.footer .field input::placeholder { color: var(--on-dark-muted); }
.footer .sub-btn { background: var(--accent); color: #fff; padding: 16px 28px; border-radius: 14px; font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: uppercase; transition: background 0.25s; }
.footer .sub-btn:hover { background: #7f2830; }
.footer .f-mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.25s;
}
.footer .f-mail-btn:hover { background: #7f2830; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(243,242,236,0.14); margin-top: 60px; padding: 30px 0 36px; position: relative; z-index: 2; }
.footer-bottom .copy { color: var(--on-dark-muted); font-size: 15px; }
.footer-bottom .copy a { color: #f3f2ec; }
.footer-bottom .social { display: flex; gap: 28px; }
.footer-bottom .social a { color: #f3f2ec; font-size: 15px; }
.footer-bottom .f-credits { display: inline-flex; align-items: baseline; gap: 8px; font-size: 15px; }
.footer-bottom .f-credits span { color: var(--on-dark-muted); }
.footer-bottom .f-credits a {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(105deg, #cfc8b6 0%, #ffffff 42%, #e7cd95 52%, #cfc8b6 70%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: credits-shine 7s ease-in-out infinite;
}
@keyframes credits-shine {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}
.footer-watermark {
  position: absolute; left: 0; right: 0; bottom: 0;
  text-align: center;
  font-size: 220px; font-weight: 600; letter-spacing: 0; line-height: 0.74;
  color: rgba(243,242,236,0.06);
  pointer-events: none; user-select: none;
  z-index: 1;
}

/* ===================== Responsive ===================== */

/* Tablet */
@media (max-width: 1024px) {
  :root { --gap-side: 24px; }
  .nav-links { gap: 24px; }
  .sticky-nav .bar-inner { padding: 0 34px; }
  .hero-outer { margin: 0; padding: 0; }
  .hero { min-height: 105vh; min-height: 105svh; border-radius: 0; padding: 52px 40px 44px; }
  .hero-brand .mark { width: 50px; height: 50px; }
  .hero-word { font-size: clamp(72px, 13vw, 104px); }
  .hero-h { font-size: 40px; max-width: none; }
  .hero-foot { flex-direction: column; align-items: stretch; gap: 26px; }
  .hero-card { align-self: flex-start; }
  #about, #services { padding-left: 16px; padding-right: 16px; }
  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .about-head { grid-column: 1 / -1; }
  .svc-stage { width: 100%; }
  .svc-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-nav-slot--desktop { display: none; }
  .svc-nav-slot--mobile { display: block; }
  .svc-nav-slot--mobile .svc-nav { margin-top: 0; justify-content: flex-start; }
  .svc-slide .img-wrap { height: 430px; }
  .inst-grid { gap: 44px 50px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .bcard:nth-child(3) { grid-column: 1 / -1; height: 320px; }
  .cta-text { padding: 40px 34px; }
  .contact-lines { grid-template-columns: 1fr; }
  .cta-img .img-wrap { min-height: 280px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; max-width: 36ch; }
}

/* Switch to burger menu where inline links no longer fit (tablet + mobile) */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .burger { display: grid; }
}

@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; gap: 30px; max-width: none; margin: 0; }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --gap-side: 16px; }
  html { scroll-padding-top: 90px; }
  .sec, .sec-pad-lg { padding-block: 52px; }
  .sticky-nav .bar-inner { height: 62px; padding: 0 18px; }
  .sticky-nav { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
  .brand .word { font-size: 20px; }
  .brand .word span { font-size: 11px; }
  .brand .mark { width: 26px; height: 26px; }

  .hero-outer { margin: 0; padding: 0; }
  .hero { min-height: 100vh; min-height: 100svh; border-radius: 0; padding: 46px 20px 22px; }
  .hero-brand { padding: 14px 0 24px; }
  .hero-brand .mark { width: 42px; height: 42px; margin-bottom: 12px; }
  .hero-word { font-size: clamp(38px, 14vw, 60px); }
  .hero-legal { margin-top: 12px; font-size: 12px; }
  .hero-h { font-size: clamp(28px, 8vw, 34px); }
  .hero-h br { display: none; }
  .hero-sub { font-size: 16px; }
  .hero-card { flex-direction: row; gap: 16px; padding: 14px; }
  .hero-card .thumb { width: 84px; height: 84px; }
  .hero-card .num { font-size: 30px; }
  .hero-card .avatars .av { width: 34px; height: 34px; }
  .hero-card .cap { max-width: 22ch; }
  .h-display { font-size: clamp(27px, 7.6vw, 34px); line-height: 1.12; }

  #about { padding-bottom: 42px; }
  #services { padding-top: 42px; }

  .about-grid { grid-template-columns: 1fr; gap: 26px; }
  .about-col-img .img-wrap { height: 300px; }
  .about-event { height: 360px; }

  .svc-slide .img-wrap { height: 280px; }
  .svc-caption { left: 14px; right: 14px; bottom: 14px; padding: 18px 20px; }
  .svc-caption h4 { font-size: 20px; }
  .svc-nav { margin-top: 32px; }

  .dark-block { margin: 0 var(--gap-side); border-radius: var(--radius-lg); }
  .instructors { padding-block: 64px 70px; }
  .instructors .head { margin-bottom: 44px; }
  .inst-grid { grid-template-columns: 1fr; gap: 36px; }
  .inst { grid-template-columns: 64px 1fr; gap: 18px; }
  .process-icon { width: 64px; height: 64px; }
  .process-icon svg { width: 34px; height: 34px; }
  .inst .name { font-size: 19px; }
  .inst .rule { margin: 14px 0; }

  .tst { padding: 72px 0 84px; }
  .tcard { flex: 0 0 280px; min-height: 370px; }
  .season-img { height: 180px; }
  .season-copy { padding: 22px; }
  .tcard p.quote { font-size: 17px; }

  .pricing .head, .blog .head, .tst .head { margin-bottom: 44px; }
  .pbody { padding: 40px 24px 30px; }
  .price .amt { font-size: 46px; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .bcard:nth-child(3) { grid-column: auto; height: 360px; }
  .bcard { height: 360px; }

  .faq { padding-block: 72px 80px; }
  .faq-q { padding: 22px 22px; font-size: 18px; }
  .faq-a-inner { padding: 0 22px 24px; font-size: 16px; }

  .cta { padding: 0 var(--gap-side) 72px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-text { padding: 44px 26px; }
  .cta-text h2 { font-size: 34px; max-width: 16ch; }
  .contact-lines { grid-template-columns: 1fr; }
  .contact-lines a { font-size: 15px; }
  .cta-img { padding: 0 18px 18px; }
  .cta-img .img-wrap { height: 250px; min-height: 0; }

  .footer { padding: 64px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-watermark { bottom: 0; font-size: 76px; }
  .ptab { margin-left: 24px; }
}

/* ===================== Loader ===================== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.site-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.site-loader__mark { width: 64px; height: 64px; animation: loader-pulse 1.5s ease-in-out infinite; }
.site-loader__mark svg { width: 100%; height: 100%; }
.site-loader__word {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--ink, #14110c);
}
.site-loader__bar {
  width: 160px;
  height: 4px;
  border-radius: 999px;
  background: rgba(154, 47, 53, 0.14);
  overflow: hidden;
}
.site-loader__bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  animation: loader-slide 1.2s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.65; }
}
@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ===================== Floating dock ===================== */
.dock {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dock-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--dark);
  box-shadow: 0 8px 22px rgba(15, 18, 11, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, opacity 0.3s ease;
}
.dock-btn:hover { transform: translateY(-2px); }
.dock-lock { background: var(--accent); }
.dock-lock:hover { background: #7f2830; }
.dock-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.9);
  pointer-events: none;
}
.dock-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
