:root{
  --bg: #fbf8f3;
  --bg2:#ffffff;
  --ink:#1f2430;
  --muted:#5b6475;
  --card:#f2e9df;
  --border: rgba(31,36,48,.10);
  --shadow: 0 10px 30px rgba(31,36,48,.08);
  --radius: 18px;
  --radius2: 28px;
  --accent:#2b6f6a;
  --accent2:#1f5d59;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}

.container{
  width:min(1040px, 92vw);
  margin:0 auto;
}

.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background: var(--bg2);
}

.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to bottom, rgba(251,248,243,.70), rgba(251,248,243,.94) 55%, rgba(251,248,243,1)),
    url("banner.png");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
}

.hero__content{
  position:relative;
  padding: 72px 0 54px;
}

.pill{
  display:inline-block;
  padding: 8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  color: var(--muted);
  font-weight:600;
  letter-spacing:.2px;
  margin:0 0 12px;
}

h1,h2,h3{
  font-family: "Playfair Display", Georgia, serif;
  line-height:1.1;
  margin: 0 0 12px;
}

h1{font-size: clamp(38px, 5vw, 56px);}
h2{font-size: clamp(26px, 3vw, 34px);}
h3{font-size: 22px;}

.subtitle{
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 22px;
}

.section{
  padding: 64px 0;
}

.section--alt{
  background: var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  padding: 26px 26px;
  box-shadow: var(--shadow);
}

.card--compact{padding:22px 22px;}

.lead{
  font-weight:600;
  margin-top:0;
  color: var(--ink);
}

.bullets{
  margin: 14px 0 14px 18px;
  padding:0;
}

.bullets li{
  margin: 8px 0;
  color: var(--ink);
}

.bullets--two{
  columns: 2;
  column-gap: 28px;
}

.emph{
  margin: 16px 0 0;
  font-weight:700;
}

.callout{
  margin-top:16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
}

.two-col{
  display:grid;
  gap: 26px;
  grid-template-columns: 1.1fr .9fr;
  align-items:start;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
  margin: 10px 0 14px;
}

.cta-row--bottom{margin-top: 20px;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .05s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}

.btn:active{transform: translateY(1px);}

.btn--primary{
  background: var(--accent);
  border-color: rgba(0,0,0,0);
  color: #fff;
}

.btn--primary:hover{background: var(--accent2);}

.btn--ghost{
  background: rgba(255,255,255,.65);
  color: var(--ink);
}

.btn--ghost:hover{background: rgba(255,255,255,.9);}

.fineprint{
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.tiny{
  font-size: 12.5px;
  color: var(--muted);
  margin: 10px 0 0;
}

.footer{
  padding: 28px 0;
  border-top:1px solid var(--border);
  background: var(--bg2);
}

@media (max-width: 860px){
  .two-col{grid-template-columns: 1fr;}
  .bullets--two{columns:1;}
  .hero{min-height: 66vh;}
}

.cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #f7f3ef;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 25px;
  color: #555;
}

