/* ============================================
   CatalystCIO — Global Styles v2
   Brand Colors:
   Gold:      #cbb26b  /  #be9e45
   Dark:      #1a1f24
   Dark-mid:  #303841
   ============================================ */

:root {
  --gold:       #cbb26b;
  --gold-dark:  #be9e45;
  --dark:       #1a1f24;
  --dark-mid:   #303841;
  --dark-card:  #222830;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.65);
  --border:     rgba(203,178,107,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px;
  background: rgba(26,31,36,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: lighten;
}

/* Footer logo blend */
.footer-brand-row img {
  mix-blend-mode: lighten;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 24px;
  color: var(--gold) !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 15px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 15px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION LABEL ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 80px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-row img { height: 40px; }
.footer-brand-row .brand-name {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; color: var(--gold);
}
.footer-brand-row .brand-tag {
  font-size: 9px; letter-spacing: 0.18em; color: var(--gold-dark);
}
.footer-brand p {
  font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 240px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address {
  font-style: normal; font-size: 14px; line-height: 2; color: var(--muted);
}
.footer-col address a { color: var(--muted); transition: color 0.2s; }
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }

/* ── SHARED FOOTER HTML ── */
.footer-nav-logo { display: flex; align-items: center; gap: 10px; }
.footer-nav-logo img { height: 40px; }
.footer-nav-logo-text { display: flex; flex-direction: column; }
.footer-nav-logo-text .brand-name { font-size:13px; font-weight:600; letter-spacing:.18em; color:var(--gold); }
.footer-nav-logo-text .brand-tag  { font-size:9px; letter-spacing:.18em; color:var(--gold-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  nav { padding: 12px 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 32px; }
  .footer-bottom { padding: 16px 32px; }
}

@media (max-width: 767px) {
  nav { padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(26,31,36,0.99);
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .nav-logo img { height: 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .btn-gold, .btn-ghost, .btn-outline { padding: 13px 22px; font-size: 10px; }
}
