:root{
  --cream: #FBF7EF;
  --cream-card: #F1ECDE;
  --purple-light: #E4DDF5;
  --purple-light-2: #D5CBF0;
  --purple-mid: #6C5F94;
  --purple-dark: #453A63;
  --purple-darker: #3A3057;
  --lavender-soft: #F0ECF9;
  --lavender-mid: #C9BDE8;
  --lavender-glow: rgba(201, 189, 232, 0.45);
  --ink: #3D3457;
  --ink-soft: #8B849A;
  --yellow: #F6D860;
  --yellow-deep: #F0CB3E;
  --white: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 20px 50px -20px rgba(69, 58, 99, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(69, 58, 99, 0.18);
}

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

html{ scroll-behavior:smooth; }

body{
  font-family:'Manrope', sans-serif;
  background:var(--cream);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Playfair Display', serif;
  color:var(--ink);
  font-weight:600;
  line-height:1.15;
}

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

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.script{ font-family:'Caveat', cursive; }

/* ============================================================
   DECORATIVE SYSTEM — soft feminine / romantic / academic
   flowers, thin stars, sparkles, branches, pearls, bows, hearts
   ============================================================ */
:root{
  --deco-gold: #E4C77A;
  --deco-yellow-soft: #F3DE9C;
  --deco-lavender: #C9BDE8;
  --deco-blush: #EAD9D6;
  --deco-milk: #F6EFE2;
}

.decor{
  position:absolute;
  pointer-events:none;
  user-select:none;
  z-index:1;
  opacity:0;
  aspect-ratio:1/1;
  transform:translateY(8px);
  transition:opacity 1.1s ease, transform 1.1s ease;
  will-change:transform, opacity;
}
.decor svg{ display:block; overflow:visible; }
.decor.in-view{ opacity:var(--decor-opacity, 1); transform:translateY(0); }

/* size helpers */
.decor.d-xs{ width:12px; }
.decor.d-sm{ width:16px; }
.decor.d-md{ width:22px; }
.decor.d-lg{ width:30px; }
.decor.d-xl{ width:42px; }

/* color helpers */
.decor.c-gold{ color:var(--deco-gold); }
.decor.c-yellow{ color:var(--deco-yellow-soft); }
.decor.c-lavender{ color:var(--deco-lavender); }
.decor.c-blush{ color:var(--deco-blush); }
.decor.c-milk{ color:var(--deco-milk); }

/* gentle motion */
@keyframes decorSway{
  0%,100%{ transform:translateY(0) rotate(-3deg); }
  50%{ transform:translateY(-6px) rotate(3deg); }
}
@keyframes decorFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-9px); }
}
@keyframes decorTwinkle{
  0%,100%{ opacity:.35; transform:scale(.85); }
  50%{ opacity:1; transform:scale(1.05); }
}
@keyframes decorDrift{
  0%,100%{ transform:translate(0,0) rotate(0deg); }
  50%{ transform:translate(4px,-5px) rotate(6deg); }
}

.decor.in-view.anim-sway{ animation:decorSway 6.5s ease-in-out infinite; }
.decor.in-view.anim-float{ animation:decorFloat 7.5s ease-in-out infinite; }
.decor.in-view.anim-twinkle{ animation:decorTwinkle 4.2s ease-in-out infinite; }
.decor.in-view.anim-drift{ animation:decorDrift 8.5s ease-in-out infinite; }
.decor.delay-1{ animation-delay:.6s; transition-delay:.1s; }
.decor.delay-2{ animation-delay:1.3s; transition-delay:.25s; }
.decor.delay-3{ animation-delay:2s; transition-delay:.4s; }

@media (prefers-reduced-motion: reduce){
  .decor.in-view{ animation:none !important; }
}

/* thin dividers: ✦ ─── ✿ ─── ✦ */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:0 auto;
  max-width:340px;
  padding:0 20px;
}
.divider .line{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--deco-gold), transparent);
  opacity:.6;
}
.divider .mark{
  color:var(--deco-gold);
  flex:none;
  display:flex;
}
.divider .mark svg{ display:block; }

@media (max-width:640px){
  .decor.d-lg{ width:22px; }
  .decor.d-xl{ width:28px; }
  .decor.hide-mobile{ display:none; }
}

/* ============ HEADER ============ */
header{
  position:sticky;
  top:0;
  z-index:100;
  padding:18px 0;
}
.nav-wrap{
  max-width:980px;
  margin:0 auto;
  padding:0 24px;
}
.nav-inner{
  background:rgba(252,248,240,0.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:999px;
  border:1px solid rgba(216,207,239,0.55);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 28px;
  box-shadow:0 10px 30px -14px rgba(69,58,99,0.14);
  position:relative;
  overflow:visible;
}
.logo{
  font-family:'Space Mono', 'DM Mono', 'IBM Plex Mono', monospace;
  font-weight:700;
  font-size:22px;
  line-height:1.1;
  letter-spacing:0.12em;
  color:var(--purple-darker);
  display:flex;
  align-items:center;
  gap:7px;
  z-index:2;
}
.logo .star{
  display:inline-flex;
  width:15px;
  height:15px;
  aspect-ratio:1/1;
  flex-shrink:0;
  color:var(--deco-gold);
}

nav ul{
  display:flex;
  gap:6px;
  z-index:2;
}
nav a.nav-link{
  display:inline-flex;
  align-items:center;
  font-family:'Manrope', sans-serif;
  font-size:14.5px;
  font-weight:500;
  line-height:1.2;
  color:rgba(61,52,87,0.72);
  position:relative;
  padding:8px 14px;
  border-radius:999px;
  white-space:nowrap;
  transition:color .25s ease, background .25s ease;
}
nav a.nav-link:hover{
  color:var(--purple-mid);
  background:linear-gradient(135deg, rgba(246,216,96,0.16), rgba(216,207,239,0.38));
}
nav a.nav-link.active{ color:var(--purple-darker); }
.nav-text{
  position:relative;
  display:inline-block;
  padding-bottom:5px;
}
.nav-text::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:var(--yellow);
  border-radius:3px;
  opacity:0;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .28s ease, opacity .28s ease, height .28s ease;
}
nav a.nav-link.active .nav-text::after{
  opacity:.8;
  transform:scaleX(1);
}
nav a.nav-link:hover .nav-text::after{
  opacity:1;
  transform:scaleX(1);
  height:2.4px;
}

.burger{
  display:none;
  width:26px;
  height:20px;
  position:relative;
  z-index:3;
  background:none;
}
.burger span{
  position:absolute;
  left:0; right:0;
  height:2px;
  background:var(--purple-darker);
  border-radius:2px;
  transition:.3s ease;
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:9px; }
.burger span:nth-child(3){ top:18px; }
.burger.open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

/* ============ HERO ============ */
.hero{
  padding:16px 0 60px;
  position:relative;
}
.hero-frame{
  position:relative;
  padding:22px;
}
.hero-wave-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  filter:drop-shadow(0 22px 40px rgba(58,48,87,0.30));
}
.hero-card{
  background:linear-gradient(135deg, var(--purple-light) 0%, #ECE7F8 60%, var(--purple-light-2) 100%);
  border-radius:26px;
  padding:56px 60px;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.hero-photo-wrap{
  position:relative;
}
.photo-frame{
  position:relative;
  padding:12px;
  border-radius:28px;
  background:linear-gradient(160deg, var(--white), var(--cream-card));
  border:1.5px solid var(--deco-gold);
  box-shadow:0 24px 48px -18px rgba(69,58,99,0.35);
}
.hero-photo{
  width:100%;
  aspect-ratio:3/3.6;
  border-radius:20px;
  background:linear-gradient(160deg,#EFE9DB, #E3DCF2 55%, #C9BFE8);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.hero-photo .monogram{
  font-family:'Playfair Display', serif;
  font-size:120px;
  font-weight:600;
  color:rgba(69,58,99,0.18);
  position:relative;
  z-index:0;
}
.hero-photo::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(108,95,148,0.25), transparent 50%);
  z-index:2;
  pointer-events:none;
}
/* Убрана засветка ("свет") на главном фото в блоке Hero — только для первого фото */
.hero-photo-wrap .hero-photo::before{
  display:none;
}
.photo-tag{
  position:absolute;
  left:20px;
  bottom:-26px;
  background:var(--white);
  border-radius:16px;
  padding:14px 20px;
  box-shadow:0 14px 30px -10px rgba(69,58,99,0.25);
  max-width:230px;
  z-index:3; /* гарантированно поверх фото, чтобы подпись не перекрывалась */
}
.photo-tag .name{
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:16px;
  color:var(--ink);
}
.photo-tag .surname{
  font-family:'Caveat', cursive;
  font-size:17px;
  color:var(--purple-mid);
  font-style:italic;
  line-height:1;
}
.photo-tag .role{
  font-size:11px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-top:4px;
  font-weight:700;
}

.hero-content{ position:relative; z-index:2; }
.badge-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.6);
  border:1px solid rgba(255,255,255,0.8);
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--purple-dark);
  margin-bottom:22px;
}
.badge-pill .star{ color:var(--yellow); }

