/* =============================================
   UNRVLD MEDIA — Global Stylesheet
   Dark / Cinematic / Bold
   ============================================= */

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

:root {
  --black:       #080808;
  --off-black:   #0f0f0f;
  --surface:     #161616;
  --surface-2:   #1c1c1c;
  --red:         #c8392b;
  --red-light:   #e04535;
  --red-dim:     rgba(200,57,43,0.15);
  --white:       #f0ede8;
  --white-dim:   rgba(240,237,232,0.6);
  --white-muted: rgba(240,237,232,0.3);
  --border:      rgba(240,237,232,0.08);
  --border-mid:  rgba(240,237,232,0.14);
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }

.section-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-dim);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  border: 1px solid var(--border-mid);
  padding: 0.9rem 1.5rem;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white-dim); }

/* ─── NAVBAR ──────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
#navbar.scrolled { padding: 0.75rem 3rem; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo span { color: var(--red); }
.nav-logo-img {
  height: 1.6rem;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-light); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}

/* ─── MOBILE MENU ─────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--off-black);
  flex-direction: column; justify-content: center; align-items: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--red); }
.mobile-cta {
  display: inline-block;
  margin-top: 1rem !important;
  background: var(--red);
  padding: 0.8rem 2.5rem !important;
  font-family: var(--font-cond) !important;
  font-size: 1rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 0 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.7) 100%
  );
}
/* Red bottom edge line */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red); z-index: 3;
}

.hero-ticker {
  position: absolute; top: 90px; left: 0; right: 0;
  z-index: 2; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  background: rgba(200,57,43,0.06);
}
.ticker-track {
  display: flex; gap: 3rem;
  animation: ticker 25s linear infinite;
  width: max-content;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  text-transform: uppercase;
}
.ticker-track .dot { color: var(--red); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-content {
  position: relative; z-index: 2;
  padding-bottom: 4rem;
  max-width: 820px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--red); font-style: normal; }

.hero-sub {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.stat {
  padding: 1.8rem 2.2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.3rem;
}

/* ─── SERVICES ────────────────────────────── */
.services {
  padding: 6rem 0;
  background: var(--off-black);
}

.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
  margin-bottom: 4rem;
}
.services-header-right p {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 400px;
}

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

.service-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.service-card.dark { background: var(--off-black); }
.service-card.mid { background: var(--surface); }
.service-card.accent { background: var(--red); }

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.service-card.accent::before { background: var(--white); }
.service-card:hover::before { width: 100%; }

.service-icon {
  margin-bottom: 1.25rem;
  color: var(--red);
}
.service-card.accent .service-icon { color: var(--white); }

.service-card h3 {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
}
.service-card.accent p { color: rgba(255,255,255,0.8); }

/* ─── WORKS ───────────────────────────────── */
.works {
  padding: 6rem 0;
  background: var(--black);
}

.works-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 1.5rem;
}

.works-filters {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border-mid);
  background: none;
  color: var(--white-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

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

.work-item {
  display: block;
  background: var(--off-black);
  overflow: hidden;
  cursor: pointer;
}
.work-item.hidden { display: none; }

.work-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  transition: filter 0.4s, transform 0.5s;
}
.work-item:hover .work-thumb img {
  filter: saturate(1);
  transform: scale(1.04);
}

.work-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-play {
  font-size: 2.5rem;
  color: var(--white);
  transform: scale(0.8);
  transition: transform 0.3s;
}
.work-item:hover .work-play { transform: scale(1); }

.work-cat {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.65rem;
}

.work-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.work-client {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.work-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

.work-cta-card {
  display: flex !important;
  align-items: center; justify-content: center;
  background: var(--surface-2);
  min-height: 200px;
  transition: background 0.25s;
}
.work-cta-card:hover { background: var(--red); }
.work-cta-inner { text-align: center; }
.work-cta-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.work-cta-arrow {
  font-size: 1.5rem;
  color: var(--white-dim);
  transition: color 0.2s, transform 0.2s;
}
.work-cta-card:hover .work-cta-arrow { color: var(--white); transform: translateX(6px); }

/* ─── TRUST ───────────────────────────────── */
.trust {
  padding: 6rem 0 0;
  background: var(--off-black);
}

.trust-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.trust-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  margin-bottom: 4rem;
}
.trust-card {
  background: var(--surface);
  padding: 2.5rem;
}
.trust-card p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.trust-author {
  display: flex; align-items: center; gap: 1rem;
}
.trust-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  flex-shrink: 0;
}
.trust-name {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.trust-role {
  font-size: 0.78rem;
  color: var(--white-muted);
  margin-top: 0.2rem;
}

/* Logo Strip */
.logo-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--black);
}
.logo-track {
  display: flex; gap: 3rem; align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--white-muted);
}
.logo-sep { color: var(--red); font-size: 0.5rem; }

