*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;scroll-padding-top:var(--header-h-mobile);-webkit-text-size-adjust:100%;}
@media (min-width:768px){html{scroll-padding-top:var(--header-h);}}
html,body{margin:0;padding:0;}
body{
  font-family:var(--ff-body);
  font-size:16px;
  line-height:1.55;
  color:var(--text);
  background:var(--bg);
  overflow-x:clip;
  min-height:100vh;
}
figure,blockquote,dl,dd{margin:0;}
ul,ol{margin:0;padding:0;list-style:none;}
img,video,iframe,svg{max-width:100%;display:block;}
img{height:auto;}
button{font:inherit;color:inherit;cursor:pointer;border:0;background:transparent;}
a{color:inherit;text-decoration:none;}
[hidden]{display:none !important;}

h1,h2,h3,h4,h5{
  font-family:var(--ff-display);
  font-weight:500;
  line-height:1.1;
  margin:0;
  color:var(--text);
  letter-spacing:-0.005em;
}
h1{font-size:clamp(2.2rem,6vw,3.6rem);}
h2{font-size:clamp(1.9rem,4.6vw,3rem);line-height:1.08;}
h3{font-size:clamp(1.25rem,2.4vw,1.6rem);line-height:1.2;}
p{margin:0 0 1rem;color:var(--text-2);}
p:last-child{margin-bottom:0;}
em{font-style:italic;color:var(--accent);}

::selection{background:var(--accent);color:#FBF6EE;}
::-webkit-scrollbar{width:8px;height:8px;}
::-webkit-scrollbar-track{background:var(--bg-alt);}
::-webkit-scrollbar-thumb{background:var(--accent-2);border-radius:4px;}
::-webkit-scrollbar-thumb:hover{background:var(--accent);}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:4px;}
::placeholder{color:var(--text-mute);opacity:1;}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}
@media (min-width:768px){.container{padding:0 40px;}}

section{
  padding:56px 0;
  position:relative;
}
@media (min-width:768px){section{padding:88px 0;}}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:var(--ff-ui);
  font-size:.78rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--accent);
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:var(--accent);
}

.section-head{margin-bottom:36px;max-width:680px;}
.section-head .lead{font-size:clamp(1rem,1.6vw,1.15rem);color:var(--text-2);margin-top:14px;max-width:56ch;}
@media (min-width:768px){.section-head{margin-bottom:56px;}}

.section--alt{background:var(--bg-alt);}
.section--dark{background:var(--surface-dark);color:#F3EAE0;}
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4{color:#FBF6EE;}
.section--dark p,.section--dark li,.section--dark a{color:rgba(243,234,224,0.85);}
.section--dark .eyebrow{color:var(--accent-on-dark);}
.section--dark .eyebrow::before{background:var(--accent-on-dark);}