.hero-content h1,
.hero-content h1.hero-title-mono{
  font-family:'Space Mono', 'DM Mono', monospace;
  font-size:clamp(26px, 3.8vw, 40px);
  font-weight:700;
  margin-bottom:18px;
  letter-spacing:0.04em;
  line-height:1.25;
  color:var(--purple-darker);
}
.hero-content p.lead{
  font-size:17px;
  color:var(--purple-mid);
  line-height:1.6;
  max-width:460px;
  margin-bottom:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:16px 30px;
  border-radius:16px;
  font-weight:700;
  font-size:15px;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-yellow{
  background:var(--yellow);
  color:var(--purple-darker);
  box-shadow:0 12px 24px -10px rgba(240,203,62,0.7);
}
.btn-yellow:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(240,203,62,0.85); }
.btn-dark{
  background:var(--purple-darker);
  color:var(--white);
  box-shadow:0 12px 24px -10px rgba(58,48,87,0.5);
}
.btn-dark:hover{ transform:translateY(-2px); background:#4d4170; }
.btn-outline{
  background:transparent;
  border:1.5px solid var(--purple-darker);
  color:var(--purple-darker);
}
.btn[disabled]{
  opacity:.55;
  cursor:not-allowed;
  transform:none !important;
  box-shadow:none !important;
}
.btn-arrow{ transition:transform .25s ease; }
.btn:hover .btn-arrow{ transform:translateX(3px); }

/* ---- hero CTA row: two distinct buttons ---- */
.hero-btn-row{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}

.btn-hero-primary{
  position:relative;
  overflow:visible;
  background:linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color:var(--purple-darker);
  border-radius:999px;
  box-shadow:0 14px 28px -10px rgba(240,203,62,0.75);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.btn-hero-primary:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 18px 34px -8px rgba(240,203,62,0.9);
}
.btn-hero-primary:active{ transform:translateY(-1px) scale(.98); }
.btn-hero-primary .btn-label{ display:inline-flex; align-items:center; gap:8px; position:relative; z-index:2; }

.btn-hero-secondary{
  position:relative;
  background:transparent;
  color:var(--purple-darker);
  border:1.5px solid var(--purple-darker);
  border-radius:16px;
}
.btn-diag{
  display:inline-block;
  margin-left:6px;
}

/* floating bubbles on "Записаться" hover */
.bubble-btn{ isolation:isolate; }
.bubble{
  position:absolute;
  bottom:8px;
  width:var(--size, 6px);
  height:var(--size, 6px);
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.35));
  border-radius:50%;
  opacity:0;
  pointer-events:none;
  z-index:1;
  transform:translate(0,0) scale(.3);
}
.bubble-btn:hover .bubble{
  animation:bubbleFloat 1.3s ease-in forwards;
  animation-delay:var(--delay, 0s);
}
@keyframes bubbleFloat{
  0%{ opacity:0; transform:translate(0,0) scale(.3); }
  12%{ opacity:.95; }
  70%{ opacity:.7; }
  100%{ opacity:0; transform:translate(var(--dx,0), -54px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce){
  .bubble-btn:hover .bubble{ animation:none; }
}

/* ---- diagnostic-test button: flying sparkles ---- */
.btn-diagnostic{
  position:relative;
  overflow:visible;
  isolation:isolate;
  background:rgba(255,255,255,0.55);
  border:1.5px solid var(--deco-gold);
  color:var(--purple-darker);
  border-radius:999px;
  box-shadow:0 10px 22px -12px rgba(228,199,122,0.6);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease;
}
.btn-diagnostic:hover{
  transform:translateY(-3px) scale(1.03);
  background:rgba(255,255,255,0.85);
  box-shadow:0 16px 30px -10px rgba(228,199,122,0.75);
}
.btn-diagnostic .btn-label{ position:relative; z-index:2; display:inline-flex; align-items:center; gap:8px; }
.spark{
  position:absolute;
  top:50%; left:50%;
  width:var(--s, 8px);
  height:var(--s, 8px);
  background:linear-gradient(135deg, var(--yellow), var(--deco-gold));
  clip-path:polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
  opacity:0;
  pointer-events:none;
  z-index:1;
  transform:translate(-50%,-50%) scale(.25) rotate(0deg);
}
.btn-diagnostic:hover .spark{
  animation:sparkFly 1.05s ease-out forwards;
  animation-delay:var(--d, 0s);
}
@keyframes sparkFly{
  0%{ opacity:0; transform:translate(-50%,-50%) scale(.2) rotate(0deg); }
  18%{ opacity:1; }
  70%{ opacity:.85; }
  100%{ opacity:0; transform:translate(calc(-50% + var(--tx,20px)), calc(-50% + var(--ty,-20px))) scale(1.05) rotate(180deg); }
}
@media (prefers-reduced-motion: reduce){
  .btn-diagnostic:hover .spark{ animation:none; }
}

/* stats row */
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:36px;
}
.stat-box{
  background:var(--white);
  border-radius:18px;
  padding:24px 22px;
  box-shadow:var(--shadow-card);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:110px;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
  cursor:default;
}
.stat-box:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px -14px rgba(108,95,148,0.28);
  background:linear-gradient(160deg, #FFFFFF 0%, #F8F4FF 100%);
}
.stat-box:hover .big{
  color:var(--purple-darker);
  text-shadow:0 0 24px rgba(246,216,96,0.45);
}
.stat-box:hover .label{
  color:var(--purple-mid);
}
.stat-box:active{
  transform:translateY(-2px);
  background:linear-gradient(160deg, #FFFFFF 0%, #F3EEFF 100%);
}
.stat-box .big{
  font-family:'Playfair Display', serif;
  font-size:28px;
  color:var(--purple-darker);
  margin-bottom:6px;
  transition:color .3s ease, text-shadow .3s ease;
}
.stat-box .label{
  font-size:13px;
  color:var(--ink-soft);
  line-height:1.4;
  transition:color .3s ease;
}
@media (prefers-reduced-motion: reduce){
  .stat-box, .stat-box:hover{ transition:none; transform:none; }
}

/* ============ SECTION HEADERS ============ */
.section{ padding:90px 0; position:relative; }
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 56px;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--purple-mid);
  margin-bottom:14px;
}
.eyebrow .star{ color:var(--yellow); }
.section-head h2{
  font-size:clamp(26px, 4vw, 38px);
  margin-bottom:14px;
}
.section-head p{
  color:var(--ink-soft);
  font-size:16px;
  line-height:1.6;
}

/* ============ SERVICES ============ */
.services{ position:relative; }
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  align-items:start;
  position:relative;
  z-index:2;
}
.card{
  border-radius:var(--radius-lg);
  padding:34px 32px 36px;
  position:relative;
  transition:transform .3s ease;
}
.card:hover{ transform:translateY(-6px); }
.card-cream{
  background:var(--cream-card);
  border:1px solid #E7E0CC;
}
.card-purple{
  background:var(--purple-light);
  border:1.5px solid #D6CBF2;
  box-shadow:0 24px 46px -18px rgba(108,95,148,0.35);
  transform:translateY(-14px);
}
.card-purple:hover{ transform:translateY(-20px); }
.card-dark{
  background:linear-gradient(165deg, var(--purple-dark), var(--purple-darker));
  color:var(--white);
}
.card-badge{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:7px 14px;
  border-radius:20px;
  margin-bottom:18px;
}
.card-cream .card-badge{ background:var(--yellow); color:var(--purple-darker); }
.card-purple .card-badge{ background:var(--purple-darker); color:var(--white); }
.card-dark .card-badge{ background:rgba(255,255,255,0.14); color:var(--yellow); }

