/* =========================================================
   PROFIX ÉPSZER — Website
   Premium one-pager, bilingual (HU/EN)
   Brand: #E73A3A (red) · #2B2A29 (dark) · #727271 (gray)
   ========================================================= */

:root {
  --red:        #E73A3A;
  --red-deep:   #C42828;
  --red-glow:   rgba(231, 58, 58, 0.35);
  --ink:        #0B0B0D;
  --ink-2:      #141417;
  --ink-3:      #1E1E22;
  --line:       rgba(255, 255, 255, 0.08);
  --line-dk:    rgba(0, 0, 0, 0.08);
  --mute:       #8A8A8A;
  --mute-2:     #B6B6B6;
  --paper:      #F5F4F1;
  --paper-2:    #ECEAE5;
  --white:      #FFFFFF;

  --f-sans:     "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --f-display:  "Space Grotesk", "Inter", sans-serif;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-lg:  0 30px 80px -30px rgba(0,0,0,.45);
  --shadow-md:  0 18px 40px -18px rgba(0,0,0,.35);

  --easing:     cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: #EDECEA;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

::selection { background: var(--red); color: #fff; }

/* ---------- Custom Cursor (desktop only) ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  transition: transform .12s var(--easing), width .25s ease, height .25s ease, background .25s ease, border-color .25s ease;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.cursor.is-hover {
  width: 64px; height: 64px;
  background: rgba(231,58,58,.18);
  border-color: var(--red);
}
@media (hover: none), (max-width: 980px) { .cursor, .cursor-dot { display: none; } }

/* ---------- Cookie consent banner ---------- */
.consent {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 9000;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 26px;
  background: rgba(15,15,18,.96);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.7);
  color: #fff;
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  transition: transform .55s var(--easing), opacity .4s ease, visibility .4s ease;
}
.consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.consent-head h3 {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: -.005em;
  color: #fff;
  margin-bottom: 8px;
}
.consent-head p {
  font-size: 13.5px;
  color: var(--mute-2);
  line-height: 1.55;
  margin-bottom: 18px;
}
.consent-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.consent-btn {
  flex: 1; min-width: 200px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.consent-btn-secondary {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.consent-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); }
.consent-btn-primary {
  background: var(--red); color: #fff;
}
.consent-btn-primary:hover { background: var(--red-deep); }
.consent-foot {
  margin-top: 16px;
  font-size: 12px;
  color: var(--mute);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.consent-foot a {
  color: var(--mute-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.consent-foot a:hover { color: #fff; }
.consent-sep { opacity: .35; }
@media (max-width: 720px) {
  .consent { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .consent-actions { flex-direction: column; }
  .consent-btn { min-width: 0; width: 100%; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--ink); z-index: 10000;
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--f-display); font-weight: 700; letter-spacing: .14em;
  font-size: clamp(22px, 3vw, 30px); color: #fff;
}
.loader-logo span { color: var(--red); margin-left: 4px; }
.loader-bar {
  width: 180px; height: 2px; background: rgba(255,255,255,.08); margin: 22px auto 0;
  overflow: hidden; border-radius: 2px;
}
.loader-bar span {
  display: block; height: 100%; width: 30%;
  background: var(--red);
  animation: loaderBar 1.2s var(--easing) infinite;
}
@keyframes loaderBar {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(120%); }
  100% { transform: translateX(280%); }
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(11,11,13,.78);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 28px; width: auto; filter: brightness(0) invert(1); transition: filter .3s ease; }
.header.is-scrolled .brand-logo { height: 26px; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.78);
  position: relative; padding: 6px 0;
  transition: color .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--red);
  transition: right .4s var(--easing);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
.lang-btn {
  padding: 4px 2px; color: rgba(255,255,255,.55);
  transition: color .2s ease;
}
.lang-btn.is-active { color: var(--red); }
.lang-btn:hover { color: #fff; }
.lang-sep { opacity: .25; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; position: relative; z-index: 110; background: transparent; border: 0; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; height: 1.5px; background: #fff; transition: transform .3s, opacity .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border-radius: 999px; border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: transform .3s var(--easing), background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 12px 30px -10px var(--red-glow);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--easing), transform 1s var(--easing); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-text {
  display: block; overflow: hidden; position: relative;
}
.reveal-text > * { display: inline-block; }
.reveal-text.is-in { animation: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #0E0E10 0%, #0A0A0C 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 130%;
  object-fit: cover;
  position: absolute; top: -15%; left: 0;
  opacity: .42;
  filter: contrast(1.05) saturate(1.05);
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 20%, transparent 0%, rgba(11,11,13,.65) 60%, var(--ink) 100%),
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.92) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  opacity: .8;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute-2);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(231,58,58,.22);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: .95;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: #fff;
  margin: 26px 0 28px;
}
.hero-title .accent {
  background: linear-gradient(120deg, #fff 0%, var(--red) 80%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--mute-2);
  max-width: 540px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.02em;
}
.hero-meta span { font-size: 12px; color: var(--mute); letter-spacing: .06em; text-transform: uppercase; }

/* Project showcase (hero centerpiece) */
.hero-right {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch; justify-content: center;
  gap: 30px;
}
.showcase {
  position: relative;
  width: 100%; max-width: 560px;
  margin: 0 auto;
  perspective: 1400px;
}
.showcase-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0F0F12;
  border: 1px solid var(--line);
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,.75),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform-style: preserve-3d;
  transition: transform .4s var(--easing);
}
.showcase-slides {
  position: absolute; inset: 0;
}
.showcase-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--easing);
  margin: 0;
}
.showcase-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.showcase-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
  transform: scale(1.08);
  transition: transform 7s linear;
}
.showcase-slide.is-active img {
  transform: scale(1.0);
}
.showcase-grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(231,58,58,.04) 0%, transparent 30%);
  mix-blend-mode: normal;
}

