:root {
  --red: #e1261c;
  --red-dark: #ba1f17;
  --ink: #171b1f;
  --ink-soft: #232930;
  --muted: #5f6870;
  --line: #d9dfe5;
  --soft: #f4f6f8;
  --paper: #ffffff;
  --shadow-lg: 0 24px 72px rgba(10, 18, 24, 0.18);
  --shadow-md: 0 18px 40px rgba(10, 18, 24, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: 'Barlow Condensed', Arial, sans-serif; letter-spacing: -0.03em; }
h3 { font-size: 1.28rem; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 10px; }

.topbar {
  background: #0f1418;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}
.topbar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-inner p { margin: 0; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(217,223,229,.9);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 245px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}
.site-nav a { position: relative; padding: 10px 0; }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform .2s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-phone {
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  padding: 12px 18px !important;
}
.nav-phone::after { display: none; }
.nav-phone:hover { background: var(--red); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
}

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background: #12181d;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background:
    linear-gradient(90deg, rgba(11,17,22,.78) 0%, rgba(11,17,22,.68) 42%, rgba(11,17,22,.5) 68%, rgba(11,17,22,.65) 100%),
    url('assets/projects/front-garden-finish.webp') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  background:
    radial-gradient(circle at 17% 20%, rgba(225,38,28,.3), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.03), transparent 40%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .8fr);
  gap: 44px;
  align-items: center;
}
.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .84rem;
  font-weight: 800;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
}
.hero .eyebrow,
.mini-label { color: #ff8b83; }
.hero-copy h1 {
  font-size: clamp(3.8rem, 9vw, 7.3rem);
  text-transform: uppercase;
}
.lead {
  max-width: 660px;
  margin-top: 20px;
  font-size: clamp(1.06rem, 1.7vw, 1.2rem);
  color: rgba(255,255,255,.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(225,38,28,.28);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  border-color: rgba(255,255,255,.36);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.68); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #0f1317; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-points li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.hero-panel {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-panel-line {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--ink));
  margin-bottom: 22px;
}
.hero-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 4px 0 12px;
}
.hero-panel p:not(.mini-label) { color: var(--muted); }
.contact-stack {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}
.contact-stack a,
.contact-strip a {
  font-size: 1.15rem;
  font-weight: 800;
}
.contact-stack a:hover,
.contact-strip a:hover { color: var(--red); }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-tags span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #f1f3f5;
  font-size: .92rem;
  font-weight: 700;
}

.trust-band {
  margin-top: -52px;
  position: relative;
  z-index: 2;
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-band article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
.trust-band strong {
  display: inline-flex;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 12px;
}
.trust-band span { display: block; font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.trust-band p { margin: 0; color: var(--muted); }

.section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2,
.cta-strip-inner h2,
.quote-grid h2,
.faq-grid h2,
.why-grid h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.section-heading p:not(.eyebrow),
.why-grid > div > p:last-child,
.hero-panel p,
.quote-grid > div > p,
.faq-grid > div > p { color: var(--muted); }

.services { background: var(--soft); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 244px;
  box-shadow: 0 10px 26px rgba(10,18,24,.04);
}
.service-card img { width: 64px; height: 64px; margin-bottom: 18px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-highlight {
  background: linear-gradient(180deg, #171b1f, #21272d);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.service-highlight p:not(.mini-label) { color: rgba(255,255,255,.75); }
.service-highlight a {
  margin-top: auto;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.showcase { background: #fff; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
.showcase-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.05);
  min-height: 300px;
  position: relative;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.showcase-card:hover img { transform: scale(1.03); }
.showcase-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(8,11,14,.72), rgba(8,11,14,0));
  pointer-events: none;
}
.showcase-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: white;
}
.showcase-card span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.78);
}
.showcase-card strong { display: block; font-size: 1.2rem; line-height: 1.2; }
.showcase-large { grid-row: span 2; min-height: 618px; }

.texture-section { padding: 0 0 22px; }
.texture-panel {
  height: 120px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(23,27,31,.88), rgba(23,27,31,.64)),
    url('assets/photos/paving-texture.webp') center/cover no-repeat;
}

.why-us { background: var(--soft); }
.why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 38px;
  align-items: start;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,18,24,.05);
}
.why-cards h3 { margin-bottom: 10px; }
.why-cards p { margin: 0; color: var(--muted); }

.process { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(10,18,24,.04);
  background: white;
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.steps h3 { margin-bottom: 10px; }
.steps p { margin: 0; color: var(--muted); }

.cta-strip {
  background: linear-gradient(135deg, #171b1f, #212930);
  color: white;
  padding: 48px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip-inner .mini-label { margin-bottom: 8px; }
.cta-strip-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.quote-section {
  background: linear-gradient(180deg, #fff, #f8fafb);
}
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}
.quote-form .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #cbd4dc;
  background: #fff;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(225,38,28,.18);
  border-color: var(--red);
}
textarea { resize: vertical; }
.form-note { margin: 0; font-size: .92rem; color: var(--muted); }

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 40px;
}
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10,18,24,.04);
}
summary { cursor: pointer; font-weight: 800; }
details p { margin: 12px 0 0; color: var(--muted); }