.card-star{
  position:absolute;
  top:28px; right:28px;
  color:var(--purple-light-2);
  font-size:18px;
}
.card-dark .card-star{ color:var(--yellow); }

.card h3{
  font-size:26px;
  margin-bottom:8px;
}
.card-dark h3{ color:var(--white); }
.card .subtitle{
  font-size:14px;
  color:var(--ink-soft);
  margin-bottom:20px;
  line-height:1.5;
}
.card-dark .subtitle{ color:rgba(255,255,255,0.65); }

.price{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:26px;
  margin-bottom:22px;
  color:var(--purple-darker);
}
.price span{ font-size:15px; font-weight:600; opacity:.7; }
.card-dark .price{ color:var(--yellow); }

.check-list{ margin-bottom:24px; }
.check-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14.5px;
  line-height:1.5;
  margin-bottom:12px;
  color:var(--ink);
}
.card-dark .check-list li{ color:rgba(255,255,255,0.92); }
.check-list li .tick{
  flex:none;
  width:18px; height:18px;
  border-radius:6px;
  background:var(--yellow);
  color:var(--purple-darker);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:900;
  margin-top:2px;
}
.card-dark .check-list li .tick{ background:rgba(246,216,96,0.9); }

.card-note{
  font-family:'Caveat', cursive;
  font-size:17px;
  line-height:1.35;
  color:var(--purple-mid);
  margin-bottom:22px;
  padding-top:14px;
  border-top:1px dashed rgba(69,58,99,0.2);
}
.card-dark .card-note{
  color:rgba(255,255,255,0.75);
  border-top:1px dashed rgba(255,255,255,0.2);
}
.card-note a{ text-decoration:underline; text-underline-offset:2px; }

.status-note{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(240,203,62,0.18);
  border:1px solid rgba(240,203,62,0.5);
  color:var(--purple-darker);
  font-size:13.5px;
  font-weight:700;
  padding:12px 14px;
  border-radius:12px;
  margin-bottom:24px;
}

.card .btn{ width:100%; justify-content:center; }

/* ============ SCHEDULE BLOCK ============ */
.schedule{
  margin-top:56px;
  background:linear-gradient(120deg, var(--purple-light) 0%, #EFE9DE 55%, #F3E8DA 100%);
  border-radius:28px;
  padding:48px 52px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:2;
  box-shadow:var(--shadow-soft);
}
.schedule-date-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  color:var(--purple-dark);
  margin-bottom:18px;
}
.schedule h3{
  font-size:28px;
  margin-bottom:22px;
  max-width:420px;
}
.schedule-pills{
  display:flex;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.pill-dark{
  background:var(--purple-darker);
  color:var(--white);
  font-weight:800;
  font-size:16px;
  padding:12px 22px;
  border-radius:14px;
}
.pill-yellow{
  background:var(--yellow);
  color:var(--purple-darker);
  font-weight:700;
  font-size:15px;
  padding:12px 22px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.schedule-note{
  font-family:'Caveat', cursive;
  font-size:19px;
  color:var(--purple-mid);
}

.week-card{
  background:var(--white);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-card);
}
.week-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  margin-bottom:14px;
}
.day{
  background:#F4F1EA;
  border-radius:12px;
  text-align:center;
  padding:14px 4px 10px;
  font-size:13px;
  font-weight:800;
  color:var(--ink-soft);
  position:relative;
}
.day .dstar{ display:block; font-size:10px; margin-top:4px; color:transparent; }
.day.active{
  background:var(--yellow);
  color:var(--purple-darker);
}
.day.active .dstar{ color:var(--purple-darker); }
.week-caption{
  font-size:13px;
  color:var(--ink-soft);
  text-align:center;
  line-height:1.5;
}

/* ============ WHO I AM ============ */
.who-i-am{ overflow:hidden; }

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-left{ transform:translateY(18px) translateX(-26px); }
.reveal-left.in-view{ transform:translateY(0) translateX(0); }
.reveal-right{ transform:translateY(18px) translateX(26px); }
.reveal-right.in-view{ transform:translateY(0) translateX(0); }
.reveal-scale{ transform:translateY(16px) scale(.93); }
.reveal-scale.in-view{ transform:translateY(0) scale(1); }
.reveal-spin{ transform:translateY(14px) rotate(-4deg) scale(.95); }
.reveal-spin.in-view{ transform:translateY(0) rotate(0deg) scale(1); }
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-spin{ transition:opacity .3s ease; transform:none !important; }
}

.section-head-left{
  max-width:560px;
  margin-bottom:36px;
}
.section-head-left h3{ font-size:clamp(24px,3.4vw,32px); }

/* ---- 1. About me ---- */
.wia-eyebrow-early{
  margin-bottom:18px;
  padding-top:4px;
}
.wia-eyebrow-early .eyebrow{
  font-size:14px;
  letter-spacing:.1em;
}

.wia-about{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:56px;
  align-items:start;
  margin-bottom:100px;
  position:relative;
}
.wia-about-photo{ position:relative; }
.wia-about .photo-frame{ max-width:340px; margin:0 auto; }
.wia-about .hero-photo{ aspect-ratio:3/3.8; }
.wia-photo-caption{
  text-align:center;
  margin-top:22px;
  padding:0 8px;
}
.wia-name{
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:22px;
  color:var(--ink);
  margin-top:0;
  margin-bottom:4px;
}
.wia-surname{
  font-size:18px;
  color:var(--purple-mid);
  margin-bottom:10px;
  line-height:1.2;
}
.wia-role{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink-soft);
  font-weight:700;
  margin-bottom:0;
  line-height:1.4;
}
.wia-about-text{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-height:auto;
  padding:8px 8px 24px;
  justify-content:flex-start;
}
.wia-title-spaced{
  font-family:'Space Mono', monospace;
  font-size:clamp(15px, 1.6vw, 18px);
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--purple-mid);
  margin-bottom:22px;
}
.wia-quote{
  font-family:'Space Mono', 'DM Mono', monospace;
  font-style:normal;
  font-weight:700;
  font-size:clamp(28px, 4.2vw, 48px);
  color:var(--purple-darker);
  line-height:1.3;
  margin:0 auto 28px;
  max-width:620px;
  position:relative;
  padding:8px 4px;
  letter-spacing:0.03em;
  transition:color .35s ease, text-shadow .35s ease;
  cursor:default;
  text-align:center;
}
.wia-quote::before{ display:none; content:none; }
.wia-quote:hover{
  color:var(--purple-dark);
  text-shadow:0 0 28px rgba(201,189,232,0.45);
}
.wia-quote mark{
  background:none;
  color:var(--purple-darker);
  font-weight:700;
  position:relative;
  padding:0 2px;
}
.wia-quote mark::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:2px;
  height:8px;
  background:rgba(246,216,96,0.4);
  z-index:-1;
  border-radius:3px;
}

