@font-face{
  font-family:"Fraunces";
  src:url("./fonts/Fraunces-Variable.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("./fonts/Inter-Variable.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#fff7f7;
  --panel:#ffffff;
  --text:#231f20;
  --muted:#6d5f62;
  --line:rgba(35,31,32,.10);
  --shadow:0 18px 45px rgba(35,31,32,.10);
  --shadow-soft:0 10px 28px rgba(35,31,32,.08);

  --nude:#f3e6e3;
  --blush:#f7d6de;
  --rose:#c06d7b;
  --gold:#b08d57;
  --gold-2:#d7bf87;

  --radius:18px;
  --radius-sm:14px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1000px 450px at 20% 0%, rgba(247,214,222,.55), rgba(255,247,247,0) 60%),
    radial-gradient(900px 460px at 80% 10%, rgba(215,191,135,.22), rgba(255,247,247,0) 62%),
    linear-gradient(180deg, #fff7f7, #ffffff 60%);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.45;
}

a{color:inherit}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:8px;
  background:var(--panel);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:12px;
  box-shadow:var(--shadow-soft);
}
.skip:focus{left:12px; z-index:50}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:saturate(1.2) blur(10px);
  background:rgba(255,255,255,.72);
  border-bottom:1px solid rgba(35,31,32,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand__mark{
  width:38px;
  height:38px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(247,214,222,.9), rgba(243,230,227,.8));
  border:1px solid rgba(176,141,87,.18);
  box-shadow:0 10px 25px rgba(35,31,32,.08);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.brand__text{min-width:0}
.brand__name{
  font-family:Fraunces, ui-serif, Georgia, serif;
  font-weight:650;
  letter-spacing:.2px;
  font-size:15px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__sub{
  color:var(--muted);
  font-size:12.5px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:650;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:focus-visible{outline:3px solid rgba(176,141,87,.35); outline-offset:2px}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg, rgba(176,141,87,.95), rgba(215,191,135,.88));
  color:#1f1a14;
  box-shadow:0 16px 30px rgba(176,141,87,.18);
  border-color:rgba(176,141,87,.25);
}
.btn--primary:hover{box-shadow:0 18px 40px rgba(176,141,87,.22)}

.hero{
  padding:54px 0 18px;
}
.hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:34px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(176,141,87,.18);
  color:rgba(35,31,32,.88);
  box-shadow:0 10px 22px rgba(35,31,32,.06);
  font-size:13px;
  font-weight:600;
}

.hero__title{
  font-family:Fraunces, ui-serif, Georgia, serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size:clamp(34px, 4.6vw, 54px);
  line-height:1.03;
  margin:14px 0 12px;
}
.hero__lead{
  margin:0;
  color:rgba(35,31,32,.78);
  font-size:16.5px;
  max-width:60ch;
}

.hero__highlights{
  margin-top:22px;
  display:grid;
  gap:10px;
}
.highlight{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(35,31,32,.08);
  box-shadow:0 10px 22px rgba(35,31,32,.06);
  color:rgba(35,31,32,.80);
}
.highlight__icon{opacity:.92}

.hero__visual{
  display:flex;
  justify-content:center;
}

.frame{
  width:min(380px, 100%);
  border-radius:28px;
  padding:18px;
  background:
    radial-gradient(220px 120px at 30% 20%, rgba(247,214,222,.85), rgba(255,255,255,0) 60%),
    radial-gradient(240px 140px at 80% 10%, rgba(215,191,135,.40), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
  border:1px solid rgba(176,141,87,.18);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.frame__top{height:18px}
.sparkle{
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(215,191,135,.55), rgba(215,191,135,0) 62%);
  top:-60px;
  right:-60px;
}
.sparkle--b{
  width:220px;
  height:220px;
  background:radial-gradient(circle at 30% 30%, rgba(247,214,222,.65), rgba(247,214,222,0) 63%);
  top:140px;
  left:-90px;
}
.frame__card{
  position:relative;
  border-radius:22px;
  padding:18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(35,31,32,.08);
  box-shadow:0 18px 35px rgba(35,31,32,.10);
  min-height:260px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}

.mini{
  width:56%;
  border-radius:18px;
  padding:14px;
  background:linear-gradient(180deg, rgba(243,230,227,.85), rgba(255,255,255,.65));
  border:1px solid rgba(176,141,87,.14);
  box-shadow:0 16px 25px rgba(35,31,32,.07);
}
.mini__row{display:flex; gap:6px; margin-bottom:12px}
.mini__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(176,141,87,.38);
}
.mini__title{
  font-family:Fraunces, ui-serif, Georgia, serif;
  font-weight:650;
  letter-spacing:.2px;
  margin-bottom:10px;
}
.mini__lines span{
  display:block;
  height:10px;
  border-radius:999px;
  background:rgba(35,31,32,.08);
  margin:10px 0;
}
.mini__lines span:nth-child(1){width:95%}
.mini__lines span:nth-child(2){width:78%}
.mini__lines span:nth-child(3){width:88%}

