:root {
  --navy: #071428;
  --navy-2: #0c1c36;
  --ink: #e8eef7;
  --muted: #9eb0c8;
  --gold: #c9a46a;
  --teal: #4ec4c0;
  --line: rgba(201, 164, 106, 0.28);
  --card: #10203d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--navy);
  color: var(--ink);
  line-height: 1.65;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 6vw;
  background: rgba(7, 20, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand-mark {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 4px;
}

nav { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.9rem; }
nav a:hover { color: var(--ink); }

.nav-cta {
  color: var(--navy) !important;
  background: var(--gold);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal); color: var(--navy) !important; }

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 3.2rem 6vw 4rem;
  background:
    radial-gradient(ellipse at top left, rgba(78, 196, 192, 0.08), transparent 50%),
    var(--navy);
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero-copy { text-align: left; }

.hero-copy h1 { margin: 0 0 1rem 0; max-width: 16ch; }

.kicker {
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 18ch; margin: 0 auto 1rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.motto {
  margin-top: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-actions { display: flex; gap: 0.8rem; margin-top: 1.8rem; flex-wrap: wrap; justify-content: flex-start; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.btn.primary { background: var(--gold); color: var(--navy); }
.btn.primary:hover { background: #e0bf86; color: var(--navy); }
.btn.ghost { border-color: var(--line); color: var(--ink); }
.btn.ghost:hover { border-color: var(--teal); color: var(--teal); }

.section { padding: 5rem 6vw; }
.section.alt { background: var(--navy-2); }
.section-head { max-width: 40rem; margin-bottom: 2.2rem; }

.grid { display: grid; gap: 1.1rem; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card, .service, .panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.3rem;
}

.service p, .card p { color: var(--muted); }
.service ul, .ticks { margin: 0.85rem 0 0 1.1rem; color: var(--muted); }
.num { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; }

.split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.split p { color: var(--muted); }

.wide { max-width: 46rem; color: var(--muted); margin-bottom: 1.4rem; }

.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pills span {
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 44rem;
}
.form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: var(--muted); }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  background: var(--navy);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font: inherit;
}
.form button { justify-self: start; cursor: pointer; }
.note { grid-column: 1 / -1; color: var(--gold); font-size: 0.88rem; }

.fine { color: var(--muted); font-size: 0.85rem; margin-top: 1rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 6vw 2.8rem;
  text-align: center;
  color: var(--muted);
}
.foot-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: var(--navy);
  border-radius: 12px;
  margin-bottom: 0.9rem;
  padding: 6px;
  border: 1px solid var(--line);
}

@media (max-width: 800px) {
  .split, .form, .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { max-width: 220px; }
  .hero-copy { text-align: left; }
  .nav { flex-direction: column; align-items: flex-start; }
}
