* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html, body {
  color: #1a2373;
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(
    to right bottom,
    #f7efe7, #f8f0e8, #f8f0ea, #f9f1eb,
    #f9f2ec, #f9f2ec, #f9f2ec, #f9f2ec,
    #f9f1eb, #f9f1e9, #f9f0e8, #f9efe7
  ) fixed no-repeat;
  background-attachment: fixed;
}

:root {
  --text:  #1a2373;
  --muted: #3f4a9a;
  --line:  #e9e3db;
  --brand: #1a2373;
  --accent:#2e7d32;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.65); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { text-decoration: none; color: var(--text); font-weight: 700; }
.brand-name { letter-spacing: 0.2px; }
.nav a { color: var(--text); text-decoration: none; margin-left: 18px; }
.nav a:hover { opacity: 0.8; }

.splash {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6vh 4vw;
}
.splash-logo {
  display: block;
  width: 100%;
  max-width: clamp(260px, 40vw, 520px);
  height: auto;
}

.section { padding: 56px 0; }
.contact-wrap {
  display: grid; gap: 24px; grid-template-columns: 1.2fr 1fr; align-items: start;
}
@media (max-width: 980px){
  .contact-wrap{ grid-template-columns: 1fr; }
}
.contact-form {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.field{ margin-bottom: 14px; }
.field label{ display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea{
  width: 100%; padding: 12px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: #ffffff; color: var(--text);
}
.field.checkbox{ display: flex; align-items: center; gap: 10px; }
.field.checkbox input{ width: 18px; height: 18px; }

.btn{
  display: inline-block; width: 100%;
  padding: 12px 14px; border-radius: 12px; border: 0;
  background: linear-gradient(180deg, #66bb6a, #43a047);
  color: #fff; font-weight: 800; cursor: pointer;
}
.btn:hover{ filter: brightness(1.05); }

.thanks{ margin-top: 10px; color: #2e7d32; font-weight: 600; }

.site-footer{ border-top: 1px solid var(--line); padding: 22px 0; margin-top: 32px; }
.footer-inner{ display: flex; align-items: center; justify-content: space-between; }
.footer-cta{
  text-decoration: none; color: var(--text); border: 1px solid var(--line);
  padding: 8px 12px; border-radius: 10px; background: rgba(255,255,255,0.8);
}
