/* ==========================================================================
   Vandance Development — vandancedevelopment.com
   ========================================================================== */

:root {
  --ink: #131a22;
  --ink-2: #1c2530;
  --ink-3: #27323f;
  --paper: #f6f4ef;
  --white: #ffffff;
  --accent: #e8611c;
  --accent-dark: #c74e12;
  --muted: #5c6672;
  --muted-light: #9aa6b2;
  --line: #e3ded4;
  --line-dark: #313d4b;
  --radius: 6px;
  --shadow: 0 16px 40px rgba(19, 26, 34, 0.14);
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Type ---------- */

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; text-transform: uppercase; letter-spacing: 0.01em; }

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.section-lede { max-width: 620px; color: var(--muted); margin-bottom: 2.5rem; font-size: 1.06rem; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.accent { color: var(--accent); }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.section--dark { background: var(--ink); color: var(--white); }
.section--dark .section-lede { color: var(--muted-light); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.02rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); }

.btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn--ghost-dark { border-color: rgba(255, 255, 255, 0.55); }

.btn--block { width: 100%; text-align: center; }

/* ---------- Top bar ---------- */

.topbar {
  background: var(--ink);
  color: var(--muted-light);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line-dark);
}

.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; gap: 1rem; }

.topbar__phone { color: var(--accent); text-decoration: none; font-weight: 600; letter-spacing: 0.04em; }
.topbar__phone:hover { color: var(--white); }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 26, 34, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.7rem;
  border-radius: var(--radius);
  line-height: 1;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.brand__sub {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--accent);
}

.nav { display: flex; align-items: center; gap: 1.6rem; }

.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__link:hover { color: var(--accent); }

.nav__link--cta {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}

