:root{
  --bg: #f6f4ef;
  --bg2:#ffffff;
  --text:#222222;
  --muted:#5a5a5a;
  --border:#e3e0d9;
  --green:#1f5f3f;
  --green2:#174c32;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
  --radius: 14px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg2);
  line-height:1.5;
}

a{ color: inherit; }
.container{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:fixed; left:16px; top:16px;
  width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--border);
  border-radius:10px; z-index:9999;
}

/* HERO */
.hero{
  position:relative;
  min-height: 64vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.18));
}
.hero__content{ position:relative; z-index:2; }
.hero__text{
  max-width: 660px;
  padding: 34px 0;
}
h1{
  font-family: Fraunces, serif;
  font-weight:700;
  letter-spacing:.2px;
  margin:0 0 10px;
  color:#fff;
  font-size: clamp(34px, 4vw, 54px);
}
.lead{
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.6vw, 18px);
  margin: 0 0 18px;
}
.hero__cta{ display:flex; flex-direction:column; gap:8px; }

/* SECTIONS */
.section{
  padding: 54px 0;
}
.section--alt{ background: var(--bg); }
.section--form{ background: var(--bg2); }
.section__title{
  font-family: Fraunces, serif;
  font-weight:700;
  margin: 0 0 18px;
  font-size: 28px;
}

.micro{ font-size: 13px; color: rgba(255,255,255,.82); margin:0; }
.subtle{ color: var(--muted); margin:0; }
.center{ text-align:center; }

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight:600;
  cursor:pointer;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--green);
  color:#fff;
}
.btn--primary:hover{ background: var(--green2); }

.btn--ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover{ border-color: #cfcabf; }

.btn--full{ width:100%; }

/* DETAIL CARDS */
.detail-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.card__icon{
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}
.card__label{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.card__value{
  font-weight:600;
  font-size: 14px;
}

/* WHY GRID */
.why-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.why{
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.why__title{
  font-weight:700;
  margin-bottom: 6px;
}
.note{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* STEPS */
.steps{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
}
.steps li{ color: var(--text); }

/* FORM */
.form-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap:wrap;
}
.form{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.fieldset{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin: 0 0 14px;
}
legend{
  padding: 0 8px;
  font-weight:700;
  color: var(--text);
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.grid--3{
  grid-template-columns: 2fr 1fr 1.2fr;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.field span{
  font-size: 13px;
  color: var(--muted);
  font-weight:600;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  outline: none;
  background:#fff;
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(31,95,63,.75);
  box-shadow: 0 0 0 4px rgba(31,95,63,.12);
}

.help{
  font-size: 12px;
  color: var(--muted);
}

.radio-row{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.radio{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background:#fff;
  cursor:pointer;
  user-select:none;
}
.radio input{ width:auto; }

.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.check input{ margin-top: 3px; }

.form .micro{
  color: var(--muted);
  margin-top: 10px;
}

.contact-strip{
  margin-top: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.contact-strip__title{ font-weight:800; }
.contact-strip__text{ color: var(--muted); font-size: 14px; }

/* FOOTER */
.footer{
  padding: 34px 0;
  background: #0f1a14;
  color: rgba(255,255,255,.88);
}
.footer__inner{
  display:grid;
  gap: 10px;
}
.footer__brand{
  font-family: Fraunces, serif;
  font-size: 20px;
  color:#fff;
}
.footer__meta{
  display:grid;
  gap: 6px;
  font-size: 14px;
}
.footer a{ color:#fff; text-decoration:none; border-bottom: 1px solid rgba(255,255,255,.25); }
.footer a:hover{ border-bottom-color: rgba(255,255,255,.6); }
.footer__copyright{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

/* MOBILE TIGHTENING */
@media (max-width: 860px){
  .detail-cards{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .container{ width: calc(100% - 28px); }
  .hero{
    min-height: 68vh;
  }
  .hero__overlay{
    background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25));
  }
  .hero__text{
    text-align:center;
    margin: 0 auto;
  }
  .detail-cards{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .section{ padding: 44px 0; }
}