:root {
  --bg: #06131d;
  --bg-2: #091b28;
  --panel: #0d2433;
  --panel-2: #102c3e;
  --panel-soft: #16364a;
  --blue: #20a7e8;
  --blue-soft: #86d9ff;
  --green: #77bf4b;
  --green-bright: #9fdf68;
  --text: #f3f8fb;
  --muted: #a5bac6;
  --line: rgba(255,255,255,.11);
  --light-bg: #102631;
  --light-panel: #173542;
  --light-ink: #f3f8fb;
  --light-muted: #afc3cd;
  --shadow-sm: 0 12px 30px rgba(0,0,0,.22);
  --shadow-md: 0 24px 70px rgba(0,0,0,.34);
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.section-kicker {
  margin: 0 0 11px;
  color: var(--blue-soft);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  max-width: 810px;
  color: var(--text);
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.section-copy {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.bg-deep { background: #041019; }
.bg-panel { background: var(--bg-2); }
.bg-light { background: var(--light-bg); color: var(--light-ink); }
.bg-light .section-title { color: var(--light-ink); }
.bg-light .section-kicker { color: var(--blue-soft); }
.bg-light .section-copy { color: var(--light-muted); }

.topbar {
  color: #dff5ff;
  background: linear-gradient(90deg, #087bb3, #0d4868 58%, #315f2e);
  font-size: .88rem;
  font-weight: 850;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; color: white; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(6,19,29,.9);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-logo {
  width: 142px;
  height: 56px;
  object-fit: contain;
  border-radius: 9px;
  background: #eefaff;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  position: relative;
  color: #c7d6df;
  font-size: .92rem;
  font-weight: 800;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; border-radius: 99px; background: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #04131c; background: var(--blue-soft); box-shadow: 0 12px 28px rgba(32,167,232,.23); }
.btn-primary:hover { background: #a5e5ff; }
.btn-green { color: #07150b; background: var(--green-bright); box-shadow: 0 12px 28px rgba(119,191,75,.2); }
.btn-green:hover { background: #b6eb8c; }
.btn-dark { color: white; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.btn-dark:hover { background: rgba(255,255,255,.16); }
.btn-light { color: #0a2231; background: #f3f7f8; }
.btn-outline { color: white; border-color: rgba(255,255,255,.22); background: transparent; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #031018;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3,14,22,.95) 0%, rgba(3,14,22,.81) 43%, rgba(3,14,22,.42) 71%, rgba(3,14,22,.2) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -180px -230px auto;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(134,217,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(32,167,232,.035), 0 0 0 180px rgba(119,191,75,.025);
}
.hero-content { position: relative; z-index: 2; max-width: 810px; padding: 92px 0 106px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(6,23,34,.55);
  backdrop-filter: blur(10px);
  color: #dff5ff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 23px 0 18px;
  max-width: 850px;
  font-size: clamp(3.3rem, 7.5vw, 6.4rem);
  line-height: .91;
  letter-spacing: -.07em;
}
.hero h1 span { color: var(--blue-soft); }
.hero p { max-width: 680px; margin: 0; color: #c6d6df; font-size: clamp(1.03rem, 2vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 11px 20px; color: #a9beca; font-size: .88rem; font-weight: 750; }
.hero-note span::before { content: "✓"; margin-right: 7px; color: var(--green-bright); font-weight: 950; }

.page-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #031018;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3,14,22,.94), rgba(3,14,22,.58) 64%, rgba(3,14,22,.26)), var(--page-image);
  background-size: cover;
  background-position: center;
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 72px; }
.page-hero h1 { margin: 10px 0 14px; max-width: 920px; font-size: clamp(2.9rem, 6vw, 5.3rem); line-height: .94; letter-spacing: -.06em; }
.page-hero p { max-width: 720px; margin: 0; color: #c4d4dc; font-size: 1.13rem; }

.stat-strip { position: relative; z-index: 6; margin-top: -38px; }
.stat-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13,36,51,.96);
  box-shadow: var(--shadow-md);
}
.stat { padding: 27px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: white; font-size: 1.3rem; letter-spacing: -.02em; }
.stat span { display: block; margin-top: 4px; color: var(--muted); font-size: .88rem; }

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-md);
}
.offer-photo { min-height: 380px; background-size: cover; background-position: center; }
.offer-copy { padding: 52px; display: flex; flex-direction: column; justify-content: center; }
.offer-copy h2 { margin: 8px 0 13px; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .93; letter-spacing: -.06em; }
.offer-copy p { margin: 0; color: var(--muted); }
.offer-price { margin: 22px 0 4px; color: var(--green-bright); font-size: 2.4rem; font-weight: 950; letter-spacing: -.04em; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}
.service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,11,17,.04) 25%, rgba(2,11,17,.92) 83%); z-index: 1; }
.service-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .35s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 23px; }
.service-card-copy h3 { margin: 0 0 6px; font-size: 1.5rem; line-height: 1.05; }
.service-card-copy p { margin: 0; color: #c3d4dc; font-size: .91rem; }
.service-card-copy a { display: inline-flex; margin-top: 13px; color: var(--blue-soft); font-size: .88rem; font-weight: 900; }
.service-card-copy a::after { content: "→"; margin-left: 7px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.photo-panel { position: relative; }
.photo-panel img { width: 100%; min-height: 540px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.photo-badge { position: absolute; right: -16px; bottom: 25px; width: min(270px, 76%); padding: 20px; border-radius: 18px; background: rgba(6,19,29,.93); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.photo-badge strong { display: block; font-size: 1.3rem; }
.photo-badge span { display: block; margin-top: 5px; color: var(--muted); font-size: .86rem; }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; color: #c4d5dd; font-weight: 700; }
.check-list li::before { content: "✓"; width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; color: #0b2010; background: var(--green-bright); font-size: .78rem; font-weight: 950; }
.bg-light .check-list li { color: #c4d5dd; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
  margin-top: 34px;
}
.photo-tile { position: relative; overflow: hidden; border-radius: 18px; background: var(--panel); cursor: zoom-in; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.photo-tile:hover img { transform: scale(1.03); }
.photo-tile.wide { grid-column: span 7; grid-row: span 2; }
.photo-tile.tall { grid-column: span 5; grid-row: span 3; }
.photo-tile.medium { grid-column: span 4; grid-row: span 2; }
.photo-tile.large { grid-column: span 8; grid-row: span 3; }
.photo-tile.small { grid-column: span 4; grid-row: span 2; }
.photo-caption { position: absolute; left: 12px; bottom: 12px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(4,16,25,.76); backdrop-filter: blur(8px); color: #e4f2f7; font-size: .74rem; font-weight: 800; }

.gallery-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px; }
.gallery-4 .gallery-item { min-height: 370px; overflow: hidden; border-radius: 18px; background: #02070a; cursor: zoom-in; }
.gallery-4 img { width: 100%; height: 100%; object-fit: cover; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}
.card .number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: rgba(32,167,232,.12); color: var(--blue-soft); font-weight: 950; }
.card h3 { margin: 18px 0 8px; font-size: 1.24rem; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.bg-light .card { background: rgba(255,255,255,.055); border-color: var(--line); box-shadow: var(--shadow-sm); color: var(--light-ink); }
.bg-light .card p { color: var(--light-muted); }

.project-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.project-image { position: relative; min-height: 480px; overflow: hidden; border-radius: 22px; cursor: zoom-in; }
.project-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.project-image span { position: absolute; left: 16px; bottom: 16px; padding: 8px 11px; border-radius: 999px; background: rgba(4,16,25,.8); color: white; font-size: .79rem; font-weight: 850; }

.feature-panel { padding: 36px; border-radius: 24px; background: linear-gradient(145deg, #0d2b3f, #102536); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.feature-panel h3 { margin: 0 0 10px; font-size: 1.75rem; }
.feature-panel p { margin: 0; color: var(--muted); }

.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-pill { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.05); color: #c4d5dd; font-size: .87rem; font-weight: 800; }

.faq { display: grid; gap: 12px; margin-top: 34px; }
.faq details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.faq summary { cursor: pointer; color: white; font-weight: 900; }
.faq p { margin: 11px 0 0; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 58px; border-radius: var(--radius-lg); background: linear-gradient(125deg, #0c6591, #0b2537 62%, #315b2f); box-shadow: var(--shadow-md); }
.cta-band::after { content: ""; position: absolute; width: 330px; height: 330px; right: -80px; top: -110px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { margin: 0; max-width: 730px; font-size: clamp(2.1rem, 4.6vw, 3.8rem); line-height: .98; letter-spacing: -.055em; }
.cta-band p { margin: 12px 0 0; max-width: 650px; color: #c8d7df; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }

.quote-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 38px; align-items: start; }
.quote-card { padding: 32px; border-radius: 24px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #d5e4eb; font-size: .84rem; font-weight: 850; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; color: white; background: #091b28; outline: none; }
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(32,167,232,.1); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .83rem; }
.form-status { display: none; margin-top: 15px; padding: 14px 16px; border-radius: 12px; color: #dff7d3; background: rgba(119,191,75,.12); font-weight: 800; }
.form-status.show { display: block; }
.contact-stack { display: grid; gap: 13px; margin-top: 24px; }
.contact-item { padding: 18px 20px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line); }
.contact-item strong { display: block; color: white; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .92rem; }
.contact-item a:hover { color: var(--blue-soft); }

.site-footer { padding: 58px 0 94px; background: #020b11; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 48px; }
.footer-brand p { max-width: 460px; margin: 17px 0 0; color: #8fa7b4; }
.footer-title { margin: 0 0 14px; color: var(--blue-soft); font-size: .77rem; font-weight: 950; text-transform: uppercase; letter-spacing: .13em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #a9bdc8; font-size: .92rem; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 38px; padding-top: 21px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: #708996; font-size: .81rem; }
.footer-logo { width: 155px; border-radius: 9px; }

.mobile-book-bar { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,.9); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; object-fit: contain; border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.5); color: white; font-size: 1.6rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 80px; left: 20px; right: 20px; padding: 20px; flex-direction: column; align-items: stretch; gap: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,24,36,.98); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero { min-height: 700px; }
  .stat-card { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .offer-card, .split, .quote-layout { grid-template-columns: 1fr; }
  .service-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-panel { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .section-sm { padding: 48px 0; }
  .topbar-inner { min-height: 48px; font-size: .77rem; }
  .nav-wrap { min-height: 72px; }
  .brand-logo { width: 116px; height: 48px; }
  .nav-links { top: 72px; left: 14px; right: 14px; }
  .hero { min-height: 670px; }
  .hero::before { background-image: linear-gradient(180deg, rgba(3,14,22,.5) 0%, rgba(3,14,22,.76) 45%, rgba(3,14,22,.97) 100%), var(--hero-image); background-position: 58% center; }
  .hero-content { padding: 74px 0 76px; align-self: end; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-actions .btn { width: 100%; }
  .page-hero { min-height: 520px; }
  .page-hero::before { background-image: linear-gradient(180deg, rgba(3,14,22,.25), rgba(3,14,22,.93) 83%), var(--page-image); background-position: center; }
  .page-hero .container { padding-bottom: 48px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .stat-strip { margin-top: -22px; }
  .service-grid, .card-grid, .project-pair, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .service-card { min-height: 360px; }
  .offer-copy { padding: 34px 26px; }
  .offer-photo { min-height: 330px; }
  .split { gap: 34px; }
  .photo-panel img { min-height: 390px; }
  .photo-badge { right: 12px; bottom: 12px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 10px; }
  .photo-tile.wide, .photo-tile.tall, .photo-tile.medium, .photo-tile.large, .photo-tile.small { grid-column: span 1; grid-row: span 1; }
  .photo-tile:first-child { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-4 .gallery-item { min-height: 260px; }
  .project-image { min-height: 400px; }
  .cta-band { padding: 38px 25px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .mobile-book-bar { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; min-height: 68px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(4,15,23,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-book-bar a { display: flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 900; }
  .mobile-book-bar .call { color: white; background: #102a3b; }
  .mobile-book-bar .book { color: #07140b; background: var(--green-bright); }
}

@media (max-width: 430px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-tile:first-child { grid-column: auto; grid-row: auto; }
  .gallery-4 { grid-template-columns: 1fr; }
  .gallery-4 .gallery-item { min-height: 330px; }
}

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


/* Real work gallery and horizontal mobile showcase */
.section-heading-row { display:flex; align-items:flex-end; justify-content:space-between; gap:28px; }
.section-heading-row .btn { flex:0 0 auto; }
.project-showcase { background: linear-gradient(180deg,#06131d,#081b28); }
.showcase-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:34px; }
.showcase-card { position:relative; min-height:370px; overflow:hidden; border-radius:20px; background:#07141c; box-shadow:var(--shadow-sm); }
.showcase-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(2,10,16,.82)); }
.showcase-card img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition:transform .3s ease; }
.showcase-card:hover img { transform:scale(1.035); }
.showcase-card span { position:absolute; z-index:2; left:16px; bottom:15px; padding:8px 11px; border-radius:999px; background:rgba(4,16,25,.78); color:white; font-size:.8rem; font-weight:900; backdrop-filter:blur(8px); }
.work-filters { display:flex; flex-wrap:wrap; gap:9px; margin:30px 0 28px; }
.work-filter { border:1px solid var(--line); border-radius:999px; padding:10px 15px; color:#c5d7df; background:rgba(255,255,255,.045); font-weight:850; }
.work-filter:hover,.work-filter.active { color:#07140b; background:var(--green-bright); border-color:transparent; }
.work-grid { columns:3 300px; column-gap:16px; }
.work-card { break-inside:avoid; margin:0 0 16px; overflow:hidden; border:1px solid var(--line); border-radius:20px; background:var(--panel); box-shadow:var(--shadow-sm); }
.work-card[hidden] { display:none; }
.work-photo { overflow:hidden; cursor:zoom-in; background:#02090e; }
.work-photo img { width:100%; height:auto; transition:transform .3s ease; }
.work-photo:hover img { transform:scale(1.025); }
.work-copy { padding:17px 18px 19px; }
.work-copy span { color:var(--blue-soft); font-size:.72rem; font-weight:950; letter-spacing:.11em; text-transform:uppercase; }
.work-copy h3 { margin:5px 0 4px; font-size:1.13rem; line-height:1.15; }
.work-copy p { margin:0; color:var(--muted); font-size:.86rem; line-height:1.5; }
@media (max-width:980px) { .showcase-strip { grid-template-columns:repeat(2,1fr); } .section-heading-row { align-items:flex-start; flex-direction:column; } }
@media (max-width:720px) { .showcase-strip { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px; margin-right:-14px; scrollbar-width:none; } .showcase-strip::-webkit-scrollbar { display:none; } .showcase-card { min-width:78vw; min-height:420px; scroll-snap-align:start; } .work-grid { columns:2 160px; column-gap:10px; } .work-card { margin-bottom:10px; border-radius:15px; } .work-copy { padding:13px 13px 15px; } .work-copy p { display:none; } .work-copy h3 { font-size:.98rem; } .work-filters { flex-wrap:nowrap; overflow-x:auto; margin-right:-14px; padding-bottom:6px; scrollbar-width:none; } .work-filter { white-space:nowrap; } }
@media (max-width:430px) { .work-grid { columns:1; } .work-copy p { display:block; } }


/* September 2026 refinement */
.nav-links .btn-primary, .nav-links .btn-primary:visited { color:#031018 !important; }
.brand { min-width:76px; }
.brand-logo { width:64px; height:64px; border-radius:50%; background:transparent; box-shadow:none; }
.footer-logo { width:94px !important; height:94px !important; object-fit:contain; border-radius:50%; background:transparent !important; }
.hero-home::before { background-image:linear-gradient(90deg,rgba(3,14,22,.90) 0%,rgba(3,14,22,.72) 44%,rgba(3,14,22,.18) 100%),var(--hero-image); background-position:center 50%; }
.page-hero-photo::before { background-image:linear-gradient(90deg,rgba(3,14,22,.90),rgba(3,14,22,.52) 58%,rgba(3,14,22,.12)),var(--page-image); background-position:center; }
.compact-page-hero { min-height:500px; }
.inline-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.fine-print { font-size:.86rem; margin-top:2px !important; }
.compact-services .service-card { min-height:360px; }
.mid-cta { margin-top:40px; padding:24px 26px; border:1px solid var(--line); border-radius:20px; background:linear-gradient(135deg,rgba(32,167,232,.10),rgba(119,191,75,.08)); display:flex; align-items:center; justify-content:space-between; gap:22px; }
.mid-cta strong { display:block; font-size:1.2rem; }
.mid-cta span { display:block; margin-top:3px; color:var(--muted); font-size:.92rem; }
.ontario-band { padding:58px 0; background:linear-gradient(100deg,#0a2d43,#10384a 55%,#24492c); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.ontario-inner { display:flex; align-items:center; justify-content:space-between; gap:28px; }
.ontario-inner h2 { margin:0; font-size:clamp(2rem,4.6vw,3.8rem); line-height:1; letter-spacing:-.045em; }
.ontario-inner p { margin:12px 0 0; max-width:720px; color:#c7d7de; }
.refined-pair .project-image { min-height:420px; }
.contain-focus { object-position:center; }
.masonry-lite { display:grid; grid-template-columns:1.1fr .9fr 1fr; grid-auto-rows:210px; gap:16px; margin-top:34px; }
.landscape-shot { margin:0; overflow:hidden; border-radius:22px; background:var(--panel); }
.landscape-shot img { width:100%; height:100%; object-fit:cover; }
.landscape-shot.tall { grid-row:span 2; }
.landscape-shot.wide { grid-column:span 2; }
.refined-work-grid { grid-template-columns:repeat(12,1fr); gap:18px; }
.refined-work-grid .work-card { grid-column:span 4; }
.refined-work-grid .work-card.hero-work { grid-column:span 8; }
.refined-work-grid .work-photo { aspect-ratio:4/3; min-height:0; }
.refined-work-grid .hero-work .work-photo { aspect-ratio:16/9; }
.roomy-about { padding-top:112px; padding-bottom:112px; }
.photo-panel img, .project-image img, .work-photo img, .gallery-item img, .photo-tile img { object-fit:cover; }

@media (max-width: 900px){
  .hero { min-height:680px; }
  .hero-home::before { background-position:62% center; background-image:linear-gradient(180deg,rgba(3,14,22,.54) 0%,rgba(3,14,22,.62) 35%,rgba(3,14,22,.94) 100%),var(--hero-image); }
  .page-hero-photo::before { background-image:linear-gradient(180deg,rgba(3,14,22,.36),rgba(3,14,22,.82) 72%,rgba(3,14,22,.96)),var(--page-image); background-position:center; }
  .page-hero { min-height:560px; }
  .page-hero .container { padding-bottom:54px; }
  .mid-cta,.ontario-inner { flex-direction:column; align-items:flex-start; }
  .masonry-lite { grid-template-columns:1fr 1fr; grid-auto-rows:190px; }
  .landscape-shot.tall { grid-row:span 2; }
  .landscape-shot.wide { grid-column:span 1; }
  .refined-work-grid .work-card,.refined-work-grid .work-card.hero-work { grid-column:span 6; }
}
@media (max-width: 640px){
  .container { width:min(calc(100% - 28px),var(--max)); }
  .section { padding:70px 0; }
  .hero { min-height:720px; }
  .hero-content { padding:68px 0 90px; }
  .hero h1 { font-size:clamp(3rem,16vw,4.7rem); }
  .hero p { font-size:1rem; }
  .brand-logo { width:56px; height:56px; }
  .nav-wrap { min-height:70px; }
  .service-grid { grid-template-columns:1fr; }
  .compact-services .service-card { min-height:330px; }
  .stat-card { grid-template-columns:1fr; }
  .stat { border-right:0; border-bottom:1px solid var(--line); }
  .stat:last-child { border-bottom:0; }
  .offer-card { grid-template-columns:1fr; }
  .offer-photo { min-height:270px; }
  .offer-copy { padding:34px 26px; }
  .split { grid-template-columns:1fr; gap:36px; }
  .photo-panel img { min-height:360px; max-height:520px; }
  .project-pair { grid-template-columns:1fr; }
  .refined-pair .project-image { min-height:330px; }
  .card-grid { grid-template-columns:1fr; }
  .masonry-lite { grid-template-columns:1fr; grid-auto-rows:auto; }
  .landscape-shot,.landscape-shot.tall,.landscape-shot.wide { grid-column:auto; grid-row:auto; aspect-ratio:4/3; }
  .refined-work-grid { display:grid; grid-template-columns:1fr; }
  .refined-work-grid .work-card,.refined-work-grid .work-card.hero-work { grid-column:auto; }
  .refined-work-grid .work-photo,.refined-work-grid .hero-work .work-photo { aspect-ratio:4/3; }
  .ontario-band { padding:48px 0; }
  .roomy-about { padding-top:82px; padding-bottom:82px; }
}


/* October 2026 cleanup */
:root {
  --blue: #1a9ddb;
  --blue-soft: #93defa;
  --green: #6eb14a;
  --green-bright: #95d85d;
}
.topbar {
  background: linear-gradient(90deg, #0c7cab, #0c4866 56%, #315731);
}
.btn-primary {
  color: #052131;
  background: #93defa;
}
.btn-primary:hover {
  background: #b2ebff;
}
.btn-green {
  background: #95d85d;
}
.btn-green:hover {
  background: #ace779;
}
.page-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #041019;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(4,15,23,.82) 0%, rgba(4,15,23,.58) 46%, rgba(4,15,23,.18) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,15,23,0) 0%, rgba(4,15,23,.92) 100%);
}
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 104px;
  padding-bottom: 56px;
}
.page-hero-card {
  max-width: 780px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(5,18,27,.44);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.page-hero-card h1 {
  margin: 12px 0 14px;
  max-width: 840px;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: .94;
  letter-spacing: -.06em;
}
.page-hero-card p {
  max-width: 700px;
  margin: 0;
  color: #d3dfe6;
  font-size: 1.08rem;
}
.page-hero-card .section-kicker {
  margin-bottom: 0;
}
.page-hero-card .hero-actions {
  margin-top: 24px;
}
.work-filters, .work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 28px;
}
.work-filters button, .work-filter button {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  color: #c7d7df;
  background: rgba(255,255,255,.045);
  font-weight: 850;
  line-height: 1;
}
.work-filters button:hover, .work-filter button:hover,
.work-filters button.active, .work-filter button.active {
  color: #07140b;
  background: var(--green-bright);
  border-color: transparent;
}
.work-grid.refined-work-grid {
  display: grid;
  columns: unset;
  column-gap: 0;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}
.work-grid.refined-work-grid .work-card {
  margin: 0;
  break-inside: auto;
  grid-column: span 4;
}
.work-grid.refined-work-grid .work-card.hero-work {
  grid-column: span 8;
}
.work-grid.refined-work-grid .work-photo {
  aspect-ratio: 4 / 3;
}
.work-grid.refined-work-grid .work-card.hero-work .work-photo {
  aspect-ratio: 16 / 10;
}
.work-grid.refined-work-grid .work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-grid.refined-work-grid .work-copy {
  padding: 17px 18px 19px;
}
.masonry-lite {
  grid-auto-rows: 220px;
}
.masonry-lite .landscape-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .page-hero { min-height: 520px; }
  .page-hero::before {
    background: linear-gradient(180deg, rgba(4,15,23,.34) 0%, rgba(4,15,23,.68) 46%, rgba(4,15,23,.94) 100%);
  }
  .page-hero .container {
    padding-top: 86px;
    padding-bottom: 46px;
  }
  .page-hero-card {
    max-width: 100%;
    padding: 24px 22px;
  }
  .work-grid.refined-work-grid .work-card,
  .work-grid.refined-work-grid .work-card.hero-work {
    grid-column: span 6;
  }
}
@media (max-width: 640px) {
  .page-hero {
    min-height: 470px;
  }
  .page-hero .container {
    padding-top: 68px;
    padding-bottom: 34px;
  }
  .page-hero-card {
    padding: 20px 18px;
    border-radius: 22px;
    background: rgba(5,18,27,.4);
  }
  .page-hero-card h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }
  .page-hero-card p {
    font-size: .99rem;
  }
  .work-filters, .work-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-right: -12px;
    scrollbar-width: none;
  }
  .work-filters::-webkit-scrollbar, .work-filter::-webkit-scrollbar {
    display: none;
  }
  .work-filters button, .work-filter button {
    white-space: nowrap;
  }
  .work-grid.refined-work-grid {
    grid-template-columns: 1fr;
  }
  .work-grid.refined-work-grid .work-card,
  .work-grid.refined-work-grid .work-card.hero-work {
    grid-column: auto;
  }
  .work-grid.refined-work-grid .work-photo,
  .work-grid.refined-work-grid .work-card.hero-work .work-photo {
    aspect-ratio: 4 / 3;
  }
}


/* JTS visual polish v3 */
:root {
  --bg: #07131b;
  --bg-2: #0a1a24;
  --panel: #0e2431;
  --panel-2: #123040;
  --blue: #249ed3;
  --blue-soft: #9bdcf6;
  --green: #69a94a;
  --green-bright: #98d86b;
  --text: #f5f8fa;
  --muted: #adc0ca;
}
.topbar { background: linear-gradient(90deg, #0a6f9b, #0c4b68 56%, #35583a); }
.btn, .work-filters button, .work-filter button { border-radius: 999px !important; }
.btn-primary { color: #061c28 !important; background: #9bdcf6; }
.btn-green { color: #07160c !important; background: #98d86b; }

.visual-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #07131b;
}
.visual-hero.compact { min-height: 540px; }
.visual-hero-media { position: absolute; inset: 0; z-index: -3; }
.visual-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-pos, center);
}
.visual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(4,14,21,.84) 0%, rgba(4,14,21,.61) 46%, rgba(4,14,21,.18) 100%);
}
.visual-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 190px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,19,27,0), rgba(7,19,27,.94));
}
.visual-hero .container { padding-top: 110px; padding-bottom: 58px; }
.visual-hero-card {
  width: min(800px, 100%);
  padding: 30px 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(5,17,25,.48);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.visual-hero-card .section-kicker { margin-bottom: 0; }
.visual-hero-card h1 {
  margin: 12px 0 15px;
  font-size: clamp(3rem, 6.5vw, 5.7rem);
  line-height: .92;
  letter-spacing: -.065em;
}
.visual-hero-card h1 span { color: var(--blue-soft); }
.visual-hero-card p { max-width: 700px; margin: 0; color: #d6e1e6; font-size: 1.08rem; }
.visual-hero-card .hero-actions { margin-top: 25px; }
.visual-hero-card .hero-note { margin-top: 20px; }

.hero-home-clean { --hero-pos: center 53%; }
.irrigation-hero { --hero-pos: center 48%; }
.landscaping-hero { --hero-pos: center 58%; }
.work-hero { --hero-pos: center 54%; }
.about-hero { --hero-pos: center 53%; }
.contact-hero { --hero-pos: center 55%; }
.blowout-hero { --hero-pos: center 50%; }

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 28px;
}
.work-filters button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.13);
  padding: 11px 16px;
  color: #c8d8df;
  background: #102632;
  font-weight: 850;
  line-height: 1;
}
.work-filters button:hover,
.work-filters button.active {
  color: #07160c;
  background: var(--green-bright);
  border-color: transparent;
}

.work-grid.refined-work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  columns: unset;
  column-gap: 0;
  gap: 18px;
  align-items: start;
}
.work-grid.refined-work-grid .work-card {
  grid-column: span 4;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}
.work-grid.refined-work-grid .work-card.hero-work { grid-column: span 8; }
.work-grid.refined-work-grid .work-photo { aspect-ratio: 4 / 3; background: #0c1d26; }
.work-grid.refined-work-grid .hero-work .work-photo { aspect-ratio: 16 / 10; }
.work-grid.refined-work-grid .work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masonry-lite { grid-auto-rows: 220px; }
.masonry-lite .landscape-shot { border-radius: 22px; }
.masonry-lite .landscape-shot img { width: 100%; height: 100%; object-fit: cover; }

.photo-panel img, .project-image img, .gallery-item img, .photo-tile img, .service-card img { object-fit: cover; }

@media (max-width: 900px) {
  .visual-hero, .visual-hero.compact { min-height: 560px; }
  .visual-hero::before {
    background: linear-gradient(180deg, rgba(4,14,21,.18) 0%, rgba(4,14,21,.55) 48%, rgba(4,14,21,.94) 100%);
  }
  .visual-hero .container { padding-top: 86px; padding-bottom: 44px; }
  .visual-hero-card { padding: 24px; }
  .work-grid.refined-work-grid .work-card,
  .work-grid.refined-work-grid .work-card.hero-work { grid-column: span 6; }
}
@media (max-width: 640px) {
  .visual-hero, .visual-hero.compact { min-height: 535px; }
  .visual-hero .container { padding-top: 64px; padding-bottom: 28px; }
  .visual-hero-card {
    padding: 20px 18px;
    border-radius: 22px;
    background: rgba(5,17,25,.43);
  }
  .visual-hero-card h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .visual-hero-card p { font-size: .98rem; }
  .visual-hero-card .hero-actions .btn { width: 100%; }

  .hero-home-clean { --hero-pos: 58% center; }
  .irrigation-hero { --hero-pos: 60% center; }
  .landscaping-hero { --hero-pos: 50% center; }
  .work-hero { --hero-pos: 52% center; }
  .about-hero { --hero-pos: 54% center; }
  .contact-hero { --hero-pos: 47% center; }
  .blowout-hero { --hero-pos: 58% center; }

  .work-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -14px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .work-filters::-webkit-scrollbar { display: none; }
  .work-filters button { white-space: nowrap; }

  .work-grid.refined-work-grid { grid-template-columns: 1fr; }
  .work-grid.refined-work-grid .work-card,
  .work-grid.refined-work-grid .work-card.hero-work { grid-column: auto; }
  .work-grid.refined-work-grid .work-photo,
  .work-grid.refined-work-grid .hero-work .work-photo { aspect-ratio: 4 / 3; }

  .masonry-lite { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .masonry-lite .landscape-shot,
  .masonry-lite .landscape-shot.tall,
  .masonry-lite .landscape-shot.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}


/* JTS final mobile polish */
:root {
  --bg: #030d13;
  --bg-2: #071720;
  --panel: #0a1d27;
  --panel-2: #0d2734;
  --panel-soft: #12313f;
  --text: #f5f8fa;
  --muted: #a8bbc5;
}

body { background: var(--bg); }
.bg-deep { background: #02090e; }
.bg-panel { background: #06151e; }
.bg-light { background: #0d222c; }

.site-header {
  background: rgba(3,13,19,.96);
  border-bottom-color: rgba(255,255,255,.09);
}

.visual-hero-card {
  background: rgba(3,14,20,.60);
}

.card,
.quote-card,
.contact-item,
.faq details,
.feature-panel,
.work-card {
  background: #091a23;
}

/* Keep the desktop navigation exactly as easy to use as it is now. */
@media (min-width: 721px) {
  .nav-links { display: flex !important; }
}

/* Direct, always visible mobile navigation. No hamburger menu. */
@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .nav-wrap {
    min-height: 0;
    padding-top: 7px;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }

  .brand {
    min-width: 0;
    padding-bottom: 6px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    position: static !important;
    order: 3;
    display: flex !important;
    width: 100%;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 0 7px !important;
    margin: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a:not(.btn) {
    flex: 0 0 auto;
    padding: 8px 10px 7px;
    color: #bdcdd5;
    font-size: .76rem;
    font-weight: 850;
  }

  .nav-links a:not(.btn)::after {
    left: 10px;
    right: 10px;
    bottom: 2px;
    width: auto;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
  }

  .nav-links a:not(.btn):hover::after,
  .nav-links a:not(.btn).active::after {
    width: auto;
    transform: scaleX(1);
  }

  /* The bottom sticky bar already gives the customer a quote button. */
  .nav-links .btn-primary {
    display: none !important;
  }

  .visual-hero,
  .visual-hero.compact {
    min-height: 560px;
  }

  .visual-hero-card {
    width: 94%;
    padding: 18px 17px;
    border-radius: 21px;
    background: rgba(3,14,20,.53);
  }

  .visual-hero-card h1 {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
    line-height: .93;
  }

  .visual-hero-card p {
    font-size: .96rem;
    line-height: 1.55;
  }

  .hero-badge {
    padding: 8px 11px;
    font-size: .69rem;
  }

  .hero-note {
    gap: 8px 14px;
    font-size: .78rem;
  }

  /* Six service choices become three short rows instead of six tall cards. */
  .compact-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 24px;
  }

  .compact-choice-grid .card {
    min-width: 0;
    padding: 16px 14px;
    border-radius: 17px;
    box-shadow: none;
  }

  .compact-choice-grid .card .number {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: .78rem;
  }

  .compact-choice-grid .card h3 {
    margin: 12px 0 6px;
    font-size: .96rem;
    line-height: 1.12;
  }

  .compact-choice-grid .card p {
    font-size: .76rem;
    line-height: 1.42;
  }

  .compact-choice-section {
    padding-bottom: 50px;
  }

  .compact-choice-section .mid-cta {
    margin-top: 24px;
  }

  /* Bring the real job photos into view sooner. */
  .project-pair {
    gap: 10px;
  }

  .refined-pair .project-image {
    min-height: 280px;
  }

  .photo-panel img {
    min-height: 315px;
  }

  /* A cleaner, offset photo collage for the landscaping page. */
  .masonry-lite.mobile-collage {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: 155px 155px 190px;
    gap: 10px;
    align-items: stretch;
  }

  .masonry-lite.mobile-collage .landscape-shot {
    aspect-ratio: auto !important;
    grid-column: auto;
    grid-row: auto;
    overflow: hidden;
  }

  .masonry-lite.mobile-collage .landscape-shot:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .masonry-lite.mobile-collage .landscape-shot:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(16px);
  }

  .masonry-lite.mobile-collage .landscape-shot:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    transform: translateY(16px);
  }

  .masonry-lite.mobile-collage .landscape-shot:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 10px;
  }

  .masonry-lite.mobile-collage .landscape-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 390px) {
  .nav-links a:not(.btn) {
    padding-left: 9px;
    padding-right: 9px;
    font-size: .72rem;
  }

  .compact-choice-grid .card {
    padding: 14px 12px;
  }

  .compact-choice-grid .card p {
    font-size: .73rem;
  }
}
