:root{
  --bg:#f5f2ed;
  --surface:#ffffff;
  --surface-soft:#faf8f4;
  --text:#1f1f1c;
  --muted:#6b6a66;
  --line:#e7e1d8;
  --primary:#8f1d2c;
  --primary-dark:#741723;
  --accent:#c5a46d;
  --radius:20px;
  --shadow:0 14px 34px rgba(30, 24, 18, 0.08);
  --max:1080px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f8f5f0 0%,var(--bg) 100%);
  line-height:1.65;
}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%}

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

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(248,245,240,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(231,225,216,.9);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}
.brand{
  color:var(--text);
  font-weight:800;
  letter-spacing:.02em;
}
.nav{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
}
.nav a{
  color:var(--text);
  padding:.65rem .9rem;
  border-radius:999px;
}
.nav a:hover{
  background:var(--surface);
  text-decoration:none;
}

.hero{
  padding:5rem 0 3rem;
}
.hero-shell{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
}
.hero-main{
  padding:3rem;
}
.hero-side{
  padding:3rem 2rem;
  background:linear-gradient(180deg,#f7f2ea 0%,#fdfcf9 100%);
  border-left:1px solid var(--line);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  color:var(--primary);
  margin-bottom:1rem;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:var(--accent);
  display:block;
}
h1,h2,h3{
  line-height:1.12;
  margin:0 0 .8rem;
  font-weight:800;
}
h1{font-size:clamp(2.2rem,5vw,4rem)}
h2{font-size:clamp(1.4rem,3vw,2rem)}
h3{font-size:1.15rem}
.lead{
  font-size:1.08rem;
  color:#44433f;
  max-width:58ch;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  margin-top:1.6rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.2rem;
  border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:.18s ease;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
}
.btn-primary:hover{
  background:var(--primary-dark);
  text-decoration:none;
}
.btn-secondary{
  background:transparent;
  color:var(--text);
  border-color:var(--line);
}
.btn-secondary:hover{
  background:var(--surface-soft);
  text-decoration:none;
}

.side-card{
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1rem 1.1rem;
}
.side-card + .side-card{margin-top:.9rem}
.side-label{
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.07em;
  color:var(--muted);
  font-weight:700;
  margin-bottom:.35rem;
}

.section{
  padding:0 0 3rem;
}
.grid{
  display:grid;
  gap:1.25rem;
}
.grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:1.6rem;
}
.card p:last-child{margin-bottom:0}
.clean-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.85rem;
}
.clean-list li{
  background:var(--surface-soft);
  border:1px solid var(--line);
  border-radius:16px;
  padding:1rem 1.05rem;
}
.meta{
  display:block;
  font-size:.9rem;
  color:var(--muted);
  margin-bottom:.2rem;
}
.value{
  font-weight:700;
}

.notice{
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  padding:.8rem 1rem;
  border-radius:999px;
  background:#eef6ee;
  color:#226138;
  border:1px solid #cfe2cf;
  font-weight:700;
}
.divider{
  height:1px;
  background:var(--line);
  margin:1.2rem 0;
}

.footer{
  padding:0 0 2.5rem;
}
.footer-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:1.2rem 1.4rem;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.small{font-size:.94rem;color:var(--muted)}

@media (max-width: 860px){
  .hero-grid,.grid-2{grid-template-columns:1fr}
  .hero-side{border-left:none;border-top:1px solid var(--line)}
  .hero-main,.hero-side{padding:2rem}
  .hero{padding-top:3rem}
}
