/*
Theme Name: FuZion Media
Theme URI: https://fuzionmedia.org
Author: Kode Pro
Description: Bold, cinematic theme for FuZion Media creative studio.
Version: 2.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: fuzion-media
*/

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  --purple: #9c6eff;
  --purple-glow: #b388ff;
  --purple-dim: rgba(156, 110, 255, 0.15);
  --black: #050505;
  --ink: #0c0c0c;
  --charcoal: #141414;
  --steel: #1e1e1e;
  --ash: #2a2a2a;
  --smoke: #666;
  --fog: #999;
  --cloud: #ccc;
  --white: #f0f0f0;
  --bright: #ffffff;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
  --font-script: Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-h: 80px;
  --nav-h-compact: 64px;
  --max-w: 1320px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET
   ========================================================================== */

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

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--black);
  color: var(--cloud);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection {
  background: var(--purple);
  color: var(--black);
}

/* ==========================================================================
   GRAIN OVERLAY — subtle film texture across everything
   ========================================================================== */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   FADE-IN ANIMATION
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.fz-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .fz-container { padding: 0 20px; }
}

.fz-section {
  padding: 100px 0;
  position: relative;
}

.fz-section--dark { background: var(--black); }

.fz-section--charcoal { background: var(--charcoal); }

.fz-section--leather {
  background: var(--charcoal);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.01) 2px,
      rgba(255,255,255,0.01) 4px
    );
}

/* Section divider line */
.fz-section--charcoal::before,
.fz-section--leather::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--purple);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  color: var(--bright);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: 0.05em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: 0.06em; margin-bottom: 0; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: 0.08em; }

p { font-family: var(--font-body); }

/* Section eyebrow — small uppercase label that sits above h2 */
.fz-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 18px;
  position: relative;
  padding-left: 44px;
}

.fz-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--purple);
  opacity: 0.6;
}

/* Section header pattern — eyebrow + h2 */
.fz-section-header {
  margin-bottom: 72px;
  text-align: center;
}

.fz-section-header .fz-eyebrow {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.fz-section-header .fz-eyebrow::before {
  position: static;
  width: 48px;
  height: 1px;
  transform: none;
}

.fz-section-header .fz-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--purple);
  opacity: 0.6;
}

/* Script accent quote */
.fz-quote {
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--purple);
  position: relative;
}

.fz-quote p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
  margin: 0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.fz-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(180deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.45) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: height 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.fz-nav__inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.fz-nav.is-scrolled {
  height: var(--nav-h-compact);
  background: rgba(5,5,5,0.94);
  border-bottom-color: rgba(255,255,255,0.08);
}

.fz-nav__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s var(--ease);
}

.fz-nav__logo span {
  color: var(--purple);
  position: relative;
  display: inline-block;
}

.fz-nav__logo span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--purple);
  opacity: 0.5;
}

.fz-nav__logo em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--fog);
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--ash);
  transition: color 0.3s var(--ease);
  text-transform: uppercase;
}

.fz-nav__logo:hover em {
  color: var(--purple);
}

.fz-nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fz-nav__links a {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--fog);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.fz-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--purple);
  transition: width 0.35s var(--ease-out);
}

.fz-nav__links a:hover {
  color: var(--bright);
}

.fz-nav__links a:hover::after,
.fz-nav__links a.is-active::after {
  width: 100%;
}

.fz-nav__links a.is-active {
  color: var(--bright);
}

.fz-nav__cta {
  background: var(--purple) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  border: 1px solid var(--purple);
  transition: all 0.3s var(--ease) !important;
}

.fz-nav__cta::after { display: none !important; }

.fz-nav__cta:hover {
  background: var(--purple-glow) !important;
  box-shadow: 0 0 24px var(--purple-dim);
  transform: translateY(-1px);
}

/* Mobile hamburger toggle */
.fz-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.fz-nav__toggle-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--bright);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.fz-nav__toggle-line:nth-child(1) { top: 14px; }
.fz-nav__toggle-line:nth-child(2) { top: 21px; }
.fz-nav__toggle-line:nth-child(3) { top: 28px; }

