:root {
  --navy: #0b2545;
  --navy-deep: #061833;
  --slate: #3a4a63;
  --gray-100: #f5f7fa;
  --gray-200: #e4e9f0;
  --gray-300: #c9d3e0;
  --gray-500: #6b7a90;
  --gray-700: #3a4a63;
  --gray-900: #1a2332;
  --accent: #c9a86a;
  --white: #ffffff;
  --max: 1180px;
  --radius: 4px;
  --shadow: 0 1px 3px rgba(11,37,69,0.08), 0 4px 12px rgba(11,37,69,0.04);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

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

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
}
.brand-name { line-height: 1.1; }
.brand-name small { display: block; font-size: 0.7rem; color: var(--gray-500); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

nav.primary { display: flex; gap: 28px; }
nav.primary a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
nav.primary a.active, nav.primary a:hover {
  color: var(--navy);
  border-color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px; top: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,106,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }

/* Hero with photo background */
.hero--image {
  background:
    linear-gradient(135deg, rgba(6,24,51,0.88) 0%, rgba(11,37,69,0.72) 100%),
    var(--hero-img, var(--navy)) center/cover no-repeat;
}
.hero--image::after { display: none; }

/* Image strip in inverted (lighter) hero */
.hero--compact {
  padding: 72px 0 56px;
}
.hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 22px;
}
.hero p.lede {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy-deep);
}
.btn-primary:hover { background: #d4b478; color: var(--navy-deep); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* Sections */
section.block { padding: 80px 0; }
section.block.alt { background: var(--gray-100); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-top: 16px;
}

/* Cards / grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--accent); }
.card .icon-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card p { color: var(--gray-700); font-size: 0.95rem; }

/* Card with image on top */
.card--media { padding: 0; overflow: hidden; }
.card--media .media {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--gray-100);
}
.card--media .body { padding: 28px 28px 32px; }
.card--media .icon-num { margin-bottom: 14px; }

/* Split media + content row */
.split-media {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-media.reverse { grid-template-columns: 1fr 1.05fr; }
.split-media.reverse .media-col { order: 2; }
.split-media .media-col img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.split-media p { color: var(--gray-700); margin-bottom: 14px; }
@media (max-width: 880px) {
  .split-media, .split-media.reverse { grid-template-columns: 1fr; }
  .split-media.reverse .media-col { order: 0; }
  .split-media .media-col img { min-height: 240px; }
}

/* Image band (full-width promo strip) */
.image-band {
  background: var(--gray-100);
  padding: 0;
  position: relative;
}
.image-band img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Inline info row (about page) */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}
.info-table th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--gray-700);
  width: 220px;
  letter-spacing: 0.01em;
}
.info-table td { color: var(--navy); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

/* Form */
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--navy);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 8px; }

/* Prose pages (privacy, terms, policy) */
.prose { max-width: 780px; }
.prose h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.prose .updated {
  color: var(--gray-500);
  font-size: 0.88rem;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.prose h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: 24px;
  margin-bottom: 10px;
}
.prose p, .prose li { color: var(--gray-700); margin-bottom: 14px; font-size: 0.97rem; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose strong { color: var(--navy); font-weight: 600; }

/* Footer */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  font-size: 0.9rem;
}
footer.site-footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 720px) {
  footer.site-footer .grid { grid-template-columns: 1fr 1fr; }
}
footer.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
footer.site-footer a { color: rgba(255,255,255,0.7); display: block; padding: 4px 0; }
footer.site-footer a:hover { color: var(--accent); }
footer.site-footer .brand-block { color: rgba(255,255,255,0.85); }
footer.site-footer .brand-block .brand-name { color: var(--white); font-weight: 600; margin-bottom: 8px; font-size: 1rem; }
footer.site-footer .brand-block p { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
footer.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.map-embed { width: 100%; height: 360px; border: 0; border-radius: var(--radius); }
