/* ============================================================
   RESET + VARIABLES
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #fff7ec;
  --dark: #0a0a0a;
  --text: #1a1a1a;
  --gray: #a39b91;
  --pill-bg: #e0d8cc;
  --red: #ff0c00;
  --border-light: #f1e5dd;
  --serif: 'scotch-deck-compressed', sans-serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
  /* Fluid spacing scale */
  --space-page: clamp(20px, 4vw, 40px);
}

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }

body {
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 16px);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; z-index: 900;
  padding: clamp(16px, 3vw, 28px) var(--space-page);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.nav > * { pointer-events: auto; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
  background: #fff7ec;
  color: var(--text);
  border-radius: 100px;
  padding: clamp(8px, 1vw, 12px) clamp(14px, 1.5vw, 20px);
  font-family: var(--sans);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.03);
}

.nav-cta-icon {
  width: clamp(18px, 1.5vw, 22px);
  height: clamp(18px, 1.5vw, 22px);
  flex-shrink: 0;
}

.nav-cta-text {
  display: block;
}

.nav-menu {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  color: var(--text);
  margin-right: -10px;
  transition: color 0.4s;
}

.nav-menu:hover { color: var(--gray); }
.nav.nav-light .nav-menu { color: #fff; }

/* Menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.menu-links a {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}

.menu-overlay.open .menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.open .menu-links a:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.open .menu-links a:nth-child(2) { transition-delay: 0.14s; }
.menu-overlay.open .menu-links a:nth-child(3) { transition-delay: 0.20s; }
.menu-overlay.open .menu-links a:nth-child(4) { transition-delay: 0.26s; }

.menu-links a:hover { color: var(--gray); }

/* ============================================================
   MEGA-PIN: Hero → Curtain → Need → Reveal (one pinned sequence)
   ============================================================ */
.mega-pin {
  position: relative;
  height: 600vh;
}

.mega-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--cream);
  z-index: 1;
}

/* --- Layer 1: Hero content --- */
.mega-hero {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-mountain {
  position: absolute;
  top: 0%; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-mountain-img {
  width: 100%;
  object-fit: contain;
  opacity: 0.65;
  will-change: transform;
}

.hero-tagline-h1 {
  position: absolute;
  left: clamp(20px, 5vw, 8%);
  top: clamp(35%, 42vw, 45%);
  z-index: 3;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 45%;
}

.hero-drop {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-video-wrap {
  position: absolute;
  top: 20%;
  right: clamp(20px, 5vw, 60px);
  width: 18rem;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-video-play {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 4px;
  color: white;
  font-size: clamp(12px, 1.1vw, 15px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.hero-video-play:hover { background: rgba(0,0,0,0.7); }

.hero-badge {
  position: absolute;
  top: 20%;
  right: clamp(20px, 5vw, 60px);
  margin-right: clamp(160px, 20vw, 320px);
  z-index: 4;
  width: clamp(80px, 10vw, 150px);
}

.hero-badge-img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.hero-brand {
  position: absolute;
  bottom: clamp(-2%, -1vw, -5%);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(85%, 80vw, 80%);
  z-index: 2;
  user-select: none;
}

.hero-brand-svg {
  width: 100%;
  height: auto;
}

/* --- Layer 2: "You need more than design" (behind curtain) --- */
.mega-need {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30vh;
  opacity: 0;
}

.need-words {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 16px) clamp(10px, 2vw, 20px);
  padding: 0 var(--space-page);
}

.nword {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  will-change: transform, opacity;
  display: inline-block;
}

/* --- Layer 3: Gray curtain (slides down from top) --- */
.mega-curtain {
  position: absolute;
  top: 0;
  left: clamp(10px, 8vw, 110px);
  right: clamp(10px, 8vw, 110px);
  height: 100%;
  background: var(--gray);
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  will-change: transform;
  overflow: hidden;
}

.curtain-text {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
}

.curtain-word {
  display: inline-block;
  opacity: 0;
  will-change: opacity;
}

/* --- Layer 4: "You need" + KLICKWERT reveal --- */
.mega-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
}

.reveal-brand {
  text-align: center;
  will-change: transform;
  width: clamp(90%, 80vw, 80%);
  transform-origin: center center;
}

.reveal-brand-svg {
  width: 100%;
  height: auto;
}

/* ============================================================
   TEAM PHOTOS
   ============================================================ */
.team-section {
  position: relative;
  z-index: 10;
  min-height: 120vh;
  margin-top: 350vh;
  padding: 0 var(--space-page) clamp(80px, 12vw, 160px);
  overflow: visible;
  background: transparent;
  pointer-events: none;
}
.team-photo { pointer-events: auto; }

.team-photo {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  will-change: transform;
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.6);
  transition: transform 0.1s linear;
}

.tp1 {
  top: 60vh; left: var(--space-page);
  width: 42%;
  aspect-ratio: 3/4;
  z-index: 3;
}

.tp2 {
  top: 40vh; right: var(--space-page);
  width: 35%;
  aspect-ratio: 16/10;
  z-index: 2;
}

.tp3 {
  top: 80vh;
  right: 0;
  margin-right: 10%;
  width: 38%;
  aspect-ratio: 4/3;
  z-index: 4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 var(--space-page) clamp(40px, 5vw, 60px);
  overflow: hidden;
  background: var(--cream);
}

.services-border-top,
.services-border-bottom {
  height: 1px;
  background: var(--text);
  margin: 0 calc(-1 * var(--space-page));
}

.services-top {
  padding: clamp(50px, 7vw, 75px) 0 clamp(20px, 4vw, 40px);
}

.services-label {
  font-size: clamp(12px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  display: inline;
  vertical-align: baseline;
  margin-left: 16px;
}

.services-heading {
  font-family: var(--serif);
  font-size: clamp(2.4em, 4.5vw, 4.5em);
  font-weight: 300;
  line-height: 1.05;
}

/* Ticker / Marquee area */
.ticker-area {
  position: relative;
  overflow: visible;
  margin: 20px calc(-1 * var(--space-page)) 40px;
  padding: 5vh 0;
  width: 100vw;
  min-width: 100vw;
  display: flex;
}

.ticker-track {
  flex: none;
  align-items: center;
  display: flex;
}

.ticker-item-wrap {
  perspective: 12px;
  perspective-origin: 0 0;
  flex-shrink: 0;
  position: relative;
}

.ticker-item-wrap:nth-child(2n) {
  perspective: 12px;
  perspective-origin: 100% 100%;
}

/* Blocker holds the space when item falls away */
.ticker-blocker {
  z-index: 3;
  position: absolute;
  inset: 0;
  display: none;
}

.ticker-item {
  border-radius: .4rem;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  text-transform: capitalize;
  background-color: #e0d8cc;
  flex: none;
  min-width: 20vw;
  margin-right: clamp(0.5rem, 1.5vw, 2rem);
  padding: 1rem clamp(1rem, 2vw, 2.5rem);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2.4rem);
  font-weight: 400;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  opacity: 1;
  cursor: default;
  line-height: 1.1;
}

/* Ticker item subtitles */
.ticker-item small {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.55;
  margin-top: 4px;
  text-transform: none;
}

/* Process row */
.process-row {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(30px, 5vw, 60px) 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gray);
  line-height: 1;
}
.process-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 400;
}
.process-desc {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--gray);
  line-height: 1.5;
}

