/* ── VARIABLES ────────────────────────────────────────────────── */
:root {
  --bg:       #F4F1EB;
  --bg-2:     #EDEAE3;
  --white:    #FDFCFA;
  --dark:     #181612;
  --text:     #1C1A16;
  --muted:    #8A8680;
  --border:   rgba(24,22,18,0.1);
  --border-2: rgba(24,22,18,0.06);
  --display:  'Bebas Neue', 'Arial Narrow', sans-serif;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --expo:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* ── CURSOR ───────────────────────────────────────────────────── */
@media (pointer: fine) { html, a, button { cursor: none !important; } }
.c-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999; opacity: 0;
  transform: translate(-50%,-50%);
  will-change: transform;
  mix-blend-mode: difference;
  transition: width .22s var(--ease), height .22s var(--ease), opacity .3s;
}
.c-dot.on  { opacity: 1; }
.c-dot.big { width: 40px; height: 40px; background: transparent; border: 1.5px solid #fff; }
.c-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998; opacity: 0;
  transform: translate(-50%,-50%);
  will-change: transform;
  mix-blend-mode: difference;
  transition: width .38s var(--ease), height .38s var(--ease), opacity .3s;
}
.c-ring.on  { opacity: 1; }
.c-ring.big { width: 60px; height: 60px; border-color: rgba(255,255,255,0.25); }

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: auto; min-height: 190px;
  display: flex; align-items: center;
  padding: 0.75rem 2.5rem;
  background: rgba(244,241,235,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  transition: transform .4s var(--ease), box-shadow .3s;
}
.nav.hidden   { transform: translateY(-100%); }
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.05); }

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 176px;
  width: auto;
  display: block;
}
/* Below ~1495px the centered wide logo starts crowding .nav-links; shift it
   left with a fixed right-offset (keeps a constant gap from the links since
   both scale 1:1 with viewport width), shrinking its width once there's no
   longer room for it at full size. */
@media (max-width: 1495px) and (min-width: 769px) {
  .nav-logo { left: auto; right: 567px; transform: none; }
  .nav-logo-img { height: auto; width: clamp(140px, calc(100vw - 607px), 361px); }
}

.nav-links { display: flex; gap: 2rem; margin-right: 2.5rem; margin-left: auto; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400;
  color: var(--muted); letter-spacing: 0.04em;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--dark);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--dark);
  border: 1px solid var(--dark);
  padding: 0.55rem 1.25rem; border-radius: 999px;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--dark); color: var(--white); }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 26px; margin-left: 1.5rem; }
