/* Bachour Contracting — bachourcontracting.com */

:root {
  /* Navy + gold on white, matching the logo lockup. */
  --bg: #ffffff; /* page */
  --surface: #f7f8fa; /* cards, raised blocks */
  --surface-2: #eef1f5; /* second-level blocks (project facts) */
  --deep: #16202f; /* navy — header, footer, trust bar, scrims */

  --text: #16202f; /* primary, on light */
  --text-2: #3a4757; /* form labels, secondary */
  --muted: #5a6675; /* body copy */
  --on-dark: #ffffff; /* text sitting on navy or on a photo */

  /* Gold is DECORATIVE on white — at 2.9:1 it fails contrast as small text.
     Use --accent for rules, borders and fills; --accent-2 when gold must be
     readable text on a light background. On navy, --accent is fine as text. */
  --accent: #b8965a;
  --accent-2: #7d6026;
  --green: #4d6a56;

  --line: rgba(22, 32, 47, 0.14);

  --shadow-sm: 0 2px 8px rgba(22, 32, 47, 0.07);
  --shadow-md: 0 14px 40px rgba(22, 32, 47, 0.11);
  --shadow-lg: 0 28px 70px rgba(22, 32, 47, 0.22);

  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 4px;

  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin-top: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--deep);
  color: var(--on-dark);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.5rem;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem var(--gutter);
  color: var(--on-dark);
  background: rgba(22, 32, 47, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
}

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

.brand-mark {
  width: auto;
  height: 2.6rem;
  flex: 0 0 auto;
}

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.17em;
  text-indent: 0.17em;
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  margin-top: 0.22rem;
  padding-top: 0.22rem;
  border-top: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 0.92rem;
  font-weight: 500;
}

nav a {
  color: rgba(255, 250, 242, 0.78);
  text-decoration: none;
  transition: color 0.15s;
}

nav a:hover {
  color: var(--on-dark);
}

.nav-phone {
  color: var(--on-dark) !important;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--deep) !important;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 250, 242, 0.3);
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin-inline: auto;
  background: var(--on-dark);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: relative;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 4px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--deep);
}

.button.primary:hover {
  background: #c9a86c;
}

.button.ghost {
  color: var(--on-dark);
  border-color: rgba(255, 250, 242, 0.55);
  background: rgba(23, 21, 18, 0.35);
  backdrop-filter: blur(4px);
}

.button.ghost:hover {
  background: rgba(255, 250, 242, 0.16);
}

.button.solid {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--on-dark);
}

.button.solid:hover {
  background: #22304a;
}

.button.outline {
  border-color: var(--text);
  color: var(--text);
}

.button.outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(84vh, 720px);
  padding: clamp(5rem, 12vw, 8rem) var(--gutter) clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  color: var(--on-dark);
}

.hero-bg,
.band picture img,
.contact > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lighter than a typical hero scrim on purpose — the photos are the product, and
   a heavy wash made the whole page read gloomy. Text sits over the darkest band. */
.hero-shade,
.band-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 21, 33, 0.86) 0%, rgba(14, 21, 33, 0.55) 42%, rgba(14, 21, 33, 0.1) 100%),
    linear-gradient(0deg, rgba(14, 21, 33, 0.5), rgba(14, 21, 33, 0) 60%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(46rem, 100%);
}

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

.lede {
  max-width: 38rem;
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ---------- trust bar ---------- */

.trust {
  padding: 1.35rem var(--gutter);
  background: var(--deep);
  color: var(--on-dark);
}






.trust ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent);
}

.trust strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trust span,
.trust a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.trust a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.trust a:hover {
  text-decoration: underline;
}

/* ---------- shared section layout ---------- */


