:root {
  --navy: #0b1f33;
  --navy-deep: #071627;
  --ink: #1c2b3a;
  --slate: #51637a;
  --paper: #f7f5f0;
  --white: #ffffff;
  --brass: #c9a227;
  --brass-soft: #e6d9a8;
  --line: #e3ded2;
  --radius: 14px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

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

.brand svg { display: block; }

.wordmark {
  font-size: 1.15rem;
  color: var(--white);
  white-space: nowrap;
}

.wordmark span { color: var(--brass-soft); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s ease;
}

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

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-brass { background: var(--brass); color: var(--navy-deep); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-navy { background: var(--navy); color: var(--white); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.045'%3E%3Ccircle cx='170' cy='170' r='120'/%3E%3Ccircle cx='170' cy='170' r='75'/%3E%3Cpath d='M170 30v280M30 170h280M72 72l196 196M268 72L72 268'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 340px;
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brass-soft);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  max-width: 15ch;
  margin-bottom: 26px;
}

.hero p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-bottom: 40px;
}

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

/* ---------- Sections ---------- */

section { padding: 92px 0; }

.section-head {
  max-width: 62ch;
  margin-bottom: 52px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 18px;
}

.section-head p { color: var(--slate); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col p + p { margin-top: 18px; }

.two-col p { color: var(--slate); }

.two-col .lead {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 500;
}

/* ---------- Cards ---------- */

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--brass-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card h3 { font-size: 1.12rem; margin-bottom: 10px; }

.card p { color: var(--slate); font-size: 0.95rem; }

/* ---------- Company details ---------- */

.details {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 6px 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
}

.detail { padding: 14px 0; border-bottom: 1px solid var(--line); }

.detail dt {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 5px;
}

.detail dd { font-weight: 500; }

.detail dd a { border-bottom: 1px solid var(--brass); }

/* ---------- Contact ---------- */

.contact-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}

.contact-band .section-head h2 { color: var(--white); }

.contact-band .section-head p { color: rgba(255, 255, 255, 0.75); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card h3 {
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass-soft);
  margin-bottom: 12px;
}

.contact-card p { color: rgba(255, 255, 255, 0.88); font-size: 1.02rem; }

.contact-card a { border-bottom: 1px solid rgba(201, 162, 39, 0.6); }

/* ---------- Legal pages ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 72px 0;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }

.page-hero p { color: rgba(255, 255, 255, 0.7); margin-top: 12px; }

.legal { padding: 72px 0; }

.legal .wrap { max-width: 780px; }

.legal h2 { font-size: 1.35rem; margin: 40px 0 14px; }

.legal p, .legal li { color: var(--slate); }

.legal ul { padding-left: 22px; margin: 12px 0; }

.legal li { margin-bottom: 8px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 40px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .wordmark { font-size: 1.05rem; margin-bottom: 14px; display: block; }

.site-footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.site-footer p { margin-bottom: 6px; }

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

.footer-links a { display: block; margin-bottom: 8px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  .site-nav .nav-link { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 68px 0; }
  .hero { padding: 80px 0 88px; }
  .details-grid { padding: 26px 24px; }
}