.fz-nav__toggle[aria-expanded="true"] .fz-nav__toggle-line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.fz-nav__toggle[aria-expanded="true"] .fz-nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.fz-nav__toggle[aria-expanded="true"] .fz-nav__toggle-line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.fz-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}

.fz-nav__mobile-menu.open { display: flex; }

.fz-nav__mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cloud);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.fz-nav__mobile-menu a:hover { color: var(--purple); }

.fz-nav__mobile-cta {
  margin-top: 16px;
  padding: 12px 32px;
  background: var(--purple);
  color: var(--black) !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
}

@media (max-width: 900px) {
  .fz-nav__inner { padding: 0 24px; }
  .fz-nav__links { display: none; }
  .fz-nav__toggle { display: block; }
  .fz-nav.is-scrolled { height: var(--nav-h-compact); }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.fz-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fz-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.15);
  transform: scale(1.03);
  animation: heroZoom 20s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.08); }
}

.fz-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.7) 85%, rgba(5,5,5,1) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,0.4) 100%);
}

.fz-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s var(--ease-out) both;
  animation-delay: 0.3s;
}

.fz-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeUp 1.2s var(--ease-out) both;
}

.fz-hero__title {
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.05em;
  line-height: 0.9;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.fz-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  color: var(--cloud);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 48px;
  animation: fadeUp 1.2s var(--ease-out) both;
  animation-delay: 0.6s;
}

.fz-hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bright);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 18px 48px;
  transition: all 0.4s var(--ease);
  animation: fadeUp 1.2s var(--ease-out) both;
  animation-delay: 0.9s;
  position: relative;
  overflow: hidden;
}

.fz-hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.fz-hero__cta:hover {
  border-color: var(--purple);
  color: var(--black);
  box-shadow: 0 0 30px var(--purple-dim);
}

.fz-hero__cta:hover::before {
  transform: scaleX(1);
}

/* Scroll indicator */
.fz-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1.2s var(--ease-out) both;
  animation-delay: 1.4s;
}

.fz-hero__scroll span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--fog);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.fz-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--fog) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.fz-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent 0%, var(--purple) 50%, transparent 100%);
  animation: scrollLine 2.4s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { top: -48px; }
  100% { top: 48px; }
}

/* ==========================================================================
   SERVICE CARDS (logo-based)
   ========================================================================== */

.fz-services-section {
  padding: 120px 0;
}

.fz-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
}

.fz-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 40px 56px;
  background: var(--charcoal);
  text-decoration: none;
  color: inherit;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}

.fz-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out);
}

.fz-service-card:hover {
  background: var(--steel);
}

.fz-service-card:hover::before {
  transform: scaleX(1);
}

.fz-service-card__logo {
  width: 180px;
  height: 180px;
  margin-bottom: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fz-service-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95);
  transition: all 0.5s var(--ease);
}

.fz-service-card:hover .fz-service-card__logo img {
  filter: brightness(1.1) drop-shadow(0 0 32px var(--purple-dim));
  transform: scale(1.04);
}

.fz-service-card__title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--bright);
}

.fz-service-card__text {
  color: var(--fog);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

.fz-service-card__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: auto;
  transition: letter-spacing 0.3s var(--ease), color 0.3s var(--ease);
}

.fz-service-card:hover .fz-service-card__link {
  color: var(--purple-glow);
  letter-spacing: 0.25em;
}

@media (max-width: 900px) {
  .fz-services { grid-template-columns: 1fr; }
  .fz-services-section { padding: 80px 0; }
  .fz-service-card__logo { width: 140px; height: 140px; margin-bottom: 24px; }
  .fz-service-card { padding: 48px 32px; }
}

/* ==========================================================================
   PROGRAMS — Adobe/Autodesk style badges
   ========================================================================== */

.fz-programs-section {
  padding: 120px 0;
}

.fz-programs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.fz-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  transition: transform 0.3s var(--ease);
}

