:root{
  --text:#082750;
  --muted:#555;
  --border:#e8e8e8;
  --bg:#fff;
  --card:#fafafa;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

.hero{
  padding: 56px 20px 24px;
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}
.hero-inner{ max-width:1100px; margin:0 auto; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items:center;
}

h1{
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.05;
  margin:0 0 14px;
}
.subheadline{
  font-size: 1.05rem;
  margin: 0 0 14px;
}
.supporting{
  color:var(--muted);
  margin: 0 0 22px;
}

.cta-row{ display:flex; flex-wrap:wrap; gap:12px; }

.btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration:none;
  border:1px solid var(--border);
  color:var(--text);
  font-weight:600;
}
.btn.primary{
  background:#082750;
  color:#fff;
  border-color:#082750;
}
.btn.ghost{
  background:transparent;
}

.hero-photo img{
  width:100%;
  max-width:420px;
  border-radius: 18px;
  display:block;
  border: 1px solid var(--border);
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding: 12px 20px 80px;
}

.section{
  max-width: 820px;
  margin: 64px 0;
}
.section h2{
  margin:0 0 12px;
  font-size: 1.4rem;
}
.lead{ margin: 0 0 10px; }
.label{ margin: 0 0 8px; font-weight:700; }
.muted{ color:var(--muted); }
.emphasis{ font-weight:700; margin-top:16px; }

ul{ padding-left: 18px; }
li{ margin: 8px 0; }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

form{ margin-top: 14px; }
label{ display:block; margin: 14px 0 10px; font-weight:600; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  margin-top: 8px;
  background:#fff;
}

.consent{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:500;
}
.consent input{ width:auto; margin:0; }

.footer{
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* NEW: logo placed as a brand block below "The philosophy" */
.brand-block{
  margin-top: 20px;
  margin-bottom: 20px;
}

.brand-mark{
  height: 170px;
  width: auto;
  max-width: 100%;
  display: block;
  opacity: 0.98;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-photo img{ max-width: 900px; }
  .brand-mark{ height: 130px; }
}
strong {
  color: #082750 !important;
}