/* ============================================================
   LANA SWEET — Premium personal brand
   Design system + layout + components
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* palette */
  --black:      #0a0a0b;
  --graphite:   #141317;
  --graphite-2: #1c1b20;
  --graphite-3: #232228;
  --line:       rgba(232, 220, 200, 0.12);
  --line-soft:  rgba(232, 220, 200, 0.07);

  --warm-white: #f4efe6;
  --champagne:  #ddccb0;
  --gold:       #c9a86a;
  --gold-2:     #e4c98f;
  --burgundy:   #6a2b39;
  --burgundy-2: #8a3b4c;

  --txt:        #ece7dd;
  --txt-muted:  rgba(236, 231, 221, 0.60);
  --txt-dim:    rgba(236, 231, 221, 0.42);
  --on-dark:    #f6f2ea;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* fx */
  --shadow-lift: 0 30px 80px -30px rgba(0,0,0,0.75);
  --shadow-soft: 0 20px 60px -30px rgba(0,0,0,0.6);
  --grad-gold: linear-gradient(120deg, var(--gold-2), var(--gold) 45%, #a98a53);
  --grad-dark: linear-gradient(180deg, rgba(10,10,11,0) 0%, rgba(10,10,11,0.85) 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --sec-y: clamp(72px, 11vw, 160px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--txt);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* subtle film grain / vignette base */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.35) 100%);
  mix-blend-mode: multiply;
}

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); position: relative; }
.center { text-align: center; }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head.center { text-align: center; }

/* ---------- TYPOGRAPHY ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.kicker.light { color: var(--gold-2); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}
.section-sub {
  margin-top: 1.2rem;
  color: var(--txt-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  max-width: 46ch;
}
.section-head.center .section-sub { margin-inline: auto; }
.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.4; font-weight: 400;
  color: var(--champagne);
}
.muted { color: var(--txt-muted); font-size: 1.02rem; }
.muted.light { color: rgba(246,242,234,0.78); }

/* ---------- BUTTONS ---------- */
.btn {
  --pad-y: 1rem; --pad-x: 1.9rem;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
  overflow: hidden;
  text-align: center;
}
.btn--sm { --pad-y: 0.8rem; --pad-x: 1.4rem; font-size: 0.78rem; }
.btn--lg { --pad-y: 1.18rem; --pad-x: 2.6rem; font-size: 0.95rem; }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--grad-gold);
  color: #2a2114;
  box-shadow: 0 10px 30px -12px rgba(201,168,106,0.55);
}
.btn--gold:hover { box-shadow: 0 18px 44px -12px rgba(201,168,106,0.7); transform: translateY(-2px); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.9s var(--ease);
}
.btn--gold:hover::after { transform: translateX(120%); }

.btn--ghost {
  color: var(--on-dark);
  border: 1px solid rgba(246,242,234,0.35);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.03);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

.btn--ghost-dark {
  color: var(--txt); border: 1px solid var(--line);
}
.btn--ghost-dark:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* ---------- PILLS ---------- */
.pill {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem; letter-spacing: 0.03em;
  color: var(--champagne);
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
}
.pill--light { color: var(--on-dark); border-color: rgba(246,242,234,0.28); background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: grid; place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; place-items: center; gap: 1.4rem; }
.preloader__mark {
  font-family: var(--serif); font-size: 2.6rem; letter-spacing: 0.2em;
  color: var(--gold-2); padding-left: 0.2em;
}
.preloader__bar { width: 140px; height: 1px; background: var(--line); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--grad-gold); animation: load 1.4s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--grad-gold); z-index: 200;
  transition: width 0.1s linear;
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(12,11,14,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: padding 0.5s var(--ease);
}
.header.is-scrolled .header__inner { padding-block: 0.75rem; }
.brand__name {
  font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.02em;
  color: var(--on-dark);
}
.nav { display: flex; gap: clamp(1rem, 2vw, 2.1rem); }
.nav__link {
  position: relative;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--txt-muted);
  padding: 0.3rem 0;
  transition: color 0.4s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--on-dark); }
.nav__link.is-active::after { width: 100%; }

.header__right { display: flex; align-items: center; gap: 1rem; }

