:root{
  --bg:#FFFFFF;
  --surface:#FFFFFF;
  --surface-2:#F4ECE0;
  --badge-bg:#EFE1CC;
  --ink:#241A18;
  --muted:#7A6B62;
  --accent:#7C2233;
  --accent-dark:#5E1826;
  --accent-ink:#FFF6F0;
  --accent-2:#B8842A;
  --line:#E3D3BE;
  --shadow: 0 1px 2px rgba(36,26,24,.06), 0 8px 24px -12px rgba(36,26,24,.20);
  --radius: 20px;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#1E1613; --surface:#2A201C; --surface-2:#332621; --badge-bg:#3A2C25;
    --ink:#F3E9E1; --muted:#C2AFA3; --accent:#E38A9B; --accent-dark:#E38A9B;
    --accent-ink:#2B1017; --accent-2:#E8B85A;
    --line:#42332C; --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 28px -14px rgba(0,0,0,.5);
  }
}
:root[data-theme="dark"]{
  --bg:#1E1613; --surface:#2A201C; --surface-2:#332621; --badge-bg:#3A2C25;
  --ink:#F3E9E1; --muted:#C2AFA3; --accent:#E38A9B; --accent-dark:#E38A9B;
  --accent-ink:#2B1017; --accent-2:#E8B85A;
  --line:#42332C; --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 28px -14px rgba(0,0,0,.5);
}
*{box-sizing:border-box;}
body{ background:var(--bg); color:var(--ink); margin:0; font-family:"Inter","Segoe UI",sans-serif; }
#app{
  background:var(--bg); color:var(--ink);
  padding-inline:20px; padding-block:28px 0;
  max-width:760px; margin-inline:auto; line-height:1.6;
  position:relative; overflow:hidden;
}
#app.has-fixed-header{ padding-top:calc(var(--header-h, 90px) + 28px); }
a{color:inherit;}
.num{font-variant-numeric:tabular-nums;}

/* ---- top label nav ---- */
.top-labels{
  display:flex; flex-wrap:wrap; gap:6px 16px;
  font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); font-weight:600; padding-bottom:22px;
}

/* ---- headline block ---- */
.headline-block{ display:flex; gap:16px; margin-bottom:8px; }
.headline-block .bar{ flex:none; width:4px; border-radius:3px; background:var(--accent); }
.headline-block .content{ display:flex; flex-direction:column; gap:14px; }
.display{
  font-family:"Unbounded","Segoe UI",sans-serif;
  font-weight:700; text-transform:uppercase; letter-spacing:-0.01em;
  line-height:1.08; color:var(--ink); margin:0;
}
h1.display{ font-size:clamp(26px,7vw,40px); }
.display .accent-line{ color:var(--accent); }
.lede{ font-size:15.5px; color:var(--ink); max-width:56ch; }
.hand{
  font-family:"Marck Script","Comic Sans MS",cursive; color:var(--accent);
  font-size:19px; line-height:1.35; display:inline-flex; align-items:flex-start; gap:6px;
}
.hand .heart{ font-size:15px; }

/* ---- avatar / hero-top ---- */
.site-nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  margin-bottom:0;
}
.site-nav .site-logo{ margin-bottom:0; }
.nav-links{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.nav-links a{
  font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  color:var(--muted); text-decoration:none; padding:6px 0; border-bottom:2px solid transparent;
}
.nav-links a:hover, .nav-links a.active{ color:var(--accent); border-color:var(--accent); }
.lang-switch{ display:flex; gap:2px; border:1px solid var(--line); border-radius:999px; padding:3px; }
.lang-switch a{
  font-size:11px; font-weight:700; letter-spacing:.02em; color:var(--muted);
  text-decoration:none; padding:4px 9px; border-radius:999px; border-bottom:none;
}
.lang-switch a.active{ background:var(--accent); color:var(--accent-ink); border-color:transparent; }
.lang-switch a:hover:not(.active){ color:var(--accent); }

.page-wrap{ position:relative; overflow:hidden; }
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:var(--bg); border-bottom:1px solid var(--line);
}
.site-nav-full{
  padding:18px 24px; max-width:1200px; margin:0 auto; width:100%; box-sizing:border-box;
}
.site-header .site-nav{
  padding:14px 20px; max-width:760px; margin:0 auto; width:100%; box-sizing:border-box;
}
.full-hero{
  display:flex; flex-direction:column; width:100%;
  padding-top:var(--header-h, 90px);
}
.full-hero .fh-text{
  display:flex; flex-direction:column; gap:16px; justify-content:center;
  padding:36px 24px; box-sizing:border-box;
}
.full-hero .fh-photo img{
  width:100%; display:block; object-fit:cover; object-position:center 20%; height:300px;
}
@media (min-width:640px) and (max-width:899px){
  .full-hero{ flex-direction:row; align-items:stretch; min-height:420px; }
  .full-hero .fh-text{ flex:1 1 52%; max-width:420px; padding:0 32px; margin-left:auto; }
  .full-hero .fh-photo{ flex:1 1 48%; }
  .full-hero .fh-photo img{ height:100%; min-height:420px; object-position:center 15%; }
}
@media (min-width:900px){
  .full-hero{ flex-direction:row; align-items:stretch; min-height:min(calc(100vh - 68px), 640px); }
  .full-hero .fh-text{ flex:1 1 52%; max-width:520px; padding:32px 48px; margin-left:auto; }
  .full-hero .fh-photo{ flex:1 1 48%; }
  .full-hero .fh-photo img{ width:100%; height:100%; min-height:460px; object-position:center 15%; }
}
.full-hero .btn{ width:auto; align-self:flex-start; padding-inline:22px; }

