/* Shared components: buttons, nav, ticker, section utilities, footer */

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.01em; padding: 0.9rem 2rem;
  transition: all 0.3s var(--ease-out); text-align: center; border-radius: 6px;
  min-height: 44px; min-width: 44px; position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.btn:hover { transform: translateY(-2px); }
.btn-yellow {
  background: var(--yellow); color: var(--dark);
  box-shadow: 0 4px 20px rgba(238,178,5,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-yellow:hover { background: var(--yellow-hover); box-shadow: 0 8px 30px rgba(238,178,5,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--dark-surface); color: var(--white); border: 1px solid var(--dark-border); }
.btn-dark:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border: 1.5px solid rgba(0,0,0,0.15); }
.btn-outline-dark:hover { background: var(--text-dark); color: var(--yellow); border-color: var(--text-dark); }
.btn-sm { font-size: 0.78rem; padding: 0.6rem 1.2rem; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,0.45); backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(238,178,5,0.04);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.nav.scrolled {
  background: rgba(12,12,12,0.7);
  border-bottom-color: rgba(238,178,5,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
}
.nav-logo { display: flex; align-items: center; min-height: 44px; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; max-width: none; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--heading); font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); transition: color 0.3s;
  min-height: 44px; display: flex; align-items: center;
  letter-spacing: 0.02em; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: 10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { transform: translateX(-50%) scale(1); }
.nav-links a[aria-current="page"] { color: var(--yellow); }
.nav-links a[aria-current="page"]::after { transform: translateX(-50%) scale(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--yellow); color: var(--dark);
  font-family: var(--heading); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.55rem 1rem; border-radius: 6px;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 2px 12px rgba(238,178,5,0.25);
}
.nav-cta:hover { background: var(--yellow-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(238,178,5,0.4); }
.nav-cta .live-dot { background: var(--dark); animation: none; width: 6px; height: 6px; }
.mobile-menu-btn {
  display: none; background: none; color: var(--white); font-size: 1.5rem;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.mobile-drawer {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--dark); padding: 1.5rem; flex-direction: column; gap: 0;
  overflow-y: auto; border-top: 1px solid var(--dark-border);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-family: var(--heading); font-size: 1.1rem; font-weight: 600;
  color: var(--text-light); padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center;
  min-height: 44px;
}
.mobile-drawer a:hover { color: var(--yellow); }

/* ─── TICKER ─── */
.ticker {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 98;
  background: var(--yellow); color: var(--dark);
  overflow: hidden; height: 36px; display: flex; align-items: center;
}
.ticker-track { display: flex; animation: tickScroll 28s linear infinite; white-space: nowrap; }
.ticker-item { font-family: var(--heading); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0 2rem; flex-shrink: 0; }
.ticker-sep { opacity: 0.3; margin: 0 0.3rem; }

/* ─── SECTION UTILITIES ─── */
.sec-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.sec-eyebrow {
  font-family: var(--heading); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.9rem; margin-bottom: 0.8rem; border-radius: 4px;
}
.sec-eyebrow::before {
  content: ''; width: 8px; height: 2px; background: currentColor; border-radius: 1px;
}
.sec-eyebrow.eye-yellow { background: rgba(238,178,5,0.1); color: var(--yellow); }
.sec-eyebrow.eye-yellow-dark { background: rgba(238,178,5,0.1); color: #B8900A; }
.sec-eyebrow.eye-dark { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.sec-eyebrow.eye-charcoal { background: var(--text-dark); color: var(--yellow); }

.sec-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
  margin: 0;
}

/* ─── FOOTER — brand concrete backdrop ─── */
.footer {
  padding: 4rem 0 0; position: relative; overflow: hidden; isolation: isolate;
  background:
    linear-gradient(rgba(23,22,27,0.55), rgba(23,22,27,0.55)),
    url('/photos/backgrounds/brand-concrete.jpg') center bottom/cover no-repeat;
  background-color: var(--dark-deep);
}
.footer::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(253,196,4,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 90%, rgba(0,0,0,0.35) 0%, transparent 65%);
}
.footer > * { position: relative; z-index: 2; }
.footer-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent 10%, rgba(253,196,4,0.35) 50%, transparent 90%);
}
.footer-wordmark {
  max-width: 1280px; margin: 0 auto 3rem; padding: 0 1.5rem;
  text-align: center; position: relative;
}
.footer-wordmark-text {
  font-family: var(--heading); font-weight: 700;
  font-size: clamp(4rem, 14vw, 11rem); line-height: 0.9; letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(238,178,5,0.2) 0%, rgba(238,178,5,0.02) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase; white-space: nowrap;
}
.footer-wordmark-meta {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: -0.5rem; position: relative; z-index: 2;
  font-family: var(--heading); font-size: 0.72rem;
  color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-wordmark-meta .live-dot { margin-right: 0.25rem; }
.footer-wordmark-meta .status-open { color: var(--green); display: inline-flex; align-items: center; }
.footer-wordmark-meta-divider { width: 1px; height: 10px; background: rgba(255,255,255,0.12); }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 1.25rem; max-width: 280px; }
.footer-brand img { height: 56px; width: auto; max-width: none; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--yellow); background: rgba(238,178,5,0.06); }
.footer-social svg { width: 16px; height: 16px; fill: var(--text-muted); transition: fill 0.3s; }
.footer-social a:hover svg { fill: var(--yellow); }
.footer-col h4 {
  font-family: var(--heading); color: var(--white); font-size: 0.82rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.2rem; }
.footer-col a {
  color: var(--text-muted); font-size: 0.85rem; transition: color 0.3s;
  padding: 0.25rem 0; display: inline-flex; align-items: center;
}
.footer-col a:hover { color: var(--yellow); }
.footer-col .info-line {
  color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.footer-col .info-line svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1280px; margin: 2.5rem auto 0; padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-dim); font-size: 0.75rem;
}

/* ─── RESPONSIVE (shared) ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .sec-container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 320px) {
  .sec-container { padding: 0 1rem; }
  .btn { font-size: 0.8rem; padding: 0.75rem 1.4rem; }
}