/* Corner brackets — architectural framing */
.showcase-corner {
  position: absolute; width: 24px; height: 24px; z-index: 4;
  border-color: var(--red);
  pointer-events: none;
}
.showcase-corner-tl {
  top: 16px; left: 16px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}
.showcase-corner-br {
  bottom: 16px; right: 16px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.showcase-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 5;
  padding: 24px 26px 22px;
  color: #fff;
  display: flex; flex-direction: column; gap: 10px;
}
.showcase-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.showcase-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid;
}
.showcase-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.showcase-tag.is-ongoing { color: #FFB259; border-color: rgba(255,178,89,.4); background: rgba(255,178,89,.08); }
.showcase-tag.is-delivered { color: #6DD49E; border-color: rgba(109,212,158,.4); background: rgba(109,212,158,.08); }
.showcase-counter {
  font-family: var(--f-display); font-weight: 600; color: rgba(255,255,255,.7);
  font-variant-numeric: tabular-nums;
}
.showcase-counter-sep { margin: 0 4px; opacity: .35; }
.showcase-title {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 600; line-height: 1.2;
  letter-spacing: -.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.showcase-progress {
  display: flex; gap: 6px;
  margin-top: 8px;
}
.showcase-dot {
  flex: 1; height: 3px;
  background: rgba(255,255,255,.18);
  border-radius: 2px; position: relative; overflow: hidden;
  cursor: pointer;
  transition: background .25s ease;
}
.showcase-dot::after {
  content: ""; position: absolute; inset: 0;
  background: var(--red);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .2s linear;
}
.showcase-dot.is-active::after {
  transform: scaleX(1);
  transition: transform 6s linear;
}
.showcase-dot:hover { background: rgba(255,255,255,.3); }

/* Reference portfolio stamp — small badge below frame */
.showcase-stamp {
  position: absolute; bottom: -18px; right: 24px; z-index: 6;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.6);
}
.showcase-stamp svg {
  width: 18px; height: 18px; color: var(--red); flex-shrink: 0;
}
.showcase-stamp span { display: flex; flex-direction: column; line-height: 1.15; }
.showcase-stamp strong {
  font-family: var(--f-display); font-size: 12px; font-weight: 600; color: #fff;
  letter-spacing: .02em;
}
.showcase-stamp em {
  font-style: normal; font-size: 10px; color: var(--mute);
  letter-spacing: .1em; text-transform: uppercase;
}

.hero-tagline {
  margin-top: 50px;
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--f-display);
  font-style: italic; font-weight: 500;
  font-size: 16px; color: var(--mute-2);
  letter-spacing: .01em;
}
.tagline-line {
  width: 40px; height: 1px; background: var(--red);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.scroll-cue-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
  position: relative; overflow: hidden;
}
.scroll-cue-line::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: var(--red);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* Hero marquee */
.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.4);
  z-index: 3;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 40px; white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--f-display);
  font-weight: 600; font-size: 14px; letter-spacing: .25em;
  color: rgba(255,255,255,.4);
}
.marquee-track span { display: inline-block; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections base ---------- */
.section { padding: 140px 0; position: relative; }
.section-about     { background: var(--ink); }
.section-stats     { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); padding: 100px 0; }
.section-projects  { background: var(--ink-2); }
.section-services  { background: var(--ink); }
.section-approach  { background: var(--ink-2); }
.section-career    { background: var(--ink); }
.section-contact   { background: var(--paper); color: var(--ink); }

