/* ==========================================================================
   Neduz Bouw & Renovatie — design system
   Colors navy/cream/orange · Marcellus (serif) + Archivo (sans)
   ========================================================================== */

:root {
  --navy: #0D1B24;
  --navy-soft: #12222D;
  --ink: #16242E;
  --slate: #3D4A54;
  --muted: #5B6770;
  --taupe: #8A8577;
  --cream: #FAF8F4;
  --cream-2: #F1EDE5;
  --border: #E7E2D8;
  --border-input: #D8D4CC;
  --orange: #F08A1D;
  --orange-2: #FFA23F;
  --brown: #B0722A;
  --numeral: #EAD9C0;

  --serif: 'Marcellus', 'Times New Roman', serif;
  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --sect: clamp(60px, 9vw, 104px);
  --radius: 2px;
  --shadow: 0 8px 24px rgba(0,0,0,.2);
  --shadow-lg: 0 24px 60px rgba(13,27,36,.18);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--navy); color-scheme: light; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, blockquote, ul, li { margin: 0; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
::selection { background: var(--orange); color: var(--navy); }

/* ---- layout helpers ------------------------------------------------------ */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sect); }
.section--tight { padding-block: clamp(48px, 7vw, 80px); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-panel { background: var(--cream-2); }

/* ---- typography ---------------------------------------------------------- */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 16px;
}
.eyebrow--light { color: var(--orange); }
.eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--orange);
}
.eyebrow.no-rule::before { display: none; }

.h1-hero { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6.2vw, 74px); line-height: 1.05; letter-spacing: .005em; text-wrap: balance; }
.h1-page { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5.2vw, 60px); line-height: 1.1; text-wrap: balance; }
.h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 48px); line-height: 1.15; }
.h2-sm { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.2; }
.h3-serif { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 2.4vw, 23px); }
.lead { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; color: var(--muted); }
.lead--light { color: rgba(255,255,255,.68); }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  --btn-pad: 17px 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-pad); font-size: 15px; font-weight: 700; cursor: pointer;
  border: 1.5px solid transparent; border-radius: var(--radius); transition: all .2s var(--ease);
  text-align: center; white-space: nowrap;
}
.btn--sm { --btn-pad: 13px 24px; font-size: 14px; }
.btn--lg { --btn-pad: 19px 36px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: var(--orange-2); color: var(--navy); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--orange); color: var(--navy); }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.link-arrow { font-size: 14.5px; font-weight: 600; color: var(--brown); }
.link-arrow:hover { color: var(--orange); }

/* ---- topbar -------------------------------------------------------------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.7); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 10px; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--orange); }
.topbar__contact { display: flex; gap: 28px; }

/* ---- header / nav -------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--cream); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 24px; }
.nav__logo img { height: 65px; width: auto; border-radius: 6px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__menu { display: flex; gap: 32px; font-size: 14.5px; font-weight: 500; color: var(--slate); }
.nav__menu a { position: relative; padding-block: 4px; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav__menu a:hover::after, .nav__menu a[aria-current="page"]::after { width: 100%; }
.nav__menu a[aria-current="page"] { color: var(--orange); font-weight: 600; }

.nav__toggle {
  display: none; width: 46px; height: 46px; background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s var(--ease); position: relative;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }

/* mobile drawer */
.nav__backdrop {
  position: fixed; inset: 0; background: rgba(13,27,36,.5); opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease); z-index: 70;
}
.nav__drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(84vw, 340px);
  background: var(--navy); color: #fff; z-index: 80; padding: 28px 28px 40px;
  transform: translateX(100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; gap: 8px; overflow-y: auto;
}
.nav__drawer a { padding: 14px 4px; font-size: 18px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.1); }
.nav__drawer a:hover, .nav__drawer a[aria-current="page"] { color: var(--orange); }
.nav__drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.nav__drawer-close { background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.nav__drawer .btn { margin-top: 18px; }
body[data-nav-open] { overflow: hidden; }
body[data-nav-open] .nav__backdrop { opacity: 1; visibility: visible; }
body[data-nav-open] .nav__drawer { transform: translateX(0); }

/* ---- hero (home) --------------------------------------------------------- */
.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 460px; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(56px, 8vw, 96px); }
.hero__rating { display: flex; align-items: center; gap: 14px; margin-top: 44px; }
.hero__figure { position: relative; }
.hero__figure::before { content: ""; position: absolute; left: -20px; top: 30px; width: 100%; height: 100%; border: 2px solid var(--orange); pointer-events: none; }
.hero__figure img { position: relative; width: 100%; aspect-ratio: 460 / 560; object-fit: cover; }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 15px; }