.fz-program:hover {
  transform: translateY(-4px);
}

.fz-program__badge {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--bright);
  border: 2px solid;
  background: var(--ink);
  transition: all 0.3s var(--ease);
  position: relative;
}

.fz-program:hover .fz-program__badge {
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* Adobe product badge colors — matches their brand scheme */
.fz-program__badge--photoshop {
  color: #31a8ff;
  border-color: #31a8ff;
  background: #001e36;
}

.fz-program__badge--lightroom {
  color: #31a8ff;
  border-color: #31a8ff;
  background: #001e36;
}

.fz-program__badge--illustrator {
  color: #ff9a00;
  border-color: #ff9a00;
  background: #330000;
}

.fz-program__badge--indesign {
  color: #ff3366;
  border-color: #ff3366;
  background: #49021f;
}

.fz-program__badge--autocad {
  color: #e6b847;
  border-color: #e6b847;
  background: #1a1202;
  font-size: 1.25rem;
}

.fz-program__badge--revit {
  color: #4db4e8;
  border-color: #4db4e8;
  background: #041824;
}

.fz-program__name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.fz-program__note {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: -8px;
}

@media (max-width: 900px) {
  .fz-programs { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .fz-programs-section { padding: 80px 0; }
}

@media (max-width: 540px) {
  .fz-programs { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   ABOUT / MEET CHLOE
   ========================================================================== */

.fz-about-section {
  padding: 140px 0;
}

.fz-about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: center;
}

.fz-about__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
}

.fz-about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
  position: relative;
  z-index: 1;
}

.fz-about__image-accent {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--purple);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.fz-about__text h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.fz-about__text p {
  color: var(--cloud);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

.fz-about__text .fz-btn {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .fz-about { grid-template-columns: 1fr; gap: 48px; }
  .fz-about-section { padding: 80px 0; }
  .fz-about__image-wrap { max-width: 480px; margin: 0 auto; }
  .fz-about__image-accent { right: 0; bottom: 0; top: 16px; left: 16px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.fz-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 0 0 32px;
  position: relative;
}

/* Large CTA block at top of footer */
.fz-footer__hero {
  text-align: center;
  padding: 120px 24px 100px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.fz-footer__hero::before,
.fz-footer__hero::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
  opacity: 0.5;
}

.fz-footer__hero::before { left: 5%; }
.fz-footer__hero::after { right: 5%; }

.fz-footer__hero .fz-eyebrow {
  padding-left: 0;
  padding-right: 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.fz-footer__hero .fz-eyebrow::before {
  position: static;
  width: 48px;
}

.fz-footer__hero .fz-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--purple);
  opacity: 0.6;
}

.fz-footer__headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0 auto 40px;
  max-width: 900px;
  color: var(--bright);
}

/* Footer grid */
.fz-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}

.fz-footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 24px;
}

.fz-footer__logo span {
  color: var(--purple);
}

.fz-footer__logo em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--fog);
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--ash);
  text-transform: uppercase;
}

.fz-footer__brand p {
  color: var(--smoke);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 360px;
}

.fz-footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--purple);
  margin-bottom: 24px;
}

.fz-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fz-footer__col li {
  margin-bottom: 12px;
}

.fz-footer__col a {
  color: var(--smoke);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s var(--ease);
  display: inline-block;
  position: relative;
}

.fz-footer__col a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--purple);
  transition: width 0.3s var(--ease);
}

.fz-footer__col a:hover {
  color: var(--bright);
}

.fz-footer__col a:hover::before {
  width: 100%;
}

/* Instagram grid — one per sub-brand */
.fz-footer__social-row {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.fz-footer__social-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
}

.fz-footer__social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.fz-footer__ig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--charcoal);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.fz-footer__ig::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--purple);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.fz-footer__ig:hover {
  background: var(--steel);
}

.fz-footer__ig:hover::before {
  transform: scaleY(1);
}

.fz-footer__ig-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.fz-footer__ig-handle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cloud);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}

