:root {
  --black: #080808;
  --off-black: #0f0f0f;
  --dark: #141414;
  --darker: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.18);
  --text: #f0ece4;
  --muted: rgba(240,236,228,0.45);
  --dim: rgba(240,236,228,0.28);
  --accent: #c8f55a;
  --accent-dark: #a8d940;
  --white: #f0ece4;

  /* Fonts — switchable from the admin panel (Site Content > Brand > Headline Font).
     site.js overrides --font-display at runtime based on the saved choice. */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: none;
}

/* HERO CANVAS */
#nodeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#hero > *:not(#nodeCanvas) { position: relative; z-index: 1; }

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 245, 90, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
body.hovering .cursor { width: 60px; height: 60px; }
body.hovering .cursor-ring { opacity: 0; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.nav-logo span { color: var(--accent); }
.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--accent-dark); transform: scale(1.04); }

/* ---- Mobile hamburger toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 130;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  margin: 0 auto;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile fullscreen menu ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(14px);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(26px, 8vw, 38px);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 8px 20px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 22px;
  background: var(--accent);
  color: var(--black);
  border-radius: 100px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Floating WhatsApp button ---- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 2; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: waPulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}
/* Minimal centered hero — used on the home page now */
#hero.hero-minimal {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 48px;
}
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 1400px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 36px);
  letter-spacing: -0.01em;
  color: var(--muted);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.hero-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(96px, 17vw, 260px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
}
.hero-mark span {
  color: var(--accent);
  text-shadow: 0 0 80px rgba(200, 245, 90, 0.25);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(11px, 1.1vw, 15px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}

@media (max-width: 900px) {
  #hero.hero-minimal { padding: 60px 24px; }
  .hero-eyebrow { font-size: clamp(16px, 4vw, 22px); margin-bottom: 12px; }
  .hero-mark { font-size: clamp(72px, 22vw, 140px); }
  .hero-subtitle { font-size: 11px; letter-spacing: 0.28em; margin-top: 20px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200,245,90,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,245,90,0.03) 0%, transparent 60%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 48px;
  position: relative;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.3s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.45s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.6s; }
.hero-headline .accent-word { color: var(--accent); }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-sub { max-width: 340px; font-size: 16px; line-height: 1.65; color: var(--muted); }
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
.hero-stats { display: flex; gap: 48px; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

/* MARQUEE */
.marquee-section {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--off-black);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS / HEADERS */
#about, #portfolio, #portfolioPage, #services, #clients, #team, #contact {
  padding: 120px 48px;
}
#about { background: var(--black); border-top: 1px solid var(--border); }
#portfolio { background: var(--black); border-top: 1px solid var(--border); }
#portfolioPage { background: var(--black); min-height: 100vh; padding-top: 160px; }
#services { background: var(--off-black); border-top: 1px solid var(--border); }
#clients  { background: var(--black); border-top: 1px solid var(--border); }
#team     { background: var(--off-black); border-top: 1px solid var(--border); }
#contact  { background: var(--black); border-top: 1px solid var(--border); position: relative; overflow: hidden; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content:''; width:24px; height:1px; background:var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.section-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.section-link:hover { color: var(--white); border-color: var(--accent); }

/* SQUARE GRID — uniform thumbnails */
.square-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.square-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.sq-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark);
  border-radius: 4px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.sq-card .sq-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease;
  filter: brightness(0.85);
}
.sq-card:hover .sq-img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.sq-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(200,245,90,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #161616 0%, #0c0c0c 100%);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 800;
  color: rgba(200,245,90,0.25);
  letter-spacing: -0.02em;
  text-align: center;
  padding: 24px;
}

.sq-index {
  position: absolute;
  top: 18px; left: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
  transition: color 0.3s;
  z-index: 2;
}
.sq-card:hover .sq-index { color: var(--accent); }

