:root {
  --primary: #1a1a1a;
  --bg: #f7f4ee;
  --ink: #111111;
  --accent: #caa14a;
  --light: #ffffff;
  --surface: #eeece5;
  --line: #ddd9ce;
  --mute: #6a6456;
  --r: 14px;
  --display: 'Unbounded', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }

h1 { font-family: var(--display); font-size: clamp(34px, 5.5vw, 66px); font-weight: 800; line-height: 1.0; letter-spacing: -.02em; }
h2 { font-family: var(--display); font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; line-height: 1.1; }
h3 { font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--mute); line-height: 1.65; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(247,244,238,.93); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 16px; font-weight: 700;
  color: var(--ink); text-decoration: none;
}
.brand__wave { font-size: 18px; color: var(--accent); }
.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; font-family: var(--body); font-weight: 700;
  text-decoration: none; border-radius: var(--r); transition: transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--accent); color: #fff; padding: 10px 20px; font-size: 13.5px; }
.btn--primary { background: var(--ink); color: #fff; padding: 14px 28px; font-size: 15px; }
.btn--primary.btn--lg { padding: 16px 32px; font-size: 15.5px; }
.btn--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); padding: 14px 28px; font-size: 15px; }

/* HERO — gallery first */
.hero { position: relative; }
.hero__gallery { display: block; }
.hero__gallery img {
  width: 100%; height: clamp(380px, 55vw, 680px);
  object-fit: cover; display: block; object-position: center 30%;
}
.hero__caption {
  background: var(--ink); padding: clamp(36px, 5vw, 72px) 0;
}
.hero__cap-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.hero__tag {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.hero__cap-inner h1 { color: #fff; flex-shrink: 0; max-width: 9ch; }
.hero__sub { color: rgba(255,255,255,.65); font-size: clamp(14.5px, 1.3vw, 17px); max-width: 38ch; margin: 14px 0 26px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__btns .btn--primary { background: var(--accent); color: var(--ink); }
.hero__btns .btn--outline { color: rgba(255,255,255,.7); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }

/* ABOUT */
.about { padding: clamp(56px, 7vw, 96px) 0; }
.about__flex {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.chip {
  display: inline-block; background: rgba(202,161,74,.12); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.about__copy h2 { margin-bottom: 16px; }
.about__copy p { font-size: 15.5px; max-width: 50ch; }
.about__copy p + p { margin-top: 12px; }

.about__grid-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 18px;
}
.tile--dark { background: var(--ink); }
.tile--dark b { color: #fff; }
.tile--dark span { color: rgba(255,255,255,.55); }
.tile--gold { background: var(--accent); border-color: var(--accent); }
.tile--gold b, .tile--gold span { color: var(--ink); }
.tile b { display: block; font-family: var(--display); font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.tile span { font-size: 13px; color: var(--mute); }

/* FEATURE */
.feature { background: var(--ink); padding: clamp(56px, 7vw, 96px) 0; }
.feature__row {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.feat__tag {
  display: inline-block; background: rgba(202,161,74,.2); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.feature__block h2 { color: #fff; margin-bottom: 16px; }
.feat__body { color: rgba(255,255,255,.7); font-size: 15.5px; max-width: 48ch; margin-bottom: 20px; }
.feat__list { list-style: none; display: grid; gap: 10px; }
.feat__list li {
  font-size: 14.5px; color: rgba(255,255,255,.75);
  padding-left: 18px; position: relative;
}
.feat__list li::before {
  content: '✦'; color: var(--accent); font-size: 10px;
  position: absolute; left: 0; top: 3px;
}

.feature__steps-col { display: grid; gap: 20px; padding-top: 4px; }
.fs { display: flex; gap: 14px; align-items: flex-start; }
.fs__n {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(202,161,74,.2); color: var(--accent);
  font-family: var(--display); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fs__body b { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.fs__body p { color: rgba(255,255,255,.55); font-size: 14px; }

/* LESSONS */
.lessons { padding: clamp(56px, 7vw, 96px) 0; }
.lessons__head { margin-bottom: 40px; }
.lessons__head p { color: var(--mute); margin-top: 8px; font-size: 15.5px; }

.lesson-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lc {
  background: var(--light); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px 24px;
  display: flex; flex-direction: column; min-height: 240px;
}
.lc--featured { background: var(--ink); border-color: var(--ink); }
.lc--featured h3, .lc--featured p { color: rgba(255,255,255,.85); }
.lc--featured h3 { color: #fff; }
.lc--featured .lc__price { color: var(--accent); }

.lc__icon { font-size: 28px; margin-bottom: 14px; }
.lc h3 { color: var(--ink); }
.lc > p { font-size: 14px; flex: 1; margin-top: 6px; }
.lc__price {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--accent); margin-top: 16px;
}

/* CONTACT */
.contact { padding: clamp(56px, 7vw, 96px) 0; background: var(--surface); }
.contact__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px); align-items: start;
}
.contact__words h2 { margin-bottom: 12px; }
.contact__words > p { font-size: 15.5px; max-width: 46ch; margin-bottom: 24px; }
.contact__info { display: grid; gap: 10px; margin-bottom: 28px; }
.ci { display: flex; gap: 10px; font-size: 14.5px; color: var(--mute); }
.ci span:first-child { flex-shrink: 0; }

.contact__quote-col { display: grid; gap: 16px; }
.voice-quote {
  background: var(--light); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r); padding: 20px 22px;
}
.voice-quote p { font-size: 14.5px; font-style: italic; color: var(--ink); quotes: none; }
.voice-quote footer { font-size: 13px; color: var(--mute); margin-top: 10px; }

/* FOOTER */
.foot { background: var(--ink); padding: 26px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.foot__in span { color: rgba(255,255,255,.45); }
.foot__in span:first-child { color: rgba(255,255,255,.75); font-family: var(--display); font-size: 12px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__cap-inner { flex-direction: column; align-items: flex-start; }
  .about__flex { grid-template-columns: 1fr; }
  .feature__row { grid-template-columns: 1fr; }
  .lesson-cards { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .about__grid-tiles { grid-template-columns: 1fr 1fr; }
  .hero__btns { flex-direction: column; }
  .hero__gallery img { height: 280px; }
}