.fz-footer__ig:hover .fz-footer__ig-handle {
  color: var(--bright);
}

@media (max-width: 900px) {
  .fz-footer__social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .fz-footer__social-grid { grid-template-columns: 1fr; }
}

.fz-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.fz-footer__copyright {
  color: var(--smoke);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.fz-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fz-footer__social a {
  color: var(--fog);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.fz-footer__social a:hover {
  color: var(--purple);
}

.fz-footer__divider {
  color: var(--ash);
  font-size: 0.6rem;
}

@media (max-width: 900px) {
  .fz-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
  .fz-footer__hero { padding: 80px 24px 70px; }
}

@media (max-width: 540px) {
  .fz-footer__grid { grid-template-columns: 1fr; }
  .fz-footer__bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.fz-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  padding: 14px 36px;
}

.fz-btn--primary {
  background: var(--purple);
  color: var(--black);
}

.fz-btn--primary:hover {
  background: var(--purple-glow);
  box-shadow: 0 0 24px var(--purple-dim);
  transform: translateY(-2px);
  color: var(--black);
}

.fz-btn--outline {
  background: transparent;
  color: var(--bright);
  border: 1px solid rgba(255,255,255,0.2);
}

.fz-btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.fz-btn--ghost {
  background: transparent;
  color: var(--cloud);
  border: 1px solid var(--ash);
  padding: 10px 24px;
}

.fz-btn--ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ==========================================================================
   PHOTOGRAPHY LANDING — sub-brand logo grid
   ========================================================================== */

.fz-subbrand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
  max-width: 1100px;
  margin: 0 auto;
}

.fz-subbrand-grid .fz-subbrand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 40px 56px;
  background: var(--charcoal);
  text-decoration: none;
  color: inherit;
  transition: background 0.4s var(--ease);
  overflow: hidden;
  height: auto;
}

.fz-subbrand-grid .fz-subbrand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out);
}

.fz-subbrand-grid .fz-subbrand-card:hover {
  background: var(--steel);
}

.fz-subbrand-grid .fz-subbrand-card:hover::before {
  transform: scaleX(1);
}

.fz-subbrand-card__logo {
  width: 200px;
  height: 200px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fz-subbrand-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95);
  transition: all 0.5s var(--ease);
}

.fz-subbrand-grid .fz-subbrand-card:hover .fz-subbrand-card__logo img {
  filter: brightness(1.1) drop-shadow(0 0 32px var(--purple-dim));
  transform: scale(1.04);
}

.fz-subbrand-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fz-subbrand-grid .fz-subbrand-card__title {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--bright);
  line-height: 1.1;
  position: static;
}

.fz-subbrand-grid .fz-subbrand-card__subtitle {
  color: var(--fog);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fz-subbrand-card__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: letter-spacing 0.3s var(--ease), color 0.3s var(--ease);
}

.fz-subbrand-grid .fz-subbrand-card:hover .fz-subbrand-card__link {
  color: var(--purple-glow);
  letter-spacing: 0.25em;
}

@media (max-width: 900px) {
  .fz-subbrand-grid { grid-template-columns: 1fr; }
  .fz-subbrand-card__logo { width: 160px; height: 160px; }
}

/* ==========================================================================
   SUB-BRAND CARDS (Photography Landing — legacy, used by dashboards)
   ========================================================================== */

.fz-subbrand-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.fz-subbrand-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.fz-subbrand-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.7);
  transition: all 0.7s var(--ease);
}

.fz-subbrand-card:hover .fz-subbrand-card__bg {
  filter: brightness(0.6) saturate(1);
  transform: scale(1.04);
}

.fz-subbrand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.1) 60%);
}

.fz-subbrand-card__content {
  position: relative;
  z-index: 1;
  padding: 36px;
}

.fz-subbrand-card__title {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.fz-subbrand-card__subtitle {
  color: var(--fog);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .fz-subbrand-cards { grid-template-columns: 1fr; }
  .fz-subbrand-card { height: 360px; }
}

/* ==========================================================================
   SLIDESHOW (Sub-brand hero)
   ========================================================================== */

.fz-slideshow {
  position: relative;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}

.fz-slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(0.4) contrast(1.1);
}