/* language switcher */
.lang { position: relative; }
.lang__current {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.85rem; border-radius: 100px;
  border: 1px solid var(--line); color: var(--txt);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  transition: border-color 0.4s var(--ease), color 0.4s;
}
.lang__current svg { transition: transform 0.4s var(--ease); }
.lang.is-open .lang__current svg { transform: rotate(180deg); }
.lang__current:hover { border-color: var(--gold); color: var(--gold-2); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  background: rgba(20,19,23,0.9); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 0.4rem; box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu li {
  padding: 0.65rem 0.9rem; border-radius: 9px;
  font-size: 0.86rem; color: var(--txt-muted);
  cursor: pointer; transition: background 0.3s, color 0.3s;
}
.lang__menu li:hover, .lang__menu li.is-active { background: rgba(201,168,106,0.12); color: var(--on-dark); }

/* burger */
.burger { display: none; width: 34px; height: 34px; position: relative; }
.burger span { position: absolute; left: 6px; right: 6px; height: 1.5px; background: var(--on-dark); transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 20px; }
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10,10,11,0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 1.3rem; text-align: center; }
.mobile-menu__link { font-family: var(--serif); font-size: 2rem; color: var(--champagne); transition: color 0.3s; }
.mobile-menu__link:hover { color: var(--gold-2); }
.mobile-menu__socials { display: flex; gap: 1.6rem; }
.mobile-menu__socials a { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); animation: heroZoom 22s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.30) 35%, rgba(10,10,11,0.72) 100%),
    radial-gradient(90% 80% at 30% 40%, rgba(10,10,11,0.10), rgba(10,10,11,0.6));
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; width: 100%;
  padding-inline: var(--gutter); padding-top: 8vh;
}
.hero__kicker {
  color: var(--gold-2); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 1.02; letter-spacing: -0.015em;
  color: var(--on-dark);
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero__subtitle {
  margin-top: 1.8rem; max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(246,242,234,0.82);
  line-height: 1.65;
}
.hero__actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.hero__scroll-text { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(246,242,234,0.6); }
.hero__scroll-line { width: 1px; height: 54px; background: rgba(246,242,234,0.2); position: relative; overflow: hidden; }
.hero__scroll-line span { position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-2); animation: scrollDot 2.2s var(--ease) infinite; }
@keyframes scrollDot { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow-lift); }
.about__media-accent {
  position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; z-index: -1;
  border: 1px solid var(--gold); border-radius: 8px; opacity: 0.5;
}
.about__body { max-width: 560px; }
.about__body .lead { margin-top: 0.4rem; }
.about__body .muted { margin-top: 1.3rem; }

.stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3rem); margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 0.35rem; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; color: var(--gold-2); font-weight: 500; }
.stat__label { font-size: 0.8rem; color: var(--txt-muted); letter-spacing: 0.02em; max-width: 14ch; }
.about__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }

/* ============================================================
   METHOD (timeline)
   ============================================================ */
.method { background: linear-gradient(180deg, var(--black), var(--graphite) 50%, var(--black)); }
.timeline { position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before {
  content: ""; position: absolute; left: 34px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.timeline__item { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 1.6rem; padding-block: clamp(1.3rem, 3vw, 2.1rem); }
.timeline__num {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold-2);
  width: 70px; height: 70px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--graphite-2);
  transition: border-color 0.5s var(--ease), color 0.5s, box-shadow 0.5s;
}
.timeline__item:hover .timeline__num { border-color: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,106,0.06); }
.timeline__c { padding-top: 0.5rem; }
.timeline__c h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 500; color: var(--on-dark); }
.timeline__c p { margin-top: 0.5rem; color: var(--txt-muted); max-width: 52ch; }

/* ============================================================
   HELP CARDS
   ============================================================ */
.help__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.4vw, 1.2rem); }
.help-card {
  position: relative; padding: clamp(1.5rem, 2.6vw, 2.2rem) clamp(1.2rem, 2vw, 1.6rem);
  min-height: 190px; border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease), background 0.6s;
}
.help-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 120%, rgba(201,168,106,0.16), transparent 60%);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.help-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,106,0.4);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(201,168,106,0.05), rgba(255,255,255,0));
}
.help-card:hover::before { opacity: 1; }
.help-card__idx { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.help-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--on-dark); line-height: 1.15; }

/* ============================================================
   SERVICES (expandable)
   ============================================================ */