.process,
.project,
.about,
.faq {
  width: min(var(--wrap), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.process,
.project,
.about,
.faq {
  padding-block: var(--section-y);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading > .eyebrow,
.section-heading > h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.section-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}








/* ---------- reviews ---------- */

.reviews {
  width: min(var(--wrap), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding-block: var(--section-y);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.25rem;
}

.review-grid article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: var(--surface);
}

.review-grid blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
}

.review-grid blockquote::before {
  content: open-quote;
  margin-right: 0.1em;
  color: var(--accent);
}

.review-grid blockquote::after {
  content: close-quote;
}

.review-grid cite {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- image bands ---------- */

.band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(60vh, 520px);
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  overflow: hidden;
  color: var(--on-dark);
}

.band-content {
  position: relative;
  z-index: 1;
  width: min(42rem, 100%);
}

.band-content.narrow {
  margin-left: auto;
}

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

.band-content p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.band-content .button {
  margin-top: 1.75rem;
}

/* ---------- process ---------- */

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process li {
  counter-increment: step;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 1.5rem;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* plain-language gloss under the one-word step name.
   --accent-2, not --accent: the decorative gold is only 2.6:1 on a light card. */
.process em {
  display: block;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 700;
}

/* the always-on communication promise, sitting under the four steps */
.promise {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
}

.promise-label {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 0.25rem;
}

.promise-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.promise-body strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

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

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.facts > div {
  padding: 1.15rem 1.25rem;
  background: var(--surface-2);
}

.facts dt {
  margin-bottom: 0.35rem;
  color: var(--accent-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sub-heading {
  margin-bottom: 0.35rem;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.sub-note {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* before / after */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.ba-item {
  margin: 0;
}

.ba {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--deep);
  border: 1px solid var(--line);
  touch-action: pan-y;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba::before,
.ba::after {
  position: absolute;
  bottom: 0.75rem;
  z-index: 3;
  padding: 0.3rem 0.6rem;
  background: rgba(14, 12, 10, 0.78);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba::before {
  content: "Before";
  left: 0.75rem;
}

.ba::after {
  content: "After";
  right: 0.75rem;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 2;
  width: 2px;
  margin-left: -1px;
  background: var(--on-dark);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.ba-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  transform: translate(-50%, -50%);
  border: 2px solid var(--on-dark);
  border-radius: 50%;
  background: rgba(14, 12, 10, 0.45) center / 1rem no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 4 3 12l6 8V4Zm6 0v16l6-8-6-8Z'/%3E%3C/svg%3E");
  backdrop-filter: blur(2px);
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  background: transparent;
}

.ba-range::-webkit-slider-thumb {
  appearance: none;
  width: 3rem;
  height: 100vh;
}

.ba-range::-moz-range-thumb {
  width: 3rem;
  height: 100vh;
  border: 0;
}

/* .ba-line precedes .ba-range in the DOM, so a sibling combinator can't reach
   it — scope from the container instead. */
.ba:has(.ba-range:focus-visible) .ba-line {
  box-shadow: 0 0 0 3px var(--accent);
}

.ba-item figcaption {
  margin-top: 0.75rem;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 700;
}

/* gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery button:hover img {
  transform: scale(1.04);
}

.gallery span {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}

/* ---------- about ---------- */

.about-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  margin-bottom: 2.5rem;
}

.about-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-body p:first-child {
  grid-column: 1 / -1;
  color: var(--text);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-family: var(--serif);
  line-height: 1.55;
}





/* ---------- faq ---------- */

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent-2);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list a {
  color: var(--accent-2);
  font-weight: 600;
}

/* ---------- contact ---------- */

.contact {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  overflow: hidden;
  color: var(--on-dark);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  width: min(var(--wrap), 100%);
  margin-inline: auto;
}

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

.contact-copy > p {
  color: rgba(255, 250, 242, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-methods a {
  display: block;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255, 250, 242, 0.28);
  background: rgba(14, 12, 10, 0.4);
  text-decoration: none;
  transition: background 0.15s;
}

.contact-methods a:hover {
  background: rgba(255, 250, 242, 0.12);
}

.contact-methods span {
  display: block;
  color: rgba(255, 250, 242, 0.6);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 1.15rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(22, 32, 47, 0.24);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--accent-2);
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status[data-state="ok"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--accent-2);
}

/* ---------- footer ---------- */

.footer-logo {
  display: block;
  width: min(var(--wrap), 100%);
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.footer-logo img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--gutter) 1.5rem;
  background: var(--deep);
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: min(var(--wrap), 100%);
  margin: 0 auto 2rem;
}

.footer-grid strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
  line-height: 1.65;
}

.footer-grid a {
  color: rgba(255, 250, 242, 0.85);
}

.footer-legal {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  font-size: 0.8rem;
}

/* ---------- mobile call bar ---------- */

.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  display: none;
  border-top: 1px solid rgba(255, 250, 242, 0.15);
}

.call-bar a {
  flex: 1;
  padding: 0.95rem 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.call-bar a:first-child {
  background: var(--deep);
  color: var(--text);
}

.call-bar a:last-child {
  background: var(--accent);
  color: var(--deep);
}

/* ---------- lightbox ---------- */

.lightbox {
  width: min(1100px, 94vw);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  background: var(--deep);
  color: var(--on-dark);
}

.lightbox::backdrop {
  background: rgba(10, 9, 8, 0.88);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
}

.lightbox-caption {
  margin: 0;
  padding: 0.9rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: rgba(14, 12, 10, 0.7);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .trust ul,
  .facts,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-grid,
  .process ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  /* stacking the contact block early keeps the two form columns usable */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 42rem;
  }

  .ba-item:last-child {
    grid-column: 1 / -1;
    max-width: 26rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-header {
    flex-wrap: wrap;
  }

  nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0.5rem -1rem -0.7rem;
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid rgba(255, 250, 242, 0.14);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(255, 250, 242, 0.09);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 0.75rem;
    border-bottom: 1px solid var(--accent);
    text-align: center;
  }

  .section-heading,
  .about-body,
  .contact-layout,
  .promise {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }




  /* keep two columns here: four stacked rows is needlessly tall */
  .trust ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1rem;
  }

  .trust li {
    padding-left: 0.7rem;
    font-size: 0.85rem;
  }

  .ba-grid,
  .process ol,
  .facts,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-heading > .eyebrow,
  .section-heading > h2,
  .section-heading > p {
    grid-column: 1;
    grid-row: auto;
  }

  .about-body p:first-child,
  .ba-item:last-child {
    grid-column: 1;
    max-width: none;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .band-content.narrow {
    margin-left: 0;
  }

  .call-bar {
    display: flex;
  }

  body {
    padding-bottom: 3.25rem;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(4rem, 18vw, 6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .call-bar,
  .hero-actions,
  .contact-form {
    display: none;
  }
}
