:root {
  --forest: #161d13;
  --moss: #31462c;
  --sage-light: #c0cfb5;
  --sand: #ece7db;
  --shell: #f8f6ef;
  --ash: #273139;
  --lime: #38f713;
  --sage: #a9bf9e;
  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-heading: "Poppins", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-numbers: "Taviraj", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ash);
  background: var(--shell);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 1.75rem; font-weight: 500; }
h3 { font-size: 1.25rem; margin: 1.5rem 0 .75rem; font-weight: 600; }

p { margin-bottom: 1rem; max-width: 60ch; }
p:last-child { margin-bottom: 0; }

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

.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: .9rem;
}
.eyebrow--lime { color: var(--moss); }
.eyebrow.center { width: 100%; }

.muted { color: var(--ash); opacity: .65; font-size: .95rem; }
.fine-print { font-style: italic; font-size: .82rem; opacity: .55; margin-top: .75rem; }

/* Buttons — sharp, restrained. Lime fill reserved for the one true action: booking. */
.btn {
  display: inline-block;
  padding: 1rem 2.1rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--lime {
  background: var(--lime);
  color: var(--forest);
}
.btn--lime:hover { background: var(--shell); color: var(--forest); }
.btn--large { padding: 1.15rem 2.75rem; margin-top: 1.75rem; }

.btn--ghost {
  background: transparent;
  border-color: rgba(248,246,239,.5);
  color: var(--shell);
}
.btn--ghost:hover { border-color: var(--shell); background: rgba(248,246,239,.08); }

.btn--outline {
  background: transparent;
  border-color: rgba(39,49,57,.3);
  color: var(--ash);
}
.btn--outline:hover { border-color: var(--ash); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1.25rem, 4vw, 3.5rem);
  z-index: 100;
  pointer-events: none;
}
.site-header .logo,
.site-header .menu-toggle { pointer-events: auto; }

.logo { display: flex; align-items: center; }
.logo__img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0,0,0,.3));
  transition: opacity .25s var(--ease);
}
.logo:hover .logo__img { opacity: .8; }

.menu-toggle {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.menu-toggle span {
  width: 22px; height: 1px;
  background: var(--shell);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
  z-index: 150;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-overlay a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.6rem, 4.5vw, 2.75rem);
  color: var(--shell);
  letter-spacing: -.01em;
  transition: color .25s var(--ease), opacity .25s var(--ease);
  opacity: .82;
}
.nav-overlay a:hover { color: var(--lime); opacity: 1; }

/* Hero — photography led */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(22,29,19,.92) 0%, rgba(22,29,19,.55) 38%, rgba(22,29,19,.35) 65%, rgba(22,29,19,.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--shell);
  padding: 0 clamp(1.5rem, 5vw, 4.5rem) clamp(3.5rem, 9vw, 6.5rem);
  width: 100%;
}
.hero__kicker {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .8;
  margin-bottom: 1.25rem;
}
.hero__logo {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -.02em;
  line-height: .98;
  font-weight: 500;
  max-width: 16ch;
}
.hero__tagline {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--sand);
  opacity: .85;
  max-width: 32ch;
}
.hero__cta {
  display: inline-block;
  margin-top: 2.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4.5rem);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .6;
  writing-mode: vertical-rl;
  transition: opacity .25s var(--ease);
}
.hero__scroll:hover { opacity: 1; }

/* Sections */
.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8.5rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow: hidden;
}
.section--light { background: var(--shell); color: var(--ash); }
.section--dark {
  background-color: var(--sage-light);
  color: var(--forest);
  position: relative;
  border-top: 6px solid var(--moss);
}
.schedule-header {
  background: var(--moss);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
.schedule-eyebrow { color: rgba(255,255,255,.6); margin-bottom: .5rem; }
.schedule-heading { color: var(--shell); margin-bottom: 0; }
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('texture.jpg') top center / cover repeat-y;
  z-index: 0;
  pointer-events: none;
}
.section--dark .eyebrow { color: var(--moss); }
.section--dark h2, .section--dark h3 { color: var(--forest); }
.section--dark p { color: var(--ash); }

.section__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.two-col--reverse .two-col__media { order: 1; }
.two-col--reverse .two-col__text { order: 2; }
.two-col__media {
  min-height: 420px;
}
.two-col__media img,
.two-col__media iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: none;
  display: block;
}

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse .two-col__media,
  .two-col--reverse .two-col__text { order: initial; }
}