.nav-burger span { display: block; height: 1px; background: var(--dark); transition: .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-burger.open span:nth-child(2) { transform: rotate(-45deg) translate(4px,-4px); }

.nav-drawer {
  display: none;
  position: fixed; top: 200px; left: 0; right: 0;
  background: var(--bg); padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  z-index: 899; transform: translateY(-110%);
  transition: transform .38s var(--ease);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { display: flex; flex-direction: column; gap: 1.5rem; }
.nav-drawer ul a { font-family: var(--display); font-size: 2.5rem; letter-spacing: 0.04em; }

/* ── HERO — UNCHANGED LAYOUT ──────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 190px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 4rem 3rem 4rem max(2.5rem, calc((100vw - 1280px)/2 + 2.5rem));
  border-right: 1px solid var(--border);
}
.hero-location {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 9.5rem);
  font-weight: 400; line-height: 0.92;
  color: var(--dark); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-headline .word { display: inline-block; overflow: hidden; }
.hero-headline .word-inner { display: inline-block; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--dark);
  border-bottom: 1px solid var(--border); padding-bottom: 0.25rem;
  transition: border-color .25s, gap .25s var(--ease);
}
.link-arrow:hover { border-color: var(--dark); gap: 0.75rem; }

.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1.5rem 1rem;
  overflow: hidden;
}
.mosaic-col { display: flex; flex-direction: column; gap: 0.75rem; }
.mosaic-col--b { margin-top: 3rem; }
.mosaic-img {
  flex: 1; min-height: 200px;
  background-size: cover; background-position: center;
  border-radius: 3px; overflow: hidden; position: relative;
  clip-path: inset(0 0 100% 0);
  transition: transform .6s var(--ease);
}
.mosaic-img:hover { transform: scale(0.985); }
.mosaic-img--sm { flex: 0 0 160px; }
.mosaic-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #dbd7cf, #c5bfb4);
  display: flex; align-items: flex-end; padding: 1rem;
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(24,22,18,0.35); font-weight: 700;
}


/* ── CLIENTS TICKER ───────────────────────────────────────────── */
.ticker-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}
.ticker-label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-align: center;
  padding: 0.875rem 2.5rem 0;
}
.ticker-wrap { overflow: hidden; padding: 0.75rem 0 0.875rem; }
.ticker-track {
  display: flex; width: max-content;
  animation: tickerAnim 24s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-set {
  display: flex; align-items: center; gap: 3rem;
  padding-right: 3rem; white-space: nowrap;
}
.ticker-set span {
  font-size: 1rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.04em;
  opacity: 0.65;
  transition: opacity .25s;
}
.ticker-set span:hover { opacity: 1; }
@keyframes tickerAnim { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION EYEBROW ──────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 0;
}

/* ── VISION SECTION ───────────────────────────────────────────── */
.vision {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--bg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem max(2.5rem, calc((100vw - 1280px)/2 + 2.5rem));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.vision > .section-eyebrow {
  text-align: center; margin-bottom: 2.5rem;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.vision-stat { display: flex; flex-direction: column; gap: 0.5rem; }
.vision-stat--right { text-align: right; }
.vs-num {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--dark); line-height: 1; letter-spacing: 0.02em;
}
.vision-stat p {
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}

.vision-big-text { text-align: center; line-height: 0.92; }
.vbt-word {
  font-family: var(--display);
  font-size: clamp(3rem, 12vw, 13rem);
  color: var(--dark);
  letter-spacing: 0.01em;
  display: block;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.vision-copy {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.vision-copy p {
  font-size: 1.0625rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 1.5rem;
}

/* ── HOME ABOUT ───────────────────────────────────────────────── */
.home-about {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--dark);
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.home-about-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.home-about-left .section-eyebrow { color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.home-about-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 9rem);
  color: var(--white);
  line-height: 0.88;
  letter-spacing: 0.02em;
}
.home-about-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 4rem;
}
.home-about-p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}
@media (max-width: 900px) {
  .home-about {
    height: 100vh;
    overflow: hidden;
    align-items: flex-start;
    padding-top: 3rem;
  }
  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 2rem;
    align-items: flex-start;
  }
  .home-about-title { font-size: clamp(1.8rem, 9vw, 4rem); }
  /* Button is dark-on-dark (invisible) and wastes space — hide on mobile */
  .home-about-left .btn-pill { display: none; }
  .home-about-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    gap: 0.75rem;
  }
  .home-about-p { font-size: 0.8rem; line-height: 1.65; }
}

/* ── PROJECTS ─────────────────────────────────────────────────── */
.projects-section {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--bg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.projects-header {
  padding: 2rem max(2.5rem, calc((100vw - 1280px)/2 + 2.5rem)) 1rem;
  border-bottom: 1px solid var(--border);
}
.projects-big-title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 9rem);
  color: var(--dark); line-height: 0.9;
  letter-spacing: 0.01em; text-align: center;
  overflow: hidden;
}
.projects-meta {
  display: flex; justify-content: space-between;
  margin-top: 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}

/* Slider */
.proj-slider-wrap { position: relative; overflow: hidden; flex: 1; min-height: 0; }
.proj-slider {
  display: flex;
  height: 100%;
  will-change: transform;
}
.proj-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100%;
}
.proj-photo {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  height: 100%;
}
.proj-photo-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #cdc8be, #b8b1a6);
  display: flex; align-items: flex-end; padding: 2rem;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(24,22,18,0.3); font-weight: 700;
}
.proj-info {
  background: var(--bg);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3.5rem;
  border-left: 1px solid var(--border);
}
.proj-year {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 1rem;
}
.proj-name {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  color: var(--dark); line-height: 0.92;
  letter-spacing: 0.01em; margin-bottom: 0.75rem;
}
.proj-cat {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem; font-weight: 500;
}