.sq-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border: 1.5px solid rgba(200,245,90,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--accent);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: rgba(200,245,90,0.08);
  z-index: 2;
}
.sq-card:hover .sq-play {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.sq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}
.sq-card:hover .sq-overlay { opacity: 1; transform: translateY(0); }
.sq-cat {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sq-cat::before { content:''; width:16px; height:1px; background:var(--accent); }
.sq-name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.sq-meta {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.sq-arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--white);
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s, border-color 0.3s, background 0.3s;
  z-index: 2;
  background: rgba(8,8,8,0.4);
  backdrop-filter: blur(4px);
}
.sq-card:hover .sq-arrow { opacity: 1; transform: scale(1); border-color: var(--accent); background: rgba(200,245,90,0.18); }

.grid-empty {
  grid-column: 1 / -1;
  padding: 80px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px dashed var(--border);
  border-radius: 12px;
}

/* PORTFOLIO FOOTER */
.portfolio-footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
}
.view-all-btn:hover { background: var(--accent-dark); transform: scale(1.03); }
.view-all-btn .arrow { transition: transform 0.3s; }
.view-all-btn:hover .arrow { transform: translateX(6px); }

/* PORTFOLIO PAGE — tabs + breadcrumb */
.portfolio-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tab-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.tab-btn.active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.crumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { color: var(--dim); }
.crumbs .here { color: var(--white); }

.view-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.view-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.view-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.6;
  margin-top: 12px;
}

/* PROJECT VIEW — hero + gallery */
.project-hero {
  margin-bottom: 56px;
}
.project-hero .meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.project-hero .meta .dot { color: var(--accent); }
.project-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.project-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.project-hero .external {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.project-hero .external:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,245,90,0.06);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gallery .gx {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.gallery .gx img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.gallery .gx:hover img { transform: scale(1.04); }

/* LIGHTBOX */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.lb.open { display: flex; }
.lb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lb .lb-close,
.lb .lb-nav {
  position: absolute;
  top: 24px;
  background: rgba(20,20,20,0.8);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.2s;
}
.lb .lb-close { right: 24px; }
.lb .lb-close:hover,
.lb .lb-nav:hover { background: rgba(200,245,90,0.18); border-color: var(--accent); color: var(--accent); }
.lb .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb .lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* SERVICES */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 80px;
}
.services-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
}
.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--muted);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* Rotating circular badge — fills the empty services-intro space */
.rotating-badge {
  position: relative;
  width: 200px;
  height: 200px;
  margin-top: 64px;
}
.rotating-badge svg {
  width: 100%;
  height: 100%;
  animation: badgeSpin 20s linear infinite;
}
.rotating-badge text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--muted);
}
.rotating-badge .badge-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(200,245,90,0.45));
  animation: badgePulse 3.5s ease-in-out infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.75; }
}
@media (max-width: 900px) {
  .rotating-badge { width: 150px; height: 150px; margin: 48px auto 0; }
  .rotating-badge text { font-size: 12px; }
  .rotating-badge .badge-core { font-size: 28px; }
}
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: padding 0.3s ease;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { padding-left: 8px; }
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 5px;
  flex-shrink: 0;
}
.service-info { flex: 1; }
.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.service-item:hover .service-name { color: var(--accent); }
.service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 360px;
}
.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.service-item:hover .service-icon {
  border-color: var(--accent);
  background: rgba(200,245,90,0.08);
}

/* CONTACT */
.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,245,90,0.04) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-big {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 24px 0 40px;
}
.contact-big .highlight {
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,236,228,0.3);
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; flex-direction: column; gap: 4px; }
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-val { font-size: 16px; color: var(--white); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
  appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: rgba(240,236,228,0.2); }
.field textarea { min-height: 120px; }
.field select option { background: var(--dark); }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.submit-btn:hover { background: var(--accent-dark); transform: scale(1.03); }

