/* =============================================
   HUGHES STRATEGIC GROUP â Global Styles
   ============================================= */

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

:root {
  --ink:      #0D1B2A;
  --ink2:     #2C4A6E;
  --ink3:     #5A7A9A;
  --sand:     #F7F4EE;
  --sand2:    #EDE9DF;
  --sand3:    #DDD8CC;
  --rust:     #007A63;
  --rust2:    #00A88A;
  --rust-pale:#D0F5EE;
  --slate:    #1E3A5F;
  --slate2:   #2A4F7A;
  --cream:    #FFFDF8;
  --white:    #FFFFFF;
  --gold:     #00C4A1;
  --gold2:    #00D6B0;
  --gold-pale:#E0F9F5;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', serif;
  background: var(--sand);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  background: var(--ink);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo { font-family: 'Georgia', serif; color: #fff; font-size: 14px; letter-spacing: 0.04em; line-height: 1.4; }
.nav-logo span { display: block; font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 10px; letter-spacing: 0.18em; color: var(--gold2); text-transform: uppercase; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 16px; transition: color 0.2s; border-bottom: 2px solid transparent; display: block; }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--gold); }
.nav-cta { background: var(--rust); color: #fff; padding: 10px 20px; font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--rust2); }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--rust); color: #fff; padding: 15px 32px;
  font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--rust2); }
.btn-primary svg { width: 14px; height: 14px; }

.btn-ghost {
  color: rgba(255,255,255,0.55); font-family: 'Arial Narrow', 'Arial', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; background: none; border-top: none;
  border-left: none; border-right: none; cursor: pointer;
}
.btn-ghost:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }

.btn-dark {
  background: var(--ink); color: #fff; padding: 15px 32px;
  font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.btn-dark:hover { background: var(--slate); }
.btn-dark svg { width: 14px; height: 14px; }

.btn-white {
  background: #fff; color: var(--ink); padding: 14px 28px;
  font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.btn-white:hover { background: var(--sand); }
.btn-white svg { width: 14px; height: 14px; }

/* ---- SECTION COMMON ---- */
.sec { padding: 80px 48px; }
.sec-label { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sec-label-line { width: 28px; height: 1px; background: var(--rust); }
.sec-label-text { font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rust); }
.sec-label-line.gold { background: var(--gold); }
.sec-label-text.gold { color: var(--gold2); }
h2.sec-title { font-family: 'Georgia', serif; font-size: 36px; color: var(--ink); line-height: 1.2; font-weight: normal; margin-bottom: 16px; }
h2.sec-title.light { color: #fff; }
.sec-body { font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 15px; color: var(--ink2); line-height: 1.75; max-width: 540px; font-weight: normal; }
.sec-body.light { color: rgba(255,255,255,0.55); }

/* ---- GOLD BAR ---- */
.gold-bar { background: var(--gold); padding: 12px 48px; display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.gold-bar-item { font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.gold-bar-item svg { width: 12px; height: 12px; }
.gold-bar-dot { width: 3px; height: 3px; background: var(--ink); border-radius: 50%; opacity: 0.35; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-family: 'Georgia', serif; color: #fff; font-size: 13px; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-family: 'Arial Narrow', 'Arial', sans-serif; font-size: 11px; color: rgba(255,255,255,0.3); }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--cream); border: 1px solid var(--sand3);
  padding: 12px 14px; font-size: 14px; font-family: 'Arial Narrow', 'Arial', sans-serif;
  color: var(--ink); outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink3); }
.contact-form textarea { height: 100px; resize: vertical; }