.fz-slideshow__slide.active { opacity: 1; }

.fz-slideshow__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.8) 90%, rgba(5,5,5,1) 100%);
  z-index: 1;
}

.fz-slideshow__content {
  position: absolute;
  bottom: 72px;
  left: 56px;
  z-index: 2;
}

.fz-slideshow__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.06em;
}

.fz-slideshow__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--fog);
  margin-top: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ==========================================================================
   EVENT CARDS
   ========================================================================== */

.fz-event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 3px;
}

.fz-event-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.fz-event-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.7);
  transition: all 0.5s var(--ease);
}

.fz-event-card:hover .fz-event-card__bg {
  filter: brightness(0.55) saturate(1);
  transform: scale(1.04);
}

.fz-event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,0.85) 0%, transparent 50%);
}

.fz-event-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.fz-event-card__title {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.fz-event-card__meta {
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Filter chips */
.fz-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.fz-filter-chip {
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  background: transparent;
  border: 1px solid var(--ash);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.fz-filter-chip:hover,
.fz-filter-chip.active {
  color: var(--black);
  background: var(--purple);
  border-color: var(--purple);
}

/* ==========================================================================
   SERVICE / INNER PAGES
   ========================================================================== */

.fz-page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.fz-page-hero__title {
  margin-bottom: 12px;
}

.fz-page-hero__subtitle {
  color: var(--smoke);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  max-width: 500px;
  margin: 0 auto;
}

.fz-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.fz-service-item {
  background: var(--steel);
  padding: 40px;
  transition: background 0.3s var(--ease);
  position: relative;
}

.fz-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.4s var(--ease-out);
}

.fz-service-item:hover::before {
  width: 100%;
}

.fz-service-item:hover {
  background: var(--ash);
}

.fz-service-item__title {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.fz-service-item__text,
.fz-service-item__desc {
  color: var(--smoke);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .fz-service-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.fz-form {
  max-width: 580px;
  margin: 0 auto;
}

.fz-form__group {
  margin-bottom: 24px;
}

.fz-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--fog);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.fz-form__input,
.fz-form__textarea,
.fz-form__select {
  width: 100%;
  padding: 14px 16px;
  background: var(--steel);
  border: 1px solid var(--ash);
  color: var(--cloud);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
}

.fz-form__input:focus,
.fz-form__textarea:focus,
.fz-form__select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}

.fz-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.fz-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ==========================================================================
   SUB-BRAND THEME OVERRIDES
   ========================================================================== */

/* Western — warm earth tones */
.theme-western { --accent: #c8956c; --accent-hover: #dbb08f; }

.theme-western .fz-slideshow__overlay {
  background: linear-gradient(180deg, rgba(30,18,8,0.3) 0%, rgba(20,12,5,0.1) 40%, rgba(15,10,5,0.85) 90%, var(--black) 100%);
}

.theme-western .fz-filter-chip:hover,
.theme-western .fz-filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Moto — vivid, punchy, grunge */
.theme-moto { --accent: #ff6b35; --accent-hover: #ff8c5e; }

.theme-moto .fz-slideshow__overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(5,5,5,0.15) 40%, rgba(5,5,5,0.85) 90%, var(--black) 100%);
}

.theme-moto .fz-filter-chip:hover,
.theme-moto .fz-filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Lifestyle — warm neutrals, kept dark for readability over real photos */
.theme-lifestyle {
  --accent: #c2a88e;
  --accent-hover: #d4bfa8;
}

.theme-lifestyle .fz-slideshow__overlay {
  background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.15) 40%, rgba(5,5,5,0.85) 90%, var(--black) 100%);
}

