@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

*{box-sizing:border-box}
html{height:100%; width:100%; overflow-x:hidden; background:var(--bg); scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}
body{
  margin:0;
  min-height:100%;
  width:100%;
  max-width:100vw;
  overflow-x:hidden;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  background-image:
    radial-gradient(700px 300px at 85% -10%, rgba(232,212,158,.08), transparent 70%),
    radial-gradient(500px 260px at 10% 10%, rgba(167,143,98,.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,0));
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{padding-left:20px}
.container{max-width:var(--container);margin:0 auto;padding:0 var(--pad-x)}
.section{padding:72px 0}
@media(min-width:900px){.section{padding:104px 0}}

h1,h2,h3{
  font-family:Cinzel,Georgia,serif;
  margin:0;
  line-height:1.08;
}
h1{font-size:clamp(2.4rem,5vw,3.6rem)}
h2{font-size:clamp(1.8rem,3.2vw,2.6rem)}
h3{font-size:clamp(1.15rem,2.4vw,1.45rem)}
p{margin:0}

.label{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-600);
}
.muted{color:var(--muted)}
.divider{height:1px;background:rgba(124,103,63,.25)}

.flow>*+*{margin-top:12px}
