:root{
  /* Planverie palette and type */
  --primary:#796531;   /* headings and key labels */
  --secondary:#e4bb54; /* buttons and highlights */
  --text:#5a5148;      /* body text */
  --accent:#7d6d45;    /* borders and subtle accents */

  /* legacy tokens used across the template */
  --ink:var(--primary);
  --gold:var(--secondary);
  --stone:#ffffff;
  --mist:#ffffff;
  --line:rgba(125,109,69,0.22);

  --shadow:0 14px 38px rgba(0,0,0,0.10);
  --radius:18px;
  --max:1120px;
}


*{box-sizing:border-box;}

body{
  margin:0;
  background:
    radial-gradient(circle at 12% 0%, rgba(228,187,84,0.16), rgba(255,255,255,0.00) 55%),
    radial-gradient(circle at 100% 12%, rgba(125,109,69,0.12), rgba(255,255,255,0.00) 52%),
    var(--stone);
  color:var(--text);
  font-family:"DM Sans",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.65;
}

img{max-width:100%; height:auto; display:block;}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

.site_header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}

.header_inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--ink);
}

.brand_logo{
  width:70px;
  height:70px;
  border-radius:16px;
  box-shadow:0 10px 22px rgba(0,0,0,0.10);
}

.brand_wordmark{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:600;
  letter-spacing:0.4px;
  font-size:20px;
  color: var(--primary);
  white-space: nowrap;
}

.site_nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav_link{
  text-decoration:none;
  color:var(--ink);
  font-weight:500;
  padding:10px 10px;
  border-radius:12px;
}

.nav_link:hover{color:var(--gold);}

.nav_active{
  background:rgba(228,187,84,0.14);
  color:var(--gold);
}

.nav_toggle{
  display:none;
  background:transparent;
  border:0;
  padding:10px;
  border-radius:12px;
}

.nav_toggle:focus{outline:2px solid rgba(228,187,84,0.70); outline-offset:2px;}

.nav_toggle_line{
  width:22px;
  height:2px;
  background:var(--ink);
  display:block;
  margin:5px 0;
  border-radius:99px;
}

main{padding:34px 0 60px;}

.hero{
  background:var(--mist);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:54px 42px;
  position:relative;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:420px;
  height:420px;
  background:radial-gradient(circle at 30% 30%, rgba(228,187,84,0.22), rgba(228,187,84,0.00) 60%);
  transform:rotate(10deg);
}

.hero_grid{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:34px;
  align-items:center;
  position:relative;
}

.hero h1{
  color:var(--primary);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
  letter-spacing:0.2px;
  line-height:1.08;
  margin:0 0 14px 0;
  font-size:46px;
}

.hero p{
  margin:0 0 22px 0;
  font-size:18px;
  color:rgba(90,81,72,0.88);
}

.hero_badge_row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 26px;
}

.badge{
  border:1px solid var(--line);
  background:rgba(228,187,84,0.08);
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  font-weight:600;
}

.btn_row{display:flex; flex-wrap:wrap; gap:12px;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  border:1px solid transparent;
}

.btn_primary{
  background:var(--secondary);
  color:var(--primary);
}

.btn_primary:hover{
  background:var(--primary);
  color:#fff;
}

.btn_secondary{
  background:transparent;
  border-color:rgba(125,109,69,0.34);
  color:var(--primary);
}

.btn_secondary:hover{
  border-color:rgba(228,187,84,0.80);
  background:rgba(228,187,84,0.10);
  color:var(--primary);
}

.hero_card{
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(228,187,84,0.10);
  padding:22px;
}

.hero_card_title{
  color:var(--primary);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:20px;
  font-weight:600;
  margin:0 0 10px 0;
}

.hero_card_text{margin:0; font-size:14px; color:rgba(90,81,72,0.82);}

.section{
  margin-top:34px;
  background:var(--mist);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:44px 42px;
  position:relative;
  overflow:hidden;
}

.section:before{
  content:"";
  position:absolute;
  inset:-120px auto auto -120px;
  width:320px;
  height:320px;
  background:radial-gradient(circle at 60% 40%, rgba(228,187,84,0.16), rgba(255,255,255,0.00) 60%);
  transform:rotate(-8deg);
  pointer-events:none;
  z-index:0;
}

.section > *{
  position:relative;
  z-index:1;
}

.section_head{
  margin-bottom:24px;
  max-width:820px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:12px;
  font-weight:700;
  color:rgba(228,187,84,0.95);
  margin-bottom:10px;
}

h2{
  color:var(--primary);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
  letter-spacing:0.2px;
  margin:0 0 12px 0;
  font-size:34px;
  line-height:1.16;
}

h3{
  color:var(--primary);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
  margin:0 0 10px 0;
  font-size:22px;
  line-height:1.22;
}

.lead{
  margin:0;
  font-size:17px;
  color:rgba(90,81,72,0.88);
}

.grid_3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.grid_2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  background:rgba(228,187,84,0.08);
}

.card p{margin:0; color:rgba(90,81,72,0.84);}

.callout{
  border:1px solid rgba(125,109,69,0.32);
  background:rgba(228,187,84,0.14);
  border-radius:22px;
  padding:20px;
}

.callout strong{color:var(--primary);}

.list{
  margin:12px 0 0 0;
  padding-left:18px;
}

.list li{margin:8px 0;}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.kpi_row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}

.kpi{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,0.6);
  padding:16px;
}

.kpi_num{
  color:var(--primary);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
  font-size:22px;
}

.kpi_label{
  font-size:13px;
  font-weight:600;
  color:rgba(90,81,72,0.78);
  margin-top:6px;
}

.form{
  margin-top:8px;
  display:grid;
  gap:12px;
  max-width:640px;
}

.field label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}

.field input,
.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}

.field textarea{min-height:140px; resize:vertical;}

.site_footer{
  padding:40px 0 26px;
  background:rgba(90,81,72,0.98);
  color:#fff;
  margin-top:40px;
}

.footer_grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.footer_title{
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:10px;
  color:rgba(255,255,255,0.82);
}

.footer_text{
  margin:8px 0;
  color:rgba(255,255,255,0.82);
}

.site_footer a{color:#fff; text-decoration:none;}

.site_footer a:hover{color:rgba(228,187,84,0.95);}

.footer_bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.14);
}

.footer_small{font-size:13px; color:rgba(255,255,255,0.68);}

@media (max-width: 920px){
  .hero_grid{grid-template-columns:1fr; gap:18px;}
  .grid_3{grid-template-columns:1fr; }
  .grid_2{grid-template-columns:1fr; }
  .split{grid-template-columns:1fr;}
  .kpi_row{grid-template-columns:1fr;}
  .footer_grid{grid-template-columns:1fr;}
  .hero{padding:42px 26px;}
  .section{padding:36px 26px;}
  .hero h1{font-size:38px;}
}

@media (max-width: 760px){
  .site_nav{
    position:absolute;
    right:22px;
    top:70px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    background:rgba(255,255,255,0.98);
    border:1px solid var(--line);
    border-radius:18px;
    padding:12px;
    min-width:220px;
    box-shadow:var(--shadow);
  }
  .site_nav.open{display:flex;}
  .nav_toggle{display:block;}
}