.theme-lifestyle .fz-filter-chip:hover,
.theme-lifestyle .fz-filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* Dark Wing — tactical, high contrast */
.theme-darkwing { --accent: #6b8f3c; --accent-hover: #8ab350; }

.theme-darkwing .fz-slideshow__overlay {
  background: linear-gradient(180deg, rgba(3,3,3,0.2) 0%, rgba(3,3,3,0.1) 40%, rgba(3,3,3,0.9) 90%, var(--black) 100%);
}

.theme-darkwing .fz-filter-chip:hover,
.theme-darkwing .fz-filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   IMMERSIVE MODE (sub-brand pages)
   ========================================================================== */

/* Hide the global nav + footer on immersive pages */
body.fz-immersive .fz-nav,
body.fz-immersive .fz-nav__mobile-menu,
body.fz-immersive .fz-footer {
  display: none !important;
}

/* Also hide the nav template part container when WP wraps it */
body.fz-immersive header.wp-block-template-part,
body.fz-immersive footer.wp-block-template-part {
  display: none !important;
}

/* Floating "Photography" back button — top-left corner */
.fz-immersive-back {
  position: fixed;
  top: 32px;
  left: 32px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--cloud);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: all 0.3s var(--ease);
}

.fz-immersive-back:hover {
  color: var(--bright);
  border-color: var(--purple);
  background: rgba(5, 5, 5, 0.75);
}

.fz-immersive-back__arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.fz-immersive-back:hover .fz-immersive-back__arrow {
  transform: translateX(-3px);
}

/* Floating FuZion logo — top-right corner */
.fz-immersive-home {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 100;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bright);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease);
}

.fz-immersive-home:hover {
  border-color: var(--purple);
  background: rgba(5, 5, 5, 0.75);
}

.fz-immersive-home span {
  color: var(--purple);
}

.fz-immersive-home em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: var(--fog);
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--ash);
  text-transform: uppercase;
}

/* Minimal footer — just © + Contact/Home links */
.fz-immersive-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px 0;
}

.fz-immersive-footer .fz-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.fz-immersive-footer__copyright {
  color: var(--smoke);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.fz-immersive-footer__links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.fz-immersive-footer__links a {
  color: var(--fog);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.fz-immersive-footer__links a:hover {
  color: var(--purple);
}

.fz-immersive-footer__links span {
  color: var(--ash);
  font-size: 0.6rem;
}

@media (max-width: 900px) {
  .fz-immersive-back,
  .fz-immersive-home {
    top: 20px;
  }
  .fz-immersive-back { left: 20px; padding: 10px 14px; font-size: 0.65rem; }
  .fz-immersive-home {
    right: 20px;
    padding: 10px 14px;
    font-size: 1.05rem;
  }
  .fz-immersive-home em { display: none; }
}

@media (max-width: 540px) {
  .fz-immersive-back__label { display: none; }
  .fz-immersive-back { padding: 10px 12px; }
}

/* Ensure the slideshow title always reads well over any photo */
.fz-slideshow__title {
  color: var(--bright);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
}

.fz-slideshow__tagline {
  color: var(--cloud);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   WP OVERRIDES — strip default WP block styling
   ========================================================================== */

.wp-site-blocks { padding: 0 !important; }
.wp-block-template-part { margin: 0; }
body .is-layout-constrained > * { max-width: none; margin: 0; }

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */

.fz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.fz-price-card {
  background: var(--steel);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.fz-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.fz-price-card:hover {
  background: var(--ash);
  transform: translateY(-4px);
}

.fz-price-card:hover::before {
  transform: scaleX(1);
}

.fz-price-card__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fog);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.fz-price-card__amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--bright);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.fz-price-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ash);
  padding-top: 20px;
}

.fz-price-card__details li {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.8;
}

.fz-price-card:hover .fz-price-card__details {
  border-top-color: rgba(156, 110, 255, 0.3);
}

@media (max-width: 1100px) {
  .fz-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .fz-pricing-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT PAGE LAYOUT
   ========================================================================== */

.fz-contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.fz-contact__info h3 {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ash);
}

.fz-contact__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.fz-contact__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.fz-contact__item a,
.fz-contact__item > span:last-child {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--cloud);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.fz-contact__item a:hover {
  color: var(--purple);
}

