/**
 * Zone 1 — Announcement Strip (.ta-strip)
 *
 * All sub-component rules are scoped under the .ta-strip wrapper.
 * Mobile-first. Breakpoints: ≥600px tablet | ≥1024px desktop.
 */

/* ── CSS custom properties (prefixed --ta-* to avoid collisions) ─── */
:root {
  --ta-orange:       #ff5c00;
  --ta-orange-dim:   rgba(255, 92, 0, .12);
  --ta-navy-deep:    #020c18;
  --ta-navy-mid:     #00264d;
  --ta-white:        #ffffff;
  --ta-white-sub:    rgba(255, 255, 255, .55);
  --ta-white-muted:  rgba(255, 255, 255, .30);
  --ta-white-faint:  rgba(255, 255, 255, .07);
}

/* ── Wrapper ───────────────────────────────────────────── */
.ta-strip {
  background: var(--ta-navy-deep);
  border-bottom: 1px solid rgba(255, 92, 0, .18);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ta-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ta-orange);
}

/* ── Inner layout ──────────────────────────────────────── */
.ta-strip .ta-strip__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ── Left: authority badge ─────────────────────────────── */
.ta-strip .ta-strip__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hide "/" + "Latest Work" on mobile — revealed at ≥600px */
.ta-strip .ta-strip__badge > .ta-strip__sep,
.ta-strip .ta-strip__badge > .ta-strip__badge-latest {
  display: none;
}

.ta-strip .ta-strip__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ta-orange);
  box-shadow: 0 0 6px var(--ta-orange);
  animation: ta-pulse 2.4s ease-in-out infinite;
}

@keyframes ta-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .65; transform: scale(.85); }
}

.ta-strip .ta-strip__badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ta-orange);
  white-space: nowrap;
}

.ta-strip .ta-strip__sep {
  font-size: 11px;
  color: var(--ta-white-muted);
  margin: 0 2px;
}

/* ── Center: scrolling ticker ──────────────────────────── */
.ta-strip .ta-strip__ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 1) 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 1) 94%,
    transparent 100%
  );
}

.ta-strip .ta-strip__ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ta-ticker-scroll 28s linear infinite;
}

.ta-strip .ta-strip__ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ta-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ta-strip .ta-strip__ticker-item {
  font-size: 11.5px;
  color: var(--ta-white-sub);
  letter-spacing: 0.03em;
  padding-right: 56px;
  position: relative;
}

.ta-strip .ta-strip__ticker-item::after {
  content: '//';
  position: absolute;
  right: 20px;
  color: var(--ta-orange);
  font-size: 10px;
  opacity: .6;
}

.ta-strip .ta-strip__ticker-item a {
  color: inherit;
  text-decoration: none;
}

.ta-strip .ta-strip__ticker-item a:hover {
  color: var(--ta-white);
}

/* ── Right: quick contact CTA ──────────────────────────── */
.ta-strip .ta-strip__cta {
  display: none; /* hidden on mobile; flex at ≥600px */
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ta-strip .ta-strip__contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ta-white-sub);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.ta-strip .ta-strip__contact-link svg { flex-shrink: 0; opacity: .7; }
.ta-strip .ta-strip__contact-link:hover { color: var(--ta-white); }
.ta-strip .ta-strip__contact-link:hover svg { opacity: 1; }

.ta-strip .ta-strip__consult-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ta-orange);
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid rgba(255, 92, 0, .35);
  border-radius: 2px;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.ta-strip .ta-strip__consult-btn:hover {
  background: var(--ta-orange-dim);
  border-color: var(--ta-orange);
}

/* ── Tablet (≥600px) ────────────────────────────────────── */
@media (min-width: 600px) {
  .ta-strip .ta-strip__inner {
    padding: 0 20px;
    gap: 16px;
  }

  .ta-strip .ta-strip__badge > .ta-strip__sep,
  .ta-strip .ta-strip__badge > .ta-strip__badge-latest {
    display: inline;
  }

  .ta-strip .ta-strip__cta {
    display: flex;
  }

  /* Email link still hidden at tablet — only shown at ≥1024px */
  .ta-strip .ta-strip__contact-link {
    display: none;
  }
}

/* ── Desktop (≥1024px) ────────────────────────────────── */
@media (min-width: 1024px) {
  .ta-strip .ta-strip__inner {
    padding: 0;
    gap: 24px;
  }

  .ta-strip .ta-strip__contact-link {
    display: flex;
  }
}

