:root {
  --paper: #f7f5f0;
  --paper-2: #ebe7de;
  --concrete: #d5d3cc;
  --steel: #7d8587;
  --ink: #182126;
  --ink-2: #2d383e;
  --muted: #657176;
  --brand: #0f6b63;
  --brand-2: #09453f;
  --signal: #d96f32;
  --signal-2: #a84d25;
  --white: #ffffff;
  --rule: rgba(24, 33, 38, 0.14);
  --shadow: 0 18px 60px rgba(20, 28, 32, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.display {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}
.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before, .label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--signal);
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}
nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta, .btn-brand, .btn-ghost, .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.nav-cta, .btn-brand {
  color: var(--white);
  background: var(--brand);
}
.btn-brand:hover, .nav-cta:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-dark {
  color: var(--white);
  background: var(--ink);
}
.btn-dark:hover { background: var(--signal-2); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  place-items: center;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 890;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 96px 28px 40px;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mob-nav.open { opacity: 1; pointer-events: auto; }
.mob-nav a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 10vw, 3.2rem);
  color: var(--ink);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 5vw, 72px) 58px;
  background:
    linear-gradient(90deg, rgba(24, 33, 38, 0.94), rgba(24, 33, 38, 0.72) 48%, rgba(24, 33, 38, 0.40)),
    radial-gradient(circle at 86% 18%, rgba(217, 111, 50, 0.18), transparent 28%),
    var(--hero-photo),
    linear-gradient(135deg, #2d383e, #6b716f);
  background-position: center;
  background-size: cover;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -24% 40%;
  height: 64%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.11) 0 2px, transparent 2px 70px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 70px);
  transform: rotate(-8deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: end;
  width: 100%;
}
.hero h1 {
  max-width: 960px;
  margin-top: 22px;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
}
.hero .lead {
  margin-top: 24px;
  color: rgba(255,255,255,0.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.34);
}
.hero-card {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(24,33,38,0.58);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 26px;
}
.hero-card h2 {
  font-size: 1.65rem;
  margin-bottom: 18px;
}
.hero-specs {
  display: grid;
  gap: 14px;
}
.hero-specs li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  list-style: none;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}
.hero-specs b {
  display: block;
  color: var(--white);
  margin-bottom: 3px;
}
.spec-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--signal);
  color: var(--white);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.75rem;
}

.page-header, .gallery-hero {
  padding: 156px clamp(20px, 5vw, 72px) 76px;
  background:
    linear-gradient(120deg, rgba(15, 107, 99, 0.14), transparent 48%),
    var(--paper-2);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.page-header .inner, .gallery-hero .inner {
  max-width: 980px;
}
.page-header h1, .gallery-hero h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
}
.page-header p, .gallery-hero p {
  margin-top: 20px;
}

.sec {
  padding: 86px clamp(20px, 5vw, 72px);
}
.sec.alt { background: var(--white); }
.sec.dark {
  color: var(--white);
  background: var(--ink);
}
.sec.dark .lead, .sec.dark p { color: rgba(255,255,255,0.72); }
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}
.sec-head.center {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.sec-head.center .eyebrow,
.sec-head.center .label { justify-content: center; }
.sec-head h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}
.sec-head p { margin-top: 18px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.text-stack {
  display: grid;
  gap: 18px;
}
.text-stack h2 {
  font-size: clamp(2.25rem, 4vw, 4.4rem);
}
.text-stack p {
  color: var(--muted);
  line-height: 1.8;
}

.visual-panel {
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  background:
    linear-gradient(135deg, rgba(15,107,99,0.18), rgba(217,111,50,0.12)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(24,33,38,0.08) 32px 34px),
    var(--concrete);
  position: relative;
  overflow: hidden;
}
.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.visual-panel .caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  color: var(--white);
  background: rgba(24,33,38,0.86);
  border-radius: 6px;
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  background: var(--white);
}
.trust-strip {
  display: grid;
  grid-template-columns: 0.85fr repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.trust-strip > * {
  min-height: 92px;
  padding: 20px;
  background: var(--paper);
}
.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}
.trust-strip span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.trust-strip .trust-label {
  background: var(--ink);
}
.trust-strip .trust-label strong {
  color: var(--white);
}
.trust-strip .trust-label span {
  color: rgba(255,255,255,0.66);
}
.stat {
  padding: 28px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--brand);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-grid, .srv-grid, .gallery-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-card, .srv-card, .gallery-card, .project-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.srv-card {
  display: flex;
  flex-direction: column;
}
.feature-card:hover, .srv-card:hover, .gallery-card:hover, .project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card, .srv-card { padding: 30px; }
.project-body { padding: 26px; }
.feature-card h3, .srv-card h3, .gallery-card h3, .project-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.15;
}
.feature-card p, .srv-card p, .gallery-card p, .project-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}
.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--white);
  background: var(--brand);
  font-family: "DM Mono", Consolas, monospace;
}
.srv-media, .project-media {
  flex: none;
  height: 230px;
  margin: -30px -30px 26px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(24,33,38,0.72), rgba(15,107,99,0.32)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 14px),
    var(--steel);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.8);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.srv-media img,
