*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background-color: #0b1d2a;
}

body {
  background: #0b1d2a url("/creek-bg.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.35));
  z-index: 0;
  pointer-events: none;
}

.panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  padding: 36px 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

@supports not (backdrop-filter: blur(1px)) {
  .panel { background: rgba(255, 255, 255, 0.88); }
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.topbar .wordmark { height: 32px; width: auto; }

.topbar nav { font-size: 13px; }
.topbar nav a {
  color: #555;
  text-decoration: none;
  margin-left: 18px;
}
.topbar nav a:hover { color: #1a1a1a; }

.hero {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 22px 0 28px;
}

.body-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
}

section { margin-bottom: 22px; }
section:last-child { margin-bottom: 0; }

.section-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin: 0 0 8px 0;
}

p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #2a2a2a;
  margin-bottom: 10px;
}
p:last-child { margin-bottom: 0; }

a { color: #0a66c2; text-decoration: none; }
a:hover { text-decoration: underline; }

address.contact { font-style: normal; }

.footer {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 12px;
  color: #777;
}

@media (max-width: 600px) {
  .panel { padding: 24px; }
  .topbar nav { font-size: 12px; }
  .topbar nav a { margin-left: 10px; }
  .hero { font-size: 24px; margin: 18px 0 22px; }
  .body-grid { grid-template-columns: 1fr; gap: 22px; }
}