.services { background: var(--black); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.svc {
  position: relative; border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  overflow: hidden; cursor: pointer;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.svc__glow, .svc::after {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(80% 120% at 100% 0%, rgba(201,168,106,0.18), transparent 55%);
  opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none;
}
.svc:hover, .svc.is-open, .svc:focus-visible {
  transform: translateY(-4px) scale(1.008);
  border-color: rgba(201,168,106,0.45);
  box-shadow: var(--shadow-soft);
  outline: none;
}
.svc:hover::after, .svc.is-open::after, .svc:focus-visible::after { opacity: 1; }
.svc__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.svc__name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--on-dark); }
.svc__hint {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
  transition: opacity 0.4s;
}
.svc.is-open .svc__hint { opacity: 0; }
.svc__tag { margin-top: 0.5rem; color: var(--txt-muted); font-size: 0.95rem; }
.svc__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease), opacity 0.5s var(--ease), margin-top 0.6s var(--ease);
  opacity: 0; margin-top: 0;
}
.svc:hover .svc__body, .svc.is-open .svc__body, .svc:focus-visible .svc__body {
  grid-template-rows: 1fr; opacity: 1; margin-top: 1.5rem;
}
.svc__body > * { min-height: 0; overflow: hidden; }
.svc__list { display: flex; flex-direction: column; gap: 0.2rem; }
.svc__list li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem; color: var(--champagne);
}
.svc__list li:last-child { border-bottom: none; }
.svc__list li b { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-2); font-weight: 500; white-space: nowrap; }
.svc__body .btn { margin-top: 1.3rem; }

.svc--feature {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, var(--graphite-2), rgba(106,43,57,0.28));
  border-color: rgba(201,168,106,0.28);
}
.svc--feature .svc__list li b { font-size: 1.5rem; }

/* ============================================================
   MENTORSHIP feature block
   ============================================================ */
.mentorship { background: linear-gradient(180deg, var(--black), var(--graphite) 60%); }
.mentorship__card {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(201,168,106,0.25);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(106,43,57,0.35), transparent 55%),
    linear-gradient(180deg, var(--graphite-2), var(--graphite));
  box-shadow: var(--shadow-lift);
}
.mentorship__glow {
  position: absolute; top: -40%; right: -10%; width: 60%; height: 120%;
  background: radial-gradient(closest-side, rgba(201,168,106,0.16), transparent);
  pointer-events: none;
}
.mentorship__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 0.8fr; gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 4.2rem); align-items: center;
}
.mentorship__left .lead { margin-top: 1rem; max-width: 46ch; }
.mentorship__spots {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.8rem;
  padding: 0.6rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(201,168,106,0.4); background: rgba(201,168,106,0.08);
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--gold-2);
}
.mentorship__spots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(228,201,143,0.6); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(228,201,143,0.55); } 70% { box-shadow: 0 0 0 10px rgba(228,201,143,0); } 100% { box-shadow: 0 0 0 0 rgba(228,201,143,0); } }
.mentorship__features { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 2.2rem; }
.mf { display: flex; flex-direction: column; gap: 0.2rem; }
.mf__t { font-family: var(--serif); font-size: 1.4rem; color: var(--on-dark); }
.mf__d { font-size: 0.82rem; color: var(--txt-muted); }
.mentorship__right {
  text-align: center; padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(10,10,11,0.35); backdrop-filter: blur(6px);
}
.mentorship__price-label { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-muted); }
.mentorship__price { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.4rem); line-height: 1; color: var(--gold-2); margin-block: 0.4rem 0.5rem; }
.mentorship__installment { font-size: 0.85rem; color: var(--champagne); margin-bottom: 1.6rem; }

/* ============================================================
   RETREAT
   ============================================================ */
.retreat { position: relative; padding-block: clamp(90px, 14vw, 200px); overflow: hidden; }
.retreat__bg { position: absolute; inset: -12% 0; z-index: 0; }
.retreat__bg img { width: 100%; height: 100%; object-fit: cover; }
.retreat__bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.72), rgba(10,10,11,0.55) 40%, rgba(10,10,11,0.9)); }
.retreat__head { position: relative; z-index: 2; text-align: center; max-width: 760px; }
.retreat__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.03; color: var(--on-dark); }
.retreat__sub { margin-top: 1.2rem; color: rgba(246,242,234,0.82); font-size: clamp(1rem, 1.6vw, 1.15rem); }
.retreat__grid {
  position: relative; z-index: 2; margin-top: clamp(2.6rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: clamp(1rem, 2.5vw, 2rem); align-items: center;
}
.retreat__figure { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lift); }
.retreat__figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 1.2s var(--ease); }
.retreat__figure--tall img { aspect-ratio: 3/4.6; }
.retreat__figure:hover img { transform: scale(1.05); }
.retreat__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem 1.1rem;
  font-size: 0.82rem; color: var(--on-dark); letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent, rgba(10,10,11,0.85));
}
.retreat__text { text-align: center; padding: clamp(1rem, 2vw, 2rem) 0.5rem; }
.retreat__text .muted { font-size: 1.05rem; line-height: 1.7; }
.retreat__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-block: 1.6rem; }

