:root {
  --bg: #0e0e0e;
  --bg-2: #181818;
  --surface: #ffffff;
  --surface-2: #f6f4ef;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --muted: #5e5e5e;
  --line: #e7e3d9;
  --accent: #ee7a1c;
  --accent-hi: #f59331;
  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 64px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink); background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6; font-size: 17px;
}
h1, h2, h3, h4 { font-family: "Archivo", system-ui, sans-serif; letter-spacing: -0.01em; margin: 0; }
img { display: block; }
button { font-family: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: "Archivo"; font-size: 12px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--accent); }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .25s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(14px);
  padding: 12px var(--pad-x);
  border-bottom-color: rgba(255,255,255,0.06);
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--accent); color: #fff;
  font-family: "Archivo"; font-weight: 900; font-size: 18px;
  letter-spacing: -0.06em;
}
.brand-text { line-height: 1.05; white-space: nowrap; }
.brand-text b {
  font-family: "Archivo"; font-weight: 800; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.brand-text small {
  display: block; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.22em;
  margin-top: 3px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; transition: color .15s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 12px 20px; font-size: 13px; font-weight: 800;
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s ease, color .15s ease;
}
.nav-cta:hover { background: #fff; color: var(--ink); }

/* --- Hero --- */
.hero {
  position: relative; height: 100vh; min-height: 660px;
  overflow: hidden; color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease; transform: scale(1.03);
}
.hero-slide.active { opacity: 1; transform: scale(1); transition: opacity 1.2s ease, transform 8s ease-out; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  max-width: var(--maxw); margin: 0 auto;
  padding: 110px var(--pad-x) 120px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-eyebrow {
  color: var(--accent); font-family: "Archivo"; font-weight: 800;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(48px, 8.2vw, 124px); font-weight: 900;
  line-height: 0.92; max-width: 14ch; text-transform: uppercase;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  margin-top: 26px; font-size: 19px; line-height: 1.55;
  max-width: 560px; color: rgba(255,255,255,0.88); font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; font-family: "Archivo"; font-size: 13px;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 0;
  transition: all .2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #fff; color: var(--ink); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.55); padding: 14px 24px;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); }

.hero-controls {
  position: absolute; right: var(--pad-x); bottom: 120px; z-index: 3;
  display: flex; flex-direction: column; gap: 20px; align-items: flex-end;
}
.hero-counter { font-family: "Archivo"; font-weight: 800; font-size: 28px; line-height: 1; }
.hero-counter .num { color: var(--accent); font-size: 36px; }
.hero-counter .tot { color: rgba(255,255,255,0.5); font-size: 18px; font-weight: 600; }
.hero-nav { display: flex; gap: 8px; }
.hero-nav button {
  width: 50px; height: 50px; background: rgba(255,255,255,0.08);
  color: #fff; border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
  display: grid; place-items: center; transition: all .2s ease;
}
.hero-nav button:hover { background: var(--accent); border-color: var(--accent); }
.hero-nav svg { width: 18px; height: 18px; }

.hero-scroll {
  position: absolute; left: var(--pad-x); bottom: 36px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.7); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
}
.hero-scroll-line {
  width: 60px; height: 1px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: -30px; top: 0;
  width: 30px; height: 100%; background: var(--accent);
  animation: scrollLine 2.4s infinite;
}
@keyframes scrollLine { 0% { left: -30px; } 100% { left: 60px; } }

/* --- Trust strip --- */
.trust {
  background: var(--bg); color: rgba(255,255,255,0.85);
  padding: 36px var(--pad-x);
  border-bottom: 1px solid #222;
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.trust-item { display: flex; gap: 18px; align-items: center; }
.trust-item .num {
  font-family: "Archivo"; font-weight: 900; font-size: 48px;
  color: var(--accent); line-height: 1; letter-spacing: -0.02em;
}
.trust-item .lbl {
  font-size: 13px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; max-width: 16ch; line-height: 1.4;
}

/* --- Sections --- */
.section { padding: 120px var(--pad-x); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(40px, 5.4vw, 72px); font-weight: 900;
  line-height: 0.95; text-transform: uppercase; max-width: 18ch;
  margin-top: 16px;
}
.section-head .head-right { max-width: 480px; }
.section-head p { color: var(--muted); font-size: 17px; line-height: 1.65; }

/* --- Services --- */
.services { background: var(--surface-2); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc {
  background: #fff; border: 1px solid var(--line);
  padding: 28px 26px 30px; position: relative;
  transition: all .25s ease; cursor: default;
}
.svc:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.svc-head { display: flex; align-items: center; justify-content: space-between; }
.svc-num {
  font-family: "Archivo"; font-weight: 800; font-size: 12px;
  color: var(--muted); letter-spacing: 0.18em;
}
.svc-icon {
  width: 44px; height: 44px; background: var(--accent);
  display: grid; place-items: center; color: #fff;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-img-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; margin-top: 20px; background: #f0eee8; }
.svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc-img { transform: scale(1.05); }
.svc h3 { font-size: 22px; font-weight: 800; margin-top: 22px; text-transform: uppercase; letter-spacing: 0.01em; }
.svc p { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.55; }
.svc-link {
  margin-top: 18px; color: var(--ink);
  font-family: "Archivo"; font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; gap: 8px; align-items: center;
  text-decoration: none;
}
.svc:hover .svc-link { color: var(--accent); }
.svc-link svg { width: 14px; height: 14px; transition: transform .2s; }
.svc:hover .svc-link svg { transform: translateX(4px); }

/* --- Featured --- */
.featured { background: var(--bg); color: #fff; }
.featured .section-head h2 { color: #fff; }
.featured .section-head p { color: rgba(255,255,255,0.65); }
.featured-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 56px; align-items: start;
}
.feat-carousel { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #000; min-width: 0; width: 100%; }
.feat-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; }
.feat-slide.active { opacity: 1; }
.feat-slide img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.feat-counter {
  position: absolute; top: 20px; left: 20px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  padding: 8px 14px; font-family: "Archivo"; font-weight: 800;
  font-size: 13px; letter-spacing: 0.14em;
}
.feat-counter .accent { color: var(--accent); }
.feat-thumbs {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; gap: 8px;
}
.feat-thumb {
  flex: 1; height: 6px; background: rgba(255,255,255,0.25);
  cursor: pointer; border: 0; padding: 0; transition: background .2s;
}
.feat-thumb.active { background: var(--accent); }
.feat-nav { position: absolute; bottom: 40px; right: 20px; display: flex; gap: 8px; }
.feat-nav button {
  width: 44px; height: 44px; background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: all .2s;
}
.feat-nav button:hover { background: var(--accent); border-color: var(--accent); }
.feat-nav svg { width: 16px; height: 16px; }

.feat-meta { display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.feat-tag {
  display: inline-block; align-self: flex-start;
  background: var(--accent); color: #fff;
  padding: 7px 14px; font-family: "Archivo"; font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.feat-meta h3 { font-size: clamp(32px, 3.4vw, 48px); font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.feat-meta .desc { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.7; }
.feat-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 36px; padding-top: 30px; border-top: 1px solid #2a2a2a;
}
.feat-spec dt {
  font-family: "Archivo"; font-weight: 800; font-size: 10.5px;
  color: var(--accent); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 6px;
}
.feat-spec dd { margin: 0; font-size: 15px; font-weight: 600; color: #fff; line-height: 1.4; }

/* --- Portfolio --- */
.portfolio { background: var(--surface); }
.filter-bar {
  display: inline-flex; flex-wrap: wrap; gap: 4px;
  padding: 6px; background: var(--surface-2); border: 1px solid var(--line);
  margin-bottom: 40px;
}
.filter-bar button {
  border: 0; background: transparent; cursor: pointer;
  padding: 12px 22px; font-family: "Archivo"; font-weight: 800;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); transition: all .15s ease;
}
.filter-bar button.active { background: var(--ink); color: #fff; }
.filter-bar button:hover:not(.active) { background: rgba(0,0,0,0.06); }
.filter-bar button .count {
  color: var(--muted); font-weight: 600; margin-left: 8px;
  font-size: 11px; opacity: 0.7;
}
.filter-bar button.active .count { color: rgba(255,255,255,0.6); }

.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  cursor: zoom-in; background: #f0eee8;
  border: 0; padding: 0;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75));
  opacity: 0; transition: opacity .25s ease;
}
.gal-item:hover::after { opacity: 1; }
.gal-label {
  position: absolute; left: 14px; bottom: 14px; right: 50px; z-index: 2;
  color: #fff; font-family: "Archivo"; font-weight: 800; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all .25s ease .05s;
  text-align: left;
}
.gal-item:hover .gal-label { opacity: 1; transform: translateY(0); }
.gal-zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 36px; height: 36px; background: var(--accent); color: #fff;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(8px); transition: all .25s ease;
}
.gal-item:hover .gal-zoom { opacity: 1; transform: translateY(0); }
.gal-item.hidden { display: none; }

/* --- Process --- */
.process { background: var(--surface-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: #fff; padding: 38px 30px 32px;
  border: 1px solid var(--line); position: relative; transition: all .25s ease;
}
.step:hover { border-color: var(--accent); }
.step-num {
  font-family: "Archivo"; font-weight: 900; font-size: 56px;
  color: var(--accent); line-height: 0.9; letter-spacing: -0.04em;
}
.step h3 { font-size: 20px; font-weight: 800; margin-top: 14px; text-transform: uppercase; letter-spacing: 0.01em; }
.step p { color: var(--muted); margin-top: 10px; font-size: 14.5px; line-height: 1.55; }

/* --- Testimonials --- */
.testimonials { background: var(--bg); color: #fff; }
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head p { color: rgba(255,255,255,0.6); }
.test-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.test-card {
  background: var(--bg-2); border: 1px solid #262626;
  padding: 36px 32px; position: relative;
  display: flex; flex-direction: column;
}
.test-card .quote-mark {
  font-family: "Archivo"; font-size: 80px; line-height: 0.5;
  color: var(--accent); font-weight: 900; margin-bottom: 18px;
}
.test-card .quote {
  font-size: 15.5px; line-height: 1.7;
  color: rgba(255,255,255,0.82); flex: 1;
}
.test-card .who {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid #262626;
}
.test-card .who-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #2a2a2a center/cover; flex-shrink: 0;
}
.test-card .who-initials {
  display: flex; align-items: center; justify-content: center;
  font-family: "Archivo"; font-weight: 800; font-size: 16px;
  color: var(--accent); background: rgba(238,122,28,0.12);
  letter-spacing: 0.04em;
}
.test-card .who-name {
  font-family: "Archivo"; font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.test-card .who-role { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.test-card.cta {
  background: var(--accent); border-color: var(--accent);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 20px;
}
.test-card.cta h3 {
  font-size: 32px; font-weight: 900;
  text-transform: uppercase; line-height: 1; color: #fff;
}
.test-card.cta p { font-size: 16px; color: rgba(255,255,255,0.95); }
.test-card.cta .btn-dark { margin-top: 10px; }

/* --- Contact --- */
.contact { background: var(--surface); padding: 120px var(--pad-x); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; }
.contact-info h2 {
  font-size: clamp(40px, 5vw, 64px); text-transform: uppercase;
  font-weight: 900; line-height: 0.95; margin-top: 16px;
}
.contact-info .lede { color: var(--muted); margin-top: 20px; max-width: 44ch; font-size: 17px; line-height: 1.65; }
.contact-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .ico {
  width: 48px; height: 48px; background: var(--surface-2);
  display: grid; place-items: center; color: var(--accent); flex-shrink: 0;
}
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item .lbl {
  font-family: "Archivo"; font-weight: 800; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.contact-item .val {
  font-size: 18px; font-weight: 700; color: var(--ink);
  text-decoration: none; line-height: 1.3; margin-top: 4px; display: block;
}
.contact-item .val:hover { color: var(--accent); }
.contact-item .val-sub { font-weight: 500; font-size: 15px; color: var(--muted); margin-top: 2px; }

.contact-form { background: var(--surface-2); padding: 44px 40px; }
.contact-form h3 { font-size: 26px; font-weight: 900; text-transform: uppercase; }
.contact-form > p { color: var(--muted); margin: 8px 0 30px; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: "Archivo"; font-weight: 800; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 15px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 0; color: var(--ink); width: 100%;
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }

/* --- Footer --- */
.footer { background: #000; color: rgba(255,255,255,0.6); padding: 64px var(--pad-x) 36px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand-mark { width: 48px; height: 48px; font-size: 22px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 18px 0 0; max-width: 32ch; line-height: 1.65; }
.footer-col h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 18px; font-weight: 800; }
.footer-col a, .footer-col p { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 10px; line-height: 1.55; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid #1a1a1a;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* --- Lightbox --- */
.lb { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 100; display: none; }
.lb.open { display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 92vw; max-height: 86vh; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: all .15s ease;
}
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover, .lb-close:hover { background: var(--accent); border-color: var(--accent); }
.lb-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-family: "Archivo"; font-weight: 800;
  letter-spacing: 0.18em; font-size: 13px;
}
.lb-counter .accent { color: var(--accent); }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .svc-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
}
@media (max-width: 820px) {
  .featured-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .test-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px var(--pad-x); }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .hero-controls { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .feat-specs { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 580px) {
  :root { --pad-x: 18px; }

  /* Nav */
  .nav { padding: 14px var(--pad-x); gap: 10px; }
  .nav.scrolled { padding: 10px var(--pad-x); }
  .brand-mark { width: 34px; height: 34px; font-size: 15px; }
  .brand { gap: 10px; }
  .brand-text b { font-size: 13px; letter-spacing: 0.02em; }
  .brand-text small { font-size: 9px; letter-spacing: 0.14em; }
  .nav-cta { padding: 10px 14px; font-size: 11px; letter-spacing: 0.06em; gap: 6px; }
  .nav-cta svg { width: 12px; height: 12px; }

  /* Hero */
  .hero { min-height: 560px; }
  .hero-inner { padding: 90px var(--pad-x) 80px; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: 16px; margin-top: 18px; }
  .hero-actions { margin-top: 28px; flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-scroll { display: none; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; margin-bottom: 16px; }

  /* Trust strip */
  .trust { padding: 28px var(--pad-x); }
  .trust-inner { grid-template-columns: 1fr; gap: 22px; }
  .trust-item { gap: 14px; }
  .trust-item .num { font-size: 36px; }
  .trust-item .lbl { font-size: 12px; max-width: none; }

  /* Sections */
  .section { padding: 60px var(--pad-x); }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(30px, 8vw, 42px); }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc { padding: 22px 20px 24px; }
  .svc h3 { font-size: 18px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .step { padding: 28px 22px 24px; }
  .step-num { font-size: 42px; }
  .step h3 { font-size: 17px; }

  /* Portfolio */
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .filter-bar { gap: 2px; padding: 4px; }
  .filter-bar button { padding: 10px 14px; font-size: 10px; }

  /* Featured */
  .feat-meta h3 { font-size: clamp(26px, 7vw, 36px); }
  .feat-meta .desc { font-size: 15px; }
  .feat-carousel { aspect-ratio: 3/2; }

  /* Testimonials */
  .test-card { padding: 28px 22px; }
  .test-card .quote-mark { font-size: 56px; }
  .test-card .quote { font-size: 14.5px; }
  .test-card.cta h3 { font-size: 24px; }

  /* Contact */
  .contact { padding: 60px var(--pad-x); }
  .contact-form { padding: 28px 22px; }
  .contact-form h3 { font-size: 22px; }

  /* Footer */
  .footer { padding: 48px var(--pad-x) 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { font-size: 11px; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 12px; }
}
