:root{
  --ink:#15212b;
  --muted:#5f6b72;
  --paper:#fffdf9;
  --warm:#f3efe8;
  --line:#dcd7cf;
  --accent:#19708b;
  --accent-dark:#115468;
  --shadow:0 18px 50px rgba(21,33,43,.09);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:linear-gradient(180deg,#f8f6f1 0%,#eef3f4 100%);
  color:var(--ink);
}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:72px;
  padding:14px clamp(18px,5vw,72px);
  background:rgba(255,253,249,.94);
  border-bottom:1px solid rgba(220,215,207,.8);
  backdrop-filter:blur(12px);
}
.brand{
  font-size:1.05rem;
  font-weight:800;
  letter-spacing:.06em;
  text-decoration:none;
}
.site-nav{display:flex;gap:24px;align-items:center}
.site-nav a{
  color:#34434c;
  font-size:.93rem;
  font-weight:650;
  text-decoration:none;
}
.site-nav a:hover,.site-nav a:focus-visible{color:var(--accent)}
.page-shell{
  width:min(940px,calc(100% - 32px));
  margin:0 auto;
  padding:64px 0 72px;
}
.hero{
  position:relative;
  overflow:hidden;
  margin-bottom:28px;
  padding:clamp(32px,7vw,68px);
  border:1px solid rgba(220,215,207,.9);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 16%,rgba(25,112,139,.20),transparent 34%),
    linear-gradient(135deg,#fffdf9 0%,#f3efe8 100%);
  box-shadow:var(--shadow);
}
.hero:after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-95px;
  width:260px;
  height:260px;
  border:1px solid rgba(25,112,139,.2);
  border-radius:50%;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--accent-dark);
  font-size:.77rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero h1{
  max-width:720px;
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.55rem,7vw,5rem);
  font-weight:500;
  letter-spacing:-.035em;
  line-height:.98;
}
.hero-copy{
  max-width:690px;
  margin:0;
  color:#44535c;
  font-size:clamp(1rem,2vw,1.15rem);
  line-height:1.7;
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.trust-row span{
  padding:8px 12px;
  border:1px solid rgba(25,112,139,.24);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#29404a;
  font-size:.82rem;
  font-weight:700;
}
.card,form section{
  margin:0 0 18px;
  padding:clamp(22px,4vw,34px);
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--paper);
  box-shadow:0 8px 26px rgba(21,33,43,.055);
}
.faq-list{display:grid;gap:12px}
.faq-list details{
  border:1px solid #e7e2da;
  border-radius:16px;
  background:#fff;
  padding:16px 18px;
}
.faq-list summary{
  cursor:pointer;
  font-weight:750;
}
.faq-list p{
  margin:12px 0 0;
  color:#44535c;
}
h2{
  margin:0 0 16px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.35rem,3vw,1.75rem);
  font-weight:500;
}
label{display:block;margin:16px 0;font-weight:650}
select,textarea,input[type="text"],input[type="email"]{
  width:100%;
  margin-top:8px;
  padding:13px 14px;
  border:1px solid #bfc8cc;
  border-radius:11px;
  background:#fff;
  color:inherit;
  font:inherit;
}
select:focus,textarea:focus,input:focus{
  outline:3px solid rgba(25,112,139,.18);
  border-color:var(--accent);
}
fieldset{
  margin:0;
  padding:22px 0 8px;
  border:0;
  border-top:1px solid #e7e2da;
}
legend{padding:18px 0 8px;font-weight:800}
.choice{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin:0;
  padding:10px 0;
  color:#2c3b44;
  font-weight:520;
}
.choice input{margin-top:3px;accent-color:var(--accent)}
.comment{color:var(--muted);font-weight:500}
.constraints{display:grid;grid-template-columns:1fr;gap:4px}
.context-resource{margin-top:20px;padding:18px;border-left:4px solid var(--ochre);background:var(--warm)}
.context-resource p{margin:6px 0 0;color:var(--muted);font-weight:500}
.context-resource a{color:var(--accent-dark);font-weight:750}
button{
  width:100%;
  padding:15px 20px;
  border:0;
  border-radius:12px;
  background:var(--ink);
  color:#fff;
  cursor:pointer;
  font:inherit;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .2s ease,background .2s ease,box-shadow .2s ease;
}
button:hover{
  transform:translateY(-1px);
  background:var(--accent-dark);
  box-shadow:0 10px 25px rgba(17,84,104,.2);
}
button:focus-visible{outline:3px solid rgba(25,112,139,.28);outline-offset:3px}
button:disabled{opacity:.62;cursor:wait;transform:none}
#form-error{
  min-height:1.2em;
  margin:0 0 14px;
  color:#9f2d24;
  font-weight:650;
}
[hidden]{display:none!important}
.site-footer{
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding:30px clamp(18px,5vw,72px);
  border-top:1px solid var(--line);
  background:#111b23;
  color:#eef2f3;
}
.footer-brand{margin:0 0 6px;font-weight:800;letter-spacing:.05em}
.site-footer p{margin:0;color:#b8c2c7;font-size:.9rem}
.footer-links{display:flex;flex-wrap:wrap;gap:18px;align-items:center}
.footer-links a{color:#eef2f3;font-size:.88rem;text-decoration:none}
.footer-links a:hover{text-decoration:underline}
@media(min-width:700px){
  .constraints{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .site-header{position:static;align-items:flex-start}
  .site-nav{gap:12px;flex-wrap:wrap;justify-content:flex-end}
  .site-nav a:not(.nav-cta){display:none}
  .page-shell{padding:24px 0 48px}
  .hero{border-radius:22px}
  .site-footer{flex-direction:column}
}
.site-header nav{display:flex;align-items:center;gap:24px}.site-header nav a{color:#34434c;font-size:.93rem;font-weight:650;text-decoration:none}.site-header nav a:hover,.site-header nav a:focus-visible{color:#19708b}@media(max-width:720px){.site-header nav a:not(:last-child){display:none}}

/* GoVoraus master brand system — ELEVATE */
:root{--ink:#1F2933;--muted:#53615c;--paper:#F5F3EE;--warm:#EEE9DF;--line:#D9D6CF;--accent:#0F3D36;--accent-dark:#092E29;--ochre:#D4A574;--sage:#A7B89F;--shadow:0 14px 36px rgba(15,61,54,.08)}
body{background:linear-gradient(180deg,#F5F3EE 0%,#EEF1EC 100%);font-family:Inter,system-ui,sans-serif}.site-header{background:rgba(245,243,238,.96);border-color:rgba(15,61,54,.14)}.brand{color:#0F3D36;font-family:Inter,system-ui,sans-serif}.site-nav a:hover,.site-nav a:focus-visible{color:#0F3D36}.hero{border-radius:0;background:linear-gradient(135deg,#F5F3EE 0%,#E8EEE6 100%);border-color:rgba(15,61,54,.16);box-shadow:none}.hero:after{width:0;height:0;border:0;border-left:160px solid transparent;border-bottom:210px solid rgba(167,184,159,.38);border-radius:0;right:-1px;bottom:-1px}.eyebrow{color:#0F3D36}.hero h1,h2{font-family:"Playfair Display",Georgia,serif}.trust-row span{border-radius:0;border-color:rgba(15,61,54,.28);background:rgba(245,243,238,.8)}.card,form section{border-radius:0;background:#F5F3EE;box-shadow:none}.faq-list details{border-radius:0;background:#F5F3EE}select,textarea,input[type="text"],input[type="email"]{border-radius:0;background:#fff}select:focus,textarea:focus,input:focus{outline-color:rgba(15,61,54,.2);border-color:#0F3D36}button{width:auto;border-radius:0;background:#0F3D36}button:hover{background:#092E29;box-shadow:none}.site-footer{background:#0F3D36;border-color:#0F3D36}