/* ============================================================
   TESTIMONIALS (marquee)
   ============================================================ */
.testimonials { background: var(--black); overflow: hidden; }
.marquee { position: relative; width: 100%; margin-block: clamp(1rem, 3vw, 2.5rem) clamp(2.4rem,5vw,3.6rem); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 1.5rem; width: max-content; will-change: transform; }
.tcard {
  width: clamp(300px, 40vw, 440px); flex-shrink: 0;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  display: flex; flex-direction: column; gap: 1.4rem;
}
.tcard__text { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; color: var(--champagne); font-style: italic; }
.tcard__text::before { content: "“"; color: var(--gold); font-size: 2.4rem; line-height: 0; vertical-align: -0.35em; margin-right: 0.15em; }
.tcard__who { display: flex; flex-direction: column; gap: 0.15rem; margin-top: auto; }
.tcard__who b { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--on-dark); letter-spacing: 0.02em; }
.tcard__who span { font-size: 0.8rem; color: var(--txt-dim); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: linear-gradient(180deg, var(--black), var(--graphite) 60%, var(--black)); }
.faq__wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq .section-head { margin-bottom: 0; position: sticky; top: 120px; }
.accordion { display: flex; flex-direction: column; }
.acc { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.2rem, 2.2vw, 1.7rem) 0; text-align: left;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; color: var(--on-dark);
  transition: color 0.4s var(--ease);
}
.acc__q:hover { color: var(--gold-2); }
.acc__ic { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.acc__ic::before, .acc__ic::after { content: ""; position: absolute; background: var(--gold); transition: transform 0.5s var(--ease); }
.acc__ic::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.acc__ic::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.acc.is-open .acc__ic::after { transform: translateX(-50%) scaleY(0); }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.55s var(--ease); }
.acc.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > p { min-height: 0; overflow: hidden; color: var(--txt-muted); padding-bottom: 0; max-width: 60ch; transition: padding 0.55s var(--ease); }
.acc.is-open .acc__a > p { padding-bottom: 1.5rem; }

/* ============================================================
   FINAL EMOTIONAL
   ============================================================ */
.final { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.final__bg { position: absolute; inset: -12% 0; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.final__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.6), rgba(10,10,11,0.55) 50%, rgba(10,10,11,0.85)); }
.final__content { position: relative; z-index: 2; text-align: center; }
.final__line {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(2rem, 5.5vw, 4.4rem); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--on-dark); max-width: 20ch; margin-inline: auto;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.final .btn { margin-top: 2.6rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.ccard {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  overflow: hidden;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.ccard::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 100% at 50% 120%, rgba(201,168,106,0.16), transparent 60%); opacity: 0; transition: opacity 0.6s; }
.ccard:hover { transform: translateY(-6px); border-color: rgba(201,168,106,0.4); box-shadow: var(--shadow-soft); }
.ccard:hover::after { opacity: 1; }
.ccard__ic { position: relative; z-index: 1; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--gold-2); margin-bottom: 0.6rem; transition: border-color 0.5s, background 0.5s; }
.ccard:hover .ccard__ic { border-color: var(--gold); background: rgba(201,168,106,0.1); }
.ccard__label { position: relative; z-index: 1; font-family: var(--serif); font-size: 1.4rem; color: var(--on-dark); }
.ccard__val { position: relative; z-index: 1; font-size: 0.88rem; color: var(--txt-muted); word-break: break-word; }
.ccard__go { position: relative; z-index: 1; margin-top: 0.8rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; }
.ccard__go::after { content: "→"; transition: transform 0.4s var(--ease); }
.ccard:hover .ccard__go::after { transform: translateX(5px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding-block: clamp(3rem, 6vw, 5rem); background: var(--black); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer__brand { font-family: var(--serif); font-size: 2rem; color: var(--on-dark); }
.footer__tagline { font-family: var(--serif); font-style: italic; color: var(--champagne); font-size: 1.1rem; }
.footer__socials { display: flex; gap: 1.6rem; margin-block: 0.6rem; }
.footer__socials a { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-muted); transition: color 0.3s; }
.footer__socials a:hover { color: var(--gold-2); }
.footer__copy { font-size: 0.78rem; color: var(--txt-dim); }

/* ============================================================
   REVEAL ANIMATIONS (JS toggles .is-in)
   ============================================================ */
.reveal, .reveal-img { opacity: 0; }
.reveal { transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease), opacity 0.4s; }
.reveal-img.is-in { opacity: 1; clip-path: inset(0 0 0% 0); }

