:root {
  --navy: #112434;
  --navy-dark: #0b1a26;
  --gold: #ba8849;
  --gold-light: #d6ac74;
  --bg: #ffffff;
  --text: #112434;
  --border: #e2e6e9;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

/* ---- Ticker bar ---- */
.ticker-bar {
  background: var(--navy);
  color: var(--gold-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  padding: 0 2.5rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---- Hero ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero-logo {
  width: 100%;
  max-width: 560px;
  height: auto;
}

.scroll-cue {
  margin-top: 3rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.scroll-cue:hover { opacity: 1; }

.scroll-cue svg { animation: bounce 1.8s ease-in-out infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Contact section ---- */
.contact-section {
  background: #f7f8f9;
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.contact-card > p {
  margin: 0 0 2rem;
  color: #4a5a68;
}

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

#contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

#contact-form input,
#contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.cf-turnstile {
  margin-top: 1.2rem;
}

#submit-btn {
  margin-top: 1.4rem;
  padding: 0.8rem 1.2rem;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

#submit-btn:hover { background: var(--navy-dark); }
#submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

#form-status {
  min-height: 1.2em;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

#form-status.success { color: #1e7d3a; }
#form-status.error { color: #b3261e; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #c7d1d9;
  padding: 3.5rem 1.5rem 1.5rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

.site-footer p { margin: 0.3rem 0; }

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  text-align: left;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-about p {
  color: #c7d1d9;
  line-height: 1.5;
}

.footer-col h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col address {
  font-style: normal;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