/* ---- usp strip ----------------------------------------------------------- */
.usp { background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp__item { padding: 30px 32px; border-right: 1px solid rgba(255,255,255,.08); }
.usp__item:last-child { border-right: 0; }
.usp__num { font-family: var(--serif); font-size: clamp(26px, 3vw, 32px); color: var(--orange); }
.usp__label { margin-top: 4px; font-size: 14px; color: rgba(255,255,255,.6); }

/* ---- section head -------------------------------------------------------- */
.sect-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(36px, 5vw, 56px); }
.sect-head--center { flex-direction: column; align-items: center; text-align: center; }

/* ---- service cards ------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--border); padding: 36px 32px; display: block; color: var(--ink);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { border-color: var(--orange); color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__num { font-size: 12.5px; font-weight: 700; color: var(--orange); letter-spacing: .1em; margin-bottom: 16px; }
.card__title { font-family: var(--serif); font-weight: 400; font-size: 22px; margin-bottom: 10px; }
.card__text { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* ---- featured project split --------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.feature__img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.feature__body { background: var(--navy); color: #fff; padding: clamp(40px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.feature__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.stat__num { font-family: var(--serif); font-size: 26px; color: var(--orange); }
.stat__label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ---- process steps ------------------------------------------------------- */
.step { position: relative; background: #fff; border: 1px solid var(--border); padding: 38px 30px 34px; height: 100%; }
.step__num { font-family: var(--serif); font-size: 52px; color: var(--numeral); line-height: 1; }
.step__title { font-size: 17px; font-weight: 700; margin: 16px 0 10px; }
.step__text { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.bg-navy .step { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.12); }
.bg-navy .step__text { color: rgba(255,255,255,.6); }

/* ---- reviews ------------------------------------------------------------- */
.review { margin: 0; border: 1px solid rgba(255,255,255,.12); padding: 34px; }
.review blockquote { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,.85); margin: 18px 0 0; }
.review figcaption { margin-top: 22px; }
.review__name { font-size: 14px; font-weight: 600; }
.review__meta { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ---- cta band ------------------------------------------------------------ */
.cta-band { background: var(--orange); color: var(--navy); padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 64px); display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; flex: none; }
.cta-band p { opacity: .85; }