/* split text (JS wraps words in .word > span) */
.split-line { display: inline-block; overflow: hidden; vertical-align: top; }
.split-line > span { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.is-in .split-line > span, .split-ready .split-line > span { transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: block; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .mentorship__inner { grid-template-columns: 1fr; }
  .retreat__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .retreat__figure img, .retreat__figure--tall img { aspect-ratio: 16/10; }
  .faq__wrap { grid-template-columns: 1fr; }
  .faq .section-head { position: static; }
  .help__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  :root { --sec-y: clamp(60px, 14vw, 96px); }
  .services__grid { grid-template-columns: 1fr; }
  .help__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .stats { gap: 1.4rem 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .hero__content { padding-top: 4vh; }
  .timeline__item { grid-template-columns: 54px 1fr; gap: 1.1rem; }
  .timeline__num { width: 54px; height: 54px; font-size: 1.1rem; }
  .timeline::before { left: 26px; }
  .mentorship__features { gap: 1.4rem 2rem; }
}
@media (max-width: 420px) {
  .help__grid { grid-template-columns: 1fr; }
  .tcard { width: 82vw; }
}

/* ============================================================
   ACCESSIBILITY / MOTION
   ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .split-line > span { transform: none !important; }
  .hero__video { animation: none; transform: scale(1); }
  .modal__dialog { transform: none !important; }
}

/* ============================================================
   REVISION ADDITIONS
   ============================================================ */

/* About — golden glow behind portrait */
.about__media { overflow: visible; }
.about__glow {
  position: absolute; inset: -14% -10% -6% -14%; z-index: -2; pointer-events: none;
  background: radial-gradient(60% 55% at 42% 40%, rgba(201,168,106,0.30), rgba(201,168,106,0.08) 45%, transparent 70%);
  filter: blur(26px); opacity: 0; transform: scale(0.92);
  transition: opacity 1.2s var(--ease), transform 1.4s var(--ease);
}
.about__media.is-in .about__glow, .reveal-img.is-in .about__glow { opacity: 1; transform: scale(1); }
.about__media img { position: relative; z-index: 1; }

/* Services — Learn More button (in revealed body) */
.svc__more {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.3rem;
  padding: 0.72rem 1.3rem; border-radius: 100px;
  border: 1px solid rgba(201,168,106,0.45); color: var(--gold-2);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(201,168,106,0.05);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s, transform 0.45s var(--ease);
}
.svc__more i { font-style: normal; transition: transform 0.45s var(--ease); }
.svc__more:hover { background: var(--grad-gold); color: #2a2114; border-color: transparent; transform: translateY(-1px); }
.svc__more:hover i { transform: translateX(4px); }

/* ---------- MODALS ---------- */
.modals { position: relative; z-index: 300; }
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; justify-content: center; align-items: flex-start;
  padding: clamp(1rem, 4vw, 2.5rem);
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: fixed; inset: 0;
  background: rgba(6,6,8,0.62);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 760px;
  margin: auto;                 /* centers when short; top-anchored + scrollable when tall */
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid rgba(201,168,106,0.22); border-radius: 22px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(106,43,57,0.22), transparent 55%),
    linear-gradient(180deg, var(--graphite-2), var(--graphite));
  box-shadow: var(--shadow-lift);
  transform: translateY(18px) scale(0.965); opacity: 0.4;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal::-webkit-scrollbar { width: 10px; }
.modal::-webkit-scrollbar-thumb { background: rgba(201,168,106,0.3); border-radius: 8px; }
.modal__close {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease);
}
.modal__close span { position: absolute; width: 15px; height: 1.5px; background: var(--on-dark); }
.modal__close span:first-child { transform: rotate(45deg); }
.modal__close span:last-child { transform: rotate(-45deg); }
.modal__close:hover { border-color: var(--gold); background: rgba(201,168,106,0.1); transform: rotate(90deg); }
.modal__kicker { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.modal__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--on-dark); line-height: 1.05; }
.modal__lead { margin-top: 1rem; color: var(--champagne); font-size: clamp(1rem, 1.6vw, 1.14rem); line-height: 1.6; max-width: 60ch; }
.modal__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); margin-top: 2rem; }
.modal__col h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-muted); margin-bottom: 1rem; }
.modal__areas li {
  position: relative; padding-left: 1.5rem; padding-block: 0.4rem; color: var(--champagne); font-size: 0.98rem;
}
.modal__areas li::before {
  content: ""; position: absolute; left: 0; top: 0.95em; width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-gold);
}
.modal__prices li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.96rem; color: var(--champagne);
}
.modal__prices li:last-child { border-bottom: none; }
.modal__prices li b { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-2); font-weight: 500; white-space: nowrap; }
.modal__dialog .btn { margin-top: 2rem; }
body.modal-open { overflow: hidden; }

