/*
Theme Name: ThreatZine
Theme URI: https://threatzine.com
Author: ThreatZine
Author URI: https://threatzine.com
Description: Official ThreatZine editorial photography theme. Beauty without limits — from classy to obscure. Confidence, art, and ambition, unfiltered.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: threatzine
Tags: photography, dark, editorial, portfolio, full-width-template
*/

/* ============================================================
   ThreatZine Design System — Editorial Luxury
   GoDaddy + Mobile Compatible
   ============================================================ */

/* ---------- Self-Hosted Fonts (woff2 — 97%+ browser support) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/playfair-display-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/playfair-display-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- CSS Variables ---------- */
:root {
  --tz-bg:              #000000;
  --tz-fg:              #ffffff;
  --tz-primary:         #ed1c24;
  --tz-primary-dark:    #b5151b;
  --tz-secondary:       #38383b;
  --tz-muted:           #a7a6a2;
  --tz-light:           #dededf;
  --tz-border:          #38383b;
  --tz-card:            #222224;

  --tz-gradient-hero:   linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
  --tz-gradient-card:   linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);

  --tz-font-serif:      'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --tz-font-sans:       'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --tz-shadow-red:      0 0 40px rgba(237,28,36,0.3);
  --tz-shadow-card:     0 25px 60px rgba(0,0,0,0.8);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: var(--tz-bg);
  color: var(--tz-fg);
  font-family: var(--tz-font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--tz-font-serif); font-weight: 800; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(237,28,36,0.4); color: #fff; }

/* ---------- Utility Classes ---------- */
.tz-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.headline-display {
  font-family: var(--tz-font-serif);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.headline-editorial {
  font-family: var(--tz-font-serif);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.divider-red {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--tz-primary);
  margin-bottom: 1.5rem;
}

.link-underline { position: relative; text-decoration: none; }
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--tz-primary);
  transition: width 0.3s ease;
}
.link-underline:hover::after { width: 100%; }

.accent-bar { border-left: 3px solid var(--tz-primary); padding-left: 1rem; }

.text-primary   { color: var(--tz-primary) !important; }
.text-muted     { color: var(--tz-muted) !important; }
.text-light     { color: var(--tz-light) !important; }
.bg-secondary   { background: var(--tz-secondary) !important; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--tz-primary);
  color: #fff;
  font-family: var(--tz-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-appearance: none;
}
.btn-primary:hover { background: var(--tz-primary-dark); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--tz-fg);
  font-family: var(--tz-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--tz-fg);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  -webkit-appearance: none;
}
.btn-outline:hover { border-color: var(--tz-primary); color: var(--tz-primary); }

.btn-dark {
  display: inline-block;
  background: var(--tz-fg);
  color: var(--tz-bg);
  font-family: var(--tz-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  -webkit-appearance: none;
}
.btn-dark:hover { background: var(--tz-primary); color: #fff; }

.btn-secondary {
  display: inline-block;
  background: var(--tz-secondary);
  color: var(--tz-fg);
  font-family: var(--tz-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-appearance: none;
}
.btn-secondary:hover { background: #4a4a4d; color: #fff; }

/* ---------- Navigation ---------- */
#tz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, border-bottom 0.5s;
}
#tz-nav.scrolled {
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid var(--tz-border);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.tz-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tz-nav-logo img { height: 40px; width: auto; object-fit: contain; }
@media (min-width: 768px) {
  .tz-nav-logo img { height: 48px; }
}
.tz-nav-links { display: none; gap: 2rem; align-items: center; }
.tz-nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tz-light);
  transition: color 0.2s;
  position: relative;
}
.tz-nav-links a:hover,
.tz-nav-links a.active { color: var(--tz-primary); }
.tz-nav-cta { display: none; }
.tz-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.tz-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tz-fg);
  transition: all 0.3s;
}

/* Mobile Menu — sits ABOVE nav (z-index 110 > 100) */
#tz-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0,0,0,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6rem;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#tz-mobile-menu.open { opacity: 1; pointer-events: auto; }
#tz-mobile-menu a {
  font-family: var(--tz-font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tz-fg);
  transition: color 0.2s;
}
#tz-mobile-menu a:hover { color: var(--tz-primary); }

/* Close button inside mobile menu */
.tz-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.tz-mobile-close span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--tz-fg);
}
.tz-mobile-close span:first-child {
  transform: rotate(45deg) translateY(1px);
}
.tz-mobile-close span:last-child {
  transform: rotate(-45deg) translateY(-1px);
}

@media (min-width: 1024px) {
  .tz-nav-links { display: flex; }
  .tz-nav-cta { display: inline-block; }
  .tz-hamburger { display: none; }
}