/* ---- page hero (inner) --------------------------------------------------- */
.page-hero { background: var(--navy); color: #fff; padding-block: clamp(56px, 8vw, 88px); }

/* ---- service rows (alternating) ----------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split--reverse .split__img { order: -1; }
.ticks { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks li::before { content: "✓"; color: var(--orange); font-weight: 700; flex: none; }

/* ---- project grid -------------------------------------------------------- */
.filters { display: flex; gap: 12px; flex-wrap: wrap; }
.filter { background: #fff; border: 1px solid var(--border); color: var(--slate); font-size: 13.5px; font-weight: 500; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: all .2s var(--ease); font-family: inherit; }
.filter:hover { border-color: var(--orange); }
.filter[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project { background: #fff; border: 1px solid var(--border); overflow: hidden; transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); text-align: left; padding: 0; cursor: pointer; font-family: inherit; color: inherit; display: block; width: 100%; }
.project:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project__img { width: 100%; aspect-ratio: 3 / 2.05; object-fit: cover; transition: transform .5s var(--ease); }
.project:hover .project__img { transform: scale(1.04); }
.project__body { padding: 24px 26px 28px; }
.project__cat { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brown); margin-bottom: 10px; }
.project__title { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.project__text { font-size: 14px; line-height: 1.6; color: var(--muted); margin-top: 8px; }
.project__meta { font-size: 13px; color: var(--taupe); margin-top: 14px; }
.is-hidden { display: none !important; }

/* ---- quote band ---------------------------------------------------------- */
.quote-band { text-align: center; }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 32px); line-height: 1.45; max-width: 820px; margin: 24px auto 0; color: var(--ink); }

/* ---- faq (native details) ------------------------------------------------ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--border); transition: border-color .2s var(--ease); }
.faq details[open] { border-color: var(--orange); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; font-size: 16.5px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--orange); transition: transform .25s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 26px 24px; font-size: 14.5px; line-height: 1.7; color: var(--muted); }

/* ---- about --------------------------------------------------------------- */
.framed { position: relative; }
.framed::before { content: ""; position: absolute; left: 22px; top: 22px; width: 100%; height: 100%; border: 2px solid var(--orange); pointer-events: none; }
.framed img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 48px); margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-row .stat__num { font-size: clamp(28px, 3.4vw, 34px); }
.stat-row .stat__label { color: var(--taupe); }
.value { border: 1px solid rgba(255,255,255,.12); padding: 40px 34px; height: 100%; }
.value__num { font-family: var(--serif); font-size: 52px; color: var(--orange); line-height: 1; }
.value__title { font-size: 19px; font-weight: 700; margin: 18px 0 12px; }
.value__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.65); }
.team-card { text-align: center; }
.team-card__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team-card h3 { font-size: 17px; font-weight: 700; margin-top: 18px; }
.team-card__role { font-size: 14px; color: var(--taupe); margin-top: 4px; }
.badge { background: #fff; border: 1px solid var(--border); padding: 30px 28px; height: 100%; }
.badge h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.badge p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---- contact ------------------------------------------------------------- */
.form { background: #fff; border: 1px solid var(--border); padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; }
.field input, .field textarea, .field select {
  border: 1px solid var(--border-input); padding: 14px 16px; font-size: 15px; background: var(--cream);
  outline: none; border-radius: var(--radius); font-family: inherit; color: var(--ink); transition: border-color .2s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: 12.5px; color: var(--taupe); line-height: 1.6; }
.form__ok { background: #E9F6EC; border: 1px solid #B7E0C0; color: #1C6B33; padding: 14px 16px; border-radius: var(--radius); font-size: 14.5px; font-weight: 600; }
.info-card { background: var(--navy); color: #fff; padding: clamp(30px, 3.5vw, 40px) clamp(28px, 3.5vw, 42px); }
.info-card h2 { margin-bottom: 22px; }
.info-row { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; padding-block: 2px; }
.info-row span:first-child { color: rgba(255,255,255,.55); }
.info-row a, .info-row span:last-child { color: #fff; font-weight: 600; }
.info-row a:hover { color: var(--orange); }
.pill-list { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; font-size: 13.5px; font-weight: 600; }
.pill { background: #fff; border: 1px solid var(--border); padding: 9px 18px; border-radius: 999px; }

/* ---- footer -------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #fff; padding-block: clamp(48px, 6vw, 72px) calc(36px + env(safe-area-inset-bottom)); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer__about { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 280px; }
.footer__col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.4); }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---- floating actions ---------------------------------------------------- */
.whatsapp {
  position: fixed; right: calc(24px + env(safe-area-inset-right)); bottom: calc(24px + env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 55;
  transition: transform .2s var(--ease);
}
.whatsapp:hover { transform: scale(1.08); }

/* ---- lightbox ------------------------------------------------------------ */
.lightbox { position: fixed; inset: 0; background: rgba(8,16,22,.92); z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox[data-open] { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; border-radius: 999px; transition: background .2s var(--ease); }
.lightbox__close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: 14px; }

/* ---- scroll reveal (progressive enhancement; hidden only when JS active) - */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
}

@media (max-width: 900px) {
  .nav__menu, .nav__links .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .usp__item:nth-child(2) { border-right: 0; }
  .usp__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .grid-3, .grid-4, .projects { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { max-width: 460px; margin-top: 8px; }
  .hero__figure img { aspect-ratio: 16 / 11; }
  .feature { grid-template-columns: 1fr; }
  .feature__img { min-height: 300px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse .split__img { order: 0; }
  .sect-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .topbar__inner { flex-direction: column; gap: 4px; text-align: center; font-size: 12px; }
  .topbar__contact { gap: 18px; }
  .grid-3, .grid-4, .projects { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { width: 100%; }
  .info-row { flex-direction: column; gap: 2px; }
  .info-row span:last-child, .info-row a { align-self: flex-start; }
  .lightbox__nav { width: 44px; height: 44px; }
  .whatsapp { right: calc(16px + env(safe-area-inset-right)); bottom: calc(16px + env(safe-area-inset-bottom)); }
}

/* contact page: form wider than info on desktop, single column on mobile */
@media (min-width: 901px) { .split--wide-left { grid-template-columns: 1.3fr 1fr; } }

/* ---- project gallery covers + count badge ------------------------------- */
.project__cover { position: relative; overflow: hidden; }
.project__count {
  position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(13,27,36,.82); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 11px;
  border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); pointer-events: none;
}
.project__count svg { width: 13px; height: 13px; display: block; }

/* ---- lightbox counter --------------------------------------------------- */
.lightbox__counter { position: absolute; top: 22px; left: 24px; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; letter-spacing: .02em; }

/* ---- home 'recent work' strip ------------------------------------------- */
.workstrip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.workstrip a { display: block; overflow: hidden; position: relative; }
.workstrip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .5s var(--ease); }
.workstrip a:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .workstrip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .workstrip { grid-template-columns: repeat(2, 1fr); } }
