/* ============================================================
   SANIA — Cracker & Rush Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Cormorant+Garamond:ital,wght@1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- Tokens ---- */
:root {
  --black:   #080808;
  --white:   #ffffff;
  --cream:   #f2f1ef;
  --muted:   #888888;
  --muted-dark: #444444;
  --brand-navy: #0a1128;
  --brand-cyan: #00f2ff;
  --brand-pink: #ff00f2;
  --brand-grad: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-pink) 100%);
  --border:  rgba(255,255,255,0.1);
  --border-light: rgba(0,0,0,0.1);
  --font-head: 'Barlow', sans-serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body:  'DM Sans', sans-serif;
  --nav-h: 70px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; border: none; outline: none; background: none; color: inherit; }

/* ---- Plus-grid texture ---- */
.light-section {
  background-color: var(--cream);
  color: var(--brand-navy);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232d365f' fill-opacity='0.03'%3E%3Crect x='19' y='0' width='2' height='40'/%3E%3Crect x='0' y='19' width='40' height='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Container ---- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}
.hero-creative {
  position: relative;
  z-index: 10;
}
.hero-image-wrapper {
  position: relative;
  width: 100%; max-width: 100%; 
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  height: 60vh;
}
.hero-main-img {
  width: 100%; height: auto;
  display: block;
  transform: scale(1.05);
  animation: slowPan 20s infinite alternate ease-in-out;
}
@keyframes slowPan {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.1) translate(-2%, -2%); }
}
.glow-element {
  position: absolute; top: -20%; right: -20%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.2) 0%, transparent 70%);
  filter: blur(60px); z-index: -1;
}

.nav.scrolled { background: var(--black); backdrop-filter: blur(16px); }