/* Services bottom */
.services-bottom {
  display: flex;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 30px) 0 clamp(40px, 12vw, 160px);
}

.services-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 12px 12px 12px 24px;
  transition: border-color 0.3s;
}

.services-cta:hover { border-color: var(--text); }

.cta-arrow-box {
  width: 40px; height: 40px;
  background: var(--text);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 18px;
}

/* ============================================================
   WORK / SCROLL-DRIVEN PROJECT SHOWCASE
   ============================================================ */

/* Tall container: scrolls over sticky services, then frame scrub + hold */
.project-pin {
  position: relative;
  z-index: 25;
  height: 500vh;
}

.project-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  cursor: url('assets/cursor-hand.svg') 10 4, pointer;
}

.project-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 60px);
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
  pointer-events: none;
}

.project-info {
  color: var(--cream);
  transition: opacity 0.5s ease;
}

.project-info.fading {
  opacity: 0;
}

.project-category {
  font-size: clamp(12px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.project-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
}

.project-result {
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* KLICKWERT Logo Widget (decorative gimmick, right side) */
.kw-widget {
  position: absolute;
  top: 30%;
  right: clamp(20px, 6vw, 77px);
  transform: translateY(-50%);
  width: clamp(200px, 35vw, 540px);
  aspect-ratio: 1 / 1;
  z-index: 5;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.kw-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3%;
  padding: 8% 4%;
}

.kw-row {
  width: 100%;
  height: 26%;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.kw-row.visible {
  opacity: 1;
  transform: translateX(0);
}

.kw-row.exit {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.4s cubic-bezier(0.55, 0, 1, 0.45),
              transform 0.4s cubic-bezier(0.55, 0, 1, 0.45);
}

.kw-row svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Click burst effect */
.click-burst {
  position: fixed;
  border-radius: 50%;
  border: 2px solid rgba(255, 12, 0, 0.8);
  box-shadow: 0 0 20px rgba(255, 12, 0, 0.3), inset 0 0 20px rgba(255, 12, 0, 0.1);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: width, height, opacity;
}

.click-flash {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 8;
  pointer-events: none;
  will-change: opacity;
}

/* Project carousel nav */
.project-nav {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  right: clamp(20px, 5vw, 60px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.project-dots {
  display: flex;
  gap: 8px;
}

.project-dot {
  width: 2rem;
  height: 0.3rem;
  border-radius: 0.04rem;
  background: var(--cream);
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s;
}

.project-dot.active {
  opacity: 1;
}

.project-next-btn {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
}

.project-next-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

/* ============================================================
   TESTIMONIAL — carousel with arrows
   ============================================================ */
.testimonial-section {
  position: relative;
  z-index: 20;
  padding: clamp(60px, 10vw, 120px) var(--space-page) clamp(60px, 10vw, 140px);
  text-align: center;
  background: var(--cream);
}

.testimonial-header {
  margin-bottom: clamp(30px, 5vw, 60px);
}

.testimonial-label {
  font-size: clamp(12px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  display: block;
  margin-bottom: 12px;
}

.testimonial-heading {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
}

/* Carousel layout */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: clamp(16px, 3vw, 40px);
}

.testimonial-arrow {
  flex-shrink: 0;
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  background: var(--text);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  font-size: clamp(14px, 1.5vw, 18px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
}

.testimonial-arrow:hover {
  background: #333;
  transform: scale(1.05);
}

.testimonial-slides {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-client {
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: var(--text);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-quote p {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto clamp(20px, 3vw, 36px);
}

.testimonial-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-quote strong {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
}

.testimonial-quote span {
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--gray);
}

/* ============================================================
   FOOTER — parallax bg image, KLICKWERT at top, large CTA
   ============================================================ */
.footer {
  position: relative;
  z-index: 20;
  background: var(--dark);
  color: var(--cream);
  padding: clamp(10px, 2vw, 10px) var(--space-page) clamp(20px, 3vw, 30px);
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Parallax background image */
.footer-bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.footer-brand {
  position: relative;
  z-index: 2;
  user-select: none;
  padding: 0;
  margin-top: 0;
}

.footer-brand-svg {
  width: 100%;
  height: auto;
  filter: invert(1) brightness(10);
}

.footer-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}

.footer-card {
  background: var(--cream);
  color: var(--text);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 44px) clamp(20px, 3vw, 32px);
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: 10%;
  transition: background 0.35s, color 0.35s;
}

.footer-card:hover {
  background: var(--red);
  color: #fff;
}

.footer-card:hover .footer-card-arrow {
  background: #fff;
  color: var(--red);
}

.footer-card-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: clamp(16px, 3vw, 28px);
}

.footer-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(15px, 1.4vw, 18px);
}

.footer-card-arrow {
  width: 48px; height: 48px;
  background: var(--text);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 20px;
  transition: background 0.3s;
}

.footer-card-arrow:hover { background: #333; }

.footer-links {
  display: flex;
  gap: clamp(24px, 5vw, 60px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-col a:hover { color: #fff; }

/* Footer bottom */
.footer-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 0;
}

.footer-copy {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  flex-shrink: 0;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 clamp(10px, 2vw, 20px);
}

.footer-year {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  flex-shrink: 0;
}

.footer-privacy {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: 12px;
  font-size: clamp(11px, 1vw, 13px);
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: #c45d3e;
  color: #fff;
}

/* CTA white on dark backgrounds */
.nav.nav-light .nav-cta {
  background: #fff;
}
.nav.nav-light .nav-cta:hover {
  background: var(--red);
  color: #fff;
}

/* Tablet + Mobile: project nav centered top */
@media (max-width: 1024px) {
  .project-nav {
    bottom: auto;
    top: 80px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* ============================================================
   MOBILE — layout shifts only (sizing handled by clamp above)
   ============================================================ */
@media (max-width: 768px) {
  .nav-cta-text { display: none; }
  .hero-tagline-h1 { max-width: none; right: 20px; top: 30%; }
  .hero-video-wrap { width: 45vw; top: 10%; }
  .hero-badge { display: block; top: 12%; width: 60px; margin-right: calc(45vw + 30px); }
  .hero-brand { bottom: 8%; }
  .need-words { justify-content: center; }

  .tp1 { width: 55%; }
  .tp2 { width: 50%; top: 10%; }
  .tp3 { width: 55%; left: 30%; }

  .process-row { flex-direction: column; }
  .services-top { text-align: center; }
  .services-label { display: block; margin-left: 0; margin-bottom: 8px; }

  .kw-widget { display: none; }

  .footer {
    height: auto;
    min-height: 100vh;
  }
  .footer-brand { margin-top: 40px; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .footer-card { margin-left: 0; margin-right: 0; max-width: none; }
  .footer-bottom { margin-top: auto; padding-top: 20px; }
}