/* ---------- Marquee ---------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee 20s linear infinite;
  display: flex;
  white-space: nowrap;
}
.marquee-strip {
  background: var(--tz-primary);
  padding: 0.75rem 0;
  overflow: hidden;
}
.marquee-strip span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: 0 2rem;
}

/* ---------- Hero ---------- */
.tz-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.tz-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.tz-hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.6);
  min-width: 100%; min-height: 100%;
  width: 177.78vh; height: 56.25vw;
  border: none;
  pointer-events: none;
}
.tz-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--tz-gradient-hero);
}
.tz-hero-content { position: relative; z-index: 10; }
.tz-hero h1 { font-size: clamp(3.5rem, 12vw, 9rem); }
.tz-hero .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tz-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.tz-hero p.sub {
  color: var(--tz-light);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 38rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.tz-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 639px) {
  .tz-hero-btns {
    flex-direction: column;
  }
  .tz-hero-btns a {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
.tz-hero-side {
  position: absolute;
  right: 1.5rem;
  bottom: 6rem;
  display: none;
  font-family: var(--tz-font-serif);
  font-style: italic;
  color: var(--tz-muted);
  font-size: 0.85rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) { .tz-hero-side { display: block; } }

/* ---------- Featured Model ---------- */
.tz-featured { padding: 6rem 0; }
.tz-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .tz-featured-grid { grid-template-columns: 1fr 1fr; }
}
.tz-featured-img {
  position: relative;
  overflow: hidden;
}
.tz-featured-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s;
}
.tz-featured-img:hover img { transform: scale(1.05); }
.tz-featured-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: var(--tz-gradient-card);
}
.tz-featured-caption .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tz-primary);
  margin-bottom: 0.25rem;
}
.tz-featured-caption .name {
  font-family: var(--tz-font-serif);
  font-style: italic;
  font-size: 1.5rem;
}

/* ---------- Gallery ---------- */
.tz-gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--tz-border);
}
@media (min-width: 768px) {
  .tz-gallery-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.tz-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--tz-secondary);
  cursor: pointer;
}
.tz-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.tz-gallery-item:hover img { transform: scale(1.05); }
.tz-gallery-item-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.tz-gallery-item:hover .tz-gallery-item-overlay { opacity: 1; }

/* ---------- Filter Bar ---------- */
.tz-filter-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tz-filter-btn {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--tz-border);
  background: transparent;
  color: var(--tz-muted);
  cursor: pointer;
  transition: all 0.2s;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.tz-filter-btn:hover,
.tz-filter-btn.active {
  background: var(--tz-primary);
  border-color: var(--tz-primary);
  color: #fff;
}

/* ---------- Lightbox ---------- */
#tz-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#tz-lightbox.open { display: flex; }
#tz-lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
#tz-lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--tz-fg);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-appearance: none;
}
#tz-lightbox-close:hover { color: var(--tz-primary); }

/* ---------- Prints Grid ---------- */
.tz-prints-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .tz-prints-grid { grid-template-columns: repeat(3, 1fr); }
}
.tz-print-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--tz-bg);
  margin-bottom: 1.5rem;
}
.tz-print-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.tz-print-card:hover .tz-print-card-img img { transform: scale(1.03); }
.tz-print-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--tz-primary);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
}

/* ---------- Model Calls ---------- */
.tz-spots-box {
  border: 1px solid var(--tz-primary);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.tz-spots-box .spots-num {
  font-family: var(--tz-font-serif);
  font-size: 4rem;
  font-weight: 700;
}
.tz-spots-box .spots-label { font-family: var(--tz-font-serif); font-style: italic; font-size: 1.25rem; color: var(--tz-muted); }
.tz-release-box {
  background: var(--tz-secondary);
  border: 1px solid var(--tz-border);
  padding: 2rem;
}

/* ---------- Membership Tiers ---------- */
.tz-tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 700px;
}
@media (min-width: 640px) {
  .tz-tiers-grid { grid-template-columns: repeat(2, 1fr); }
}
.tz-tier {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--tz-border);
  display: flex;
  flex-direction: column;
}
.tz-tier.featured { border-color: var(--tz-primary); background: var(--tz-bg); }
.tz-tier-badge {
  position: absolute;
  top: -0.75rem; left: 2rem;
  background: var(--tz-primary);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.2rem 1rem;
}
.tz-tier .tier-name { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tz-muted); margin-bottom: 1rem; }
.tz-tier .price { font-family: var(--tz-font-serif); font-size: 3rem; font-weight: 700; }
.tz-tier .period { color: var(--tz-muted); font-size: 0.875rem; }
.tz-tier .desc { font-style: italic; font-family: var(--tz-font-serif); color: var(--tz-muted); font-size: 0.875rem; margin: 1rem 0 2rem; }
.tz-tier ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2.5rem; }
.tz-tier ul li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--tz-muted); }
.tz-tier ul li::before { content: '✓'; color: var(--tz-primary); flex-shrink: 0; }

