/* ============================================================
   FORTIS — SHARED STYLESHEET
   Applies to both fortissecurityconsult and fortissecure
   Brand: Cormorant Garamond / Barlow / Barlow Condensed
   ============================================================ */

:root {
  --navy:       #0A1A2F;
  --deep-navy:  #050E1C;
  --gold:       #C9A961;
  --gold-light: #E8D9A8;
  --cream:      #F7F3EA;
  --ink:        #1B1B1B;
  --muted:      #5A5A5A;
  --white:      #FFFFFF;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(5,14,28,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,97,0.18);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-brand-division {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-tel {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(232,217,168,0.55);
  transition: color 0.2s;
}

.nav-tel:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.35);
  padding: 8px 18px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201,169,97,0.1);
}

.nav-sister {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,97,0.4);
  border: 1px solid rgba(201,169,97,0.15);
  padding: 7px 14px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-sister:hover {
  color: var(--gold);
  border-color: rgba(201,169,97,0.4);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--deep-navy);
  display: flex;
  align-items: flex-end;
  padding: 140px 48px 96px;
  position: relative;
  overflow: hidden;
}

.hero-circles::before,
.hero-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circles::before {
  right: -80px; bottom: -80px;
  width: 560px; height: 560px;
  border: 1px solid rgba(201,169,97,0.06);
}

.hero-circles::after {
  right: 60px; bottom: 60px;
  width: 340px; height: 340px;
  border: 1px solid rgba(201,169,97,0.04);
}

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

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.45s forwards;
}

.hero-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(232,217,168,0.62);
  max-width: 560px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 14px 32px;
  transition: all 0.2s;
  display: inline-block;
}

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

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: gap 0.2s;
}

.btn-secondary::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s;
}

.btn-secondary:hover { gap: 20px; }
.btn-secondary:hover::after { width: 40px; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--deep-navy);
  padding: 148px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header .hero-eyebrow { animation: none; opacity: 1; }
.page-header .hero-title { animation: none; opacity: 1; font-size: clamp(36px, 5vw, 64px); }
.page-header .hero-rule { animation: none; opacity: 1; }
.page-header .hero-body { animation: none; opacity: 1; margin-bottom: 0; }

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }
.section-dark  { background: var(--deep-navy); }
.section-white { background: var(--white); }

.section-pad { padding: 96px 0; }
.section-pad-lg { padding: 120px 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0;
}

.section-heading em { font-style: italic; color: var(--muted); }
.section-heading--light { color: var(--white); }
.section-heading--light em { color: var(--gold-light); }

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: #3a3a3a;
}

.section-body--light {
  color: rgba(232,217,168,0.62);
}

.section-body p + p { margin-top: 20px; }

.gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.35;
  margin: 56px 0;
}

.gold-rule--full { opacity: 0.2; background: var(--gold); }

/* ============================================================
   TWO-COLUMN GRID
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col--center { align-items: center; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ============================================================
   CALLOUT BOX (navy, gold left bar)
   ============================================================ */
.callout {
  background: var(--navy);
  padding: 44px 48px;
  position: relative;
}

.callout::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.callout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.callout-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(232,217,168,0.8);
}

.callout-text em { font-style: italic; color: var(--gold-light); }

/* ============================================================
   SERVICE CARD
   ============================================================ */
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,97,0.1);
  padding: 44px 40px;
  position: relative;
  transition: background 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.service-card:hover { background: rgba(255,255,255,0.05); }
.service-card:hover::before { transform: scaleY(1); }

.service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: rgba(201,169,97,0.18);
  line-height: 1;
  margin-bottom: 20px;
}

.service-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.service-card-body {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(232,217,168,0.5);
  margin-bottom: 20px;
}

.service-card-list {
  list-style: none;
}

.service-card-list li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201,169,97,0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,169,97,0.08);
}

/* ============================================================
   STEP LIST
   ============================================================ */
.step-list { list-style: none; }

.step-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(10,26,47,0.1);
}

.step-item:first-child { border-top: 1px solid rgba(10,26,47,0.1); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: rgba(10,26,47,0.18);
  min-width: 44px;
  line-height: 1;
  padding-top: 2px;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-body {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* Light version for dark backgrounds */
.step-item--light { border-color: rgba(201,169,97,0.1); }
.step-item--light .step-num { color: rgba(201,169,97,0.18); }
.step-item--light .step-title { color: var(--gold-light); }
.step-item--light .step-body { color: rgba(232,217,168,0.5); }

/* ============================================================
   CLIENT TYPES GRID
   ============================================================ */
.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.client-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(10,26,47,0.1);
}

.client-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid rgba(10,26,47,0.1); }
.client-item:nth-child(even) { padding-left: 40px; }

.client-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.client-body {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 88px 48px;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 48px; right: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--white);
}

.cta-heading em { font-style: italic; color: var(--gold-light); }

.cta-body {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(232,217,168,0.55);
  margin-bottom: 28px;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,217,168,0.3);
}

.cta-detail-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.2s;
}

.cta-detail-value:hover { color: var(--gold-light); }

.cta-details-sep {
  width: 32px;
  height: 1px;
  background: rgba(201,169,97,0.2);
  margin: 10px 0;
}

/* ============================================================
   SISTER SITE BAND
   ============================================================ */
.sister-band {
  background: rgba(5,14,28,0.6);
  border-top: 1px solid rgba(201,169,97,0.12);
  border-bottom: 1px solid rgba(201,169,97,0.12);
  padding: 48px;
}

.sister-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sister-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,217,168,0.4);
  margin-bottom: 8px;
}

.sister-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--white);
}

.sister-name em { font-style: italic; color: var(--gold-light); }

.sister-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(232,217,168,0.45);
  max-width: 400px;
}

.sister-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,97,0.3);
  padding: 12px 24px;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.sister-link:hover {
  background: rgba(201,169,97,0.08);
  border-color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(201,169,97,0.12);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
  text-align: center;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-contact a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(201,169,97,0.5);
  transition: color 0.2s;
}

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

/* ============================================================
   PROSE PAGE (used on longer content pages)
   ============================================================ */
.prose {
  font-size: 15px;
  line-height: 1.85;
  color: #3a3a3a;
  max-width: 680px;
}

.prose h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}

.prose p + p { margin-top: 18px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 24px; }

  .hero { padding: 120px 24px 72px; }
  .page-header { padding: 120px 24px 60px; }

  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }

  .cta-band { padding: 64px 24px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-band::before, .cta-band::after { left: 24px; right: 24px; }

  .sister-band { padding: 40px 24px; }
  .sister-band-inner { flex-direction: column; align-items: flex-start; }

  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }

  .client-grid { grid-template-columns: 1fr; }
  .client-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .client-item:nth-child(even) { padding-left: 0; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 38px; }
  .four-col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-contact { gap: 12px; }
  .nav-sister { display: none; }
}
