:root{
  --text: #0d0f12;
  --muted: #3b4250;
  --bg: #ffffff;
  --card: rgba(255,255,255,0.82);
  --border: rgba(0,0,0,0.08);
  --shadow: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand{
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav a{
  text-decoration: none;
  color: var(--text);
  margin-left: 18px;
  font-weight: 550;
  opacity: 0.9;
}

.nav a:hover{ opacity: 1; text-decoration: underline; }

.nav .cta{
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
}

.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 78px; /* topbar spacing */
  background: url("assets/hero.jpg") center/cover no-repeat;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  /* light overlay so black text stays readable */
  background: rgba(255,255,255,0.55);
}

.hero__content{
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 34px);
}

.kicker{
  margin: 0 0 10px 0;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
}

h1{
  margin: 0 0 10px 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
}

.lead{
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero__bullets{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero__bullets span{
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 13px;
}

.section{
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section--tight{ padding: 56px 0; }

.wrap{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

h2{
  margin: 0 0 14px 0;
  font-size: 28px;
}

p{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 76ch;
}

.note{
  border-left: 4px solid rgba(0,0,0,0.14);
  padding-left: 14px;
}

.contact{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,0.7);
}

.label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 650;
}

.footer{
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted);
}

@media (min-width: 760px){
  .contact{ grid-template-columns: 1.2fr 0.8fr 1fr; }
}
