:root {
  --navy: #07151d;
  --navy-2: #0c2430;
  --navy-3: #123040;
  --teal: #1aa6a6;
  --teal-2: #128f8f;
  --teal-soft: rgba(26, 166, 166, .14);
  --copper: #c47a4a;
  --copper-2: #a86438;
  --sand: #f4efe6;
  --cream: #faf8f4;
  --ink: #12202a;
  --muted: #5c6b73;
  --line: rgba(12, 36, 48, .1);
  --white: #fff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(7, 21, 29, .12);
  --shadow-lg: 0 30px 70px rgba(7, 21, 29, .18);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --max: 1180px;
  --header: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg, video, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.03em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; display: block; }

.skip {
  position: absolute; left: -999px; top: 8px;
  background: var(--teal); color: #fff; padding: 8px 14px; z-index: 100;
}
.skip:focus { left: 8px; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: .25s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); }
.btn--line { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--line:hover { background: var(--navy); color: #fff; }
.btn--sm { height: 44px; padding: 0 18px; font-size: 13px; }
.btn--block { width: 100%; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 16px;
}
.topbar__left { display: flex; gap: 22px; }
.topbar__left a { display: inline-flex; align-items: center; gap: 8px; }
.topbar__left svg { width: 14px; height: 14px; color: var(--teal); }
.topbar__tag { margin: 0; color: var(--teal); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(7,21,29,.06);
}
.header__inner {
  display: flex; align-items: center; gap: 16px;
  min-height: var(--header);
  min-width: 0;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.logo__mark { width: 42px; height: 42px; color: var(--navy); }
.logo__mark svg { width: 42px; height: 42px; }
.logo__text { display: flex; flex-direction: column; }
.logo__text strong { font-family: var(--display); font-size: 20px; letter-spacing: -.04em; line-height: 1; }
.logo__text small { color: var(--muted); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.logo--light { color: #fff; }
.logo--light .logo__text small { color: rgba(255,255,255,.6); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav__drop > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 10px; font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative;
}
.nav > a.is-active, .nav__drop > a.is-active { color: var(--teal-2); }
.nav > a.is-active::after, .nav__drop > a.is-active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--teal); border-radius: 2px;
}
.caret {
  width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav__drop { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% - 4px); left: 0; min-width: 260px;
  background: #fff; border-radius: 16px; padding: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: .2s ease;
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu {
  opacity: 1; pointer-events: auto; transform: none;
}
.nav__menu a {
  display: block; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500;
}
.nav__menu a:hover { background: var(--sand); color: var(--teal-2); }
.nav > a.header__cta-mobile { display: none; }
.burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; padding: 10px; flex-shrink: 0;
}
.burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; transform-origin: center; }
.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 20px; }
.burger.is-open span:nth-child(1) { width: 22px; transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { width: 22px; transform: translateY(-8px) rotate(-45deg); }
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 45;
  background: rgba(7, 21, 29, .45);
}
.nav-backdrop.is-on { display: block; }

/* Hero */
.hero { position: relative; min-height: min(88vh, 820px); color: #fff; overflow: hidden; background: var(--navy); }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
  background-size: cover; background-position: center;
}
.hero__slide.is-on { opacity: 1; }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,21,29,.82) 0%, rgba(7,21,29,.45) 48%, rgba(7,21,29,.2) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  min-height: min(88vh, 820px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 100px; max-width: 680px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--teal); }
.hero h1 { font-size: clamp(28px, 5.4vw, 68px); margin: 0 0 18px; }
.hero p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .hero__nav {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 20px;
  width: 100%; max-width: var(--max); margin-inline: auto;
  display: flex; justify-content: space-between; align-items: center;
}
.hero__dots { display: flex; gap: 8px; }
.hero__dots button {
  width: 10px; height: 10px; border-radius: 99px; border: 0; background: rgba(255,255,255,.35); cursor: pointer;
}
.hero__dots button.is-on { width: 28px; background: var(--teal); }
.hero__arrows { display: flex; gap: 8px; }
.hero__arrows button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center;
}
.hero__arrows button:hover { background: #fff; color: var(--navy); }

.section { padding: 88px 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: #fff; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section__head p { color: var(--muted); }
.section--navy .section__head p { color: rgba(255,255,255,.7); }

.rule {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-2); font-weight: 600;
  margin-bottom: 12px;
}
.rule::before, .rule::after { content: ""; width: 42px; height: 1px; background: currentColor; opacity: .5; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--navy-2); margin-top: -1px; position: relative; z-index: 4;
}
.stat { background: var(--navy); padding: 28px 20px; text-align: center; }
.stat b { display: block; font-family: var(--display); font-size: 32px; color: var(--teal); }
.stat span { color: rgba(255,255,255,.65); font-size: 14px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillars--4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillars--4 .pillar { min-height: 360px; }
.pillars--4 .pillar__body h3 { font-size: 22px; }
.pillar {
  position: relative; min-height: 420px; border-radius: 24px; overflow: hidden;
  color: #fff; isolation: isolate; display: flex; align-items: flex-end;
}
.pillar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: .6s; }
.pillar::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(7,21,29,.88) 100%);
}
.pillar:hover img { transform: scale(1.06); }
.pillar__body { padding: 28px; }
.pillar__body h3 { font-size: 28px; margin-bottom: 8px; }
.pillar__body p { color: rgba(255,255,255,.78); }
.pillar .btn { margin-top: 8px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split__visual { position: relative; }
.split__visual img { border-radius: 24px; height: 520px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.split__badge {
  position: absolute; left: -18px; bottom: 32px; background: var(--teal); color: #fff;
  padding: 22px 24px; border-radius: 18px; max-width: 200px;
  box-shadow: var(--shadow);
}
.split__badge b { display: block; font-family: var(--display); font-size: 28px; }
.checks { display: grid; gap: 10px; margin: 22px 0 28px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.6' d='M2 6l3 3 5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  transition: .25s ease; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card img { height: 190px; width: 100%; object-fit: cover; }
.svc-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card__icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-2);
  display: grid; place-items: center; margin-bottom: 12px;
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card h2, .svc-card h3 { font-size: 22px; }
.svc-card p { color: var(--muted); flex: 1; }
.svc-card a.more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-2); font-weight: 600; margin-top: 8px; }
.svc-card a.more svg { width: 16px; height: 16px; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.filter {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 16px;
  cursor: pointer; font-weight: 500; font-size: 14px;
}
.filter.is-on, .filter:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proj {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 280px; color: #fff; display: block;
}
.proj img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.proj:hover img { transform: scale(1.06); }
.proj__meta {
  position: relative; z-index: 1; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; background: linear-gradient(180deg, transparent 30%, rgba(7,21,29,.85));
}
.tag {
  display: inline-flex; align-self: flex-start; background: var(--teal); color: #fff;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px; margin-bottom: 8px;
}
.proj h3 { font-size: 20px; margin: 0; }
.proj span { opacity: .8; font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 26px 22px;
}
.step b { display: block; font-family: var(--display); font-size: 28px; color: var(--teal); margin-bottom: 10px; }
.step h3 { font-size: 20px; }
.step p { color: rgba(255,255,255,.68); margin: 0; }

.why { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why article {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.why h3 { font-size: 20px; }
.why p { color: var(--muted); margin: 0; }

.cta-band {
  background:
    linear-gradient(90deg, rgba(7,21,29,.88), rgba(18,48,64,.7)),
    url("../img/works/work-01.jpg") center / cover;
  color: #fff; border-radius: 28px; padding: 56px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: 8px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.8); }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: #fff; border-radius: 20px; padding: 26px; border: 1px solid var(--line);
}
.quote p { font-size: 16px; }
.quote b { display: block; }
.quote small { color: var(--muted); }

.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq details {
  background: #fff; border-radius: 16px; border: 1px solid var(--line); padding: 4px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 16px; }

.page-hero {
  position: relative; min-height: 340px; display: grid; align-items: end;
  color: #fff; background: var(--navy) center / cover no-repeat;
  padding: 80px 0 48px;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,21,29,.35), rgba(7,21,29,.82));
}
.page-hero .container { position: relative; z-index: 1; }
.crumb {
  font-size: 13px; color: rgba(255,255,255,.7);
}
.crumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0 0 10px;
}
.crumb li { display: inline-flex; align-items: center; gap: 8px; }
.crumb li:not(:last-child)::after { content: "/"; opacity: .55; }
.crumb a:hover { color: var(--teal); }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); }