.fz-contact__form .fz-form {
  max-width: none;
  margin: 0;
}

@media (max-width: 900px) {
  .fz-contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ==========================================================================
   MASONRY GALLERY
   ========================================================================== */

.fz-masonry {
  column-count: 4;
  column-gap: 4px;
}

@media (max-width: 1200px) {
  .fz-masonry { column-count: 3; }
}

@media (max-width: 900px) {
  .fz-masonry { column-count: 2; }
}

@media (max-width: 600px) {
  .fz-masonry { column-count: 1; }
}

.fz-masonry__item {
  display: block;
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.fz-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.95);
}

.fz-masonry__item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.fz-masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(156,110,255,0) 0%, rgba(156,110,255,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.fz-masonry__item:hover::after {
  opacity: 1;
}

/* ==========================================================================
   CLIENT PORTAL
   ========================================================================== */

.fz-portal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}

.fz-portal-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.fz-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ash);
  gap: 32px;
  flex-wrap: wrap;
}

/* Empty state */
.fz-portal-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.fz-portal-empty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--purple);
}

.fz-portal-empty__icon {
  font-size: 2.5rem;
  color: var(--purple);
  margin-bottom: 24px;
  opacity: 0.5;
}

.fz-portal-empty__title {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.fz-portal-empty__text {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* Auth cards (login / setup) */
.fz-auth-card {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: 4px;
  padding: 56px 40px 40px;
  position: relative;
  overflow: hidden;
}

.fz-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
}

.fz-auth-title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 32px;
}

.fz-auth-welcome {
  color: var(--fog);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.fz-auth-error {
  background: rgba(214, 54, 56, 0.1);
  border-left: 2px solid #d63638;
  color: #ff8b8c;
  font-size: 0.85rem;
  padding: 12px 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.fz-auth-error a {
  color: var(--purple);
}

.fz-auth-footer {
  text-align: center;
  color: var(--smoke);
  font-size: 0.82rem;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ash);
}

.fz-auth-footer a {
  color: var(--purple);
  font-weight: 500;
}

.fz-auth-footer a:hover {
  color: var(--purple-glow);
}

/* Disabled input style */
.fz-form__input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==========================================================================
   PORTAL: Section headers
   ========================================================================== */

.fz-portal-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--bright);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ash);
  position: relative;
}

.fz-portal-section-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--purple);
}

.fz-portal-section-title--with-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.fz-portal-section-title--with-action .fz-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 10px 20px;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   PORTAL: Project cards grid
   ========================================================================== */

.fz-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 3px;
}

.fz-project-card {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease);
}

.fz-project-card:hover {
  transform: translateY(-2px);
}

.fz-project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.85);
  transition: all 0.5s var(--ease);
}

.fz-project-card:hover .fz-project-card__bg {
  transform: scale(1.04);
  filter: brightness(0.75) saturate(1);
}

.fz-project-card__bg--empty {
  background: linear-gradient(135deg, var(--steel) 0%, var(--charcoal) 100%);
}

.fz-project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 45%, rgba(5,5,5,0.1) 100%);
}

.fz-project-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
}

.fz-project-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(156, 110, 255, 0.15);
  border: 1px solid rgba(156, 110, 255, 0.4);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.fz-project-card__title {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--bright);
}

.fz-project-card__meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--fog);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   PORTAL: Deliverables grid
   ========================================================================== */

.fz-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}

.fz-deliverable {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.fz-deliverable:hover {
  border-color: var(--purple);
}

.fz-deliverable__preview {
  position: relative;
  background: var(--black);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fz-deliverable__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.fz-deliverable:hover .fz-deliverable__preview img {
  transform: scale(1.03);
}

.fz-deliverable__icon {
  font-size: 2.8rem;
  color: var(--purple);
  opacity: 0.6;
}

.fz-deliverable__type {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--smoke);
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
}

.fz-deliverable__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.fz-deliverable__title {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--bright);
  line-height: 1.2;
  word-break: break-word;
}