.nav__link--cta:hover { background: var(--accent-dark); color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, #2b3644 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

/* CSS skyline silhouette */
.hero__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46%;
  opacity: 0.5;
  background:
    linear-gradient(to top, rgba(232, 97, 28, 0.16), transparent 60%),
    /* buildings drawn as hard-stop gradients */
    linear-gradient(to top, #0d1319 0, #0d1319 34%, transparent 34%) 0 100% / 7% 100% no-repeat,
    linear-gradient(to top, #0f1620 0, #0f1620 78%, transparent 78%) 8% 100% / 6% 100% no-repeat,
    linear-gradient(to top, #0d1319 0, #0d1319 52%, transparent 52%) 15% 100% / 8% 100% no-repeat,
    linear-gradient(to top, #10171f 0, #10171f 92%, transparent 92%) 25% 100% / 5% 100% no-repeat,
    linear-gradient(to top, #0d1319 0, #0d1319 64%, transparent 64%) 31% 100% / 7% 100% no-repeat,
    linear-gradient(to top, #0f1620 0, #0f1620 44%, transparent 44%) 40% 100% / 9% 100% no-repeat,
    linear-gradient(to top, #10171f 0, #10171f 84%, transparent 84%) 51% 100% / 6% 100% no-repeat,
    linear-gradient(to top, #0d1319 0, #0d1319 58%, transparent 58%) 58% 100% / 8% 100% no-repeat,
    linear-gradient(to top, #0f1620 0, #0f1620 96%, transparent 96%) 68% 100% / 5% 100% no-repeat,
    linear-gradient(to top, #0d1319 0, #0d1319 48%, transparent 48%) 74% 100% / 8% 100% no-repeat,
    linear-gradient(to top, #10171f 0, #10171f 70%, transparent 70%) 84% 100% / 6% 100% no-repeat,
    linear-gradient(to top, #0d1319 0, #0d1319 40%, transparent 40%) 92% 100% / 8% 100% no-repeat;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero__inner {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.hero__lede { font-size: 1.15rem; color: rgba(255, 255, 255, 0.82); max-width: 620px; margin-bottom: 2.2rem; }

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats { position: relative; background: rgba(13, 19, 25, 0.72); border-top: 1px solid var(--line-dark); backdrop-filter: blur(4px); }

.hero__stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.8rem 0; }

.stat { text-align: center; }

.stat__num, .stat__plus {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--white);
}

.stat__plus { color: var(--accent); }

.stat__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-light);
  margin-top: 0.2rem;
}

/* ---------- About ---------- */

.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }

.about__media { position: relative; min-height: 460px; }

.about__photo { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); }

.about__photo--main {
  inset: 0 12% 14% 0;
  background:
    linear-gradient(rgba(19, 26, 34, 0.15), rgba(19, 26, 34, 0.4)),
    repeating-linear-gradient(0deg, #7d6a56 0 14px, #6f5d4a 14px 16px),
    #7d6a56;
}

/* window grid over the "brick" block */
.about__photo--main::after {
  content: "";
  position: absolute;
  inset: 12% 14%;
  background:
    linear-gradient(rgba(220, 232, 240, 0.9), rgba(160, 185, 205, 0.9)) padding-box;
  background-size: 100% 100%;
  border: 0;
  border-radius: 3px;
  box-shadow:
    0 0 0 6px #4a3f33,
    inset 0 0 0 2px rgba(255, 255, 255, 0.4);
  background-image:
    linear-gradient(rgba(90, 120, 145, 0.5) 2px, transparent 2px),
    linear-gradient(90deg, rgba(90, 120, 145, 0.5) 2px, transparent 2px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(rgba(200, 220, 235, 1), rgba(140, 170, 195, 1));
  background-size: 100% 33.4%, 50.5% 100%, 100% 100%, 100% 100%;
}

.about__photo--accent {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 44%;
  background:
    repeating-linear-gradient(45deg, var(--accent) 0 18px, var(--ink) 18px 36px);
  opacity: 0.92;
}

.about__badge {
  position: absolute;
  left: -4%;
  bottom: 6%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.4rem;
  text-align: center;
}

.about__badge-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.about__badge-label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--ink);
}

.about__copy p { margin-bottom: 1.1rem; color: var(--muted); }
.about__copy p strong { color: var(--ink); }

.checklist { list-style: none; margin: 1.4rem 0 2rem; }

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.05em;
  height: 0.55em;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Services ---------- */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.service-card__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.service-card h3 { font-size: 1.4rem; margin: 0.6rem 0 0.7rem; }

.service-card p { color: var(--muted-light); font-size: 0.95rem; }

/* ---------- Featured project ---------- */

.featured { background: var(--white); padding: clamp(4rem, 8vw, 6.5rem) 0; border-top: 1px solid var(--line); }

.featured__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }

.featured__photo {
  height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    /* crane */
    linear-gradient(#3a4552 0 0) 78% 8% / 2.5% 44% no-repeat,
    linear-gradient(#3a4552 0 0) 48% 8% / 46% 2% no-repeat,
    linear-gradient(#3a4552 0 0) 60% 14% / 1% 18% no-repeat,
    /* building massing */
    linear-gradient(to top, #24303c 0, #24303c 62%, transparent 62%) 12% 100% / 30% 100% no-repeat,
    linear-gradient(to top, #2d3a48 0, #2d3a48 78%, transparent 78%) 46% 100% / 26% 100% no-repeat,
    linear-gradient(to top, #24303c 0, #24303c 50%, transparent 50%) 88% 100% / 22% 100% no-repeat,
    /* glow + sky */
    radial-gradient(120% 80% at 70% 10%, rgba(232, 97, 28, 0.35), transparent 55%),
    linear-gradient(180deg, #d7a06b 0%, #8c5a3c 45%, #131a22 100%);
}

.featured__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin: 1.6rem 0 2rem;
}

.featured__specs dt {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
}

.featured__specs dd { font-weight: 600; }

.featured__copy > p { color: var(--muted); }

/* ---------- Projects ---------- */

.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(19, 26, 34, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.project-card__img { position: relative; height: 190px; }

.project-card__img--1 { background: linear-gradient(150deg, #8a6f52 0%, #5e4a36 60%, #2e2418 100%); }
.project-card__img--2 { background: linear-gradient(150deg, #47586b 0%, #2c3a4a 60%, #16202b 100%); }
.project-card__img--3 { background: linear-gradient(150deg, #b58a5a 0%, #7d5c3a 60%, #3c2c1c 100%); }
.project-card__img--4 { background: linear-gradient(150deg, #6b5a6e 0%, #463a4a 60%, #221c26 100%); }
.project-card__img--5 { background: linear-gradient(150deg, #5a7d6b 0%, #3a5548 60%, #1c2a22 100%); }
.project-card__img--6 { background: linear-gradient(150deg, #d98643 0%, #9c5a26 60%, #4a2a10 100%); }

.project-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.project-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
}

.project-card__body { padding: 1.4rem 1.4rem 1.6rem; }

.project-card__body h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }

.project-card__meta {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.project-card__body p:last-child { color: var(--muted); font-size: 0.95rem; }

/* ---------- Process ---------- */

.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.5rem; }

.process-step {
  border-top: 3px solid var(--accent);
  background: var(--ink-2);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.6rem 1.4rem;
}

.process-step__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.process-step h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

.process-step p { color: var(--muted-light); font-size: 0.95rem; }

/* ---------- Why ---------- */

.why { background: var(--white); }

.why__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }

.why__copy > p { color: var(--muted); margin-bottom: 1.6rem; }

.quote {
  border-left: 4px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin-top: 1.8rem;
}

.quote p { font-size: 1.15rem; font-weight: 500; line-height: 1.5; margin-bottom: 0.7rem; }

.quote cite {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--muted);
}

.why__pillars { display: grid; gap: 1.2rem; }

.pillar {
  display: flex;
  gap: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar:hover { border-color: var(--accent); transform: translateX(4px); }

.pillar__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
}

.pillar h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }

.pillar p { color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    repeating-linear-gradient(45deg, rgba(232, 97, 28, 0.08) 0 24px, transparent 24px 48px),
    var(--ink);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }

.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Contact ---------- */

.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }

.contact__info > p { color: var(--muted); margin-bottom: 1.8rem; }

.contact__details { list-style: none; display: grid; gap: 1.3rem; }

.contact__details li { display: grid; gap: 0.15rem; }

.contact__label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
}

.contact__details a { color: var(--ink); font-weight: 600; text-decoration: none; font-size: 1.15rem; }
.contact__details a:hover { color: var(--accent); }

.contact__details address { font-style: normal; font-weight: 500; }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.contact__form label { display: grid; gap: 0.35rem; }

.contact__form label span {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--ink);
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact__form textarea { resize: vertical; }

.form-note { font-size: 0.88rem; color: var(--muted); text-align: center; }
.form-note a { color: var(--accent); font-weight: 600; text-decoration: none; }

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-weight: 500;
}

/* ---------- Footer ---------- */

.footer { background: var(--ink); color: var(--muted-light); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer__brand p { margin-top: 1rem; font-size: 0.92rem; max-width: 280px; }

.footer__col { display: grid; gap: 0.55rem; align-content: start; }

.footer__col h4 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}

.footer__col a { color: var(--muted-light); text-decoration: none; font-size: 0.92rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--accent); }

.footer__col span { font-size: 0.92rem; }

.footer__bar { border-top: 1px solid var(--line-dark); }

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  font-size: 0.82rem;
}

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .services__grid, .projects__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .about__grid, .featured__inner, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    padding: 5.5rem 6% 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--line-dark);
    z-index: 99;
  }

  .nav.is-open { transform: translateY(0); }

  .nav__link { padding: 0.8rem 0; font-size: 1.2rem; width: 100%; }

  .nav__link--cta { text-align: center; margin-top: 0.8rem; padding: 0.8rem 1.2rem; }

  .nav-toggle { display: block; position: relative; z-index: 100; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero__stats-inner { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }

  .services__grid, .projects__grid, .process__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .topbar__inner { justify-content: center; }
  .topbar__item:first-child { display: none; }

  .about__badge { left: 0; }
}
