/* ============================================
   IMPERIUM ADVISORY — Shared Stylesheet
   Navy #1A2847 | Gold #B8956A
   ============================================ */

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

:root {
  --navy: #1a2847;
  --navy-light: #2a3a57;
  --gold: #b8956a;
  --gold-dark: #a67d55;
  --gray: #555555;
  --gray-light: #888888;
  --bg-light: #f5f4f0;
  --white: #ffffff;
  --border: #e2e0d8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Calibri', 'Segoe UI', Arial, sans-serif;
  color: #333;
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 500;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1140px;
  margin: 0 auto;
}

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

.brand-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-mark .i { color: var(--navy); }
.brand-mark .a { color: var(--gold); }

.brand-text {
  line-height: 1.15;
}

.brand-text .name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand-text .sub {
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo {
  height: 82px;
  width: auto;
  display: block;
}

nav.menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.menu a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}

nav.menu a.active {
  color: var(--gold-dark);
}

nav.menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

nav.menu a:hover {
  color: var(--gold-dark);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 3px;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-gold:hover {
  background: var(--gold-dark);
}

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

.btn-navy:hover {
  background: #0f1830;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

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

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  font-weight: bold;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #1a2847 0%, #223255 55%, #2a3a57 100%);
  color: var(--white);
  padding: 110px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184,149,106,0.18);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 40px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(184,149,106,0.28);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  font-size: 54px;
  max-width: 720px;
  margin-bottom: 22px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

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

.hero p.lead {
  font-size: 18px;
  color: #dfe3ec;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-points {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-point {
  font-size: 13.5px;
  color: #cfd6e4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-point::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 64px 40px 56px;
  text-align: center;
}

.page-header .eyebrow {
  color: var(--gold);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 14px;
}

.page-header h1 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 14px;
}

.page-header p {
  color: #cfd6e4;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */
section {
  padding: 88px 40px;
}

section.tight {
  padding: 64px 40px;
}

.section-alt {
  background: var(--bg-light);
}

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

.eyebrow {
  color: var(--gold-dark);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 14px;
}

.section-navy .eyebrow { color: var(--gold); }

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-navy .section-head h2,
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-head p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

.section-navy .section-head p { color: #cfd6e4; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
}

.card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 600;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
}

.service-card {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.service-card ul {
  list-style: none;
  font-size: 14px;
  color: #555;
}

.service-card ul li {
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 46px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #cfd6e4;
  letter-spacing: 0.5px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.testimonial p.quote {
  font-size: 15.5px;
  font-style: italic;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.testimonial .who {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: bold;
}

.testimonial .who span {
  color: var(--gold-dark);
  font-weight: normal;
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
}

.team-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--gold);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  color: var(--navy);
  font-weight: 600;
}

.team-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: bold;
}

.team-card p.bio {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  text-align: left;
}

/* ---------- Values ---------- */
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.value-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 64px 40px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #cfd6e4;
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 15.5px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item h4 {
  font-size: 16.5px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.faq-item h4::before {
  content: 'Q.';
  color: var(--gold-dark);
  flex-shrink: 0;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  padding-left: 26px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc9bd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--gold-dark);
}

/* ---------- Footer ---------- */
footer {
  background: #121c33;
  color: #b7c0d4;
  padding: 60px 40px 24px;
}

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

.footer-brand .brand-mark { margin-bottom: 12px; }

.footer-grid p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #9aa5bc;
}

.footer-grid h5 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Calibri', sans-serif;
  font-weight: bold;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul li a {
  text-decoration: none;
  color: #9aa5bc;
  font-size: 13.5px;
}

.footer-grid ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 12px;
  color: #7a86a0;
}

.footer-bottom a {
  color: #7a86a0;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }

/* ---------- Utility ---------- */
.divider-gold {
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 40px;
}

.tag {
  display: inline-block;
  background: rgba(184,149,106,0.12);
  color: var(--gold-dark);
  font-size: 11.5px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ---------- Icons ---------- */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184,149,106,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.6;
}

.icon-circle.navy-fill {
  background: rgba(255,255,255,0.08);
}

.icon-circle.navy-fill svg {
  stroke: var(--gold);
}

.icon-circle.sm {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.icon-circle.sm svg {
  width: 18px;
  height: 18px;
}

/* ---------- Photo placeholder ---------- */
.photo-block {
  background: var(--bg-light);
  border: 1.5px dashed #c9c4b6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-light);
  padding: 40px 24px;
  min-height: 260px;
  gap: 12px;
}

.photo-block svg {
  width: 34px;
  height: 34px;
  stroke: #b3ad9d;
  fill: none;
  stroke-width: 1.4;
}

.photo-block .label {
  font-size: 12.5px;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #948e7d;
}

.photo-block .sub {
  font-size: 11.5px;
  color: #a8a294;
  max-width: 220px;
}

.photo-block.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,149,106,0.35);
}

.photo-block.dark svg { stroke: rgba(184,149,106,0.7); }
.photo-block.dark .label { color: #cfd6e4; }
.photo-block.dark .sub { color: #93a0ba; }

.photo-block.short { min-height: 160px; padding: 28px 20px; }
.photo-block.tall { min-height: 380px; }

.photo-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.photo-img.short { min-height: 220px; }

/* ---------- Decorative pattern ---------- */
.pattern-strip {
  position: relative;
  overflow: hidden;
}

.dot-grid {
  position: absolute;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(184,149,106,0.35) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

/* ---------- Pull quote / feature banner ---------- */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-banner .fb-text {
  background: var(--navy);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-banner .fb-text .eyebrow { color: var(--gold); }

.feature-banner .fb-text h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 14px;
}

.feature-banner .fb-text p {
  color: #cfd6e4;
  font-size: 14.5px;
  line-height: 1.75;
}

.feature-banner .photo-img {
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
}
/* ---------- Process line ---------- */
.process-track {
  position: relative;
}

.process-track .line {
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
}

/* ---------- Quote mark ---------- */
.quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.menu { display: none; }
  .hero h1 { font-size: 38px; }
  .page-header h1 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-banner { grid-template-columns: 1fr; }
  .process-track .line { display: none; }
}