.section-head { max-width: 760px; margin: 0 auto 70px; text-align: center; }
.section-head-row {
  display: flex; align-items: end; justify-content: space-between; gap: 40px;
  max-width: none; text-align: left; margin-bottom: 50px;
}
.section-head-row > div { max-width: 620px; }
.section-head-row .section-intro { max-width: 340px; color: var(--mute-2); font-size: 15px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute-2);
  margin-bottom: 22px;
}
.section-eyebrow .num {
  font-family: var(--f-display); font-weight: 700; color: var(--red);
  letter-spacing: 0;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.05; letter-spacing: -0.025em; font-weight: 600;
  color: #fff;
}
.section-contact .section-title { color: var(--ink); }
.section-intro { color: var(--mute-2); font-size: 16px; margin-top: 18px; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center;
}
.about-media { position: relative; }
.about-media-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  transition: transform .6s var(--easing);
}
.about-media-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-media-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--red);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex; flex-direction: column;
  color: #fff;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
}
.about-media-badge .num {
  font-family: var(--f-display); font-weight: 700; font-size: 26px; line-height: 1;
}
.about-media-badge span:last-child {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .9;
}

.about-copy .lead {
  font-size: 18px; color: #DCDBD7; margin-bottom: 22px;
  font-weight: 400;
}
.about-copy p { color: var(--mute-2); margin-bottom: 28px; }

.about-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line);
}
.pillar svg { width: 26px; height: 26px; color: var(--red); margin-bottom: 14px; }
.pillar h4 {
  font-family: var(--f-display); font-size: 16px; font-weight: 600; color: #fff;
  margin-bottom: 6px;
}
.pillar p { font-size: 13px; color: var(--mute); line-height: 1.5; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .3s ease;
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(231,58,58,.05); }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 700; color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--mute-2);
}

/* ---------- Projects ---------- */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter {
  padding: 9px 18px;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  color: var(--mute-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .25s ease;
}
.filter:hover { color: #fff; border-color: rgba(255,255,255,.25); }
.filter.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* Project subgroups */
.projects-group { margin-top: 48px; }
.projects-group:first-of-type { margin-top: 8px; }
.projects-group.is-empty { display: none; }

.projects-subhead {
  display: flex; align-items: center; gap: 16px;
  padding: 0 0 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.subhead-pulse {
  position: relative; width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.subhead-pulse span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFB259; box-shadow: 0 0 0 0 rgba(255,178,89,.7);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,178,89,.55); }
  70%  { box-shadow: 0 0 0 12px rgba(255,178,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,178,89,0); }
}
.subhead-mark {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6DD49E;
}
.subhead-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; color: #fff;
  letter-spacing: -.01em;
  flex: 1;
}
.subhead-count {
  font-family: var(--f-display); font-weight: 500;
  font-size: 13px; color: var(--mute-2);
  letter-spacing: .04em;
}
.subhead-count-num {
  font-weight: 700; color: #fff; margin-right: 2px;
}

.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  grid-auto-flow: dense;
}
.project {
  background: var(--ink-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .5s var(--easing), border-color .3s ease, box-shadow .3s ease, opacity .4s ease;
  opacity: 1;
}
.project.is-hidden { display: none; }
.project:hover { transform: translateY(-6px); border-color: rgba(231,58,58,.45); box-shadow: var(--shadow-md); }
.project.span-2 { grid-column: span 2; }

.project-media {
  position: relative;
  height: 280px;            /* fixed strip height — uniform across single + span-2 cards */
  overflow: hidden;
  background: #111;
}
.project-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;  /* slight upward bias — keeps structures + buildings centered */
  transition: transform 1.2s var(--easing);
}
@media (max-width: 1080px) {
  .project-media { height: 240px; }
}
@media (max-width: 720px) {
  .project-media { height: 220px; }
}
.project:hover .project-media img { transform: scale(1.06); }
.project-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}

