:root {
  --navy: #1F3E52;
  --navy-soft: #44586A;
  --gold: #F0C010;
  --red: #C0202F;
  --red-dark: #A81B29;
  --cream: #F7F5F0;
  --ks-green: #9DBE3C;
  --line: #E5E0D5;
  --line-chip: #D8D2C6;
  --muted: #8A8171;
  --field-border: #3A566B;
  --form-sub: #B9C7D2;
  --form-label: #DCE4EA;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  font-family: 'Public Sans', sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

.page { min-height: 100vh; display: flex; flex-direction: column; }

/* Top accent stripe */
.stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--gold) 33% 66%, var(--navy) 66% 100%);
}

.shell {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 56px 32px 48px;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
}

/* Left column */
.intro { flex: 1 1 460px; max-width: 620px; display: flex; flex-direction: column; gap: 28px; }
.intro-copy { display: flex; flex-direction: column; gap: 14px; }
.logo { width: 300px; max-width: 100%; height: auto; }

.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
}
.headline {
  font-family: 'Source Serif 4', serif;
  font-size: 42px; line-height: 1.15; font-weight: 700;
}
.lede { font-size: 17px; line-height: 1.6; color: var(--navy-soft); max-width: 46ch; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 16px; border: 1.5px solid var(--line-chip); border-radius: 999px;
  font-size: 14px; font-weight: 600; background: #fff; color: var(--navy);
}

.details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px;
  padding: 24px; background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
}
.detail { display: flex; flex-direction: column; gap: 4px; }
.detail-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.detail a, .detail-value { font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--navy); }
.detail a { text-decoration: none; }
.detail a:hover { text-decoration: underline; }
.detail a.email { overflow-wrap: anywhere; }

/* Right column: form card */
.card {
  flex: 1 1 380px; max-width: 460px; background: var(--navy);
  border-radius: 16px; padding: 36px; color: #fff;
  box-shadow: 0 20px 50px rgba(31,62,82,0.25);
  scroll-margin-top: 16px;
}

/* Mobile floating "Contact Us" button (hidden on desktop) */
.contact-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  padding: 13px 22px;
  background: var(--red);
  color: #fff;
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(31,62,82,0.35);
}
.contact-fab:active { background: var(--red-dark); }
.form-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-title { font-family: 'Source Serif 4', serif; font-size: 26px; font-weight: 700; }
.form-sub { font-size: 14px; color: var(--form-sub); line-height: 1.5; }

form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 13px; font-weight: 600; color: var(--form-label); }
input, textarea {
  padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--field-border);
  background: #fff; font-size: 15px; font-family: 'Public Sans', sans-serif;
  color: var(--navy); width: 100%;
}
textarea { resize: vertical; min-height: 104px; }
input:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold); }

.btn {
  margin-top: 4px; padding: 14px 20px; border-radius: 8px; border: none;
  background: var(--red); color: #fff; font-size: 16px; font-weight: 700;
  font-family: 'Public Sans', sans-serif; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--red-dark); }
.btn:disabled { opacity: 0.7; cursor: default; }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Thank-you */
.thanks { display: none; flex-direction: column; gap: 14px; align-items: center; text-align: center; padding: 32px 8px; animation: fadeUp 0.4s ease; }
.thanks.show { display: flex; }
.check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700;
}
.thanks h2 { font-family: 'Source Serif 4', serif; font-size: 26px; font-weight: 700; }
.thanks p { font-size: 15px; color: var(--form-sub); line-height: 1.6; max-width: 32ch; }
.link-btn {
  margin-top: 8px; padding: 10px 18px; border-radius: 8px; border: 1.5px solid var(--field-border);
  background: transparent; color: var(--form-label); font-size: 14px; font-weight: 600;
  font-family: 'Public Sans', sans-serif; cursor: pointer;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer {
  background: var(--navy); color: var(--form-sub);
  padding: 18px 32px; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center; font-size: 13px;
}
.footer a { color: #fff; text-decoration: none; font-weight: 600; }
.footer a:hover { text-decoration: underline; }
.footer a.credit, .footer a.credit:hover { color: #fff; text-decoration: none; }
.footer a.credit .ks-name { transition: color 0.15s ease; }
.footer a.credit:hover .ks-name { color: var(--ks-green); }
.footer .flag { display: flex; gap: 6px; align-items: center; }
.footer .sq { width: 10px; height: 10px; display: inline-block; }
.footer .sq.red { background: var(--red); }
.footer .sq.gold { background: var(--gold); }

@media (max-width: 640px) {
  .shell { padding: 40px 20px 36px; gap: 40px; }
  .logo { width: 240px; align-self: center; }
  .eyebrow { text-align: center; }
  .headline { font-size: 34px; }
  .details { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 28px; }
  .footer { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
  .contact-fab { display: inline-block; }
}