.prose { max-width: 740px; }
.prose p { color: var(--muted); font-size: 17px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 24px 0; }
.feature-list li {
  background: var(--sand); border-radius: 12px; padding: 12px 14px; font-weight: 500;
}

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.info-cards { display: grid; gap: 12px; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-card svg { width: 22px; height: 22px; color: var(--teal-2); margin-top: 2px; }
.info-card small { color: var(--muted); display: block; }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px;
  display: grid; gap: 14px;
}
.form.two { grid-template-columns: 1fr 1fr; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  height: 48px; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px;
  background: var(--cream); font-size: 16px; width: 100%; max-width: 100%;
}
.form textarea { height: 130px; padding: 12px 14px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--teal); outline-offset: 1px; background: #fff;
}
.hp { position: absolute; left: -9999px; }
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; }
.alert--ok { background: #e8f7f2; color: #0f6b56; }
.alert--err { background: #fdecea; color: #9b2c2c; }

.map {
  border: 0; width: 100%; height: 320px; border-radius: 20px; filter: grayscale(.3) contrast(1.05);
}

.footer {
  position: relative; background: #051017; color: rgba(255,255,255,.78); padding: 72px 0 0; overflow: hidden;
}
.footer__glow {
  position: absolute; width: 420px; height: 420px; right: -80px; top: -140px;
  background: radial-gradient(circle, rgba(26,166,166,.25), transparent 70%);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr .9fr .8fr 1fr; gap: 36px; position: relative; }
.footer h3 { color: #fff; font-size: 16px; letter-spacing: .08em; text-transform: uppercase; }
.footer a:hover { color: var(--teal); }
.footer__brand p { margin-top: 16px; max-width: 320px; }
.footer__contact li, .footer__contact a { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer address { font-style: normal; }
.footer__social { margin-top: 14px; font-size: 14px; }
.footer__social a { color: var(--teal); }
.footer__contact svg { width: 16px; height: 16px; color: var(--teal); margin-top: 4px; flex-shrink: 0; }
.footer ul li { margin-bottom: 8px; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 48px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px;
}

.float {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex; flex-direction: column; gap: 10px;
}
.float__btn {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow);
}
.float__btn svg { width: 22px; height: 22px; }
.float__btn--tel { background: #1d4e89; }
.float__btn--wa { background: #25d366; }

.reveal { opacity: 0; transform: translateY(18px); animation: up .7s ease forwards; }
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
@keyframes up { to { opacity: 1; transform: none; } }

.empty { text-align: center; padding: 40px; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery a {
  display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 1;
  background: var(--navy);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; transition: .45s ease;
}
.gallery a:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(7, 21, 29, .9);
  display: none; place-items: center; padding: 24px;
  cursor: zoom-out;
}
.lightbox.is-on { display: grid; }
.lightbox img {
  max-width: min(94vw, 1100px); max-height: 86vh; border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.svc-grid > *, .proj-grid > *, .pillars > *, .split > *,
.contact-grid > *, .footer__grid > *, .form > *, .why > * {
  min-width: 0;
}

.lightbox__close {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: #fff; color: var(--navy); font-size: 28px; cursor: pointer;
}

@media (max-width: 1100px) {
  .topbar { display: none; }
  .header__cta { display: none; }
  .nav > a.header__cta-mobile {
    display: flex; margin: 12px 16px 24px; justify-content: center;
  }
  .burger { display: flex; margin-left: auto; }
  .nav {
    position: fixed;
    top: var(--header); right: 0; bottom: 0; left: auto;
    width: min(340px, 88vw);
    background: #fff;
    flex-direction: column; align-items: stretch;
    padding: 8px 0 calc(110px + env(safe-area-inset-bottom));
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, visibility .25s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 51;
    gap: 0;
    margin: 0;
  }
  .nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav > a, .nav__drop > a {
    padding: 14px 20px;
    font-size: 16px;
  }
  .nav > a.is-active::after, .nav__drop > a.is-active::after { display: none; }
  .nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { transform: none; }
  .nav__menu {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; border: 0; padding: 0 12px 8px 24px; min-width: 0;
  }
  .stats, .pillars, .pillars--4, .svc-grid, .proj-grid, .steps, .quotes, .why, .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .split, .contact-grid, .cta-band, .footer__grid, .form.two, .feature-list {
    grid-template-columns: 1fr;
  }
  .split, .contact-grid, .cta-band, .footer__grid { display: flex; flex-direction: column; }
  .cta-band { padding: 36px 24px; align-items: flex-start; }
  .split__badge { left: 12px; }
  .footer__glow { width: 240px; height: 240px; right: -60px; }
}

@media (max-width: 720px) {
  :root { --header: 68px; }
  .container { padding-inline: 16px; }
  .pillars, .pillars--4, .svc-grid, .proj-grid, .quotes, .why, .feature-list, .form.two {
    grid-template-columns: 1fr;
  }
  .stats, .steps, .gallery { grid-template-columns: 1fr 1fr; }
  .hero { min-height: min(78vh, 640px); }
  .hero__content {
    min-height: min(78vh, 640px);
    padding: 48px 0 96px; max-width: 100%;
  }
  .hero__slide::after {
    background: linear-gradient(180deg, rgba(7,21,29,.5) 0%, rgba(7,21,29,.9) 100%);
  }
  .hero h1 { font-size: clamp(26px, 8vw, 38px); }
  .hero p { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; min-height: 48px; }
  .hero .hero__nav { bottom: 16px; }
  .hero__arrows button { width: 40px; height: 40px; }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 32px; }
  .page-hero { min-height: 220px; padding: 48px 0 28px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 40px); }
  .pillar, .pillars--4 .pillar { min-height: 300px; }
  .pillar__body { padding: 22px; }
  .pillar__body h3 { font-size: 22px; }
  .split__visual img { height: 280px; }
  .split__badge { left: 12px; right: auto; max-width: min(180px, calc(100% - 24px)); padding: 16px 18px; }
  .cta-band { padding: 28px 20px; border-radius: 20px; }
  .cta-band .btn { width: 100%; }
  .form { padding: 20px; border-radius: 18px; }
  .map { height: 240px; border-radius: 16px; }
  .footer { padding-top: 48px; }
  .footer__bottom { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .float__btn { width: 48px; height: 48px; }
  .lightbox { padding: 12px; }
  .lightbox img { max-width: 94vw; max-height: 78vh; }
}

@media (max-width: 380px) {
  .logo__text small { display: none; }
  .logo__mark, .logo__mark svg { width: 36px; height: 36px; }
  .stats, .steps { grid-template-columns: 1fr; }
}