/* ---------- Contact Form ---------- */
.tz-form { display: flex; flex-direction: column; gap: 2.5rem; }
.tz-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tz-muted);
  margin-bottom: 0.5rem;
}
.tz-field input,
.tz-field select,
.tz-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--tz-border);
  padding: 0.75rem 0;
  color: var(--tz-fg);
  font-family: var(--tz-font-sans);
  font-size: 0.875rem;
  font-size: max(0.875rem, 16px); /* Prevents iOS zoom on focus */
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.tz-field input:focus,
.tz-field select:focus,
.tz-field textarea:focus {
  outline: none;
  border-bottom-color: var(--tz-primary);
}
.tz-field input::placeholder,
.tz-field textarea::placeholder {
  color: var(--tz-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.tz-field select option { background: var(--tz-secondary); color: var(--tz-fg); }
.tz-field textarea { resize: none; }

/* ---------- Info List ---------- */
.tz-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.tz-info-list li { display: flex; align-items: flex-start; gap: 1rem; color: var(--tz-muted); }
.tz-info-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tz-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ---------- Event Hero ---------- */
.tz-event-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.tz-event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.tz-event-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--tz-gradient-hero);
}
.tz-event-hero-content { position: relative; z-index: 10; }

/* ---------- Event Detail Row ---------- */
.tz-event-row {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--tz-border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.tz-event-row .row-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tz-primary);
  width: 7rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.tz-event-row .row-val { font-family: var(--tz-font-serif); font-style: italic; font-size: 1.1rem; }

/* ---------- Event Details Grid ---------- */
.tz-event-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .tz-event-details-grid { grid-template-columns: 1fr 2fr; }
}

/* ---------- Podcast Buttons ---------- */
.tz-podcast-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 639px) {
  .tz-podcast-btns { flex-direction: column; }
  .tz-podcast-btns a { display: block; width: 100%; text-align: center; box-sizing: border-box; }
}

/* ---------- Two-Col Grid ---------- */
.tz-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media (min-width: 1024px) {
  .tz-two-col { grid-template-columns: 1fr 1fr; }
}

.tz-three-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .tz-three-col { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Section Spacing ---------- */
.section-py { padding: 6rem 0; }
.section-pb { padding-bottom: 6rem; }
.section-pt { padding-top: 6rem; }

/* ---------- Footer ---------- */
#tz-footer {
  background: var(--tz-bg);
  border-top: 1px solid var(--tz-border);
  padding: 4rem 0 2rem;
}
.tz-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .tz-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.tz-footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.tz-footer-brand p { color: var(--tz-muted); font-size: 0.875rem; line-height: 1.7; }
.tz-footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.tz-footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tz-muted);
  transition: color 0.2s;
}
.tz-footer-socials a:hover { color: var(--tz-primary); }
.tz-footer-col h4 {
  font-family: var(--tz-font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tz-muted);
  margin-bottom: 1.5rem;
}
.tz-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.tz-footer-col ul li a {
  font-size: 0.875rem;
  color: var(--tz-muted);
  transition: color 0.2s;
}
.tz-footer-col ul li a:hover { color: var(--tz-fg); }
.tz-footer-bottom {
  border-top: 1px solid var(--tz-border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .tz-footer-bottom { flex-direction: row; } }
.tz-footer-bottom p { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tz-muted); }
.tz-footer-bottom em { font-style: italic; font-family: var(--tz-font-serif); font-size: 0.875rem; color: var(--tz-muted); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }

@keyframes redPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237,28,36,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(237,28,36,0.4); }
}
.animate-red-pulse { animation: redPulse 3s ease-in-out infinite; }

/* ---------- WordPress Admin Bar Fix ---------- */
@media screen and (max-width: 782px) {
  .admin-bar #wpadminbar { position: fixed !important; }
  .admin-bar #tz-nav { top: 46px; }
}
@media screen and (min-width: 783px) {
  .admin-bar #tz-nav { top: 32px; }
}

/* ---------- Hero Logo: hidden on mobile, shown on md+ ---------- */
@media screen and (min-width: 768px) {
  .tz-hero-logo { display: block !important; }
}
/* ---------- Mobile Fixed Nav Safety ---------- */
#tz-nav {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}