/* ============================================================
   SHAYAN PS — style.css
   Dark cinematic aesthetic matching the Wix original
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --text: #e8e4dc;
  --text-muted: #888880;
  --accent: #c8b99a;
  --accent-light: #d4c9b4;
  --white: #f5f2ec;
  --border: rgba(200, 185, 154, 0.15);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Barlow', sans-serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  transition: background var(--transition), border-bottom var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-logo {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 156px;
}
.nav-logo img {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: invert(0) drop-shadow(0 0 0px transparent);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.nav-logo:hover img {
  filter: invert(1) drop-shadow(0 0 0.5px rgba(0,0,0,0.6)) drop-shadow(0 0 1px rgba(0,0,0,0.35));
  transform: scale(1.06);
}
.logo-text-fallback {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.nav-logo:hover .logo-text-fallback {
  filter: invert(1);
  transform: scale(1.06);
}
.nav-links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.nav-links ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 16px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 9px 22px;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  flex-direction: column;
  padding: 24px 40px;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 36px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #2d2d4a;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 14px 36px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 36px;
  max-width: 520px;
  text-transform: uppercase;
}
.hero-reel {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-reel video,
.hero-reel iframe {
  width: 100%; height: 100%;
  border: none;
}
.reel-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}
.play-icon {
  font-size: 2.4rem;
  color: var(--accent);
  opacity: 0.7;
}
.reel-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PORTFOLIO GRID (homepage)
   ============================================================ */
.portfolio-section {
  padding: 80px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.grid-intro {
  margin-bottom: 48px;
  text-align: center;
}
.grid-intro h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.grid-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
  cursor: pointer;
}
.grid-img-wrap {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.grid-img-wrap img {
  transition: transform 0.6s ease;
}
.grid-item:hover .grid-img-wrap img { transform: scale(1.05); }
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
  background: var(--bg-3);
}
.grid-img-wrap.no-img img { display: none; }
.grid-img-wrap:not(.no-img) .img-placeholder { display: none; }
.grid-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.grid-cta { text-align: center; margin-top: 20px; }

/* ============================================================
   ARCHITECTURE SECTION
   ============================================================ */
.architecture-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.arch-left {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.arch-img-wrap { width: 100%; height: 100%; }
.arch-img-wrap img { height: 100%; }
.arch-img-wrap.no-img img { display: none; }
.arch-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-3) 0%, #1a1a1a 100%);
}
.arch-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.arch-right h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.arch-right p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 420px;
}
.skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skills-list li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 16px;
  position: relative;
}
.skills-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.5;
}

/* ============================================================
   LET'S WORK
   ============================================================ */