/* Pill button */
.btn-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dark);
  border: 1.5px solid var(--dark);
  transition: background .25s, color .25s;
  align-self: flex-start;
}
.btn-pill:hover { background: var(--dark); color: var(--white); }
.btn-pill--dark {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.btn-pill--dark:hover { background: #333; }

/* Slider controls */
.proj-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: 1.125rem; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
  z-index: 10;
}
.proj-arr:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.proj-arr--prev { left: 1.5rem; }
.proj-arr--next { right: 1.5rem; }
.proj-arr:hover { transform: translateY(-50%) scale(1.06); }

.proj-dots {
  position: absolute; bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.proj-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(24,22,18,0.2);
  transition: background .25s, transform .25s;
}
.proj-dot.active { background: var(--dark); transform: scale(1.3); }

/* ── SERVICES — bottom strip inside .projects-section ─────────── */
.services {
  flex-shrink: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.services-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.svc-item {
  padding: 2.5rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: none;
  transition: color 0.4s;
}
.svc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.svc-item:hover::before { transform: translateY(0); }
.svc-item > * { position: relative; z-index: 1; }
.svc-item:hover .svc-num,
.svc-item:hover h3,
.svc-item:hover p { color: rgba(255,255,255,0.9); }
.svc-item:hover .svc-num { color: rgba(255,255,255,0.35); }
.svc-item:hover p { color: rgba(255,255,255,0.5); }
.svc-arrow {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s, color 0.4s;
}
.svc-item:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
  color: rgba(255,255,255,0.7);
}
.svc-item:last-child { border-right: none; }
.svc-num {
  font-family: var(--display);
  font-size: 1rem; color: rgba(24,22,18,0.18);
  letter-spacing: 0.04em; display: block; margin-bottom: 0.75rem;
}
.svc-item h3 {
  font-family: var(--display);
  font-size: 1.75rem; color: var(--dark);
  letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 0.75rem;
}
.svc-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── CTA SECTION ──────────────────────────────────────────────── */
.cta-section {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--bg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6rem max(2.5rem, calc((100vw - 1280px)/2 + 2.5rem)) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-top {
  text-align: center; padding-bottom: 2.5rem;
  position: relative; z-index: 10;
}
.cta-top .section-eyebrow { margin-bottom: 1.25rem; }
.cta-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 8.5rem);
  color: var(--dark); line-height: 0.9;
  letter-spacing: 0.01em; margin-bottom: 2rem;
}