/* Stat row — quiet, inline, not a graphic gimmick */
.stat-row {
  display: flex;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(39,49,57,.14);
}
.stat__num {
  display: block;
  font-family: var(--font-numbers);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--moss);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: .6;
  margin-top: .4rem;
}

/* Reviews */
.reviews { margin-top: clamp(5rem, 9vw, 7rem); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(39,49,57,.12);
  border: 1px solid rgba(39,49,57,.12);
}
.review-card {
  background: var(--shell);
  padding: 2rem;
}
.review-card__stars { color: var(--moss); letter-spacing: .15em; margin-bottom: 1rem; font-size: .85rem; }
.review-card p { font-size: 1rem; line-height: 1.6; }
.review-card__author {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--moss);
}

/* Tabs — underline, editorial, not pills */
.tabs { margin-top: 3.5rem; }
.tabs__nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(248,246,239,.15);
  flex-wrap: wrap;
}
.tabs__btn {
  background: transparent;
  border: none;
  color: var(--forest);
  opacity: .55;
  padding: 0 0 1.1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  position: relative;
  transition: opacity .25s var(--ease);
}
.tabs__btn::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.tabs__btn.is-active,
.tabs__btn:hover { opacity: 1; }
.tabs__btn.is-active::after { transform: scaleX(1); }