/* Fallback project art (for clients without photos) — inherits .project-media height */
.project-media-fallback {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(231,58,58,.18) 0%, transparent 50%),
    linear-gradient(135deg, #1A1A1D 0%, #232328 100%);
}
.fallback-art {
  position: relative; display: grid; place-items: center;
}
.fallback-monogram {
  font-family: var(--f-display); font-weight: 700;
  font-size: 120px; line-height: 1;
  color: rgba(255,255,255,.08);
  letter-spacing: -0.04em;
}
.fallback-line {
  position: absolute; bottom: 14px; width: 60px; height: 2px; background: var(--red);
}

.project-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
a.project-body-link { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; }
.project-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.tag {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; font-weight: 600;
  border: 1px solid;
}
.tag-done    { color: #6DD49E; border-color: rgba(109,212,158,.25); background: rgba(109,212,158,.06); }
.tag-ongoing { color: #FFB259; border-color: rgba(255,178,89,.25); background: rgba(255,178,89,.06); }
.tag-ref     { color: var(--mute-2); border-color: var(--line); }
.value {
  font-family: var(--f-display); font-weight: 700; color: var(--red); font-size: 15px;
}
.project-title {
  font-family: var(--f-display);
  font-size: 19px; font-weight: 600; color: #fff;
  line-height: 1.25;
}
.project-client { font-size: 12px; color: var(--mute); margin-bottom: 6px; }
.project-scope {
  list-style: none;
  font-size: 13px; color: var(--mute-2);
  display: flex; flex-direction: column; gap: 4px;
}
.project-scope li {
  padding-left: 14px; position: relative;
}
.project-scope li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--red);
}