.hero-top{ display:flex; align-items:center; gap:12px; margin-bottom:18px; margin-top:26px; }
.avatar{
  width:52px; height:52px; border-radius:50%;
  object-fit:cover; flex:none; border:2px solid var(--surface); box-shadow:var(--shadow);
}
.word-field{
  position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden;
}
.word-field .w{
  position:absolute; font-size:9px; font-weight:700; letter-spacing:.02em;
  color:var(--accent); opacity:.11; white-space:nowrap;
}
.site-logo{
  position:relative; z-index:2; display:flex; align-items:center; gap:8px; margin-bottom:20px;
  text-decoration:none; color:inherit; cursor:pointer;
}
.site-logo .logo-mark{ display:flex; flex:none; color:var(--accent); }
.site-logo .logo-mark svg{ width:32px; height:32px; }
.site-logo .logo-text{ display:flex; flex-direction:column; gap:1px; }
.site-logo .logo-name{
  font-family:"Fraunces",serif; font-weight:700; font-size:21px;
  letter-spacing:.01em; color:var(--ink); line-height:1;
}
.site-logo .logo-caption{
  font-family:"Inter",sans-serif; font-weight:600; font-size:9.5px;
  letter-spacing:.18em; color:var(--accent); text-transform:uppercase; line-height:1;
}
.hero-photo{
  margin-top:22px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
}
.hero-photo img{ width:100%; display:block; object-fit:cover; max-height:440px; object-position:center 30%; }
.hero-map{
  margin-top:22px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  background:var(--surface-2); display:flex; align-items:center; justify-content:center;
  padding:24px; box-sizing:border-box;
}
.hero-map svg{ width:100%; max-width:340px; height:auto; display:block; }
.hero-name{ font-size:14px; font-weight:700; font-family:"Unbounded",sans-serif; }
.hero-hand{ font-size:12.5px; color:var(--muted); }

/* ---- icon feature rows ---- */
.feature-row{ display:flex; gap:14px; padding-block:16px; border-top:1px solid var(--line); }
.feature-row:first-of-type{ border-top:none; }
.icon-badge{
  flex:none; width:46px; height:46px; border-radius:50%; background:var(--badge-bg);
  display:flex; align-items:center; justify-content:center; color:var(--accent);
}
.icon-badge svg{ width:22px; height:22px; }
.feature-row h3{
  font-family:"Unbounded",sans-serif; font-weight:700; font-size:13.5px;
  text-transform:uppercase; letter-spacing:.03em; margin:2px 0 8px;
}
.feature-row ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:6px; }
.feature-row li{ font-size:14px; color:var(--ink); display:flex; gap:8px; }
.feature-row li::before{ content:"•"; color:var(--accent); flex:none; }