.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img { 
  height: 64px; width: auto; 
  transition: transform 0.3s var(--ease);
}
.nav-logo img:hover { transform: scale(1.05); }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-cta {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  padding: 10px 24px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s, border-color 0.3s;
}
.nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.hamburger {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 28px; height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: var(--black);
  display: flex; align-items: center;
  padding: var(--nav-h) 48px 48px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-overlay-inner { width: 100%; display: flex; flex-direction: column; justify-content: space-between; height: 100%; }

.menu-nav { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; }

.menu-link {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -1px;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  transition: color 0.3s var(--ease);
  display: block;
}
.menu-link:hover { color: var(--white); }

.menu-footer { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 40px; border-top: 1px solid var(--border); }
.menu-socials { display: flex; gap: 32px; }
.menu-socials a { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.menu-socials a:hover { color: var(--white); }
.menu-tagline { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 60px) 48px 0;
  background: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Crect x='29' y='0' width='2' height='60'/%3E%3Crect x='0' y='29' width='60' height='2'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner { max-width: 1100px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 1px;
  color: var(--muted); margin-bottom: 40px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -3px;
  margin-bottom: 36px;
}
.hero-accent {
  font-family: var(--font-script);
  font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: -1px;
  font-size: clamp(54px, 8.5vw, 122px);
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0.1em 0;
  line-height: 1.2;
}

.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  max-width: 560px; margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; align-items: center; margin-bottom: 80px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; padding: 14px 32px; border-radius: 100px;
  cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-primary { 
  background: var(--brand-grad); 
  color: var(--white); 
  border: none;
  font-weight: 700;
}
.btn-primary:hover { 
  opacity: 0.9; 
  transform: translateY(-2px); 
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}
.btn-ghost { border: 1px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.hero-industries {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  padding: 24px 0; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.sep { opacity: 0.4; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden; padding: 20px 0;
  background: var(--cream); color: var(--black);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.m-item {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; padding: 12px 32px;
  white-space: nowrap; color: var(--black);
}
.m-sep {
  font-family: var(--font-head); font-size: 13px; font-weight: 900;
  padding: 12px 0; color: rgba(0,0,0,0.25); line-height: 1.5;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section { padding: 80px 0; background: var(--black); }
.stats-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-head); font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; letter-spacing: -2px; line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 100px 0; }
.services-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.eyebrow {
  display: block; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brand-cyan); margin-bottom: 24px;
}
.eyebrow-light { color: var(--brand-cyan); opacity: 0.8; }

.block-heading {
  font-family: var(--font-head); font-size: clamp(48px, 6vw, 88px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -2px;
  line-height: 0.9; margin-bottom: 32px;
}
.light-section .block-heading { color: var(--black); }

.services-intro { font-size: 16px; line-height: 1.7; color: var(--muted-dark); margin-bottom: 40px; max-width: 360px; }

/* Services accordion items */
.services-right { display: flex; flex-direction: column; }
.svc-item { border-top: 1px solid var(--border-light); }
.svc-item:last-child { border-bottom: 1px solid var(--border-light); }

.svc-header {
  width: 100%; display: flex; align-items: center; gap: 20px;
  padding: 24px 0; cursor: pointer;
  background: none; border: none; text-align: left;
  font-family: inherit; color: var(--black);
  transition: opacity 0.2s;
}
.svc-header:hover { opacity: 0.7; }

.svc-num { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--muted-dark); letter-spacing: 1px; min-width: 28px; }
.svc-name { font-family: var(--font-head); font-size: clamp(18px, 2vw, 24px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.5px; flex: 1; }
.svc-icon { font-size: 22px; font-weight: 300; color: var(--muted-dark); transition: transform 0.4s var(--ease); }
.svc-item.open .svc-icon { transform: rotate(45deg); }

.svc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s;
}
.svc-item.open .svc-body { max-height: 200px; padding-bottom: 24px; }
.svc-body p { font-size: 15px; line-height: 1.75; color: var(--muted-dark); max-width: 520px; }

/* ============================================================
   WORK
   ============================================================ */
.work-section { padding: 100px 0; background: var(--black); }
.work-header { margin-bottom: 60px; display: flex; justify-content: space-between; align-items: flex-end; }
.work-sub { font-size: 16px; color: var(--muted); max-width: 380px; line-height: 1.7; }

.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2px; }

.work-card { display: flex; flex-direction: column; }
.work-card-img {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card-img { transform: scale(1.03); }
.work-card-cat {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  padding: 6px 14px; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  border-radius: 100px;
}
.work-card-body { padding: 28px 0; border-bottom: 1px solid var(--border); }
.work-card-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.work-card-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.work-metrics { display: flex; gap: 16px; flex-wrap: wrap; }
.work-metrics span { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 100px 0; }
.process-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.process-left p { font-size: 16px; color: var(--muted-dark); line-height: 1.7; max-width: 300px; }

.process-right { display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 32px; padding: 36px 0;
  border-top: 1px solid var(--border-light);
}
.process-step:last-child { border-bottom: 1px solid var(--border-light); }

.proc-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--muted-dark); letter-spacing: 1px; min-width: 32px; padding-top: 4px;
}
.proc-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 12px; color: var(--black); }
.proc-body p { font-size: 14px; color: var(--muted-dark); line-height: 1.75; margin-bottom: 16px; }
.proc-body ul { display: flex; gap: 10px; flex-wrap: wrap; }
.proc-body ul li {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--border-light); border-radius: 100px;
  color: var(--muted-dark);
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section { padding: 120px 0; background: var(--black); text-align: center; }
.pull-quote {
  font-family: var(--font-script); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px); line-height: 1.35;
  max-width: 880px; margin: 40px auto 48px;
  color: var(--white);
}
.pull-cite { display: flex; align-items: center; gap: 16px; justify-content: center; font-style: normal; }
.cite-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
}
.cite-info { display: flex; flex-direction: column; text-align: left; }
.cite-info strong { font-size: 14px; font-weight: 600; }
.cite-info span { font-size: 12px; color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 100px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-body { font-size: 16px; color: var(--muted-dark); line-height: 1.8; margin-bottom: 24px; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 48px 0; }
.pillar { display: flex; gap: 16px; }
.pillar-icon { font-size: 22px; flex-shrink: 0; }
.pillar h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.2px; margin-bottom: 8px; color: var(--black); }
.pillar p { font-size: 13px; color: var(--muted-dark); line-height: 1.65; }