.lets-work {
  text-align: center;
  padding: 120px 40px;
  background: #f0ede8;
}
.lets-work h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 24px;
}
.lets-work p {
  max-width: 520px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 100px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-section h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
  text-align: center;
}
.contact-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 48px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  color: #111;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 16px 18px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #333; }
.contact-form select { cursor: pointer; color: #999; }
.contact-form select option { background: #fff; color: #111; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #e8e4dc;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 64px 40px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  height: 58px;
  display: inline-flex;
  align-items: center;
}
.footer-logo img {
  width: auto;
  height: 58px;
  object-fit: contain;
}
.footer-location {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.06em;
}
.footer-location a { color: #666; transition: color var(--transition); }
.footer-location a:hover { color: #111; }
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-socials a {
  color: #666;
  transition: color var(--transition), transform var(--transition);
}
.footer-socials a:hover { color: #111; transform: translateY(-2px); }
.footer-copy { font-size: 0.72rem; color: #888; letter-spacing: 0.06em; }

/* ============================================================
   PAGE HEADER (Portfolio & About pages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-h) + 80px) 40px 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}
body.light-page .eyebrow { color: #888; }
.portfolio-intro {
  max-width: 780px;
  margin: 0 auto 48px;
  color: #555;
  font-size: 1rem;
  line-height: 1.95;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.category-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 8px 18px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.category-nav a:hover { border-color: #111; color: #111; }

/* ============================================================
   PORTFOLIO CATEGORIES
   ============================================================ */
.category-section {
  padding: 80px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.category-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 32px;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-item {
  cursor: pointer;
}
.work-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ccc;
  position: relative;
  margin-bottom: 10px;
  border-radius: 8px;
}
.work-thumb img { transition: transform 0.5s ease; }
.work-item:hover .work-thumb img { transform: scale(1.04); }
.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-item:hover .work-overlay { opacity: 1; }
.work-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.work-title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #444;
}
.empty-category {
  grid-column: 1/-1;
  border: 1px dashed rgba(0,0,0,0.15);
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   START A PROJECT
   ============================================================ */
.start-project {
  text-align: center;
  padding: 100px 40px;
  background: #e8e4dc;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.start-project h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}
.start-project p {
  max-width: 500px;
  margin: 0 auto 36px;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.9;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: #e0dbd3;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.05;
  margin-bottom: 28px;
}
.about-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 20px;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ccc;
}
.about-img-wrap.no-img img { display: none; }
.about-img-placeholder {
  position: absolute;
  inset: 0;
  z-index: -1 !important;
  background: linear-gradient(160deg, #ccc, #aaa);
}

.services-section {
  padding: 80px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.services-section h2 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 48px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: #e8e4dc;
  padding: 52px 40px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}
.service-card:hover { border-color: #333; background: #e0dbd3; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}
.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 28px;
}
.service-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: 0.2em; color: #111; }

/* ============================================================
   PAGE FADE IN (instant, no loader delay)
   ============================================================ */
body { opacity: 0; transition: opacity 0.25s ease; }
body.loaded { opacity: 1; }

/* ============================================================
   SMOOTH MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(240,237,232,0.98) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 40px;
  gap: 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s ease,
              opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  max-height: 320px;
  padding: 16px 40px 24px;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555 !important;
  transition: color 0.2s, padding-left 0.2s;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #111 !important; padding-left: 6px; }

/* Hamburger animation */
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


body.light-page {
  background: #f0ede8;
  color: #1a1a1a;
}

/* Light nav overrides */
.light-nav {
  background: #f0ede8 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.light-nav.scrolled {
  background: rgba(240, 237, 232, 0.97) !important;
  backdrop-filter: blur(8px);
}
.light-nav .nav-links a {
  color: #555;
}
.light-nav .nav-links a:hover,
.light-nav .nav-links a.active { color: #111; }
.light-nav .nav-links a::after { background: #111; }
.dark-cta {
  background: #1a1a2e !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 4px;
}
.dark-cta:hover { background: #2d2d4a !important; }
.light-nav .logo-text-fallback { color: #1a1a2e; }
.light-mobile {
  background: rgba(240,237,232,0.98) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.light-mobile a { color: #555 !important; }
.light-mobile a:hover { color: #111 !important; }
.hamburger span { background: #333; }

/* ============================================================
   HERO — WIX LAYOUT
   Centered text, then full-width media below
   ============================================================ */
.hero-wix {
  padding: calc(var(--nav-h) + 56px) 60px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-wix-text {
  text-align: center;
  margin-bottom: 40px;
}
.hero-wix-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}
.hero-wix-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 0.95;
}
.hero-wix-sub {
  font-size: 1rem;
  font-weight: 300;
  color: #666;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}
.hero-wix-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: #222;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.hero-wix-media img,
.hero-wix-media video,
.hero-wix-media iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

/* Vimeo wrapper */
.vimeo-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vimeo-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vimeo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Unmute button */
.unmute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.unmute-btn:hover { background: rgba(0,0,0,0.8); }
.hero-media-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #888;
  background: #1a1a1a;
}
.hero-media-placeholder .play-icon { font-size: 2.2rem; color: var(--accent); opacity: 0.7; }
.hero-media-placeholder p { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  max-width: 1100px;
  margin: 40px auto 40px;
  padding: 0 60px;
}
.stats-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #e8e4dc;
  padding: 18px 40px;
  border-radius: 10px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #1a1a2e;
  letter-spacing: 0.06em;
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .stats-strip { padding: 0 24px; margin: 32px auto; }
  .stats-strip-inner { padding: 16px 24px; }
  .stat-num { font-size: 1.5rem; }
}
@media (max-width: 560px) {
  .stats-strip { padding: 0 16px; }
  .stat-label { font-size: 0.55rem; letter-spacing: 0.1em; }
}

/* ============================================================
   WIX PORTFOLIO GRID
   3×2, full-width, label centered over image
   ============================================================ */
.wix-grid-section {
  padding: 0 0 0;
}
.wix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}
.wix-grid-item {
  position: relative;
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}
.wix-grid-img {
  position: absolute;
  inset: 0;
}
.wix-grid-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.wix-grid-item:hover .wix-grid-img img { transform: scale(1.06); }
.wix-img-placeholder {
  position: absolute;
  inset: 0;
  background: #2a2a2a;
}
.wix-grid-img:not(.no-img) .wix-img-placeholder { display: none; }
.wix-grid-img.no-img img { display: none; }
.wix-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  transition: background 0.3s ease;
}
.wix-grid-item:hover .wix-grid-overlay { background: rgba(0,0,0,0.18); }
.wix-grid-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.15;
  z-index: 2;
  padding: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.wix-grid-cta {
  text-align: center;
  padding: 48px 0 70px;
}
.btn-wix-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #555;
  color: #333;
  padding: 14px 40px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn-wix-outline:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ============================================================
   ARCHITECTURE — WIX LAYOUT
   Text left (large title + bordered skills), image right
   ============================================================ */
.arch-wix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #e8e4dc;
  max-width: 100%;
  padding: 0;
  min-height: 600px;
}
.arch-wix-left {
  padding: 100px 72px 100px 80px;
}
.arch-wix-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: #111;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.arch-wix-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 400px;
}
.arch-wix-skills {
  list-style: none;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.arch-wix-skills li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  letter-spacing: 0.02em;
}
.arch-wix-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.arch-wix-right img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.arch-wix-right.no-img img { display: none; }
.arch-wix-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}
.arch-wix-right:not(.no-img) .arch-wix-placeholder { display: none; }

/* Light page overrides for lets-work & contact */
body.light-page .lets-work {
  background: #f0ede8;
}
body.light-page .lets-work h2 { color: #111; }
body.light-page .lets-work p { color: #555; }
body.light-page .contact-section h2 { color: #111; }
body.light-page .contact-section { background: #f0ede8; }
body.light-page .contact-form input,
body.light-page .contact-form select,
body.light-page .contact-form textarea {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  color: #111;
}
body.light-page .contact-form input::placeholder,
body.light-page .contact-form textarea::placeholder { color: #999; }
body.light-page .contact-form input:focus,
body.light-page .contact-form select:focus,
body.light-page .contact-form textarea:focus { border-color: #333; }
body.light-page .contact-form select { color: #999; }
body.light-page .contact-form select option { color: #111; }
body.light-page .contact-sub { color: #666; }
body.light-page .footer {
  background: #e8e4dc;
  border-top: 1px solid rgba(0,0,0,0.1);
}
body.light-page .footer-location,
body.light-page .footer-copy { color: #666; }
body.light-page .footer-location a { color: #666; }
body.light-page .footer-location a:hover { color: #111; }
body.light-page .footer-socials a { color: #666; }
body.light-page .footer-socials a:hover { color: #111; }
body.light-page .btn-primary {
  background: #1a1a2e;
  color: #fff;
}
body.light-page .btn-primary:hover { background: #2d2d4a; }

/* ============================================================
   RESPONSIVE — WIX LAYOUT
   ============================================================ */
@media (max-width: 900px) {
  .hero-wix { padding: calc(var(--nav-h) + 40px) 24px 0; }
  .wix-grid { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .arch-wix { grid-template-columns: 1fr; }
  .arch-wix-right { min-height: 360px; }
  .arch-wix-left { padding: 52px 32px; }
}
@media (max-width: 560px) {
  .hero-wix { padding: calc(var(--nav-h) + 28px) 16px 0; }
  .wix-grid { padding: 0 16px; grid-template-columns: repeat(2, 1fr); }
  .arch-wix-left { padding: 40px 20px; }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--white); }
.modal-video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Vimeo thumbnails loaded via JS */
.vimeo-thumb {
  background: var(--bg-3);
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.vimeo-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-item:hover .vimeo-thumb img { transform: scale(1.05); }
.work-overlay.always-show {
  opacity: 0.6;
}
.work-item:hover .work-overlay.always-show { opacity: 1; }

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-headline { max-width: 100%; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .architecture-section { grid-template-columns: 1fr; }
  .arch-left { min-height: 300px; }
  .arch-right { padding: 48px 40px; }
  .about-hero { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero, .portfolio-section, .contact-section,
  .architecture-section, .lets-work,
  .about-hero, .services-section,
  .page-header, .category-section,
  .start-project { padding-left: 20px; padding-right: 20px; }
  .arch-right { padding: 40px 20px; }
  .footer { padding: 40px 20px 28px; }
}