/* ---- course card ---- */
.course{
  margin-top:30px; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow); padding:22px;
  display:flex; flex-direction:column; gap:16px;
}
.course-head{ display:flex; flex-direction:column; gap:6px; }
.eyebrow{
  font-size:11.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--accent); font-weight:700;
}
.course-title{ font-family:"Unbounded",sans-serif; font-weight:700; text-transform:uppercase; font-size:19px; line-height:1.2; }
.course-tagline{ color:var(--muted); font-size:14px; }
.meta-row{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  font-size:12px; font-weight:700;
  background:var(--surface-2); color:var(--ink);
  border-radius:999px; padding:5px 12px;
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid var(--line);
}
.chip.seats{ color:var(--accent); border-color:color-mix(in srgb, var(--accent) 30%, var(--line)); }
.pains{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.pains li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; }
.pains li::before{ content:"—"; color:var(--accent); flex:none; font-weight:700; }
.includes{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; border-top:1px solid var(--line); padding-top:14px; }
.includes li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--ink); }
.includes li::before{ content:"✓"; color:var(--accent-2); font-weight:700; flex:none; }
.price-row{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  border-top:1px solid var(--line); padding-top:16px; flex-wrap:wrap;
}
.price{ font-family:"Unbounded",sans-serif; font-weight:700; font-size:24px; }
.price .cur{ font-size:14px; color:var(--muted); font-weight:600; margin-left:4px;}
.price-note{ font-size:12px; color:var(--muted); }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:"Unbounded",sans-serif; font-weight:700; font-size:13.5px;
  text-transform:uppercase; letter-spacing:.02em;
  padding:14px 20px; border-radius:12px; border:1px solid transparent;
  cursor:pointer; text-decoration:none; width:100%;
}
.btn-primary{ background:var(--accent); color:var(--accent-ink); }
.btn-primary:active{ opacity:.88; }
.btn-ghost{ background:transparent; border-color:var(--line); color:var(--ink); }
.btn-sm{ padding:9px 14px; font-size:12.5px; width:auto; }
.btn-danger{ background:transparent; border-color:var(--line); color:var(--accent); }
.reserve-note{ font-size:12px; color:var(--muted); text-align:center; }
.payment-embed{ width:100%; }
.payment-embed iframe{ width:100% !important; border:0; }
.start-banner{
  margin-top:30px; display:flex; align-items:center; justify-content:center;
  gap:8px; flex-wrap:wrap; text-align:center;
  background:color-mix(in srgb, var(--accent) 10%, var(--surface-2));
  border:1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius:999px; padding:10px 18px;
  font-size:13px; font-weight:700; color:var(--ink);
}
.start-banner .accent{ color:var(--accent); }

/* ---- faq ---- */
.section-label{ margin-top:40px; margin-bottom:14px; }
.faq-item{ border-bottom:1px solid var(--line); padding-block:14px; }
.faq-q{
  display:flex; justify-content:space-between; align-items:center; gap:10px;
  cursor:pointer; font-family:"Unbounded",sans-serif; font-weight:600; font-size:14px;
  text-transform:uppercase; list-style:none;
}
.faq-q::-webkit-details-marker{ display:none; }
.faq-plus{ color:var(--accent); flex:none; font-weight:700; }
.faq-a{ margin-top:8px; color:var(--muted); font-size:14px; max-width:60ch; }

/* ---- skyline + footer ---- */
.skyline{ margin-top:48px; color:var(--accent); opacity:.55; }
.skyline svg{ width:100%; height:auto; display:block; }
.location-pill{
  display:inline-flex; align-items:center; gap:8px; align-self:flex-start;
  border:1px solid var(--line); border-radius:999px; padding:8px 16px;
  font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  margin-top:14px;
}
footer.site-foot{ padding:20px 0 44px; display:flex; flex-direction:column; gap:4px; }
footer.site-foot .hand{ font-size:15px; }
.ig-link{ color:var(--accent); font-weight:700; font-size:14px; text-decoration:none; }
.ig-link:hover{ text-decoration:underline; }
.footer-legal{
  margin-top:10px; padding-top:10px; border-top:1px solid var(--line);
  font-size:11.5px; line-height:1.6; color:var(--muted);
}
.footer-legal a{ color:var(--muted); text-decoration:underline; }
.footer-legal a:hover{ color:var(--accent); }

/* ---- brand blob badge ---- */
.brand-blob{
  position:absolute; top:84px; right:-10px;
  width:112px; height:112px; border-radius:50%;
  background:var(--accent); color:var(--accent-ink);
  display:none; align-items:center; justify-content:center; text-align:center;
  font-family:"Unbounded",sans-serif; font-weight:700; font-size:10.5px;
  text-transform:uppercase; letter-spacing:.02em; line-height:1.3; padding:14px;
}
@media (min-width:640px){ .brand-blob{ display:flex; } }

