/* ═══════════════════════════════════════════════════════════════
   ZENITHWEB — SHARED STYLESHEET
   Black & Gold Premium Agency Theme
═══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── VARIABLES ────────────────────────────────────────────────── */
:root {
  --gold:         #FFB84D;
  --gold-light:   #FFD970;
  --gold-dark:    #C8860A;
  --gold-glow:    rgba(255, 184, 77, 0.15);
  --gold-border:  rgba(255, 184, 77, 0.18);
  --bg:           #050505;
  --bg-card:      #0d0d0d;
  --bg-card2:     #111111;
  --text:         #f0ebe0;
  --text-dim:     #9a9080;
  --text-muted:   #555045;
  --cream:        #f5f0e8;
  --nav-height:   78px;
  --radius:       6px;
  --transition:   0.3s ease;
}

/* ── BASE ─────────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── GRADIENT TEXT UTILITY ───────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--gold-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}

/* Logo area */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* Replace src with your logo image */
  /* Logo placeholder box shown when no image */
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-real {
  height: 120px;
  width: auto;
  animation: floatLogo 6s ease-in-out infinite;
}

.logo-placeholder {
  height: 60px;
  width: 60px;
  border: 1.5px dashed var(--gold-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,184,77,0.04);
  transition: border-color var(--transition), background var(--transition);
}
.logo-placeholder:hover {
  border-color: var(--gold);
  background: rgba(255,184,77,0.08);
}
.logo-placeholder span {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
.nav-brand {
  display: flex;
  flex-direction: column;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}
.nav-brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* CTA button in nav */
.nav-cta {
  padding: 9px 26px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #080808 !important;
  font-weight: 700 !important;
  border-radius: var(--radius);
  letter-spacing: 0.1em !important;
  transition: box-shadow var(--transition), transform var(--transition) !important;
  box-shadow: 0 4px 20px rgba(255,184,77,0.22);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 6px 36px rgba(255,184,77,0.45) !important;
  transform: translateY(-1px);
  color: #080808 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 75%; max-width: 300px;
  height: 100vh;
  z-index: 999;
  background: #0a0a0a;
  border-left: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 36px;
  gap: 28px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold-light); }
.mobile-menu .mob-cta {
  margin-top: 12px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #080808;
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-overlay {
  position: fixed; inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.65);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (shared across inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-height);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,134,10,0.07) 0%, transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--gold-border);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent);
}
.page-hero-inner {
  padding: 64px 5vw 56px;
  position: relative; z-index: 1;
}
.page-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 520px;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #070707;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 4px 24px rgba(255,184,77,0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(255,184,77,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 13px 38px;
  background: transparent;
  border: 1px solid rgba(255,184,77,0.4);
  color: var(--gold-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(255,184,77,0.07);
  border-color: var(--gold-light);
  box-shadow: 0 4px 24px rgba(255,184,77,0.18);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════════ */
.section { padding: 100px 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 0.98rem;
  color: var(--text-dim);
  max-width: 560px;
  font-weight: 300;
}

/* Ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 56px;
  max-width: 300px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
}
.ornament::before { background: linear-gradient(90deg, transparent, var(--gold-dark)); }
.ornament::after  { background: linear-gradient(90deg, var(--gold-dark), transparent); }
.ornament-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════════ */
.card {
  background: var(--bg-card2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(255,184,77,0.12);
  border-color: rgba(255,184,77,0.32);
}
.card:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: #030303;
  border-top: 1px solid var(--gold-border);
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 5vw 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-placeholder {
  height: 52px;
  width: 52px;
  border: 1.5px dashed var(--gold-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,184,77,0.03);
}
.footer-logo-placeholder span {
  font-size: 8px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255,184,77,0.06);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}
.footer-contact-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,184,77,0.08);
  padding: 20px 5vw;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-copy span { color: var(--gold-dark); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .section { padding: 70px 5vw; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
