@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --navy: #0d1b2a;
  --navy-2: #162236;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5edd6;
  --cream: #faf8f4;
  --white: #ffffff;
  --text-dark: #0d1b2a;
  --text-mid: #4a5568;
  --text-light: #8a9ab0;
  --border: rgba(13, 27, 42, 0.1);
  --border-gold: rgba(201, 168, 76, 0.25);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(13, 27, 42, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--sans);
  line-height: 1.7;
}

a { color: inherit; }

.container {
  width: min(100% - clamp(32px, 6vw, 96px), 1240px);
  margin-inline: auto;
}

.topbar {
  min-height: 34px;
  padding: 8px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.3px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
}

.topbar a:hover { color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(13, 27, 42, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  opacity: 0.5;
}

.brand-name {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.brand-line {
  display: block;
  margin-top: 1px;
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 4px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--cream);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  color: var(--navy);
  cursor: pointer;
  font-size: 22px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.16s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav > .btn {
  min-height: 40px;
  margin-left: 4px;
  background: var(--navy);
  color: var(--gold-light);
}

.nav > .btn:hover { background: #1a2f47; }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.4);
}

.btn-outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 9vw, 126px) 0 clamp(54px, 7vw, 82px);
  background:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #0d1b2a 0%, #10223c 58%, #162236 100%);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.8;
}

.section {
  padding: clamp(68px, 8vw, 104px) 0;
  background: var(--cream);
}

.soft { background: var(--white); }

.section-head,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-title {
  max-width: 860px;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
  text-transform: none;
}

h2.section-title { font-size: clamp(34px, 3vw, 42px); }

.section-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-mid);
  font-size: clamp(16px, 1.18vw, 18px);
  font-weight: 400;
  line-height: 1.82;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  display: block;
  min-width: 0;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(13, 27, 42, 0.055);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.16;
}

.card p,
.card li {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.76;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.tag {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: var(--gold-pale);
  color: #7b621e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.company-card { display: grid; gap: 12px; }

.visit-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.visit-link span { color: var(--gold); }
.visit-link:hover { color: var(--gold); }

.dark-band,
.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 56px 56px, 56px 56px, auto;
}

.dark-band .section-title,
.cta .section-title {
  color: var(--white);
}

.dark-band .section-copy,
.cta .section-copy {
  color: rgba(255, 255, 255, 0.58);
}

.cta {
  text-align: center;
}

.cta .section-title,
.cta .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.form-shell { max-width: 920px; }

.form-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 22px 70px rgba(13, 27, 42, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-grid label.full { grid-column: 1 / -1; }

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  padding: 12px 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font: 400 15px/1.4 var(--sans);
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid option {
  color: var(--text-dark);
  background: var(--white);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(201, 168, 76, 0.7);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.form-note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.legal { max-width: 820px; }
.legal h2 { font-size: 28px; }

.footer {
  padding: 56px 0 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  background: #08111b;
  color: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.8fr));
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer .brand { color: var(--white); }
.footer .brand-mark { background: var(--navy); }
.footer .brand-name { color: var(--white); }
.footer .brand-line { color: var(--gold); }

.footer h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.footer a:hover { color: rgba(255, 255, 255, 0.82); }

.footer p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 14px;
  letter-spacing: 0.3px;
}

@media (max-width: 1120px) {
  .section-head,
  .split { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav { min-height: 70px; }
  .menu-button { display: grid; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(13, 27, 42, 0.16);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: flex;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
  }
  .nav > .btn { display: none; }
  .page-hero {
    min-height: auto;
    padding-top: 64px;
  }
  .page-hero h1 { font-size: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1240px); }
  body,
  p,
  li,
  .section-copy,
  .page-hero p:not(.eyebrow),
  .card p,
  .footer p { font-size: 16px; }
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }
  .section-title,
  h2 { font-size: 26px; }
  .card h3,
  .footer h3,
  h3 { font-size: 20px; }
  .grid,
  .grid.two,
  .form-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .form-actions { flex-direction: column; }
}

p,
.section-copy,
.page-hero p:not(.eyebrow),
.card p,
.card li,
.form-note,
.legal p,
.footer p {
  font-size: 18px;
}

@media (max-width: 680px) {
  p,
  li,
  .section-copy,
  .page-hero p:not(.eyebrow),
  .card p,
  .card li,
  .form-note,
  .legal p,
  .footer p {
    font-size: 16px;
  }
}