/* Project gallery hover indicator (when >1 photo) */
.project.has-gallery .project-media { cursor: zoom-in; }
.project-gallery-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(11,11,13,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  font-size: 11px; letter-spacing: .08em; font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .35s var(--easing), transform .35s var(--easing);
}
.project.has-gallery .project-gallery-badge {
  opacity: 1; transform: translateY(0);
}
.project-gallery-badge svg { width: 12px; height: 12px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,10,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lightbox-stage {
  position: relative; z-index: 2;
  max-width: 92vw; max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin: 0; padding: 0;
  transform: scale(.96);
  transition: transform .35s var(--easing);
}
.lightbox.is-open .lightbox-stage { transform: scale(1); }
.lightbox-stage img {
  max-width: 92vw; max-height: 76vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  background: #111;
}
.lightbox-cap {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 14px; letter-spacing: .02em;
}
.lightbox-title { font-weight: 500; }
.lightbox-count {
  font-family: var(--f-display); font-weight: 600;
  font-size: 12px; letter-spacing: .14em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.6);
}
.lightbox-close,
.lightbox-nav {
  position: absolute; z-index: 3;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.lightbox-close svg,
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav   { top: 50%; transform: translateY(-50%); }
.lightbox-prev  { left: 24px; }
.lightbox-next  { right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--red); transform: scale(1.06) translateY(-50%); }
.lightbox-close:hover { transform: scale(1.06); }
.lightbox-nav.is-disabled {
  opacity: .25; pointer-events: none;
}
@media (max-width: 720px) {
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-nav   { width: 40px; height: 40px; }
  .lightbox-prev  { left: 8px; }
  .lightbox-next  { right: 8px; }
  .lightbox-cap   { padding: 0 16px; text-align: center; flex-direction: column; gap: 8px; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service {
  position: relative;
  padding: 36px 28px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .5s var(--easing), border-color .3s ease, background .3s ease;
}
.service:hover {
  transform: translateY(-6px);
  border-color: rgba(231,58,58,.35);
}
.service-feature {
  background: linear-gradient(160deg, rgba(231,58,58,.12) 0%, rgba(20,20,23,.5) 50%);
  border-color: rgba(231,58,58,.25);
}
.service-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: 18px; color: var(--red);
  margin-bottom: 22px; letter-spacing: -0.01em;
}
.service h3 {
  font-family: var(--f-display);
  font-size: 19px; font-weight: 600; color: #fff;
  margin-bottom: 12px; line-height: 1.25;
}
.service p { font-size: 14px; color: var(--mute-2); margin-bottom: 18px; }
.service ul { list-style: none; font-size: 13px; color: var(--mute-2); }
.service ul li {
  padding: 8px 0; border-top: 1px solid var(--line);
  position: relative;
}
.service ul li:last-child { border-bottom: 1px solid var(--line); }
.service ul li::before {
  content: "+"; color: var(--red); margin-right: 8px; font-weight: 700;
}

/* ---------- Approach ---------- */
.approach-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center;
}
.approach-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.approach-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 80%);
  font-family: var(--f-display); font-weight: 500; font-size: 17px; color: #fff;
}
.approach-steps {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  margin-top: 38px;
}
.step {
  padding: 22px 22px; background: rgba(255,255,255,.02);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: background .3s ease, border-color .3s ease;
}
.step:hover { background: rgba(231,58,58,.06); border-color: rgba(231,58,58,.25); }
.step-no {
  display: inline-block;
  font-family: var(--f-display); font-weight: 700; color: var(--red); font-size: 14px;
  margin-bottom: 10px;
}
.step h4 { font-family: var(--f-display); font-size: 16px; color: #fff; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--mute-2); line-height: 1.5; }

/* ---------- Career ---------- */
.career-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: start;
}
.career-copy .section-title { margin-top: 0; }
.career-copy p {
  color: var(--mute-2); font-size: 16px; line-height: 1.7;
  margin-top: 22px;
}
.career-perks {
  list-style: none; margin-top: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.career-perks li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background .3s ease, border-color .3s ease;
}
.career-perks li:hover {
  background: rgba(231,58,58,.05); border-color: rgba(231,58,58,.25);
}
.career-perks svg {
  width: 20px; height: 20px; color: var(--red); flex-shrink: 0;
  margin-top: 2px;
}
.career-perks div { display: flex; flex-direction: column; gap: 2px; }
.career-perks strong {
  font-family: var(--f-display); font-size: 15px; font-weight: 600; color: #fff;
}
.career-perks span { font-size: 13px; color: var(--mute-2); line-height: 1.5; }

