/* ==========================================================================
   UBS Construction — site styles
   Brand accent: logo navy #2e3690 (rgb(46,54,144))
   ========================================================================== */

:root {
  --ubs-blue: #2e3690;
  --ubs-blue-dark: #232a70;
  --ubs-blue-tint: #ebecf7;
  --slate: #1a1a2e;
  --slate-soft: #3c4257;
  --muted: #667085;
  --border: #d0d5dd;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --radius: 10px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
  --maxw: 1140px;
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--slate);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; color: var(--slate-soft); }

a { color: var(--ubs-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ubs-blue);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.15rem;
  color: var(--slate-soft);
  max-width: 720px;
}

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ubs-blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--ubs-blue-dark); }

.btn--ghost {
  background: #fff;
  color: var(--ubs-blue);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--ubs-blue-tint); }

.btn--white {
  background: #fff;
  color: var(--ubs-blue);
}
.btn--white:hover { background: #f0f4ff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover { background: rgba(255, 255, 255, 0.12); }

.btn--block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
/* Header logo — real UBS Construction logo image.
   (The footer reuses .logo as a white text wordmark on the dark background.) */
.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--ubs-blue);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.logo:hover { text-decoration: none; }
.site-header .logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--slate-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 6px;
}
.nav-links a:hover {
  color: var(--ubs-blue);
  background: var(--ubs-blue-tint);
  text-decoration: none;
}
.nav-links a.active {
  color: var(--ubs-blue);
  font-weight: 600;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile menu toggle (CSS-only) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--slate);
}
#nav-check { display: none; }

/* ------------------------------------------------- Services mega dropdown */
.nav-links li.has-mega { position: relative; }
.mega-trigger { display: inline-flex; align-items: center; gap: 5px; }
.mega-trigger .caret { font-size: 0.7em; transition: transform 0.15s ease; }
.has-mega:hover .mega-trigger .caret,
.has-mega:focus-within .mega-trigger .caret { transform: rotate(180deg); }

/* Mobile-only controls hidden on desktop. */
.svc-check { display: none; }
.svc-toggle { display: none; }

.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 560px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
}
/* A small hover bridge so the menu doesn't close in the gap. */
.mega::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col { display: grid; gap: 6px; align-content: start; }
.mega-head {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
  padding: 2px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.mega a {
  color: var(--slate-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px;
  border-radius: 6px;
}
.mega a:hover,
.mega a.active {
  color: var(--ubs-blue);
  background: var(--ubs-blue-tint);
  text-decoration: none;
}

/* ------------------------------------------------------------------- Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(17, 109, 255, 0.14), transparent 60%),
    linear-gradient(160deg, #f4f8ff 0%, #ffffff 55%);
  padding: 84px 0 64px;
}

/* Photo hero (home) — construction image with a dark overlay for legibility. */
.hero--photo {
  position: relative;
  padding: 120px 0 104px;
  background: #0f1524;
  overflow: hidden;
  isolation: isolate;
}
.hero--photo .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
}
.hero--photo .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 14, 28, 0.72) 0%, rgba(9, 14, 28, 0.45) 55%, rgba(9, 14, 28, 0.30) 100%);
  z-index: -1;
}
.hero--photo .hero-content { position: relative; }
/* Photo-hero text must stay white — use a compound selector so these win over
   the interior-page `.hero .sub` / `.hero .tagline` rules defined below. */