/* Retreat — blurred Lana background */
.retreat__bg--blur img { filter: blur(7px) brightness(0.72); transform: scale(1.08); }

/* Final — second line */
.final__line2 {
  margin-top: 1.4rem; color: rgba(246,242,234,0.82);
  font-size: clamp(1.05rem, 2vw, 1.4rem); font-family: var(--serif); font-style: italic;
  max-width: 30ch; margin-inline: auto;
}

/* Modal responsive */
@media (max-width: 620px) {
  .modal__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .modal__dialog { border-radius: 18px; }
}

/* ============================================================
   TRAINING (Academy)
   ============================================================ */
.training { background: linear-gradient(180deg, var(--graphite) 0%, var(--black) 45%); }
.training__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.tcourse {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  min-height: 300px;
  border: 1px solid rgba(201,168,106,0.18); border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px -34px rgba(0,0,0,0.7);
  overflow: hidden;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.tcourse::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 80% at 50% 120%, rgba(201,168,106,0.16), transparent 60%);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.tcourse:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201,168,106,0.5);
  box-shadow: var(--shadow-lift);
}
.tcourse:hover::before { opacity: 1; }
.tcourse__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tcourse__idx { font-family: var(--serif); font-size: 1rem; letter-spacing: 0.14em; color: var(--gold); }
.tcourse__price { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--gold-2); font-weight: 500; }
.tcourse__name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.12; color: var(--on-dark); margin-top: 1.4rem; }
.tcourse__desc { color: var(--txt-muted); font-size: 0.98rem; line-height: 1.6; margin-top: 0.8rem; }
.tcourse__more {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; padding-top: 1.6rem;
  color: var(--gold-2); font-family: var(--sans); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; align-self: flex-start;
  transition: color 0.4s var(--ease);
}
.tcourse__more i { font-style: normal; transition: transform 0.4s var(--ease); }
.tcourse__more:hover { color: var(--warm-white); }
.tcourse__more:hover i { transform: translateX(5px); }

/* ============================================================
   PREMIUM SOCIAL CARDS (contacts) — enhance
   ============================================================ */
.ccard {
  border-color: rgba(201,168,106,0.20);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  box-shadow: 0 18px 44px -30px rgba(0,0,0,0.6);
}
.ccard:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(201,168,106,0.55);
  box-shadow: 0 30px 70px -30px rgba(201,168,106,0.28), var(--shadow-soft);
}

/* Mobile-menu premium social chips */
.mobile-menu__socials { gap: 0.9rem; }
.msoc {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  width: 92px; padding: 1rem 0.6rem; border-radius: 16px;
  border: 1px solid rgba(201,168,106,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--gold-2);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s, color 0.45s;
}
.msoc span { color: var(--txt-muted); }
.msoc:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(201,168,106,0.6);
  background: rgba(201,168,106,0.10);
}
.msoc:hover span { color: var(--on-dark); }

@media (max-width: 900px) {
  .training__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* Subtle premium micro-interactions (names lift gently on card hover) */
.svc__name, .tcourse__name, .ccard__label { transition: transform 0.5s var(--ease), color 0.5s var(--ease); }
.svc:hover .svc__name, .tcourse:hover .tcourse__name { transform: translateY(-2px); }
.ccard:hover .ccard__label { color: var(--gold-2); }
/* Gentle price emphasis on training hover */
.tcourse__price { transition: transform 0.5s var(--ease); transform-origin: right center; }
.tcourse:hover .tcourse__price { transform: scale(1.06); }
