:root {
  --night: #02101c;
  --night-2: #052238;
  --navy: #053f67;
  --blue: #6895d3;
  --gold: #c8b483;
  --gold-deep: #a2926b;
  --ivory: #f7f5ef;
  --mist: #b8c5d1;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Montserrat", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--mist);
  font-family: var(--body);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
}

.ref-banner {
  background: linear-gradient(90deg, var(--navy), var(--night-2));
  border-bottom: 1px solid var(--gold-deep);
  color: var(--ivory);
  padding: 12px 20px;
  text-align: center;
  font-size: 13.5px;
}
.ref-banner a { color: var(--gold); font-weight: 500; text-decoration: none; }

.hero {
  max-width: 860px; margin: 0 auto;
  padding: clamp(70px, 14vh, 140px) 24px 70px;
  text-align: center;
}
.eyebrow {
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 5px; font-size: 11px; font-weight: 500;
  margin-bottom: 22px;
}
h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(40px, 7vw, 64px); line-height: 1.08;
  color: var(--ivory); margin-bottom: 24px;
}
.lede { max-width: 560px; margin: 0 auto 36px; font-size: 16.5px; }

.cta {
  display: inline-block;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-deep); border-radius: 2px;
  padding: 14px 34px; cursor: pointer;
  font-family: var(--body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; text-decoration: none;
  transition: background .25s, color .25s;
}
.cta:hover { background: var(--gold); color: var(--night); }

main { max-width: 980px; margin: 0 auto; padding: 0 24px; }
section { padding: 56px 0; }
h2 {
  font-family: var(--display); font-weight: 600; font-size: 30px; color: var(--ivory);
  margin-bottom: 28px; text-align: center;
}
h2::after {
  content: ""; display: block; width: 56px; height: 1px;
  background: var(--gold-deep); margin: 16px auto 0;
}

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: rgba(247, 245, 239, .03);
  border: 1px solid rgba(162, 146, 107, .25);
  border-top: 2px solid var(--gold-deep);
  padding: 28px 26px;
}
.card h3, .proof-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  color: var(--ivory); margin-bottom: 10px;
}
.card p { font-size: 14px; }

.proof-card {
  border: 1px solid rgba(104, 149, 211, .35);
  background: rgba(104, 149, 211, .06);
  padding: 30px 28px; max-width: 640px; margin: 0 auto;
}
.proof-tag {
  display: inline-block; color: var(--blue); font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px;
}
.proof-tag::before { content: "● "; animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { opacity: .3; } }
@media (prefers-reduced-motion: reduce) { .proof-tag::before { animation: none; } }
.proof-card a { color: var(--gold); text-decoration: none; font-weight: 500; font-size: 14px; }
.proof-note { text-align: center; max-width: 560px; margin: 26px auto 0; font-size: 13.5px; font-style: italic; color: #8fa0af; }

.contact { max-width: 560px; margin: 0 auto; }
.contact-lede { text-align: center; margin-bottom: 30px; }
form label { display: block; margin-bottom: 18px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }
.opt { color: #708090; text-transform: none; letter-spacing: 0; }
input, textarea {
  display: block; width: 100%; margin-top: 7px;
  background: rgba(247, 245, 239, .04); color: var(--ivory);
  border: 1px solid rgba(162, 146, 107, .35); border-radius: 2px;
  padding: 12px 14px; font-family: var(--body); font-size: 15px;
}
input:focus, textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
.hp { position: absolute; left: -9999px; height: 1px; width: 1px; opacity: 0; }
form .cta { width: 100%; margin-top: 6px; }
#formMsg { text-align: center; margin-top: 14px; font-size: 14px; min-height: 22px; }
#formMsg.ok { color: #7fc98f; }
#formMsg.err { color: #d96b4f; }

footer { text-align: center; padding: 50px 20px 40px; border-top: 1px solid rgba(162, 146, 107, .25); margin-top: 40px; font-size: 12.5px; color: #708090; }
footer .eyebrow { margin-bottom: 8px; }
footer a { color: var(--gold-deep); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
