
.page{ max-width:1200px; }

.hero{
  text-align:center;
  padding:36px 20px 28px;
  margin-bottom:8px;
}
.hero__eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--color-amber);
  margin-bottom:10px;
}
.hero__title{
  font-family:'Neucha',cursive;
  font-size:52px;
  color:var(--color-amber-dark);
  line-height:1.1;
  margin-bottom:10px;
  text-shadow:1px 1px 0 rgba(255,255,255,.6);
}
.hero__title em{
  font-style:normal;
  color:var(--color-amber);
}
.hero__subtitle{
  font-size:15px;
  color:#6b5a45;
  font-style:italic;
  max-width:560px;
  margin:0 auto 20px;
  line-height:1.6;
}
.hero__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg,var(--color-amber) 0%,var(--color-amber-dark) 100%);
  color:#fff;
  border:none;
  font-family:inherit;
  font-size:14px;
  font-weight:700;
  padding:10px 22px;
  border-radius:10px;
  cursor:pointer;
  box-shadow:var(--shadow);
  transition:box-shadow .15s, transform .1s, filter .15s;
}
.hero__cta:hover{
  box-shadow:var(--shadow-lift);
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.section-heading{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin:0 0 14px;
}
.section-heading__title{
  font-family:'Neucha',cursive;
  font-size:26px;
  color:var(--color-amber-dark);
}
.section-heading__desc{
  font-size:13px;
  color:#8a7757;
  font-style:italic;
}

.home-section{
  margin-bottom:36px;
}

.start-path{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.start-step{
  flex:1 1 220px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--color-paper);
  border:1px solid var(--color-line);
  border-radius:12px;
  padding:16px 18px;
  box-shadow:var(--shadow);
  transition:box-shadow .15s, transform .1s, border-color .15s;
  cursor:pointer;
  font-family:inherit;
  text-align:left;
  position:relative;
}
.start-step:hover{
  box-shadow:var(--shadow-lift);
  border-color:var(--color-amber-soft);
  transform:translateY(-1px);
}
.start-step:focus-visible{
  outline:2px solid var(--color-amber-dark);
  outline-offset:2px;
}
.start-step__num{
  flex:0 0 auto;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--color-amber);
  color:#fff;
  font-family:'Neucha',cursive;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.start-step__title{
  font-weight:700;
  color:var(--color-dark);
  font-size:14.5px;
  margin-bottom:3px;
}
.start-step__desc{
  font-size:12.5px;
  color:#6b5a45;
  line-height:1.5;
}
.start-step__hint{
  position:absolute;
  right:16px;
  bottom:12px;
  font-size:11px;
  font-weight:600;
  color:var(--color-amber-dark);
  opacity:0;
  transform:translateX(-4px);
  transition:opacity .15s, transform .15s;
}
.start-step:hover .start-step__hint,
.start-step:focus-visible .start-step__hint{
  opacity:1;
  transform:translateX(0);
}

.section-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
  gap:14px;
}
.section-tile{
  position:relative;
  display:block;
  background:var(--color-paper);
  border:1px solid var(--color-line);
  border-top:3px solid var(--tile-elem-color, var(--color-amber));
  border-radius:12px;
  padding:18px 18px 16px;
  color:var(--color-dark);
  transition:box-shadow .15s, transform .1s, border-color .15s;
}
.section-tile:hover{
  box-shadow:var(--shadow-lift);
  transform:translateY(-1px);
  text-decoration:none;
}
.section-tile__badge{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--tile-elem-color, var(--color-amber));
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  box-shadow:0 1px 3px rgba(0,0,0,.2);
  font-size:16px;
  line-height:1;
}
.section-tile__badge img{
  width:18px;
  height:18px;
  filter:brightness(0) invert(1);
}
.section-tile__name{
  font-family:'Neucha',cursive;
  font-size:21px;
  color:var(--color-amber-dark);
  margin-bottom:4px;
}
.section-tile__desc{
  font-size:12.5px;
  color:#6b5a45;
  line-height:1.5;
  margin-bottom:10px;
}
.section-tile__count{
  font-size:11px;
  font-weight:700;
  letter-spacing:.3px;
  color:var(--color-amber-dark);
  background:var(--color-sand);
  display:inline-block;
  padding:2px 9px;
  border-radius:9px;
}
.section-tile--pending{
  opacity:.6;
}
.section-tile--pending .section-tile__count{
  background:var(--color-paper-2);
  color:#8a7757;
}
.section-tile--pending:hover{
  box-shadow:none;
  transform:none;
}

.sheets-section{
  background:linear-gradient(135deg,#2c2010,#4a3418);
  border-radius:14px;
  padding:26px 26px 24px;
  color:#f0e0bf;
}
.sheets-section .section-heading__title{ color:#ffe4b0; }
.sheets-section .section-heading__desc{ color:#cbb689; }

.sheets-empty{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1.5px dashed rgba(240,224,176,.35);
  border-radius:10px;
  padding:22px 22px;
}
.sheets-empty__text{
  font-size:14px;
  line-height:1.6;
  max-width:460px;
  color:#e8d3a0;
}

.sheets-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:12px;
  margin-bottom:16px;
}
.sheet-card-wrap{
  position:relative;
  display:block;
}
.sheet-card{
  display:block;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(240,224,176,.25);
  border-radius:10px;
  padding:14px 16px;
  transition:background .15s, border-color .15s, transform .1s;
  color:#f0e0bf;
}
.sheet-card__delete{
  position:absolute;
  top:8px;
  right:8px;
  width:24px;
  height:24px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,.28);
  color:#f0e0bf;
  font-size:15px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity .15s, background .15s, color .15s, transform .1s;
  z-index:2;
}
.sheet-card-wrap:hover .sheet-card__delete,
.sheet-card__delete:focus-visible{
  opacity:1;
}
.sheet-card__delete:hover{
  background:#a33;
  color:#fff;
}
.sheet-card__delete:active{
  transform:scale(.92);
}
.sheet-card:hover{
  background:rgba(0,0,0,.3);
  border-color:rgba(240,224,176,.45);
  transform:translateY(-1px);
  text-decoration:none;
}
.sheet-card__name{
  font-family:'Neucha',cursive;
  font-size:19px;
  color:#ffe4b0;
  margin-bottom:2px;
}
.sheet-card__meta{
  font-size:12px;
  color:#cbb689;
  margin-bottom:2px;
}
.sheet-card__date{
  font-size:11px;
  color:#a8916a;
  font-style:italic;
}

.cta-btn--on-dark{
  background:var(--color-amber);
  color:#fff;
  border-color:transparent;
}
.cta-btn--on-dark:hover{ background:var(--color-amber-dark); color:#fff; }
.cta-btn--ghost-on-dark{
  background:transparent;
  color:#f0e0bf;
  border-color:rgba(240,224,176,.4);
}
.cta-btn--ghost-on-dark:hover{
  background:rgba(240,224,176,.1);
  border-color:rgba(240,224,176,.6);
  color:#ffe4b0;
}

@media (max-width:640px){
  .hero__title{ font-size:38px; }
}
