
:root{
  --cream:#fbf6eb;
  --paper:#fffdf8;
  --ink:#243041;
  --green:#304a2e;
  --rose:#ce6f82;
  --gold:#c89b45;
  --line:#dfcfb0;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:#2e3028;
  font-family:Arial,Helvetica,sans-serif;
}
.landing-body{
  min-height:100vh;
  background:
    radial-gradient(circle at 10% 10%,rgba(206,111,130,.09),transparent 26%),
    radial-gradient(circle at 90% 90%,rgba(200,155,69,.11),transparent 28%),
    var(--cream);
}
.landing{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:22px 16px;
  position:relative;
}
.welcome-panel{
  width:min(100%,680px);
  text-align:center;
  background:rgba(255,253,248,.96);
  border:1px solid var(--line);
  border-radius:28px;
  padding:38px 22px 34px;
  box-shadow:0 18px 50px rgba(68,52,34,.13);
}
.script{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:clamp(55px,13vw,100px);
  color:#172f55;
  line-height:.95;
}
.smallcaps{
  margin:20px 0 6px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--rose);
  font-weight:700;
}
.welcome-panel h1{
  margin:0;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(42px,11vw,78px);
  color:#172f55;
}
.welcome-panel h2{
  margin:8px 0 18px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:clamp(17px,4vw,28px);
  color:var(--rose);
}
.divider{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--gold);
  margin:15px auto;
  max-width:480px;
}
.divider:before,.divider:after{
  content:"";
  height:1px;
  background:var(--gold);
  flex:1;
}
.intro{
  margin:18px auto 4px;
  max-width:560px;
  font-size:clamp(18px,4vw,25px);
  color:#172f55;
}
.guide-script{
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:clamp(28px,7vw,48px);
  color:var(--gold);
}
.qr-wrap{
  display:inline-block;
  padding:14px;
  background:white;
  border:2px dashed var(--rose);
  border-radius:24px;
}
.qr-wrap img{
  display:block;
  width:min(72vw,360px);
  height:auto;
}
.scan-label{
  margin:12px 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:34px;
  color:#172f55;
}
.open-button{
  display:inline-block;
  text-decoration:none;
  background:var(--green);
  color:white;
  padding:15px 26px;
  border-radius:999px;
  font-weight:800;
  font-size:20px;
  box-shadow:0 8px 20px rgba(48,74,46,.2);
}
.url{
  margin:16px 0 0;
  color:#6e655a;
  font-weight:700;
}
.leaf{
  position:absolute;
  color:var(--green);
  opacity:.35;
  font-size:42px;
}
.leaf-left{left:18px;top:18px}
.leaf-right{right:18px;bottom:18px;transform:rotate(180deg)}

.guide-header{
  text-align:center;
  padding:24px 15px 16px;
}
.guide-header h1{
  margin:0;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px,7vw,56px);
}
.guide-header p{margin:8px 0 0;color:#675f53}
nav{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 12px;
  background:rgba(251,246,235,.97);
  border-block:1px solid var(--line);
  backdrop-filter:blur(8px);
}
nav a{
  flex:0 0 auto;
  text-decoration:none;
  color:#2e3028;
  font-weight:700;
  background:#fffdf7;
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 13px;
}
.guide-main{
  max-width:900px;
  margin:auto;
  padding:18px 10px 50px;
}
.guide-main section{
  scroll-margin-top:74px;
  margin-bottom:24px;
}
.guide-main section img{
  display:block;
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(60,45,30,.13);
}
footer{
  text-align:center;
  padding:28px 16px 44px;
  border-top:1px solid var(--line);
}