.tabs__panel { display: none; }
.tabs__panel.is-active {
  display: block;
  animation: fadeIn .5s var(--ease);
  background: var(--shell);
  border-radius: 4px;
  margin-top: 2rem;
  overflow: hidden;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.class-block {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
.class-block__media img { width: 100%; min-height: 420px; object-fit: cover; }
@media (max-width: 860px) {
  .class-block { grid-template-columns: 1fr; }
  .class-block__media img { min-height: 320px; }
}

.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid rgba(39,49,57,.3);
  padding: .4rem 1rem;
  margin-bottom: 1.25rem;
}
.badge--lime { color: var(--forest); background: var(--lime); border-color: var(--lime); }

.price-pill {
  border-top: 1px solid rgba(22,29,19,.15);
  border-bottom: 1px solid rgba(22,29,19,.15);
  padding: 1.5rem 0;
  margin: 1.5rem 0;
}
.price-pill__amount { font-family: var(--font-numbers); font-weight: 700; font-size: 2.75rem; color: var(--forest); }
.price-pill__unit { font-size: 1rem; opacity: .6; margin-left: .25rem; color: var(--ash); }
.price-pill__detail { display: block; margin-top: .5rem; font-size: .9rem; opacity: .7; color: var(--ash); }

.checklist { list-style: none; margin: 1.5rem 0; display: grid; gap: .7rem; }
.checklist li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
}
.checklist li::before {
  content: "—";
  position: absolute;
  left: 0; top: 0;
  color: var(--moss);
}

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: .9rem;
  background: rgba(248,246,239,.15);
  border: 1px solid rgba(248,246,239,.15);
}
.schedule-card {
  background: var(--moss);
  color: var(--shell);
  padding: 1rem;
  text-align: center;
}
.schedule-card strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: .95rem; }
.schedule-card span { font-size: .78rem; opacity: .6; }
@media (max-width: 520px) {
  .schedule-cards { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(39,49,57,.12);
  border: 1px solid rgba(39,49,57,.12);
}
.price-card {
  background: var(--shell);
  padding: 3rem 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.price-card--featured {
  background: var(--moss);
  color: var(--shell);
}
.price-card--featured .muted { color: var(--sand); opacity: .75; }
.price-card--featured .price-card__detail,
.price-card--featured .price-card__note { color: var(--sand); }

.price-card__price {
  font-family: var(--font-numbers);
  font-weight: 700;
  font-size: 3rem;
  margin: 1.25rem 0 .5rem;
}
.price-card__price small { font-size: 1rem; font-weight: 400; opacity: .55; margin-left: .25rem; }
.price-card__detail { font-size: .95rem; margin-bottom: .75rem; }
.price-card__note { font-size: .82rem; opacity: .6; margin-bottom: 2rem; }

.price-list { list-style: none; width: 100%; margin: 1.5rem 0 1.75rem; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(39,49,57,.1);
  font-size: .95rem;
}
.price-list li strong { font-family: var(--font-numbers); font-size: 1.2rem; }

/* Location */
.contact-line { font-size: 1.05rem; margin-bottom: .85rem; }
.contact-line a { border-bottom: 1px solid rgba(56,247,19,.4); transition: border-color .25s var(--ease); }
.contact-line a:hover { border-color: var(--lime); }
.two-col__media iframe { border: none; filter: grayscale(.3) brightness(.9); }

/* Footer */
.site-footer {
  background: var(--forest);
  color: var(--sand);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: .78rem;
  letter-spacing: .03em;
  opacity: .5;
}

/* Real photography panels */
.art-panel--photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* Live schedule (Arketa) */
.live-schedule {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.live-schedule__logo {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: .75;
}

.live-schedule__iframe-wrap {
  border-radius: 4px;
  overflow: hidden;
}

.live-schedule__iframe-wrap iframe {
  display: block;
  min-height: 560px;
  border: none;
}
.live-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  margin-left: .5rem;
  vertical-align: middle;
}
.live-schedule__list {
  display: grid;
  gap: 1px;
  margin-top: 1.25rem;
  background: rgba(248,246,239,.1);
}
.live-class {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: .92rem;
  background: transparent;
}
.live-class__name { font-family: var(--font-heading); font-weight: 500; color: var(--forest); }
.live-class__time { font-family: var(--font-numbers); color: var(--ash); opacity: .8; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ─── TICKER MARQUEE ─── */
.ticker {
  background: var(--forest);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(248,246,239,.08);
  border-bottom: 1px solid rgba(248,246,239,.08);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker__track span {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: .6;
}
.ticker__dot {
  color: var(--lime) !important;
  opacity: 1 !important;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {

  /* Header */
  .site-header { padding: 1.25rem 1.25rem; }
  .logo__img { height: 40px; }
  .menu-toggle span { width: 20px; }

  /* Hero */
  .hero { align-items: flex-end; min-height: 100svh; }
  .hero__content { padding: 0 1.25rem clamp(3rem, 10vw, 5rem); }
  .hero__logo { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero__tagline { font-size: .95rem; }
  .hero__scroll { display: none; }
  .hero__cta { margin-top: 2rem; }

  /* Sections */
  .section { padding: 4rem 1.25rem; }
  .section__inner.two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse .two-col__media,
  .two-col--reverse .two-col__text { order: initial; }

  .two-col__media img,
  .two-col__media iframe { min-height: 260px; }

  /* About */
  h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .stat-row { gap: 1.5rem; flex-wrap: wrap; }
  .stat__num { font-size: 1.75rem; }

  /* Reviews */
  .reviews { margin-top: 3.5rem; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card { padding: 1.5rem; }

  /* Schedule */
  .live-schedule { padding: 1.5rem 1rem; }
  .live-class { padding: .9rem 0; }

  .tabs__nav {
    gap: 1.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tabs__nav::-webkit-scrollbar { display: none; }
  .tabs__btn { white-space: nowrap; font-size: .88rem; }

  .class-block { grid-template-columns: 1fr; gap: 2rem; }
  .class-block__media img,
  .art-panel--photo img { min-height: 280px; }

  .schedule-cards { grid-template-columns: repeat(3, 1fr); }
  .schedule-card { padding: .75rem .5rem; }
  .schedule-card strong { font-size: .82rem; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .price-card { padding: 2.25rem 1.5rem; }
  .price-card__price { font-size: 2.5rem; }

  /* Location */
  .contact-line { font-size: .95rem; }

  /* Nav overlay */
  .nav-overlay a { font-size: clamp(1.4rem, 8vw, 2.2rem); }
  .nav-overlay ul { gap: 1.25rem; }
}

@media (max-width: 420px) {
  .hero__logo { font-size: clamp(2rem, 12vw, 3rem); }
  .schedule-cards { grid-template-columns: 1fr; }
  .stat-row { gap: 1.25rem; }
}

/* Live class — richer layout */
.live-class__left { display: flex; flex-direction: column; gap: .2rem; }
.live-class__right { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.live-class__instructor { font-size: .78rem; color: var(--sand); opacity: .55; }
.live-class__spots { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sage); }
.live-class__spots--low { color: var(--lime); }