/* Scattered photos */
.cta-photos {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.cta-photo {
  width: 300px; height: 400px;
  background-size: cover; background-position: center;
  border-radius: 4px; flex-shrink: 0;
  position: absolute; bottom: 0;
  overflow: hidden;
}
.cta-photo-ph {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #cdc8be, #b5aea4);
}
.cta-photo--1 {
  left: calc(50% - 380px);
  transform: rotate(-8deg) translateY(40px);
  z-index: 1;
}
.cta-photo--2 {
  left: calc(50% - 150px);
  transform: rotate(2deg) translateY(20px);
  z-index: 3;
  height: 440px;
}
.cta-photo--3 {
  left: calc(50% + 80px);
  transform: rotate(7deg) translateY(50px);
  z-index: 2;
}
/* Gradient colors for placeholders */
.cta-photo--1 .cta-photo-ph { background: linear-gradient(145deg,#c8c2b8,#b0a89e); }
.cta-photo--2 .cta-photo-ph { background: linear-gradient(145deg,#d4cfc8,#bfb9b0); }
.cta-photo--3 .cta-photo-ph { background: linear-gradient(145deg,#bdb6ac,#a8a099); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--dark);
  color: rgba(255,255,255,0.5);
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid; grid-template-columns: 1.4fr 2fr;
  gap: 5rem;
}
.footer-logo {
  display: block;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 186px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.footer-col h4 {
  font-family: var(--display);
  font-size: 1rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28); margin-bottom: 1.375rem;
}
.footer-col ul li { margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); transition: color .25s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.8rem;
}
.footer-bottom::before,
.footer-bottom::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* ── FADE-UP ──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s var(--expo), transform .8s var(--expo);
}
.fade-up.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .vision-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vision-big-text { order: -1; }
  .vision-stat--right { text-align: left; }
  .services-inner { grid-template-columns: 1fr 1fr; }
  .svc-item:nth-child(2) { border-right: none; }
  .svc-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .svc-item:nth-child(4) { border-top: 1px solid var(--border); }
  .proj-slide { grid-template-columns: 1fr; min-height: auto; }
  .proj-photo { min-height: 55vw; }
  .proj-info { padding: 3rem 2.5rem; border-left: none; border-top: 1px solid var(--border); }
  /* Dots: reposition to bottom of photo area instead of bottom of whole slider */
  .proj-dots { bottom: auto; top: calc(55vw - 2rem); }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .services { display: none; }

  /* Hero: full-screen immersive overlay on mobile */
  .hero {
    display: block;
    position: relative;
    height: 100svh;
    min-height: 100vh;
    padding-top: 0;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.90) 0%, rgba(10,8,6,0.45) 45%, rgba(10,8,6,0.1) 75%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-left {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 2rem 3.5rem;
    border: none;
    background: none;
    justify-content: flex-end;
  }
  .hero-location { color: rgba(255,255,255,0.55); }
  .hero-headline { color: #fff; }
  .hero-bottom .link-arrow { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.25); }
  .hero-bottom .link-arrow:hover { border-color: #fff; }
  .hero-mosaic {
    position: absolute;
    inset: 0;
    padding: 0;
    gap: 0;
    grid-template-columns: 1fr;
  }
  /* Show only the last image (h4.jpg) as full-screen background */
  .mosaic-col--a { display: none; }
  .mosaic-col--b .mosaic-img--sm { display: none; }
  .mosaic-col--b { margin-top: 0; height: 100%; }
  .mosaic-img { min-height: 0; flex: 1; border-radius: 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { min-height: 80px; padding: 0 1.5rem; }
  .nav-logo-img { height: 56px; }
  .nav-drawer { display: block; top: 80px; transform: translateY(calc(-100% - 80px)); }
  /* Sticky sections */
  .vision { height: auto; min-height: 100vh; padding: 2.5rem 1.5rem; }
  .cta-section { height: 100vh; overflow: hidden; justify-content: flex-start; align-items: center; padding: 3rem 2rem 0; }
  .cta-top { padding-bottom: 1.5rem; }
  /* One centered card on mobile, no rotation, no GSAP push-up */
  .cta-photos { display: flex; height: 60vh; width: 100%; }
  .cta-photo--1, .cta-photo--3 { display: none; }
  .cta-photo--2 { position: absolute; bottom: 0; left: 0; right: 0; margin: 0 auto; width: min(80vw, 300px); height: 90%; transform: none; }
  .footer-top { padding: 2.5rem 1.5rem 2rem; gap: 2rem; }
  .footer-logo-img { height: 80px; }
  .footer-brand p { font-size: 0.8rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-col h4 { font-size: 0.85rem; margin-bottom: 0.75rem; }
  .footer-col ul li { margin-bottom: 0.5rem; font-size: 0.8rem; }
  /* Projects — allow full height so services show */
  .projects-section { height: auto; overflow: visible; }
  .proj-slide { grid-template-columns: 1fr; }
  /* Compact photo + info so services fit on screen */
  .proj-photo { min-height: 55vw; }
  /* Move arrows into photo area so they don't cover project name */
  .proj-arr { top: 27.5vw; width: 40px; height: 40px; font-size: 0.85rem; }
  .proj-info { padding: 1.25rem 1.5rem; }
  .proj-name { font-size: clamp(1.6rem, 7vw, 3rem); }
  .proj-year { margin-bottom: 0.4rem; }
  .proj-cat { margin-bottom: 0.75rem; }
  /* Services: compact 2×2 tiles, no description */
  .services-inner { grid-template-columns: 1fr 1fr; }
  .svc-item { padding: 0.9rem 1rem; }
  .svc-item h3 { font-size: 0.95rem; line-height: 1.2; }
  .svc-item p, .svc-arrow { display: none; }
}
@media (max-width: 520px) {
  .hero-mosaic { grid-template-columns: 1fr; }
  .mosaic-col--b { margin-top: 0; }
  .services-inner { grid-template-columns: repeat(4, 1fr); }
  .svc-item { border-right: 1px solid var(--border) !important; border-top: 1px solid var(--border); padding: 0.85rem 0.6rem; }
  .svc-item h3 { font-family: var(--display); font-size: 1.1rem; line-height: 1.05; letter-spacing: 0.02em; }
  .svc-num { font-size: 0.58rem; margin-bottom: 0.4rem; }
  .footer-top { padding: 1.5rem 1.25rem 1.25rem; gap: 1.25rem; }
  .footer-logo-img { height: 56px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-col ul li { margin-bottom: 0.35rem; }
  /* Hide Follow Us on smallest screens — reduces footer height so it can't cover CTA button */
  .footer-col:nth-child(2) { display: none; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .cta-photo--2 { width: min(85vw, 280px); }
}