/* ============================================================
   ABOUT / PHILOSOPHY
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 28px;
  position: relative;
  padding-left: 24px;
}
.about-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--accent);
}
.about-paragraph {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
}
.about-paragraph em {
  color: var(--text);
  font-style: normal;
}

/* ============================================================
   CLIENTS — Trusted By
============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 56px;
}
/* White logo cards — uniform & clean; blends logos that have white backgrounds */
.client-cell {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
.client-cell:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
}
.client-cell img {
  max-width: 82%;              /* contained — never cropped, on any screen */
  max-height: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.28s ease;
}
.client-cell:hover img { transform: scale(1.06); }
.client-cell .client-name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--muted);
  text-align: center;
  transition: color 0.25s;
}
.client-cell:hover .client-name { color: var(--accent); }
.client-cell a {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
  cursor: pointer;
}

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

/* ============================================================
   TEAM
============================================================ */
.team-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
  margin-top: 16px;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--darker);
  background-size: cover;
  background-position: center;
  position: relative;
}
.team-photo .team-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(200,245,90,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #161616 0%, #0c0c0c 100%);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: rgba(200,245,90,0.25);
}
.team-info {
  padding: 22px 24px 26px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOWCASE — full-width campaign banners
============================================================ */
.showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Match page background so any empty area blends seamlessly */
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- IMAGE showcase: image full-width at natural height, button below ---- */
.showcase.has-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;          /* kill any inherited min-height */
}
.showcase-media-wrap {
  position: relative;
  width: 100%;
  line-height: 0;          /* remove inline-image gap */
}
.showcase.has-image .showcase-img {
  display: block;
  width: 100%;
  height: auto;            /* natural aspect ratio, no crop, no letterbox */
}
/* Play button stays centered ON the image (video showcases) */
.showcase.has-image .showcase-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Content (title/sub/button) flows directly BELOW the image, centered,
   with equal padding above and below so the button is nicely framed. */
.showcase.has-image .showcase-content {
  position: static;
  padding: 36px 24px;
}
/* No gradient overlay needed when text sits below the image */
.showcase.has-image .showcase-overlay { display: none; }

/* ---- PLACEHOLDER (no image uploaded): centered text box with min-height ---- */
.showcase.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--darker);
}
.showcase.no-image.size-compact { min-height: 38vh; }
.showcase.no-image.size-medium  { min-height: 56vh; }
.showcase.no-image.size-tall    { min-height: 78vh; }
.showcase.no-image:not(.size-compact):not(.size-medium):not(.size-tall) { min-height: 56vh; }
.showcase .showcase-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s cubic-bezier(0.22,1,0.36,1);
}
.showcase:hover .showcase-media { transform: scale(1.04); }
.showcase .showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(200,245,90,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #161616 0%, #0c0c0c 100%);
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(200,245,90,0.18);
  text-align: center;
  padding: 24px;
}
/* Gradient only at the bottom of the showcase, so the image stays visible on top */
.showcase .showcase-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* When overlay text is hidden, drop the gradient — image fully visible */
.showcase.text-hidden .showcase-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.1) 60%,
    rgba(8,8,8,0) 100%
  );
  height: 30%;
}
.showcase .showcase-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 56px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.showcase .showcase-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.showcase .showcase-eyebrow::before,
.showcase .showcase-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.showcase .showcase-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 14px;
  max-width: 16ch;
}
.showcase .showcase-sub {
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 24px;
}
.showcase .showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
}
.showcase .showcase-cta:hover { background: var(--accent-dark); transform: scale(1.04); }
.showcase .showcase-cta .arrow { transition: transform 0.3s; }
.showcase .showcase-cta:hover .arrow { transform: translateX(6px); }