.fz-deliverable__meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fz-deliverable__actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.fz-deliverable__status {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 2px;
}

.fz-deliverable__status--pending {
  color: var(--fog);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ash);
}

.fz-deliverable__status--approved {
  color: #6b8f3c;
  background: rgba(107, 143, 60, 0.1);
  border: 1px solid rgba(107, 143, 60, 0.4);
}

.fz-deliverable__status--revision_requested {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
}

/* Deliverable cards are now links */
.fz-deliverable {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.fz-deliverable__action-hint {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  transition: color 0.3s var(--ease);
}

.fz-deliverable:hover .fz-deliverable__action-hint {
  color: var(--purple-glow);
}

/* ==========================================================================
   DELIVERABLE DETAIL PAGE
   ========================================================================== */

.fz-deliverable-preview {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 75vh;
  min-height: 400px;
}

.fz-deliverable-preview img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

.fz-deliverable-preview__placeholder {
  text-align: center;
  padding: 80px;
}

.fz-deliverable-preview__icon {
  font-size: 5rem;
  color: var(--purple);
  opacity: 0.5;
  margin-bottom: 16px;
}

.fz-deliverable-preview__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--fog);
  text-transform: uppercase;
}

.fz-deliverable-detail-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--ash);
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.fz-deliverable-detail-bar__meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fz-deliverable-detail-bar__info {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Revision note block */
.fz-revision-note {
  background: rgba(255, 107, 53, 0.07);
  border-left: 3px solid #ff6b35;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.fz-revision-note__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ff9b6a;
  margin-bottom: 8px;
}

.fz-revision-note__body {
  color: var(--cloud);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Action row (approve + request revision) */
.fz-action-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.fz-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Revision form (hidden by default) */
.fz-revision-form {
  display: none;
  background: var(--steel);
  border: 1px solid var(--ash);
  padding: 28px 32px;
  margin-top: 16px;
  max-width: 720px;
}

.fz-revision-form.is-open {
  display: block;
}

.fz-revision-form textarea {
  min-height: 140px;
}

/* Comments */
.fz-comments {
  margin-bottom: 40px;
  max-width: 800px;
}

.fz-comment {
  background: var(--charcoal);
  border: 1px solid var(--ash);
  padding: 20px 24px;
  margin-bottom: 16px;
  position: relative;
}

.fz-comment--admin {
  border-left: 3px solid var(--purple);
}

.fz-comment__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fz-comment__author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bright);
}

.fz-comment__badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
  background: rgba(156, 110, 255, 0.12);
  border: 1px solid rgba(156, 110, 255, 0.4);
  padding: 2px 8px;
}

.fz-comment__date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.05em;
  margin-left: auto;
}

.fz-comment__body {
  color: var(--cloud);
  font-size: 0.92rem;
  line-height: 1.65;
  white-space: pre-wrap;
}

.fz-comment__body p {
  margin: 0;
}

.fz-comment-form {
  max-width: 800px;
}

.fz-comment-form textarea {
  min-height: 120px;
}

/* ==========================================================================
   CLIENT UPLOAD DROPZONE
   ========================================================================== */

.fz-upload-form {
  max-width: 720px;
}

.fz-upload-dropzone {
  position: relative;
  border: 2px dashed var(--ash);
  background: var(--charcoal);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.fz-upload-dropzone:hover,
.fz-upload-dropzone.is-drag {
  border-color: var(--purple);
  background: var(--steel);
}

.fz-upload-dropzone.has-file {
  border-color: #9cc577;
  border-style: solid;
}

.fz-upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.fz-upload-dropzone__icon {
  font-size: 2.6rem;
  color: var(--purple);
  opacity: 0.6;
  margin-bottom: 16px;
}

.fz-upload-dropzone__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--bright);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fz-upload-dropzone__hint {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--smoke);
  letter-spacing: 0.08em;
}

.fz-upload-dropzone__filename {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #9cc577;
  margin-top: 16px;
  font-weight: 500;
}