.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.process-step {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
}
.process-step span {
  color: var(--signal);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.78rem;
}
.process-step h3 {
  margin-top: 28px;
  font-size: 1.45rem;
}
.process-step p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.68;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.proof-list {
  display: grid;
  gap: 14px;
}
.proof-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
}
.proof-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  color: var(--white);
  background: var(--brand);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.78rem;
}
.proof-item h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}
.proof-item p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.doc-panel {
  border-radius: 8px;
  border: 1px solid var(--rule);
  background: var(--white);
  overflow: hidden;
}
.doc-panel-head {
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(15,107,99,0.92), rgba(24,33,38,0.92)),
    url("images/WhatsApp Image 2026-05-09 at 02.09.25.jpeg") center/cover;
}
.doc-panel-head h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}
.doc-panel-head p {
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.doc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
}
.doc-list li {
  min-height: 82px;
  padding: 18px;
  background: var(--white);
  list-style: none;
  color: var(--ink-2);
  line-height: 1.45;
}
.doc-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  border-radius: 4px;
  color: var(--white);
  background: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}
.cta-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: center;
  padding: 46px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
}
.quote-band p { color: rgba(255,255,255,0.84); line-height: 1.75; }

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}
.gallery-count {
  color: var(--muted);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gallery-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}
.photo-tile {
  position: relative;
  min-height: 220px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--concrete);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}
.photo-tile:nth-child(6n+1) { grid-row: span 2; min-height: 454px; }
.photo-tile:nth-child(8n+3) { grid-column: span 2; }
.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.photo-tile:hover img { transform: scale(1.04); filter: saturate(1.04); }
.photo-tile.missing img {
  opacity: 0;
}
.photo-tile.missing {
  background:
    linear-gradient(145deg, rgba(15,107,99,0.18), rgba(217,111,50,0.12)),
    repeating-linear-gradient(135deg, rgba(24,33,38,0.14) 0 2px, transparent 2px 16px),
    var(--paper-2);
}
.photo-info {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
}
.photo-info span {
  display: block;
  color: rgba(255,255,255,0.76);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-info strong {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
  line-height: 1.25;
}
.photo-tile.missing .photo-info {
  color: var(--ink);
  background: transparent;
}
.photo-tile.missing .photo-info span { color: var(--brand); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 34px;
  background: rgba(10, 15, 18, 0.92);
}
.lightbox.open { display: grid; }
.lightbox figure {
  width: min(1100px, 100%);
  max-height: 86vh;
}
.lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--ink);
}
.lightbox figcaption {
  margin-top: 14px;
  color: var(--white);
  line-height: 1.5;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; }
.lightbox-next { right: 22px; top: 50%; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
}
.contact-info {
  padding: 36px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}