/* Video-style showcase: clickable, with play button */
.showcase.is-video {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
}
.showcase.is-video .showcase-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border: 1.5px solid rgba(200,245,90,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  background: rgba(200,245,90,0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 3;
}
.showcase.is-video:hover .showcase-play {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.showcase.is-video .showcase-content { align-items: flex-start; }

@media (max-width: 900px) {
  .showcase { min-height: 60vh; }
  .showcase .showcase-content { padding: 80px 24px; }
  .showcase.is-video .showcase-play { width: 72px; height: 72px; font-size: 24px; }
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 30px;
}
.footer-logo span { color: var(--accent); }
.footer-logo img {
  height: 100%;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   - 1100px: tablets / smaller laptops
   - 900px: large mobile / small tablet
   - 600px: standard phone
   - 420px: small phone
============================================================ */

@media (max-width: 1100px) {
  .square-grid { grid-template-columns: repeat(2, 1fr); }
  .square-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  #about, #portfolio, #services, #clients, #team, #contact { padding: 96px 32px; }
}

@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }          /* replaced by the hamburger menu on mobile */
  .nav-toggle { display: flex; }       /* show hamburger */
  .nav-logo { font-size: 18px; height: 30px; }
  .nav-logo img { max-width: 140px; }

  /* Section padding */
  #about, #portfolio, #portfolioPage, #services, #clients, #team, #contact { padding: 72px 20px; }
  #portfolioPage { padding-top: 110px; }
  footer { padding: 32px 20px; }

  /* Old hero (if used) — bottom layout stacks */
  .hero-headline { font-size: clamp(48px, 12vw, 90px); }
  .hero-bottom { flex-direction: column; gap: 40px; align-items: flex-start; }
  .hero-stats { gap: 28px; }

  /* Grids and forms */
  .square-grid, .square-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery { grid-template-columns: 1fr; gap: 8px; }
  .services-layout, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }

  /* About + team */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-photo { aspect-ratio: 1 / 1; }
  .team-name { font-size: 16px; }
  .team-role { font-size: 11px; }
  .team-info { padding: 16px 18px 20px; }

  /* Section titles */
  .section-title { font-size: clamp(32px, 8vw, 48px); }

  /* Showcase mobile — only applies to no-image (placeholder) sizing */
  .showcase.no-image.size-compact { min-height: 32vh; }
  .showcase.no-image.size-medium  { min-height: 44vh; }
  .showcase.no-image.size-tall    { min-height: 60vh; }
  /* Image showcases on mobile: still natural aspect, no height cap */
  .showcase .showcase-content { padding: 24px 16px; }
  .showcase .showcase-title { font-size: clamp(28px, 8vw, 48px); max-width: 100%; margin-bottom: 10px; }
  .showcase .showcase-sub { font-size: 12px; margin-bottom: 14px; }
  .showcase .showcase-cta { font-size: 10px; padding: 10px 20px; letter-spacing: 0.05em; }
  .showcase .showcase-eyebrow { font-size: 9px; margin-bottom: 8px; }
  /* Tighter bottom gradient on mobile so text remains readable */
  .showcase .showcase-overlay { height: 55%; }
  .showcase.text-hidden .showcase-overlay { height: 28%; }
  .showcase.is-video .showcase-play { width: 56px; height: 56px; font-size: 20px; }

  /* Hero (minimal) — much tighter on phones */
  #hero.hero-minimal { padding: 48px 20px; min-height: 88vh; }
  .hero-eyebrow { font-size: 14px; margin-bottom: 8px; }
  .hero-mark {
    font-size: clamp(48px, 16vw, 96px);
    letter-spacing: -0.04em;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-subtitle { font-size: 10px; letter-spacing: 0.22em; margin-top: 16px; }

  /* Clients grid */
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .client-cell { padding: 18px; }

  /* Project hero */
  .project-hero h1 { font-size: clamp(36px, 9vw, 64px); }
  .project-hero p { font-size: 15px; }
  .crumbs { font-size: 11px; gap: 6px; }

  /* Marquee */
  .marquee-item { padding: 0 22px; font-size: 12px; }

  /* Modal */
  .modal-back { padding: 16px; }
  .modal { padding: 24px 20px; }
}

@media (max-width: 600px) {
  nav { padding: 14px 16px; }
  .nav-logo { font-size: 16px; height: 28px; }
  .nav-cta { font-size: 10px; padding: 7px 14px; }

  #about, #portfolio, #portfolioPage, #services, #clients, #team, #contact { padding: 56px 16px; }
  #portfolioPage { padding-top: 96px; }

  /* Square grid stays 2 cols even at 600px for compact view */
  .square-grid, .square-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .sq-overlay { padding: 14px 14px 14px; }
  .sq-name { font-size: 14px; }
  .sq-meta { font-size: 11px; }
  .sq-index { font-size: 10px; top: 12px; left: 14px; }
  .sq-arrow { width: 28px; height: 28px; font-size: 12px; top: 12px; right: 12px; }

  /* Hero — squeeze further */
  #hero.hero-minimal { padding: 32px 16px; min-height: 80vh; }
  .hero-eyebrow { font-size: 12px; }
  .hero-mark { font-size: clamp(40px, 14vw, 72px); letter-spacing: -0.03em; }
  .hero-subtitle { font-size: 9px; letter-spacing: 0.2em; margin-top: 14px; }

  /* Showcase on smaller phones — keep image natural-aspect, button compact */
  .showcase.no-image.size-compact { min-height: 28vh; }
  .showcase.no-image.size-medium  { min-height: 38vh; }
  .showcase.no-image.size-tall    { min-height: 52vh; }
  .showcase .showcase-content { padding: 20px 14px; }
  .showcase .showcase-title { font-size: clamp(22px, 8vw, 36px); margin-bottom: 8px; }
  .showcase .showcase-eyebrow { font-size: 9px; letter-spacing: 0.12em; margin-bottom: 8px; }
  .showcase .showcase-sub { font-size: 11px; margin-bottom: 12px; }
  .showcase .showcase-cta { font-size: 9px; padding: 9px 18px; }

  /* Section titles smaller */
  .section-title { font-size: clamp(28px, 8vw, 40px); }

  /* About */
  .about-quote { font-size: clamp(22px, 6vw, 30px); padding-left: 16px; }
  .about-paragraph { font-size: 14px; line-height: 1.7; }

  /* Services */
  .services-intro p { font-size: 15px; }
  .service-name { font-size: 17px; }
  .service-desc { font-size: 13px; }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cell { padding: 14px; }
  .client-cell .client-name { font-size: 14px; }

  /* Footer */
  footer { padding: 24px 16px; }
  .footer-copy { font-size: 11px; }
  .footer-socials { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .footer-socials a { font-size: 11px; }

  /* Project hero / gallery */
  .project-hero h1 { font-size: clamp(30px, 10vw, 48px); }
  .project-hero .external { font-size: 10px; padding: 10px 18px; }

  /* Lightbox */
  .lb { padding: 16px; }
  .lb .lb-close, .lb .lb-nav { width: 40px; height: 40px; font-size: 18px; }
  .lb .lb-close { right: 12px; top: 12px; }
  .lb .lb-prev  { left: 8px; }
  .lb .lb-next  { right: 8px; }

  /* Contact form */
  .contact-big { font-size: clamp(40px, 11vw, 64px); margin: 16px 0 28px; }
  .contact-form { padding-top: 16px; }
}

@media (max-width: 420px) {
  /* Smallest phones */
  .nav-cta { padding: 6px 12px; font-size: 9px; }
  .nav-logo { font-size: 15px; height: 24px; }
  .nav-logo img { max-width: 110px; }
  .hero-mark { font-size: clamp(36px, 14vw, 58px); letter-spacing: -0.025em; }
  .hero-eyebrow { font-size: 11px; }
  .hero-subtitle { font-size: 8px; letter-spacing: 0.18em; }
  .square-grid, .square-grid.cols-4 { grid-template-columns: 1fr; gap: 4px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .showcase .showcase-title { font-size: clamp(24px, 10vw, 38px); }
}