.career-form {
  background: var(--ink-3);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.career-form-title {
  font-family: var(--f-display); font-size: 20px; font-weight: 600;
  color: #fff; margin-bottom: 8px;
}
.career-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--mute-2);
  font-weight: 500;
}
.career-form label.full { grid-column: 1 / -1; }
.career-form input,
.career-form select,
.career-form textarea {
  font: inherit; font-size: 15px; color: #fff;
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line); border-radius: 10px;
  text-transform: none; letter-spacing: normal; font-weight: 400;
  transition: border-color .25s ease, background .25s ease;
}
.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  outline: none; border-color: var(--red); background: rgba(255,255,255,.04);
}
.career-form textarea { resize: vertical; }
.career-form select { color: #fff; }
.career-form select option { background: var(--ink-3); color: #fff; }
.career-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.career-form .form-success {
  padding: 14px 18px;
  background: rgba(109,212,158,.08);
  border: 1px solid rgba(109,212,158,.3);
  border-radius: 10px;
  color: #6DD49E;
  font-size: 14px;
  text-transform: none; letter-spacing: 0; font-weight: 500;
}
.career-form .form-note {
  font-size: 11px; color: var(--mute);
  letter-spacing: .04em; line-height: 1.6;
  margin-top: 4px;
}

/* CV drag-and-drop */
.cv-upload { display: flex; flex-direction: column; gap: 10px; }
.cv-drop {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  background: rgba(231,58,58,.05);
  border: 1.5px dashed rgba(231,58,58,.35);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--easing);
  text-transform: none; letter-spacing: 0;
}
.cv-drop:hover, .cv-drop.is-drag {
  background: rgba(231,58,58,.1);
  border-color: var(--red);
  transform: translateY(-1px);
}
.cv-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  border-radius: 12px;
}
.cv-icon svg { width: 22px; height: 22px; }
.cv-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.cv-text strong {
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  color: #fff; text-transform: none; letter-spacing: .01em;
}
.cv-text > span {
  font-size: 12px; color: var(--mute-2);
  text-transform: none; letter-spacing: .02em;
  font-weight: 400;
}
.cv-selected[hidden] { display: none; }
.cv-selected {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: rgba(109,212,158,.08);
  border: 1px solid rgba(109,212,158,.3);
  border-radius: var(--radius);
  text-transform: none; letter-spacing: 0;
}
.cv-pill {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-size: 14px; font-weight: 500;
  min-width: 0;
}
.cv-pill svg { width: 18px; height: 18px; color: #6DD49E; flex-shrink: 0; }
.cv-pill > span:nth-child(2) {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 280px;
}
.cv-size { font-size: 12px; color: var(--mute-2); margin-left: 6px; }
.cv-remove {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.06);
  color: #fff; border-radius: 50%;
  font-size: 18px; line-height: 1;
  display: grid; place-items: center;
  transition: background .25s ease;
}
.cv-remove:hover { background: var(--red); }
.cv-error {
  color: #FF6B6B; font-size: 13px;
  text-transform: none; letter-spacing: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: start;
}
.section-contact .section-eyebrow { color: var(--mute); }
.section-contact .section-eyebrow .num { color: var(--red); }
.section-contact .reveal:not(.section-title):not(.section-eyebrow) { color: #44443f; }
.section-contact p { color: #4F4F4A; font-size: 16px; line-height: 1.65; margin-top: 18px; }

.contact-list { margin-top: 38px; display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.contact-item:hover { transform: translateY(-2px); border-color: var(--red); box-shadow: 0 18px 30px -18px rgba(231,58,58,.3); }
.contact-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 12px;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--mute);
}
.contact-item strong { color: var(--ink); font-weight: 600; font-size: 15px; }

.contact-map {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.contact-map iframe { display: block; width: 100%; }
.contact-todo {
  display: inline-block;
  padding: 1px 8px;
  background: rgba(255,178,89,.15);
  border: 1px dashed rgba(255,178,89,.5);
  border-radius: 6px;
  color: #C26A12;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px !important;
  font-weight: 500 !important;
}

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--mute);
  font-weight: 500;
}
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px;
  background: #FAFAF8;
  border: 1px solid rgba(0,0,0,.08); border-radius: 10px;
  text-transform: none; letter-spacing: normal; font-weight: 400;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-success {
  padding: 12px 16px; background: rgba(109,212,158,.12);
  border: 1px solid rgba(109,212,158,.3); border-radius: 10px;
  color: #2A8A57; font-size: 14px; font-weight: 500;
  text-transform: none; letter-spacing: 0;
}

/* ---------- Footer ---------- */
.footer { background: #050506; color: #B6B6B6; padding: 80px 0 30px; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px;
  padding-bottom: 50px; border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--f-display); font-style: italic; color: var(--mute-2);
  font-size: 14px; max-width: 280px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-cols h5 {
  font-family: var(--f-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 18px;
}
.footer-cols a, .footer-cols p {
  display: block; font-size: 14px; color: var(--mute-2);
  padding: 4px 0;
  transition: color .25s ease;
}
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--mute);
  letter-spacing: .04em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; padding-top: 20px; }
  .hero-right { height: auto; min-height: 380px; }
  .about-grid, .approach-grid, .contact-grid, .career-grid {
    grid-template-columns: 1fr; gap: 50px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project.span-2 { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .brand { position: relative; z-index: 110; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink); padding: 100px 32px 40px;
    z-index: 90;
    overflow-y: auto;
  }
  .nav.is-open a {
    font-family: var(--f-display);
    font-size: 28px; padding: 20px 0;
    border-bottom: 1px solid var(--line);
    color: #fff;
  }
  .header-actions .btn { display: none; }
  .section { padding: 90px 0; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .hero { padding: 110px 0 90px; min-height: auto; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta strong { font-size: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stat:last-child { border-right: 0; grid-column: 1 / -1; }
  .about-pillars { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project.span-2 { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .contact-form, .career-form { padding: 26px; }
  .career-form .form-row { grid-template-columns: 1fr; }
  .cv-pill > span:nth-child(2) { max-width: 180px; }
  .hero-marquee { padding: 16px 0; }
  .marquee-track { font-size: 12px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .footer-cols { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}