/* ─── CTA SECTION ─────────────────────────── */
.cta-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.cta-left {
  padding: 5rem 3rem 5rem 3rem;
  border-right: 1px solid var(--border);
}
.cta-left h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.25rem;
  color: var(--white);
}
.cta-left h2 + p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 2rem;
}

.cta-contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-info-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--white-dim);
}
.cta-info-item svg { color: var(--red); flex-shrink: 0; }

.cta-right {
  padding: 5rem 3rem;
  background: var(--off-black);
}

/* ─── CONTACT FORM ────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--white-muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form select { color: var(--white-muted); cursor: pointer; }
.contact-form select option { background: var(--surface); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; padding: 4rem 3rem;
  max-width: 1280px; margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-logo span { color: var(--red); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-socials a:hover { border-color: var(--red); color: var(--white); background: var(--red-dim); }

.footer-nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-nav-title {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-col a {
  font-size: 0.82rem;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.25rem 3rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 0.75rem;
  color: var(--white-muted);
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
}

/* ─── PORTFOLIO PAGE ──────────────────────── */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
}
.page-hero-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.page-hero p {
  color: var(--white-dim);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.75;
}

/* Portfolio Grid Page */
.portfolio-section { padding: 5rem 3rem; }
.portfolio-section .works-grid { background: none; gap: 2px; }

/* ─── ABOUT PAGE ──────────────────────────── */
.about-manifesto {
  padding: 6rem 3rem;
  background: var(--off-black);
}
.manifesto-inner {
  max-width: 900px; margin: 0 auto;
}
.manifesto-inner .section-tag { margin-bottom: 2rem; }
.manifesto-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 3rem;
}
.manifesto-big em { color: var(--red); font-style: normal; }
.manifesto-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.manifesto-body p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.85;
}

.about-values {
  padding: 6rem 3rem;
  background: var(--black);
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  margin-top: 3rem;
}
.value-card {
  background: var(--off-black);
  padding: 2.5rem 2rem;
}
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.value-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.value-desc {
  font-size: 0.83rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ─── CONTACT PAGE ────────────────────────── */
.contact-page {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
}
.contact-page-left {
  background: var(--off-black);
  padding: 5rem 3rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-page-right {
  background: var(--black);
  padding: 5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* ─── ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { position: relative; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  #navbar { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 0 1.5rem; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-stats { flex-direction: row; flex-wrap: wrap; border: none; }
  .stat { flex: 1 1 45%; border: 1px solid var(--border); }

  .services-header { grid-template-columns: 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .cta-right { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 0.5rem; }
  .manifesto-body { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page { grid-template-columns: 1fr; }
  .contact-page-left { border-right: none; border-bottom: 1px solid var(--border); }
  .portfolio-section { padding: 3rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .about-manifesto, .about-values { padding: 4rem 1.5rem; }
  .works-header { flex-direction: column; align-items: flex-start; }
}

/* ─── VIDEO MODAL ─────────────────────────── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  z-index: 1;
}
.video-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-modal-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
/* Instagram embed variant */
.video-modal-content.instagram {
  max-width: 560px;
}
/* YouTube Shorts (vertical 9:16) variant */
.video-modal-content.shorts {
  max-width: 380px;
}
.video-modal-content.shorts .video-modal-iframe-wrap {
  padding-bottom: 177.78%;
}
.video-modal-ig-wrap {
  display: none;
  justify-content: center;
  align-items: flex-start;
  background: #000;
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 85vh;
}

/* ─── FORMSPREE STATES ────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fs-field-error {
  display: block;
  color: #e05252;
  font-size: 0.72rem;
  min-height: 1rem;
  margin-top: 0.2rem;
}
.fs-form-error:not(:empty) {
  color: #e05252;
  font-size: 0.78rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(224, 82, 82, 0.4);
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.fs-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.fs-success-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.fs-success p {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.8;
}