/* circular TG + enroll */
.wia-circle-btns{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:auto;
  padding-top:12px;
  position:relative;
  z-index:3;
}
.circle-btn{
  width:54px;
  height:54px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid transparent;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  position:relative;
  overflow:visible;
}
.circle-btn::after{
  content:'';
  position:absolute;
  inset:-4px;
  border-radius:50%;
  border:1.5px solid transparent;
  opacity:0;
  transition:opacity .35s ease, inset .35s ease;
  pointer-events:none;
}
.circle-tg{
  background:linear-gradient(145deg, #E4DDF5, #C9BDE8);
  color:var(--purple-darker);
  border-color:rgba(201,189,232,0.9);
  box-shadow:0 0 0 0 rgba(201,189,232,0.5), 0 10px 24px -10px rgba(108,95,148,0.4);
  animation:circleGlowLav 2.8s ease-in-out infinite;
}
.circle-enroll{
  background:linear-gradient(145deg, var(--yellow), var(--yellow-deep));
  color:var(--purple-darker);
  border-color:rgba(240,203,62,0.85);
  box-shadow:0 0 0 0 rgba(246,216,96,0.5), 0 10px 24px -10px rgba(240,203,62,0.55);
  animation:circleGlowYel 2.8s ease-in-out infinite;
  animation-delay:.6s;
}
.circle-btn:hover{
  transform:translateY(-4px) scale(1.08);
}
.circle-tg:hover{
  border-color:var(--purple-mid);
  box-shadow:0 0 22px 4px rgba(201,189,232,0.65), 0 14px 28px -8px rgba(108,95,148,0.45);
}
.circle-enroll:hover{
  border-color:#E0B820;
  box-shadow:0 0 22px 4px rgba(246,216,96,0.7), 0 14px 28px -8px rgba(240,203,62,0.6);
}
.circle-btn:hover::after{
  opacity:1;
  inset:-7px;
}
.circle-tg:hover::after{ border-color:rgba(201,189,232,0.7); }
.circle-enroll:hover::after{ border-color:rgba(246,216,96,0.75); }

@keyframes circleGlowLav{
  0%,100%{ box-shadow:0 0 0 0 rgba(201,189,232,0.35), 0 10px 24px -10px rgba(108,95,148,0.4); }
  50%{ box-shadow:0 0 16px 3px rgba(201,189,232,0.55), 0 12px 26px -8px rgba(108,95,148,0.45); }
}
@keyframes circleGlowYel{
  0%,100%{ box-shadow:0 0 0 0 rgba(246,216,96,0.3), 0 10px 24px -10px rgba(240,203,62,0.5); }
  50%{ box-shadow:0 0 16px 3px rgba(246,216,96,0.55), 0 12px 26px -8px rgba(240,203,62,0.55); }
}
@media (prefers-reduced-motion: reduce){
  .circle-tg, .circle-enroll{ animation:none; }
}

/* tulip bottom-right of text column, opposite photo */
.wia-tulip{
  position:absolute;
  right:4px;
  bottom:4px;
  width:72px;
  height:auto;
  pointer-events:none;
  z-index:1;
  opacity:.95;
  transform:rotate(-8deg);
  filter:drop-shadow(0 6px 12px rgba(108,95,148,0.18));
  animation:tulipSway 5.5s ease-in-out infinite;
}
@keyframes tulipSway{
  0%,100%{ transform:rotate(-10deg) translateY(0); }
  50%{ transform:rotate(-4deg) translateY(-4px); }
}
@media (prefers-reduced-motion: reduce){
  .wia-tulip{ animation:none; }
}
.wia-about-text p{
  font-size:15.5px;
  line-height:1.75;
  color:var(--ink-soft);
  max-width:520px;
  margin-bottom:16px;
}
.wia-about-text mark{
  background:none;
  color:var(--purple-darker);
  font-weight:700;
  padding:0 2px;
  position:relative;
}
.wia-about-text mark::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:1px;
  height:6px;
  background:rgba(246,216,96,0.45);
  z-index:-1;
  border-radius:3px;
}

/* ---- 2. Editorial path (large cards, zero gap) ---- */
.wia-path{ margin-bottom:48px; position:relative; }
.path-title-wrap{
  text-align:center;
  margin-bottom:16px;
}
.path-title-mono{
  font-family:'Space Mono', monospace;
  font-size:clamp(20px, 2.8vw, 28px);
  font-weight:700;
  letter-spacing:0.08em;
  color:var(--purple-darker);
  line-height:1.3;
}
.path-stages{
  display:flex;
  flex-direction:column;
  gap:0;
}
.path-stage{
  position:relative;
  border-radius:0;
  padding:28px 32px;
  margin:0;
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .35s ease;
}
/* soft rounding only on outer edges of the stack */
.path-stage.stage-1{
  border-radius:24px 24px 0 0;
}
.path-stage.stage-4{
  border-radius:0 0 24px 24px;
}
.path-stage:hover{ box-shadow:0 18px 36px -16px rgba(69,58,99,0.22); z-index:2; }
.path-stage.stage-1:hover, .path-stage.stage-3:hover{ transform:translateY(-2px); }
.path-stage.stage-2:hover, .path-stage.stage-4:hover{ transform:translateY(-2px); }
.stage-year{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:15px;
  color:var(--purple-mid);
  letter-spacing:.03em;
  margin-bottom:8px;
  transition:color .35s ease;
}
.path-stage:hover .stage-year{ color:var(--purple-darker); }
.path-stage h4{ font-size:22px; margin-bottom:8px; line-height:1.2; }
.path-stage p{ font-size:15px; line-height:1.55; color:var(--ink-soft); max-width:520px; margin:0; }
.stage-tags{ display:flex; gap:8px; margin-top:14px; flex-wrap:wrap; }
.stage-tags span{
  font-size:12.5px;
  font-weight:700;
  padding:6px 14px;
  border-radius:20px;
  background:rgba(255,255,255,0.55);
  color:var(--purple-darker);
}
.stage-note{
  margin-top:14px;
  font-size:13px;
  font-weight:700;
  color:var(--purple-mid);
  background:rgba(246,216,96,0.22);
  display:inline-block;
  padding:8px 14px;
  border-radius:12px;
}

