:root {
  --navy: #1b3a4b;
  --navy-deep: #122832;
  --forest: #2d5a3d;
  --gold: #b8954a;
  --gold-soft: #d4b36a;
  --cream: #f4f1ea;
  --cream-dark: #e7e1d4;
  --ink: #1c2428;
  --muted: #5c6a70;
  --white: #ffffff;
  --line: rgba(27, 58, 75, 0.12);
  --shadow: 0 18px 50px rgba(18, 40, 50, 0.14);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 40, 50, 0.92);
  backdrop-filter: blur(16px);
  color: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mark {
  width: 36px;
  height: 36px;
  flex: none;
}

.brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-name span {
  display: block;
  margin-top: 1px;
  color: var(--gold-soft);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: rgba(244, 241, 234, 0.86);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 241, 234, 0.35);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  background: var(--navy-deep) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 40, 50, 0.18) 0%, rgba(18, 40, 50, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 40, 50, 0.55) 0%, rgba(18, 40, 50, 0.08) 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  max-width: 740px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.lede {
  max-width: 38rem;
  margin: 0 0 28px;
  color: rgba(244, 241, 234, 0.88);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 42px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.muted {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 22px 24px 26px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.why {
  background: var(--navy);
  color: var(--cream);
}

.why h2,
.why .eyebrow {
  color: var(--gold-soft);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  padding: 22px 20px;
  border: 1px solid rgba(184, 149, 74, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.feature strong {
  display: block;
  margin-bottom: 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.feature p {
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.facts {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.facts span {
  color: var(--muted);
}

label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #d4cdc0;
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8e8e6;
  color: #7a2e28;
  font-size: 0.95rem;
}

.thanks {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.thanks h1 {
  margin: 0 0 12px;
  font-size: 3rem;
}

.site-footer {
  padding: 28px 0 36px;
  background: var(--navy-deep);
  color: rgba(244, 241, 234, 0.72);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  cursor: pointer;
}

@media (max-width: 860px) {
  .cards,
  .features,
  .split,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 16px 20px 22px;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 78vh;
  }

  .card img {
    height: 210px;
  }
}
