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

:root {
  --navy: #0d1b2a;
  --navy-mid: #152231;
  --navy-light: #1e3248;
  --gold: #b8972e;
  --gold-bright: #d4af4a;
  --gold-pale: #f0e4bc;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --light-grey: #eef0f3;
  --text: #3d4a5c;
  --text-light: #6b7a8d;
  --border-light: #e2e5ea;
  --border-gold: rgba(184,151,46,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

a { text-decoration: none; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 70px;
  background: rgba(13,27,42,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  border-bottom: 1px solid var(--border-gold);
}

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

.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(140deg, var(--gold), var(--gold-bright));
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.nav-logo-text span { color: var(--gold-bright); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold-bright); }

.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--gold-bright) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 7px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── SECTION LAYOUT ── */
.section { padding: 96px 6%; }
.section-sm { padding: 64px 6%; }

.container { max-width: 1160px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }
.container-wide { max-width: 1260px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title.light { color: #fff; }
.section-label.light { color: var(--gold-bright); }

.gold-bar {
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}

.text-center { text-align: center; }
.text-center .gold-bar { margin-left: auto; margin-right: auto; }

.lead {
  font-size: 16.5px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
}

.lead.center { margin: 0 auto; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 140px 6% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(184,151,46,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 100%);
}

.page-hero-inner {
  position: relative;
  max-width: 680px;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.page-hero p {
  font-size: 16.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold-bright); }
.breadcrumb span::after { content: '/'; margin-left: 8px; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  border-color: var(--border-gold);
}

.card-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

.card-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.card-list li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.card-list li::before {
  content: '•';
  color: var(--gold);
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ── FEATURE BOXES ── */
.feature-box {
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
}

.feature-box h4 {
  font-size: 16.5px;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature-box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── DARK BAND ── */
.band-dark { background: var(--navy); }
.band-off { background: var(--off-white); }
.band-light-grey { background: var(--light-grey); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: 72px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(184,151,46,0.1) 0%, transparent 70%);
}

.cta-strip-inner { position: relative; }

.cta-strip h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  background: #080f18;
  padding: 60px 6% 32px;
  border-top: 1px solid rgba(184,151,46,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-col address {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
}

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-field { margin-bottom: 18px; }

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

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border-light);
  border-radius: 7px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,46,0.12);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 5% 60px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}
