:root {
  --color-primary: #1b7895;
  --color-secondary: #004369;
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1 {
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--color-primary);
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 1.5rem;
}

.coming-soon-inner {
  max-width: 500px;
}

.coming-soon-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.5rem;
}

.coming-soon .tagline {
  font-size: 1.1rem;
  color: #d6e6ee;
  margin-bottom: 2rem;
}

.coming-soon .notice {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.coming-soon .contact-line a {
  color: var(--color-white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #145d73;
}

/* Contact form */
.contact-card {
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.4rem;
}

.contact-form label {
  font-weight: 600;
  margin-top: 0.6rem;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccd6db;
  border-radius: 4px;
  font: inherit;
}

.contact-form button {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.contact-form-status {
  min-height: 1.2em;
  font-weight: 600;
}

.contact-form-status.success {
  color: #1e7d34;
}

.contact-form-status.error {
  color: #b3261e;
}

/* Honeypot: off-canvas rather than display:none, since some bots skip
   fields hidden that way but still fill absolutely-positioned ones. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* Footer */
.site-footer {
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.85rem;
}

.footer-avatar {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 auto 0.75rem;
}