.info-row + .info-row { margin-top: 26px; }
.info-row h4 {
  margin-bottom: 8px;
  color: var(--signal);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.info-row p, .info-row a {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  text-decoration: none;
}
.form-card {
  padding: 36px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-2);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  padding: 14px;
  color: var(--ink);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  background: var(--white);
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.support-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  background: rgba(247,245,240,0.97);
}
.support-bar p { color: var(--muted); font-size: 0.9rem; }
.support-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

footer {
  padding: 70px clamp(20px, 5vw, 72px) 30px;
  color: var(--white);
  background: var(--ink);
}
.ft-top {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ft-brand img {
  height: 46px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.ft-brand p {
  max-width: 360px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}
.ft-col h4 {
  margin-bottom: 16px;
  color: var(--signal);
  font-family: "DM Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ft-col ul {
  display: grid;
  gap: 10px;
  list-style: none;
}
.ft-col a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
}
.ft-col a:hover { color: var(--white); }
.ft-bot {
  padding-top: 22px;
  color: rgba(255,255,255,0.42);
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .hero-inner, .split, .sec-head, .quote-band, .contact-layout, .proof-layout, .cta-panel {
    grid-template-columns: 1fr;
  }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .trust-label { grid-column: 1 / -1; }
  .process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  body { padding-bottom: 72px; }
  nav { padding: 14px 20px; }
  .nav-logo img { height: 44px; }
  .nav-links, .nav-cta { display: none; }
  .burger {
    display: grid;
    position: fixed;
    left: 96px;
    right: auto;
    top: 14px;
    z-index: 940;
  }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-inner { gap: 28px; }
  .hero-card { padding: 22px; }
  .sec { padding-top: 62px; padding-bottom: 62px; }
  .card-grid, .srv-grid, .gallery-grid, .portfolio-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .doc-list { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
  .page-header, .gallery-hero { padding-top: 124px; }
  .photo-tile:nth-child(6n+1),
  .photo-tile:nth-child(8n+3) {
    grid-row: auto;
    grid-column: auto;
    min-height: 240px;
  }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .ft-top { grid-template-columns: 1fr; }
  .support-bar { display: flex; }
}

@media (max-width: 640px) {
  body,
  nav,
  .hero,
  .page-header,
  .gallery-hero,
  .sec,
  footer,
  .support-bar {
    max-width: 100vw;
  }
  nav,
  .support-bar {
    width: 100dvw;
  }
  .eyebrow, .label {
    display: block;
    max-width: 100%;
    font-size: 0.62rem;
    line-height: 1.45;
  }
  .eyebrow::before, .label::before {
    display: block;
    margin-bottom: 10px;
  }
  .hero h1,
  .page-header h1,
  .gallery-hero h1 {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: clamp(1.82rem, 8vw, 2.05rem);
    overflow-wrap: anywhere;
  }
  .hero-inner,
  .page-header .inner,
  .gallery-hero .inner,
  .sec > *,
  .split,
  .card-grid,
  .srv-grid,
  .portfolio-grid,
  .gallery-toolbar,
  .gallery-wall,
  .process,
  .quote-band,
  .contact-layout,
  .proof-layout,
  .proof-list,
  .doc-panel,
  .doc-list,
  .cta-panel,
  .trust-strip {
    width: calc(100dvw - 80px);
    min-width: 0;
    max-width: calc(100dvw - 80px);
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .hero-inner > *,
  .split > *,
  .hero-card,
  .text-stack {
    min-width: 0;
  }
  .hero .lead,
  .page-header p,
  .gallery-hero p {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }
  .hero-card h2 {
    font-size: 1.45rem;
    max-width: calc(100vw - 88px);
    overflow-wrap: anywhere;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-brand, .btn-ghost, .btn-dark { width: 100%; }
  .process { grid-template-columns: 1fr; }
  .gallery-toolbar { align-items: stretch; }
  .filter-group, .gallery-count { width: 100%; }
  .filter-group {
    display: grid;
    grid-template-columns: 1fr;
  }
  .filter-btn {
    width: 100%;
    white-space: normal;
  }
  .gallery-wall { grid-template-columns: 1fr; }
  .support-bar p {
    min-width: 0;
  }
  .support-bar a {
    display: none;
  }
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 18px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
}