.about-markets { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.about-markets span {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  padding: 8px 18px; border: 1px solid var(--border-light); border-radius: 100px;
  color: var(--muted-dark);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 100px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-details { margin-top: 40px; }
.contact-link { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); text-decoration: underline; display: block; margin-bottom: 16px; transition: color 0.3s; }
.contact-link:hover { color: var(--brand-cyan); }
.contact-markets { font-size: 13px; color: var(--muted); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field textarea {
  padding: 14px 0; border-bottom: 1.5px solid var(--border);
  font-size: 15px; background: transparent; color: var(--white);
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--brand-cyan); outline: none; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-dark); }
.form-field textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding-top: 60px; }

.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; transition: color 0.3s; text-transform: uppercase; }
.footer-links a:hover { color: var(--white); }

.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
  transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--white); color: var(--white); }

.footer-wordmark {
  padding: 0 32px;
  overflow: hidden; line-height: 0.82;
}
.footer-wordmark span {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(60px, 18vw, 320px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -6px; 
  background: linear-gradient(to bottom, var(--white) 0%, rgba(255,255,255,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); letter-spacing: 0.3px;
}

/* ============================================================
   PROJECT MODAL
   ============================================================ */
.project-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: none; /* Controlled by JS */
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.project-modal.open { display: block; opacity: 1; }

.modal-close {
  position: fixed; top: 40px; right: 48px;
  z-index: 1010;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); cursor: pointer;
  padding: 10px 20px; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); border-radius: 100px;
  transition: background 0.3s;
}
.modal-close:hover { background: var(--white); color: var(--black); }

.modal-content {
  padding: 120px 48px;
  max-width: 1280px; margin: 0 auto;
}

.modal-header { margin-bottom: 80px; }
.modal-cat {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.modal-title {
  font-family: var(--font-head); font-size: clamp(48px, 8vw, 110px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -3px;
  line-height: 0.92; margin-bottom: 40px;
}

.modal-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }

.modal-details { display: flex; flex-direction: column; gap: 60px; }

.detail-block h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  margin-bottom: 20px; border-left: 3px solid var(--white); padding-left: 16px;
}
.detail-block p {
  font-size: 16px; color: var(--muted); line-height: 1.8;
}
.detail-block ul {
  display: flex; flex-direction: column; gap: 12px;
}
.detail-block li {
  font-size: 15px; color: var(--muted); position: relative; padding-left: 20px;
}
.detail-block li::before {
  content: '→'; position: absolute; left: 0; color: var(--white);
}

.modal-visuals { display: flex; flex-direction: column; gap: 40px; }

.modal-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.modal-image-grid.is-stacked {
  grid-template-columns: 1fr;
  gap: 40px;
}

.modal-img-wrapper img {
  width: 100%; height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.modal-img-wrapper img:hover { 
  transform: scale(1.02); 
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
}

.image-placeholder {
  width: 100%; aspect-ratio: 16/10;
  background: #111; border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--muted-dark);
  transition: border-color 0.3s;
}
.image-placeholder:hover { border-color: var(--muted); }
.image-placeholder i { font-size: 32px; opacity: 0.5; }
.image-placeholder span { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 1024px) {
  .modal-grid { grid-template-columns: 1fr; gap: 60px; }
  .modal-content { padding: 100px 32px; }
  .modal-close { top: 20px; right: 32px; }
}

/* ============================================================
   GSAP HELPERS
   ============================================================ */
.gsap-reveal { visibility: hidden; } /* Prevents flash of unstyled content before GSAP runs */

.gsap-text-fill {
  background: linear-gradient(to right, var(--white) 50%, rgba(255,255,255,0.35) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.light-section .gsap-text-fill {
  background: linear-gradient(to right, var(--black) 50%, rgba(0,0,0,0.35) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }
  .hero { padding: calc(var(--nav-h) + 48px) 32px 0; }
  .services-layout, .process-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .work-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav .logo { width: 120px; }
  .hero { padding: calc(var(--nav-h) + 32px) 24px 0; }
  .hero-creative {
    width: 100%;
    margin-top: 40px;
  }
  .hero-image-section {
    position: relative;
    border-radius: 0;
    overflow: hidden;
  }
  .hero-creative img {
    width: 100%;
    height: auto;
    display: block;
  }
  .nav-cta { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .menu-overlay { padding: var(--nav-h) 24px 32px; }
}