/* ============================================================
   Troven — Shared Brand Stylesheet
   brand.css  |  All pages import this file
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #1C1F24;
  --black-deep:  #13151A;
  --slate:       #2C3038;
  --amber:       #C17F3A;
  --amber-dark:  #A06830;
  --grey:        #8A8F99;
  --bench:       #F4F2EE;
  --white:       #FFFFFF;

  --font-sans:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;
  --radius:      4px;
  --radius-lg:   8px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--black-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────── */
.tv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(19,21,26,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(138,143,153,0.15);
}
.tv-nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.tv-nav-mark { width: 34px; height: 34px; }
.tv-nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.tv-nav-name {
  font-family: var(--font-sans); font-size: 17px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
}
.tv-nav-sub {
  font-size: 8px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber); margin-top: 3px;
}
.tv-nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.tv-nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey); text-decoration: none;
  transition: color 0.2s;
}
.tv-nav-links a:hover, .tv-nav-links a.active { color: var(--white); }
.tv-nav-cta {
  color: var(--amber) !important;
  border: 1px solid var(--amber);
  padding: 7px 18px; border-radius: var(--radius);
  transition: background 0.2s !important;
}
.tv-nav-cta:hover { background: var(--amber) !important; color: var(--black) !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
.tv-footer {
  border-top: 0.5px solid rgba(138,143,153,0.15);
  padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.tv-footer-brand {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey);
}
.tv-footer-brand span { color: var(--amber); }
.tv-footer-copy { font-size: 12px; color: rgba(138,143,153,0.5); }
.tv-footer-location { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(138,143,153,0.5); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--amber);
  padding: 13px 28px; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-secondary {
  font-family: var(--font-sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: transparent;
  padding: 13px 28px; border-radius: var(--radius);
  text-decoration: none; border: 1px solid rgba(138,143,153,0.4); cursor: pointer;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--grey); background: rgba(44,48,56,0.4); }

/* ── SECTION TYPOGRAPHY ──────────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content:''; display:block; width:20px; height:1px; background:var(--amber); }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-h2 {
  font-family: var(--font-sans); font-size: clamp(32px,4vw,48px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; line-height: 1; margin-bottom: 1.25rem;
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.tv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,143,153,0.2) 30%, rgba(193,127,58,0.4) 50%, rgba(138,143,153,0.2) 70%, transparent);
  margin: 0 4rem;
}

/* ── GRID BG ─────────────────────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(var(--grey) 1px, transparent 1px), linear-gradient(90deg, var(--grey) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.55s ease both; }
.fade-up-1 { animation: fadeUp 0.55s 0.1s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.2s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.3s ease both; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .tv-nav { padding: 1rem 1.5rem; }
  .tv-nav-links { display: none; }
  .tv-divider { margin: 0 1.5rem; }
  .tv-footer { flex-direction: column; gap: 1rem; padding: 1.5rem; text-align: center; }
}