/* full-width stack — no side gaps between cards */
.stage-1{
  background:var(--cream-card);
  border:1px solid #E7E0CC;
  border-bottom:none;
  max-width:100%;
  align-self:stretch;
  width:100%;
}
.stage-2{
  background:linear-gradient(135deg, var(--purple-light), #EDE8F9);
  border:1px solid #D6CBF2;
  border-top:none;
  border-bottom:none;
  max-width:100%;
  align-self:stretch;
  width:100%;
}
.stage-3{
  background:var(--cream-card);
  border:1px solid rgba(240,203,62,0.4);
  border-top:none;
  border-bottom:none;
  max-width:100%;
  align-self:stretch;
  width:100%;
}
.stage-4{
  background:linear-gradient(135deg, #EDE8F9, var(--purple-light));
  border:1px solid #D6CBF2;
  border-top:none;
  max-width:100%;
  align-self:stretch;
  width:100%;
}

/* connectors sit INSIDE the visual stack as thin dividers with memo */
.path-connector{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:10px 16px;
  margin:0;
  width:100%;
  max-width:100%;
  align-self:stretch;
  background:linear-gradient(90deg, rgba(228,221,245,0.35), rgba(241,236,222,0.5), rgba(228,221,245,0.35));
  border-left:1px solid rgba(201,189,232,0.4);
  border-right:1px solid rgba(201,189,232,0.4);
  line-height:0;
  position:relative;
  z-index:1;
}
.path-connector-right,
.path-connector-left{
  margin-left:0;
  margin-right:0;
  flex-direction:row;
}
.path-wave{
  flex:1;
  min-width:40px;
  max-width:120px;
  height:12px;
  color:var(--lavender-mid, #C9BDE8);
  opacity:.75;
}
.path-memo{
  flex:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
}
.path-memo-ph{
  width:56px;
  height:56px;
  border-radius:14px;
  background:
    linear-gradient(150deg, var(--purple-light) 0%, #F3EEE0 70%, rgba(246,216,96,0.15));
  border:1.5px solid rgba(201,189,232,0.65);
  box-shadow:0 10px 22px -12px rgba(69,58,99,0.22);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Playfair Display', serif;
  font-size:12px;
  font-weight:600;
  color:rgba(69,58,99,0.45);
  position:relative;
  overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease;
}
.path-memo-ph::before{
  content:'✳';
  position:absolute;
  top:5px; left:7px;
  color:var(--deco-gold);
  font-size:9px;
  z-index:0;
}
.path-memo:hover .path-memo-ph{
  transform:translateY(-2px) rotate(-2deg);
  box-shadow:0 14px 28px -10px rgba(108,95,148,0.28);
}

@media (max-width:860px){
  .path-stage{ padding:22px 20px; }
  .path-stage h4{ font-size:19px; }
  .path-stage p{ font-size:14px; }
  .path-connector{
    padding:8px 12px;
    margin:0;
    max-width:100%;
  }
  .path-memo-ph{ width:48px; height:48px; border-radius:12px; }
  .path-wave{ height:10px; max-width:80px; }
  .stage-1, .stage-2, .stage-3, .stage-4{
    max-width:100%;
    width:100%;
  }
}
@media (max-width:480px){
  .path-stage{ padding:18px 16px; }
  .path-stage h4{ font-size:17px; }
  .path-connector{ gap:8px; padding:6px 10px; }
  .path-memo-ph{ width:42px; height:42px; }
}

/* ---- 3. Education ---- */
.wia-education{ margin-bottom:90px; position:relative; }
.edu-row{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:20px;
  margin-bottom:24px;
  align-items:stretch;
}
.edu-main{
  background:linear-gradient(150deg, var(--purple-light), #EFE9DE);
  border-radius:24px;
  padding:32px 36px;
  position:relative;
  overflow:hidden;
}
.edu-badge{
  display:inline-block;
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:30px;
  color:var(--purple-darker);
  margin-bottom:4px;
}
.edu-main h4{ font-size:19px; margin-bottom:12px; color:var(--ink); }
.edu-years{
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--purple-mid);
  text-transform:uppercase;
  margin-bottom:18px;
}
.edu-main p{ font-size:14.5px; line-height:1.6; color:var(--ink); margin-bottom:6px; }
.edu-caption{
  margin-top:18px;
  font-family:'Caveat', cursive;
  font-size:19px;
  line-height:1.4;
  color:var(--purple-mid);
  max-width:420px;
}
.edu-extra{
  display:flex;
  flex-direction:column;
  gap:26px;
}
.edu-mini{
  background:var(--cream-card);
  border:1px solid #E7E0CC;
  border-radius:20px;
  padding:24px 26px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.edu-mini h5{ font-family:'Playfair Display', serif; font-size:17px; margin-bottom:6px; color:var(--ink); }
.edu-mini-loc{
  font-size:13px;
  font-weight:700;
  color:var(--purple-mid);
  letter-spacing:.03em;
}

.diploma-gallery{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:16px;
}
.diploma-thumbs{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.diploma-main, .diploma-thumb{
  cursor:pointer;
  border-radius:16px;
  overflow:hidden;
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.diploma-main:hover, .diploma-thumb:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 36px -18px rgba(69,58,99,0.3);
}
.diploma-placeholder{
  aspect-ratio:4/3;
  background:linear-gradient(150deg,#F3EEE0 0%, #E7E1F6 60%, #D9CFF0 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:12px;
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:15px;
  color:rgba(69,58,99,0.55);
  border:1px solid rgba(255,255,255,0.6);
  position:relative;
  overflow:hidden;
}
.diploma-placeholder::before{
  content:'✳';
  position:absolute;
  top:10px; left:12px;
  color:var(--deco-gold);
  font-size:13px;
  z-index:0;
}
.diploma-placeholder.small{ font-size:12px; aspect-ratio:1/1; }
.diploma-placeholder span.ph-fallback-label{ position:relative; z-index:0; }
/* Дипломы в компактной галерее — фото без отступа, заполняет рамку полностью (без пустых полей) */
.diploma-gallery .diploma-placeholder img{
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ---- 4. More than a tutor ---- */
.wia-more{ text-align:center; position:relative; }
.wia-more-title{
  font-size:clamp(30px,5vw,46px);
  margin-bottom:16px;
}
.wia-more-sub{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-size:18px;
  color:var(--purple-mid);
  max-width:560px;
  margin:0 auto 10px;
  line-height:1.5;
}
.wia-more-line{
  font-size:14.5px;
  color:var(--ink-soft);
  max-width:460px;
  margin:0 auto 50px;
}

.collage{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  grid-auto-rows:90px;
  gap:16px;
  max-width:920px;
  margin:0 auto 46px;
  text-align:left;
}
.collage-item{
  border-radius:22px;
  overflow:hidden;
  position:relative;
  transition:transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
}
.collage-item:hover{ transform:translateY(-5px) scale(1.02); box-shadow:0 22px 40px -18px rgba(69,58,99,0.3); }
.collage-item.big{ grid-column:span 3; grid-row:span 3; }
.collage-item.mid{ grid-column:span 3; grid-row:span 2; }
.collage-item.small{ grid-column:span 2; grid-row:span 2; }
.collage-item.tag{
  grid-column:span 2; grid-row:span 1;
  display:flex; align-items:center; justify-content:center;
  background:var(--cream-card);
  border:1px solid #E7E0CC;
  font-family:'Caveat', cursive;
  font-size:20px;
  color:var(--purple-mid);
  transition:transform .3s ease, background .3s ease;
}
.collage-item.tag:hover{ background:var(--purple-light); transform:translateY(-3px); }
.ph-placeholder{
  width:100%; height:100%;
  background:linear-gradient(155deg, #E7E1F6, #F3EEE0 65%, #F0CB3E22);
  display:flex;
  align-items:flex-end;
  padding:16px;
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-size:15px;
  color:rgba(69,58,99,0.55);
  position:relative;
  overflow:hidden;
}
.ph-placeholder span.ph-fallback-label{ position:relative; z-index:0; }
.wia-more-footnote{
  font-family:'Caveat', cursive;
  font-size:19px;
  color:var(--purple-mid);
  max-width:420px;
  margin:0 auto;
}

/* ---- Diploma Lightbox ---- */
.lightbox-overlay{
  position:fixed;
  inset:0;
  background:rgba(45,38,66,0.75);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1200;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  padding:24px;
}
.lightbox-overlay.show{ opacity:1; pointer-events:auto; }
.lb-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  max-width:100%;
  max-height:100%;
}
.lb-content{
  max-width:min(760px, 92vw);
  max-height:88vh;
  min-width:min(320px, 80vw);
  min-height:min(400px, 70vh);
  width:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:16px;
  background:linear-gradient(150deg,#F3EEE0 0%, #E7E1F6 60%, #D9CFF0 100%);
  transform:scale(.95);
  transition:transform .3s ease;
}
.lightbox-overlay.show .lb-content{ transform:scale(1); }
.lb-content img{
  max-width:100%;
  max-height:88vh;
  object-fit:contain;
  display:block;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
.lb-content .lb-placeholder-label{
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:16px;
  color:rgba(255,255,255,0.85);
  text-align:center;
  padding:24px;
}
.lb-caption{
  text-align:center;
  color:var(--white);
  font-size:14px;
  margin-top:16px;
  opacity:.85;
}
.lb-close{
  position:absolute;
  top:22px; right:26px;
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
  transition:background .25s ease;
}
.lb-close:hover{ background:rgba(255,255,255,0.3); }
.lb-arrow{
  width:46px; height:46px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  flex:none;
  transition:background .25s ease;
}
.lb-arrow:hover{ background:rgba(255,255,255,0.3); }
.lb-body{ display:flex; align-items:center; gap:20px; }

@media (max-width: 1024px){
  .wia-about{ grid-template-columns:1fr; text-align:center; gap:36px; }
  .wia-about .photo-frame{ margin:0 auto; }
  .wia-about-text{ min-height:auto; padding-bottom:80px; }
  .wia-quote{ margin-left:auto; margin-right:auto; }
  .wia-tulip{
    right:12px; left:auto;
    bottom:4px; width:56px;
    animation:none;
    transform:rotate(-12deg);
  }
  .wia-circle-btns{ margin-bottom:8px; }
  .wia-title-spaced{ margin-bottom:24px; }
  .wia-quote{ margin-bottom:28px; }
  .edu-row{ grid-template-columns:1fr; }
  .diploma-gallery{ grid-template-columns:1fr; }
}

@media (max-width: 860px){
  .wia-about{ margin-bottom:80px; }
  .wia-path{ margin-bottom:40px; }
  .wia-education{ margin-bottom:80px; }
  .path-stage:hover{ transform:translateY(-2px) !important; }
  .collage{ grid-template-columns:repeat(4,1fr); grid-auto-rows:80px; }
  .collage-item.big{ grid-column:span 4; grid-row:span 3; }
  .collage-item.mid{ grid-column:span 2; grid-row:span 2; }
  .collage-item.small{ grid-column:span 2; grid-row:span 2; }
  .collage-item.tag{ grid-column:span 4; grid-row:span 1; }
}

@media (max-width: 560px){
  .collage{ grid-template-columns:repeat(2,1fr); grid-auto-rows:110px; }
  .collage-item.big{ grid-column:span 2; grid-row:span 3; }
  .collage-item.mid{ grid-column:span 2; grid-row:span 2; }
  .collage-item.small{ grid-column:span 1; grid-row:span 2; }
  .collage-item.tag{ grid-column:span 1; grid-row:span 1; }
  .edu-badge{ font-size:28px; }
  .lb-body{ flex-direction:column; }
}


.t-track-wrap{
  position:relative;
  z-index:2;
  overflow:hidden;
  margin-bottom:64px;
  touch-action:pan-y;
}
.t-track{
  display:flex;
  gap:22px;
  transition:transform .5s cubic-bezier(.22,.61,.36,1);
  padding:10px 4px 30px;
}
.t-card{
  flex:0 0 auto;
  width:300px;
  background:var(--cream-card);
  border-radius:22px;
  padding:26px 26px 28px;
  position:relative;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.t-card.center{
  background:var(--white);
  box-shadow:0 24px 46px -18px rgba(69,58,99,0.28);
  transform:translateY(-10px) scale(1.03);
}
.t-star{
  position:absolute;
  top:22px; right:22px;
  color:var(--yellow);
  font-size:16px;
}
.t-avatar{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--purple-light-2);
  color:var(--purple-darker);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
  margin-bottom:12px;
}
.t-name{ font-weight:700; font-size:15px; margin-bottom:4px; }
.t-stars{ color:var(--yellow); font-size:13px; margin-bottom:12px; letter-spacing:2px; }
.t-quote{ font-size:14.5px; line-height:1.6; color:var(--ink); }

.t-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
}
.t-arrow{
  width:42px; height:42px;
  border-radius:50%;
  background:var(--white);
  box-shadow:var(--shadow-card);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  color:var(--purple-darker);
  transition:.2s ease;
}
.t-arrow:hover{ background:var(--yellow); }
.t-dots{ display:flex; gap:8px; }
.t-dot{
  width:8px; height:8px;
  border-radius:5px;
  background:var(--purple-light-2);
  transition:.3s ease;
}
.t-dot.active{ width:26px; background:var(--yellow-deep); }

.more-reviews h3{
  font-size:26px;
  margin-bottom:26px;
}
.more-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.mini-review{
  background:transparent;
  border:1px solid #E7E0CC;
  border-radius:18px;
  padding:22px;
  position:relative;
}
.mini-review .star{
  color:var(--purple-light-2);
  font-size:15px;
  margin-bottom:12px;
  display:block;
}
.mini-review p{
  font-size:14px;
  line-height:1.55;
  margin-bottom:14px;
  color:var(--ink);
}
.mini-review .who{
  font-family:'Caveat', cursive;
  font-size:18px;
  color:var(--purple-mid);
}

/* ============ FAQ ============ */
.faq-list{
  max-width:760px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.faq-item{
  background:var(--white);
  border-radius:18px;
  margin-bottom:14px;
  padding:6px 26px;
  box-shadow:var(--shadow-card);
  overflow:hidden;
}
.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  font-weight:700;
  font-size:16px;
  color:var(--ink);
}
.faq-q .plus{
  flex:none;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--purple-light);
  color:var(--purple-darker);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  transition:transform .3s ease, background .3s ease;
}
.faq-item.open .faq-q .plus{ transform:rotate(45deg); background:var(--yellow); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-a-inner{
  padding-bottom:20px;
  font-size:14.5px;
  line-height:1.65;
  color:var(--ink-soft);
}
.faq-a-inner p{
  margin:0 0 12px;
}
.faq-a-inner p:last-child{
  margin-bottom:0;
}
.faq-a-inner strong{
  color:var(--ink);
}

/* ============ FOOTER ============ */
footer{
  background:linear-gradient(165deg, var(--purple-dark), var(--purple-darker));
  border-radius:32px 32px 0 0;
  margin-top:20px;
  padding:56px 0 32px;
  color:rgba(255,255,255,0.85);
  position:relative;
  overflow:hidden;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:30px;
  margin-bottom:36px;
}
.footer-logo{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-weight:600;
  font-size:24px;
  color:var(--white);
  margin-bottom:10px;
}
.footer-tag{ font-size:14px; max-width:280px; line-height:1.6; color:rgba(255,255,255,0.6); }
.footer-links{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h5{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--yellow);
  margin-bottom:14px;
}
.footer-col a, .footer-col span{
  display:block;
  font-size:14px;
  color:rgba(255,255,255,0.75);
  margin-bottom:10px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.14);
  padding-top:22px;
  font-size:13px;
  color:rgba(255,255,255,0.5);
  text-align:center;
}

/* ============ MODAL ============ */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(61,52,87,0.45);
  backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1000;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.modal-overlay.show{ opacity:1; pointer-events:auto; }
.modal-box{
  background:var(--white);
  border-radius:26px;
  max-width:420px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  padding:36px 34px 32px;
  position:relative;
  text-align:left;
  transform:translateY(16px) scale(.97);
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.35);
}
.modal-overlay.show .modal-box{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute;
  top:20px; right:20px;
  width:34px; height:34px;
  border-radius:50%;
  background:#F1ECE0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  color:var(--ink-soft);
  transition:.2s ease;
}
.modal-close:hover{ background:var(--purple-light); }
.modal-box .eyebrow{ margin-bottom:14px; }
.modal-box h3{ font-size:24px; margin-bottom:14px; }
.modal-box p.desc{
  font-size:14.5px;
  line-height:1.65;
  color:var(--ink-soft);
  margin-bottom:24px;
}
.tg-btn{
  width:100%;
  justify-content:center;
  gap:10px;
  font-size:15px;
  margin-bottom:16px;
}
.modal-foot{
  text-align:center;
  font-family:'Caveat', cursive;
  font-size:18px;
  color:var(--purple-mid);
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta{
  display:none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
  .hero-card{ grid-template-columns:340px 1fr; gap:36px; padding:44px; }
  .cards{ gap:16px; }
  .card{ padding:28px 22px 30px; }
  .card h3{ font-size:22px; }
  .schedule{ grid-template-columns:1fr; }
  .more-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 860px){
  nav ul{
    position:fixed;
    top:86px; left:24px; right:24px;
    background:var(--white);
    flex-direction:column;
    gap:0;
    border-radius:20px;
    box-shadow:0 20px 50px -20px rgba(69,58,99,0.35);
    padding:10px 8px;
    padding-bottom:calc(10px + env(safe-area-inset-bottom));
    transform:translateY(-14px);
    opacity:0;
    pointer-events:none;
    transition:.3s ease;
    max-height:calc(100vh - 110px);
    overflow-y:auto;
  }
  nav ul.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  nav a.nav-link{
    display:block;
    width:100%;
    padding:15px 18px;
    border-radius:12px;
    font-size:16px;
    font-weight:500;
  }
  .nav-text::after{ display:none; }
  nav a.nav-link.active, nav a.nav-link:hover{
    background:linear-gradient(135deg, rgba(246,216,96,0.2), rgba(216,207,239,0.45));
    color:var(--purple-darker);
  }
  .logo{ order:1; }
  nav{ order:2; }
  .burger{
    order:3;
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .hero-card{ grid-template-columns:1fr; padding:30px 22px 36px; text-align:left; border-radius:22px; }
  .hero-frame{ padding:14px; }
  .hero-photo-wrap{ width:100%; max-width:230px; margin:0 auto; }
  .photo-tag{ left:50%; transform:translateX(-50%); width:calc(100% - 40px); text-align:center; }
  .hero-content{ margin-top:48px; text-align:center; }
  .hero-content p.lead{ margin-left:auto; margin-right:auto; font-size:16px; }
  .badge-pill{ margin-left:auto; margin-right:auto; }
  .hero-btn-row{ justify-content:center; width:100%; }
  .hero-btn-row .btn{ flex:1 1 160px; justify-content:center; }

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

  .section{ padding:56px 0; }

  .cards{ grid-template-columns:1fr; }
  .card-purple{ transform:none; }
  .card{ padding:30px 24px 32px; }

  .schedule{ padding:30px 22px; border-radius:24px; }

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

  .t-card{ width:82vw; max-width:320px; }
  .t-card.center{ transform:translateY(-6px) scale(1.02); }

  .footer-inner{ flex-direction:column; }
  .footer-links{ gap:36px; }
  footer{ border-radius:26px 26px 0 0; padding:44px 0 calc(28px + env(safe-area-inset-bottom)); }

  .modal-box{ padding:30px 24px 26px; }
}

@media (max-width: 480px){
  .container{ padding:0 16px; }
  .nav-wrap{ padding:0 16px; padding-top:env(safe-area-inset-top); }
  .nav-inner{ padding:12px 16px; }
  .logo{ font-size:19px; }
  .hero{ padding:8px 0 36px; }
  .hero-photo-wrap{ width:100%; max-width:210px; margin:0 auto; }
  .photo-tag{ padding:12px 16px; }
  .stats{ grid-template-columns:1fr 1fr; gap:10px; }
  .stat-box{ padding:16px 14px; }
  .stat-box .big{ font-size:22px; }
  .week-grid{ gap:5px; }
  .day{ padding:9px 2px 7px; font-size:10.5px; }
  .t-card{ width:78vw; padding:22px 20px 24px; }
  .price{ font-size:23px; }
  .schedule-pills{ gap:10px; }
  .pill-dark, .pill-yellow{ padding:10px 16px; font-size:14px; }
  .btn{ padding:15px 22px; font-size:14.5px; }
  .card .btn{ min-height:48px; }
  .modal-close{ width:40px; height:40px; }
  .faq-q{ padding:18px 0; font-size:15px; }
}

/* very small phones (SE / compact Android) */
@media (max-width: 360px){
  .hero-content h1, .hero-content h1.hero-title-mono{ font-size:24px; letter-spacing:0.03em; }
  .section-head h2{ font-size:24px; }
  .stats{ grid-template-columns:1fr 1fr; }
  .t-card{ width:74vw; }
}

/* landscape phones — shorter viewport height */
@media (max-height: 480px) and (orientation: landscape){
  header{ padding:10px 0; }
  .hero{ padding:6px 0 28px; }
  nav ul{ max-height:70vh; }
  .modal-box{ max-height:88vh; overflow-y:auto; }
}

/* devices with a notch / home indicator */
@supports (padding: max(0px)){
  header{ padding-top:max(18px, env(safe-area-inset-top)); }
  .modal-overlay{ padding-bottom:max(20px, env(safe-area-inset-bottom)); }
}


/* ============ EDITORIAL BRIDGE (between about & path) ============ */
.wia-bridge{
  max-width:680px;
  margin:0 auto 100px;
  text-align:center;
  position:relative;
  z-index:2;
}
.wia-bridge-lead{
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:clamp(22px,3vw,30px);
  color:var(--purple-darker);
  line-height:1.35;
  margin-bottom:18px;
}
.wia-bridge p{
  font-size:15.5px;
  line-height:1.75;
  color:var(--ink-soft);
  max-width:560px;
  margin:0 auto 12px;
}
.wia-bridge mark{
  background:none;
  color:var(--purple-darker);
  font-weight:700;
  padding:0 2px;
  position:relative;
}
.wia-bridge mark::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:1px;
  height:6px;
  background:rgba(246,216,96,0.45);
  z-index:-1;
  border-radius:3px;
}


/* ============ REVIEW SCREENSHOT GALLERIES ============ */
.review-cats{
  margin-top:64px;
}
.review-cats h3{
  font-size:26px;
  margin-bottom:22px;
  text-align:center;
}
.cat-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.cat-tab{
  font-family:'Manrope', sans-serif;
  font-size:14px;
  font-weight:700;
  padding:12px 22px;
  border-radius:999px;
  background:var(--lavender-soft, #F0ECF9);
  color:var(--ink-soft);
  border:1.5px solid transparent;
  transition:background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.cat-tab:hover{
  color:var(--purple-darker);
  background:var(--purple-light);
  transform:translateY(-2px);
}
.cat-tab.active{
  background:linear-gradient(135deg, var(--purple-light) 0%, var(--purple-light-2) 100%);
  color:var(--purple-darker);
  border-color:var(--lavender-mid, #C9BDE8);
  box-shadow:0 10px 24px -10px var(--lavender-glow, rgba(201,189,232,0.5));
}
.cat-panel{
  display:none;
  opacity:0;
  transform:translateY(12px);
  transition:opacity .45s ease, transform .45s cubic-bezier(.22,.61,.36,1);
}
.cat-panel.active{
  display:block;
  opacity:1;
  transform:translateY(0);
  animation:panelIn .5s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes panelIn{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:translateY(0); }
}

.shot-viewer{
  position:relative;
  max-width:920px;
  margin:0 auto;
  overflow:hidden;
  padding:12px 0 8px;
  touch-action:pan-y;
}
.shot-track-wrap{
  overflow:hidden;
  mask-image:linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.shot-track{
  display:flex;
  gap:18px;
  transition:transform .5s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
  padding:10px 0 18px;
}
.shot-card{
  flex:0 0 auto;
  width:min(260px, 58vw);
  aspect-ratio:3/4;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(155deg, var(--purple-light), #F3EEE0 70%);
  box-shadow:0 12px 28px -14px rgba(69,58,99,0.22);
  cursor:zoom-in;
  position:relative;
  transition:transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease, opacity .4s ease, filter .4s ease;
  opacity:.55;
  filter:saturate(.85);
  transform:scale(.92);
}
.shot-card.is-center{
  opacity:1;
  filter:none;
  transform:scale(1.05);
  box-shadow:0 22px 44px -16px rgba(108,95,148,0.38);
  z-index:2;
}
.shot-card:hover{
  box-shadow:0 20px 40px -14px rgba(108,95,148,0.32);
}
.shot-card .shot-placeholder{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Playfair Display', serif;
  font-weight:600;
  font-size:15px;
  color:rgba(69,58,99,0.5);
  text-align:center;
  padding:16px;
  background:linear-gradient(155deg, var(--purple-light), #F3EEE0 65%, rgba(246,216,96,0.12));
  position:relative;
  overflow:hidden;
}
.shot-card .shot-placeholder span{
  font-family:'Manrope',sans-serif;
  font-size:12px;
  font-weight:600;
  color:var(--ink-soft);
  position:relative;
  z-index:0;
}
.shot-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.shot-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:10px;
}
.shot-arrow{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--white);
  box-shadow:0 10px 24px -12px rgba(69,58,99,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:var(--purple-darker);
  transition:.25s ease;
  border:1px solid var(--purple-light-2);
}
.shot-arrow:hover{
  background:var(--purple-light);
  border-color:var(--lavender-mid, #C9BDE8);
  transform:scale(1.06);
}
.shot-counter{
  font-size:14px;
  font-weight:700;
  color:var(--purple-mid);
  min-width:56px;
  text-align:center;
  font-family:'Space Mono', monospace;
  letter-spacing:0.04em;
}
.shot-dots{
  display:flex;
  gap:7px;
  justify-content:center;
  margin-top:12px;
  flex-wrap:wrap;
}
.shot-dot{
  width:8px; height:8px;
  border-radius:5px;
  background:var(--purple-light-2);
  transition:.3s ease;
  cursor:pointer;
}
.shot-dot.active{
  width:22px;
  background:var(--purple-mid);
}

/* Screenshot lightbox */
.shot-lightbox{
  position:fixed;
  inset:0;
  background:rgba(45,38,66,0.84);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1300;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  padding:20px;
}
.shot-lightbox.show{ opacity:1; pointer-events:auto; }
.shot-lb-body{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:min(920px,100%);
  width:100%;
}
.shot-lb-img-wrap{
  flex:1;
  max-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius:16px;
}
.shot-lb-img-wrap img{
  max-width:100%;
  max-height:85vh;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
.shot-lb-placeholder{
  width:min(360px,80vw);
  aspect-ratio:3/4;
  max-height:80vh;
  background:linear-gradient(155deg, var(--purple-light), #F3EEE0);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Playfair Display',serif;
  font-size:18px;
  color:rgba(69,58,99,0.55);
  text-align:center;
  padding:20px;
}
.shot-lb-close{
  position:absolute;
  top:18px; right:22px;
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(255,255,255,0.18);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  z-index:2;
  transition:background .25s ease;
}
.shot-lb-close:hover{ background:rgba(255,255,255,0.32); }
.shot-lb-arrow{
  width:46px; height:46px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex:none;
  transition:background .25s ease;
}
.shot-lb-arrow:hover{ background:rgba(255,255,255,0.3); }

/* Who I Am + Reviews section motion extras */
.who-i-am .path-stage,
.who-i-am .edu-main,
.who-i-am .edu-mini,
.who-i-am .diploma-main,
.who-i-am .diploma-thumb,
.who-i-am .collage-item{
  transition:transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.testimonials .t-card,
.review-cats .cat-tab{
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.section.testimonials,
.section.who-i-am{
  --section-lavender: var(--lavender-soft, #F0ECF9);
}

@media (max-width: 640px){
  .shot-card{ width:min(220px, 72vw); }
  .shot-card.is-center{ transform:scale(1.02); }
  .shot-track{ gap:12px; }
  .shot-lb-body{ flex-direction:row; gap:8px; }
  .shot-lb-arrow{ width:40px; height:40px; font-size:18px; }
  .cat-tab{ padding:10px 16px; font-size:13px; }
  .wia-bridge{ margin-bottom:70px; }
  .shot-track-wrap{
    mask-image:linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce){
  .cat-panel.active{ animation:none; }
  .shot-track{ transition:none; }
  .shot-card{ transition:none; }
}


/* Soft lavender section accents */
.who-i-am{
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(228,221,245,0.55), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 70%, rgba(213,203,240,0.35), transparent 55%);
}
.testimonials{
  background:
    radial-gradient(ellipse 70% 45% at 85% 15%, rgba(228,221,245,0.5), transparent 55%),
    radial-gradient(ellipse 50% 35% at 10% 80%, rgba(213,203,240,0.28), transparent 50%);
}

/* Stronger reveal motion for Who I Am + reviews */
.who-i-am .reveal,
.who-i-am .reveal-left,
.who-i-am .reveal-right,
.who-i-am .reveal-scale,
.who-i-am .reveal-spin,
.testimonials .reveal{
  transition:opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.who-i-am .path-stage.reveal-left,
.who-i-am .path-stage.reveal-right,
.who-i-am .path-stage.reveal-scale{
  transition:opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
}
.t-card{
  animation:none;
}
.t-track .t-card{
  transition:transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease, background .45s ease, opacity .45s ease;
}

/* Mono wider utility for counters already set; footer logo */
.footer-logo{
  font-family:'Space Mono', 'Playfair Display', monospace;
  letter-spacing:0.08em;
  font-style:normal;
}


/* ============ WHO I AM — Telegram button ============ */
.btn-wia-tg{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:28px;
  padding:14px 24px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--purple-light) 0%, var(--purple-light-2) 100%);
  color:var(--purple-darker);
  font-weight:700;
  font-size:14.5px;
  border:1.5px solid var(--lavender-mid, #C9BDE8);
  box-shadow:0 12px 28px -14px var(--lavender-glow, rgba(201,189,232,0.55));
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease;
}
.btn-wia-tg:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 16px 32px -12px rgba(108,95,148,0.35);
  background:linear-gradient(135deg, #EDE8F9 0%, var(--purple-light-2) 100%);
}
.btn-wia-tg .tg-ico{
  font-size:15px;
  line-height:1;
}
@media (max-width:860px){
  .wia-about-text .btn-wia-tg{ margin-left:auto; margin-right:auto; }
}

/* ============ MORE REVIEWS CTA ============ */
.more-reviews-cta{
  margin-top:48px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.more-reviews-note{
  font-family:'Caveat', cursive;
  font-size:20px;
  color:var(--purple-mid);
  line-height:1.35;
}
.btn-more-reviews{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:16px 28px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color:var(--purple-darker);
  font-weight:700;
  font-size:15px;
  box-shadow:0 14px 28px -10px rgba(240,203,62,0.7);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.btn-more-reviews:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 18px 34px -8px rgba(240,203,62,0.9);
}
.btn-more-reviews .btn-arrow{ transition:transform .25s ease; }
.btn-more-reviews:hover .btn-arrow{ transform:translateX(3px); }


/* text fills between path stages */
.path-fill{
  max-width:560px;
  margin:4px auto;
  text-align:center;
  padding:8px 20px;
}
.path-fill-lead{
  font-family:'Space Mono', monospace;
  font-weight:700;
  font-size:clamp(16px, 2vw, 20px);
  letter-spacing:0.03em;
  color:var(--purple-darker);
  line-height:1.45;
}
.path-fill p{
  font-size:15px;
  line-height:1.7;
  color:var(--ink-soft);
  margin:0;
}
.path-fill mark{
  background:none;
  color:var(--purple-darker);
  font-weight:700;
  position:relative;
  padding:0 2px;
}
.path-fill mark::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:1px;
  height:6px;
  background:rgba(246,216,96,0.4);
  z-index:-1;
  border-radius:3px;
}
.path-fill-mid{ max-width:580px; }
.path-fill-end{ max-width:600px; }


/* text under quote in Who I Am */
.wia-under-quote{
  max-width:480px;
  margin:0 auto 32px;
  text-align:center;
  padding:22px 24px 20px;
  background:linear-gradient(160deg, rgba(240,236,249,0.7), rgba(241,236,222,0.45));
  border:1px solid rgba(201,189,232,0.45);
  border-radius:22px;
  position:relative;
}
.wia-under-quote::before{
  content:'✦';
  position:absolute;
  top:-10px; left:50%;
  transform:translateX(-50%);
  background:var(--cream);
  padding:0 10px;
  color:var(--deco-gold);
  font-size:14px;
}
.wia-uq-lead{
  font-family:'Space Mono', monospace;
  font-weight:700;
  font-size:clamp(15px, 1.8vw, 18px);
  letter-spacing:0.03em;
  color:var(--purple-darker);
  line-height:1.4;
  margin-bottom:14px;
}
.wia-under-quote p{
  font-size:14.5px;
  line-height:1.7;
  color:var(--ink-soft);
  margin:0 0 12px;
}
.wia-under-quote p:last-child{ margin-bottom:0; }
.wia-under-quote mark{
  background:none;
  color:var(--purple-darker);
  font-weight:700;
  position:relative;
  padding:0 2px;
}
.wia-under-quote mark::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:1px;
  height:5px;
  background:rgba(246,216,96,0.42);
  z-index:-1;
  border-radius:3px;
}


/* ============ PHOTO FIT HELPERS (any image, any format) ============ */
.fit-cover-abs{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:inherit;
  z-index:1;
}
.fit-contain-abs{
  position:absolute;
  inset:5%;
  width:90%;
  height:90%;
  object-fit:contain;
  object-position:center;
  display:block;
  z-index:1;
}
.ph-fallback-label{ position:relative; z-index:0; }

.hero-photo, .path-memo-ph, .diploma-placeholder, .ph-placeholder, .path-photo-ph{
  position:relative;
  overflow:hidden;
}

/* ============ NEW DECORATIVE BURGER (mobile menu, top-right, with tulip) ============ */
.burger{
  width:46px;
  height:46px;
  position:relative;
  z-index:3;
  border-radius:50%;
  background:linear-gradient(145deg, var(--purple-light) 0%, var(--purple-light-2) 100%);
  border:1.5px solid rgba(201,189,232,0.75);
  box-shadow:0 8px 20px -10px rgba(108,95,148,0.4);
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.burger:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px -8px rgba(108,95,148,0.5);
}
.burger .bl{
  position:absolute;
  left:14px; right:14px;
  height:2.4px;
  background:var(--purple-darker);
  transition:transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease, border-radius .3s ease;
}
.burger .bl1{ top:16px; border-radius:40% 60% 65% 35% / 65% 45% 55% 35%; }
.burger .bl2{ top:22px; left:19px; right:19px; border-radius:60% 40% 35% 65% / 35% 55% 45% 65%; }
.burger .bl3{ top:28px; border-radius:40% 60% 65% 35% / 65% 45% 55% 35%; }
.burger .bud{
  position:absolute;
  top:-7px; right:-7px;
  width:17px; height:17px;
  color:var(--deco-gold);
  pointer-events:none;
  filter:drop-shadow(0 2px 3px rgba(69,58,99,0.25));
  animation:tulipSway 3.6s ease-in-out infinite;
  transform-origin:60% 40%;
}
.burger.open .bl1{ top:22px; transform:rotate(45deg); border-radius:3px; }
.burger.open .bl2{ opacity:0; transform:scaleX(.4); }
.burger.open .bl3{ top:22px; transform:rotate(-45deg); border-radius:3px; }
@media (prefers-reduced-motion: reduce){
  .burger .bud{ animation:none; }
}