/* ---- admin / login ---- */
.login-box{
  max-width:360px; margin:60px auto; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius); padding:24px; display:flex; flex-direction:column; gap:14px;
}
.field{ display:flex; flex-direction:column; gap:5px; }
.field label{ font-size:11.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.field input, .field textarea, .field select{
  font-family:"Inter",sans-serif; font-size:14.5px; color:var(--ink);
  background:var(--surface); border:1px solid var(--line); border-radius:10px; padding:10px 12px; width:100%;
}
.field textarea{ min-height:70px; resize:vertical; }
.field-row{ display:flex; gap:10px; flex-wrap:wrap; }
.field-row .field{ flex:1 1 120px; }
.admin-course{ border:1px solid var(--line); border-radius:14px; padding:14px; background:var(--surface); display:flex; flex-direction:column; gap:12px; }
.admin-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.save-bar{ position:sticky; bottom:0; display:flex; gap:10px; padding-top:6px; background:var(--bg); flex-wrap:wrap; }
.toast{ font-size:13px; color:var(--accent-2); font-weight:600; min-height:16px; }
.admin-top{ display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:24px; }
.admin-section-title{
  font-family:"Unbounded",sans-serif; font-weight:700; font-size:14px;
  text-transform:uppercase; letter-spacing:.02em; padding-bottom:6px; border-bottom:1px solid var(--line);
}
.admin-slot{
  border:1px solid var(--line); border-radius:14px; padding:12px 14px; background:var(--surface);
  display:flex; flex-direction:column; gap:8px; margin-bottom:10px;
}
.slot-status{ font-size:12.5px; font-weight:700; }
.slot-status.free{ color:var(--accent-2); }
.slot-status.booked{ color:var(--accent); }

/* ---- coaching page ---- */
.price-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:12px; margin-top:24px; }
.price-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:18px; display:flex; flex-direction:column; gap:6px; text-align:center;
}
.price-card-title{ font-family:"Unbounded",sans-serif; font-weight:700; font-size:12.5px; text-transform:uppercase; letter-spacing:.02em; color:var(--muted); }
.price-card-amount{ font-family:"Unbounded",sans-serif; font-weight:700; font-size:26px; }
.price-card-amount .cur{ font-size:13px; color:var(--muted); font-weight:600; margin-left:4px; }
.price-card-note{ font-size:12px; color:var(--accent-2); font-weight:600; }
.no-slots{ font-size:14.5px; color:var(--muted); margin-top:16px; }
.slot-groups{ display:flex; flex-direction:column; gap:16px; margin-top:16px; }
.slot-group{ display:flex; flex-direction:column; gap:8px; }
.slot-date{ font-family:"Unbounded",sans-serif; font-weight:700; font-size:12.5px; text-transform:uppercase; letter-spacing:.02em; color:var(--muted); }
.slot-pills{ display:flex; flex-wrap:wrap; gap:8px; }
.slot-pill{
  font-family:"Unbounded",sans-serif; font-weight:700; font-size:13px;
  background:var(--surface-2); color:var(--ink); border:1px solid var(--line);
  border-radius:999px; padding:9px 16px; cursor:pointer;
}
.slot-pill:hover{ border-color:var(--accent); color:var(--accent); }
#coaching-calendar{ margin-top:16px; }
.cal-header{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px; }
.cal-nav{
  width:34px; height:34px; border-radius:10px; border:1px solid var(--line); background:var(--surface);
  color:var(--ink); font-size:17px; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.cal-nav:hover{ border-color:var(--accent); color:var(--accent); }
.cal-month-label{ font-family:"Unbounded",sans-serif; font-weight:700; font-size:13.5px; text-transform:uppercase; letter-spacing:.02em; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:6px; }
.cal-wd{ font-size:11px; font-weight:700; text-transform:uppercase; color:var(--muted); text-align:center; padding-bottom:4px; }
.cal-day{
  aspect-ratio:1; border:1px solid transparent; border-radius:10px; background:none;
  font-family:"Inter",sans-serif; font-size:13.5px; color:var(--line); cursor:default;
}
.cal-day.empty{ visibility:hidden; }
.cal-day.has-slots{
  background:var(--surface-2); color:var(--ink); border-color:var(--line); font-weight:700; cursor:pointer;
}
.cal-day.has-slots:hover{ border-color:var(--accent); color:var(--accent); }
.cal-day.selected{ background:var(--accent); color:var(--accent-ink); border-color:var(--accent); }
.cal-times{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; padding-top:16px; border-top:1px solid var(--line); }
.booking-form{
  margin-top:20px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:18px; display:flex; flex-direction:column; gap:12px;
}
.booking-form-title{ font-family:"Unbounded",sans-serif; font-weight:700; font-size:14px; }