.hero.hero--photo h1 { color: #fff; }
.hero.hero--photo .sub { color: #fff; }
.hero.hero--photo .tagline { color: #fff; }
.eyebrow--light { color: #aeb4ec; }

.hero h1 { max-width: 15ch; }
.hero .sub {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--slate);
  margin: 4px 0 10px;
}
.hero .tagline {
  font-size: 1.05rem;
  color: var(--ubs-blue);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------------------------------------- Stats band */
.stats {
  background: var(--ubs-blue);
  color: #fff;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.stat .num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
}
.stat .label {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------- Grids/cards */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.97rem; }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ubs-blue-tint);
  color: var(--ubs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* Project placeholder cards */
.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.project-thumb {
  height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.project-thumb--1 { background: linear-gradient(135deg, #116dff, #0b53c7); }
.project-thumb--2 { background: linear-gradient(135deg, #1f2a44, #3c4a6b); }
.project-thumb--3 { background: linear-gradient(135deg, #0e7c86, #12a4b0); }
.project-thumb--4 { background: linear-gradient(135deg, #7a4de0, #a06bff); }
.project-body { padding: 20px; }
.project-body h3 { margin-bottom: 4px; }
.project-body .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; }
.badge {
  display: inline-block;
  background: var(--ubs-blue-tint);
  color: var(--ubs-blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

/* -------------------------------------------------- Brands We've Built For */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  min-height: 104px;
  box-shadow: var(--shadow-sm);
}
.brand img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.brand:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

/* ------------------------------------------------------ Featured work (home) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); text-decoration: none; }
.feature-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feature:hover .feature-img img { transform: scale(1.07); }
.feature-cap { display: block; padding: 16px 18px; }
.feature-meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ubs-blue);
}
.feature-title {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--slate);
}

/* -------------------------------------------------------- Project gallery */
.gallery {
  columns: 3;
  column-gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #eef1f6;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(9, 14, 28, 0.82));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ------------------------------------------------- Photo rows (services etc) */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.photo-tile {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #eef1f6;
}
.photo-tile img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-tile:hover img { transform: scale(1.05); }
.photo-tile figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  background: #fff;
}

/* --------------------------------------------------------- About split media */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.about-media { display: grid; gap: 20px; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* --------------------------------------------------------------- Social row */
.social-row { display: inline-flex; flex-wrap: wrap; gap: 6px 14px; }

/* ---------------------------------------------------------------- Lists */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--slate-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--ubs-blue-tint);
  color: var(--ubs-blue);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------- Prose blocks */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.75rem; color: var(--ubs-blue); }
.prose p:first-of-type { font-size: 1.08rem; }

/* ----------------------------------------------------------------- Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: 6px; }
.form-intro { color: var(--muted); margin-bottom: 22px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
}
.req { color: #d92d20; margin-left: 2px; }

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate);
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input::placeholder,
textarea::placeholder { color: #98a2b3; }
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--ubs-blue);
  box-shadow: 0 0 0 3px rgba(17, 109, 255, 0.15);
}
textarea { resize: vertical; min-height: 130px; }

/* Honeypot — visually hidden but present for bots. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #a6f4c5;
}
.form-status.error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

/* ---------------------------------------------------- Split contact layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ubs-blue-tint);
  color: var(--ubs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.info-list .k { font-weight: 700; color: var(--slate); font-size: 0.95rem; }
.info-list .v { color: var(--slate-soft); font-size: 0.97rem; }

/* ------------------------------------------------------------------ CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--ubs-blue), var(--ubs-blue-dark));
  color: #fff;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------------------- Footer */
.site-footer {
  background: #0f1524;
  color: #c4cbd8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.site-footer .logo { color: #fff; margin-bottom: 12px; display: inline-block; }
.site-footer p { color: #99a2b3; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #c4cbd8; font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 10px; font-size: 0.95rem; }
.footer-contact a { color: #c4cbd8; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: #8b93a3;
}

/* --------------------------------------------------------------- Thank you */
.thankyou {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou .badge-check {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--ubs-blue-tint);
  color: var(--ubs-blue);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .brand-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
}

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-links {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 8px;
  }
  .nav-links > li > a,
  .nav-links .mega-trigger { padding: 12px; border-radius: 8px; }
  #nav-check:checked ~ .nav-links { display: flex; }
  .nav { flex-wrap: wrap; }
  .nav-cta .btn { padding: 10px 16px; }
  .site-header .logo img { height: 40px; }

  /* Services becomes an expandable nested list in the mobile menu. */
  .nav-links li.has-mega { display: flex; flex-wrap: wrap; align-items: center; }
  .mega-trigger { flex: 1; }
  .mega-trigger .caret { display: none; }
  .svc-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    padding: 12px 0;
    cursor: pointer;
    color: var(--slate-soft);
    border-radius: 8px;
    transition: transform 0.15s ease;
  }
  .mega {
    position: static;
    width: 100%;
    flex-basis: 100%;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 2px 0 8px 12px;
    grid-template-columns: 1fr;
    gap: 2px;
    opacity: 1;
    transform: none;
    transition: none;
    display: none;
    visibility: hidden;
  }
  .mega::before { display: none; }
  /* On mobile only the checkbox controls the submenu (override hover/focus). */
  .has-mega:hover > .mega,
  .has-mega:focus-within > .mega { display: none; }
  .svc-check:checked ~ .mega { display: grid; visibility: visible; }
  .svc-check:checked ~ .svc-toggle { transform: rotate(180deg); }
  .mega-head { border-bottom: none; padding: 10px 8px 2px; }
}

@media (max-width: 620px) {
  .section { padding: 52px 0; }
  .stats .container { grid-template-columns: 1fr; gap: 28px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 44px; }
  .hero--photo { padding: 72px 0 60px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-row { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
}