.site-footer {
  background: #0f1418;
  color: white;
  padding: 54px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 30px;
}
.footer-logo { width: 230px; margin-bottom: 16px; }
.footer-grid h2 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.62);
  margin-bottom: 14px;
}
.footer-grid p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.footer-grid a {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.footer-grid a:hover,
.footer-bottom a:hover { color: #ff8b83; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.68);
}
.floating-call {
  display: none;
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  padding: 15px 18px;
  text-align: center;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(225,38,28,.38);
}

@media (max-width: 1024px) {
  .hero-grid,
  .why-grid,
  .quote-grid,
  .faq-grid,
  .footer-grid,
  .showcase-grid,
  .service-grid,
  .steps,
  .trust-band-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-large { grid-row: span 1; min-height: 420px; }
  .showcase-grid > :first-child { grid-column: 1 / -1; }
  .why-grid > div:first-child,
  .faq-grid > div:first-child,
  .quote-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    padding: 16px 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 4px; }
  .site-nav a::after { display: none; }
  .nav-phone { width: 100%; justify-content: center; }

  .hero { min-height: unset; padding: 86px 0 74px; }
  .hero-grid,
  .trust-band-grid,
  .service-grid,
  .showcase-grid,
  .why-grid,
  .why-cards,
  .steps,
  .quote-grid,
  .faq-grid,
  .footer-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .trust-band { margin-top: 0; padding-top: 18px; }
  .hero-panel { order: 2; }
  .hero-copy { order: 1; }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .showcase-large { min-height: 360px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .section-heading h2,
  .cta-strip-inner h2,
  .quote-grid h2,
  .faq-grid h2,
  .why-grid h2,
  .hero-panel h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .quote-form { grid-template-columns: 1fr; padding: 22px; }
  .quote-form .full { grid-column: auto; }
  .hero-points { display: grid; gap: 10px; }
  .btn,
  .cta-strip-actions .btn { width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-call { display: block; }
}

.review-summary { margin-top: 12px; }
.reviews { background: var(--soft); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(10,18,24,.05);
}
.stars {
  color: var(--red);
  letter-spacing: .16em;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.review-card p { margin: 0 0 18px; color: var(--ink); font-weight: 500; }
.review-card strong { display: block; margin-bottom: 4px; }
.review-card span { color: var(--muted); font-size: .95rem; }

/* Updated homepage preview and project gallery */
.compact-home {
  min-height: 700px;
}
.compact-home .hero-media {
  background:
    linear-gradient(90deg, rgba(11,17,22,.82) 0%, rgba(11,17,22,.7) 44%, rgba(11,17,22,.46) 72%, rgba(11,17,22,.72) 100%),
    url('assets/projects/front-garden-finish.webp') center/cover no-repeat;
}
.work-preview { background: #fff; }
.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  max-width: none;
}
.split-heading > p {
  max-width: 450px;
  margin: 0 0 8px;
  color: var(--muted);
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.preview-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.preview-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}
.preview-card span,
.gallery-photo figcaption {
  display: block;
  margin: 20px 22px 8px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
}
.preview-card strong {
  display: block;
  padding: 0 22px 24px;
  font-size: 1.2rem;
  line-height: 1.25;
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.gallery-hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(135deg, rgba(15,20,24,.94), rgba(31,39,46,.88)),
    url('assets/projects/fencing-job-1-after.webp') center/cover no-repeat;
  color: #fff;
}
.gallery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 38px;
  align-items: end;
}
.gallery-hero h1 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: .95;
  margin: 0 0 18px;
}
.gallery-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}
.gallery-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.gallery-jump a {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 800;
  background: rgba(255,255,255,.06);
}
.gallery-jump a:hover { background: var(--red); border-color: var(--red); }
.gallery-list { background: var(--soft); }
.project-list {
  display: grid;
  gap: 30px;
}
.project-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.project-copy {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}
.project-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.project-copy p:last-child {
  color: var(--muted);
  margin: 0 0 8px;
}
.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #f7f8f9;
  border: 1px solid rgba(0,0,0,.06);
}
.gallery-photo img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}
.gallery-photo figcaption {
  margin: 13px 16px 15px;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .preview-grid,
  .gallery-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-hero-grid,
  .project-copy { grid-template-columns: 1fr; }
  .gallery-jump { justify-content: flex-start; }
}

@media (max-width: 920px) {
  .split-heading { display: block; }
  .preview-grid,
  .gallery-photo-grid { grid-template-columns: 1fr; }
  .preview-card img,
  .gallery-photo img { height: 300px; }
  .compact-home { min-height: unset; }
}

@media (max-width: 640px) {
  .gallery-hero { padding: 74px 0 54px; }
  .project-block { padding: 18px; border-radius: 22px; }
  .gallery-photo img { height: 245px; }
}


/* Corrected grouped gallery layout */
.project-block-feature {
  border-top: 5px solid var(--red);
}
.fencing-jobs {
  display: grid;
  gap: 24px;
}
.project-subgroup {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}
.project-subhead {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 14px;
}
.project-subhead h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.project-subhead p {
  max-width: 560px;
  color: var(--muted);
  margin: 0 0 6px;
}
.gallery-photo-grid-two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 920px) {
  .project-subhead { display: block; }
  .gallery-photo-grid-two { grid-template-columns: 1fr; }
}