.badge{
  width:38%;
  aspect-ratio:1/1;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(176,141,87,.20), rgba(247,214,222,.35));
  border:1px solid rgba(176,141,87,.22);
  box-shadow:0 18px 28px rgba(35,31,32,.07);
  display:grid;
  place-items:center;
  position:relative;
}
.badge__ring{
  position:absolute;
  inset:14px;
  border-radius:18px;
  border:1px dashed rgba(176,141,87,.45);
}
.badge__content{text-align:center}
.badge__label{
  font-size:12px;
  color:rgba(35,31,32,.70);
  letter-spacing:.12em;
  text-transform:uppercase;
}
.badge__value{
  font-family:Fraunces, ui-serif, Georgia, serif;
  font-weight:720;
  font-size:18px;
  margin-top:6px;
}
.frame__base{height:10px}

.programs{
  padding:28px 0 64px;
}
.sectionhead{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}
.sectionhead__title{
  font-family:Fraunces, ui-serif, Georgia, serif;
  font-weight:720;
  margin:0;
  font-size:clamp(24px, 3.2vw, 34px);
  letter-spacing:.2px;
}
.sectionhead__sub{
  margin:0;
  color:rgba(35,31,32,.70);
  max-width:70ch;
}

.cards{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:16px;
}

.card{
  grid-column:span 6;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(35,31,32,.08);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.card--accent{
  background:
    radial-gradient(420px 220px at 10% 0%, rgba(247,214,222,.60), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.80));
  border-color:rgba(176,141,87,.18);
}

.card__head{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:14px;
}
.card__icon{
  width:44px;
  height:44px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(247,214,222,.85), rgba(243,230,227,.65));
  border:1px solid rgba(176,141,87,.16);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.card__title{
  margin:0;
  font-size:18px;
  font-weight:750;
  letter-spacing:.1px;
}
.card__meta{
  margin:6px 0 0;
  color:rgba(35,31,32,.68);
  font-size:13.5px;
}

.price{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.price__item{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:14px;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(35,31,32,.07);
}
.price__name{
  color:rgba(35,31,32,.80);
  font-weight:600;
}
.price__value{
  font-weight:800;
  letter-spacing:.2px;
}
.price__value--free{
  color:#1f6f55;
  background:rgba(31,111,85,.10);
  border:1px solid rgba(31,111,85,.20);
  padding:6px 10px;
  border-radius:999px;
}

.footer{
  border-top:1px solid rgba(35,31,32,.08);
  background:rgba(255,255,255,.72);
}
.footer__inner{
  padding:22px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.footer__brand{
  font-weight:750;
}
.footer__note{
  color:rgba(35,31,32,.70);
  font-size:13.5px;
  margin-top:6px;
  max-width:62ch;
}
.footer__link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(176,141,87,.22);
  background:linear-gradient(135deg, rgba(247,214,222,.35), rgba(255,255,255,.75));
  font-weight:650;
}
.footer__link:focus-visible{outline:3px solid rgba(176,141,87,.35); outline-offset:2px}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero{padding:42px 0 10px}
  .hero__visual{order:-1}
}

@media (max-width: 740px){
  .cards{gap:14px}
  .card{grid-column:span 12}
  .topbar__inner{padding:12px 0}
  .brand__name{font-size:14px}
}

@media (prefers-reduced-motion: reduce){
  .btn{transition:none}
}
