:root {
  --paper: #f8f7f3;
  --warm: #f3efe7;
  --white: #ffffff;
  --ink: #222222;
  --charcoal: #151515;
  --muted: #6d6252;
  --soft: #ddd2b7;
  --gold: #d6c7a1;
  --gold-deep: #bfae7e;
  --olive: #5e665e;
  --line: rgba(34, 34, 34, 0.13);
  --shadow: 0 22px 60px rgba(34, 34, 34, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.25rem;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(214, 199, 161, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 243, 0.96);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.site-nav a {
  position: relative;
  color: rgba(34, 34, 34, 0.76);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.75rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  opacity: 0;
}

.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  padding: 0.8rem 1.2rem;
}

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

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.button.gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button.light:hover {
  background: var(--white);
  color: var(--charcoal);
}

.text-link {
  color: var(--ink);
  min-height: auto;
}

.text-link::after {
  content: ">";
  color: var(--gold-deep);
}

.eyebrow {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 72px 0;
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section.dark h2,
.section.dark h3,
.section.dark p {
  color: var(--white);
}

.section.warm {
  background: var(--warm);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.6rem;
}

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

.section-head .eyebrow {
  margin-bottom: 0.9rem;
}

.section-head p {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.76), rgba(12, 12, 12, 0.38) 44%, rgba(12, 12, 12, 0.08)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  color: var(--white);
}

.hero-home {
  --hero-image: url("../images/hero-living-room.jpeg");
}

.about-hero {
  --hero-image: url("../images/hero-living-room.jpeg");
  --hero-position: center 34%;
}

.services-hero {
  --hero-image: url("../images/accent-chair.png");
  --hero-position: center 56%;
}

.projects-hero {
  --hero-image: url("../images/hero-living-room.jpeg");
  --hero-position: center 58%;
}

.contact-hero {
  --hero-image: url("../images/hero-living-room.jpeg");
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(12, 12, 12, 0.42), rgba(12, 12, 12, 0));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 5rem 0;
  min-width: 0;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero h1 {
  margin-top: 1.2rem;
}

.hero p {
  max-width: 630px;
  margin-top: 1.45rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.trust-rail {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  min-height: 138px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  overflow-wrap: break-word;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-stack {
  display: grid;
  gap: 1.2rem;
}

.copy-stack .button,
.copy-stack .text-link {
  justify-self: start;
  margin-top: 0.8rem;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame.wide img {
  aspect-ratio: 16 / 10;
}

.image-note {
  position: absolute;
  right: -24px;
  bottom: 24px;
  width: 210px;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-note strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.image-note span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 174, 126, 0.58);
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.1);
}

.service-card .number {
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-info {
  padding: 1.25rem;
}

.project-info p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-type {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  counter-reset: process;
}

.process-item {
  position: relative;
  padding-top: 3.2rem;
}

.process-item::before {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.process-item p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.96), rgba(21, 21, 21, 0.82)),
    url("../images/corridor-interior.png");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 680px;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.42) 46%, rgba(18, 18, 18, 0.2)),
    var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  color: var(--white);
}

.page-hero .container {
  padding: 4rem 0;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero h1 {
  margin-top: 0.9rem;
  max-width: 760px;
  font-size: clamp(2.35rem, 3vw, 3rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 640px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-item {
  border-top: 2px solid var(--gold);
  padding-top: 1.2rem;
}

.value-item p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.capability {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.4rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.capability img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.capability div {
  padding: 1.3rem 1.3rem 1.3rem 0;
}

.capability p {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 132px;
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.gallery-card.feature {
  grid-column: span 7;
  grid-row: span 3;
}

.gallery-card.portrait {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-card.tall {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-card.wide {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-card.compact {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
  opacity: 0.78;
}

.gallery-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.gallery-caption h3 {
  color: var(--white);
}

.gallery-caption p {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.case-stack {
  display: grid;
  gap: 1.4rem;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.case-media {
  min-height: 390px;
  background: var(--warm);
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 2rem 0;
}

.case-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.case-copy p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.case-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.case-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-panel {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.08);
  padding: 2rem;
}

.contact-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-list span {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 24px;
  color: var(--olive);
  font-weight: 700;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 3rem;
}

.footer-logo {
  width: 166px;
  padding: 0.8rem;
  border-radius: var(--radius);
  background: var(--paper);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .nav-actions .button {
    display: none;
  }

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

  .capability {
    grid-template-columns: 1fr;
  }

  .capability div {
    padding: 0 1.3rem 1.4rem;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .nav-shell {
    width: min(var(--max), calc(100% - 32px));
    min-height: 76px;
  }

  .site-header {
    z-index: 1000;
    background: var(--paper);
    backdrop-filter: none;
  }

  .nav-open .site-header {
    box-shadow: 0 18px 42px rgba(34, 34, 34, 0.14);
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
  }

  .site-nav {
    position: absolute;
    z-index: 1001;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: calc(100dvh - 76px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1.15rem 24px 2.4rem;
    background: #f8f7f3;
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(34, 34, 34, 0.16);
    overflow-y: auto;
    transform: translate3d(100%, 0, 0);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translate3d(0, 0, 0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.active {
    color: var(--gold-deep);
  }

  .hero {
    min-height: 660px;
    background:
      linear-gradient(90deg, rgba(12, 12, 12, 0.78), rgba(12, 12, 12, 0.4)),
      var(--hero-image);
    background-size: cover;
    background-position: var(--hero-position, center);
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero .container {
    padding: 3.5rem 0;
  }

  .trust-grid,
  .project-grid,
  .process-grid,
  .values-grid,
  .capability-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 128px;
  }

  .gallery-card,
  .gallery-card.feature,
  .gallery-card.portrait,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card.compact {
    grid-column: span 3;
    grid-row: span 2;
  }

  .gallery-card.feature,
  .gallery-card.wide {
    grid-column: 1 / -1;
    grid-row: span 3;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-copy {
    padding: 2rem;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.08rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 1.65rem;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section,
  .section.tight {
    padding: 64px 0;
  }

  .section-head {
    max-width: 20.5rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 350px;
    padding: 4rem 0 5.5rem;
  }

  .hero h1,
  .hero p,
  .page-hero h1,
  .page-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .page-hero h1 {
    max-width: 19.75rem;
    font-size: 1.88rem;
  }

  .page-hero p {
    max-width: 20.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-rail {
    margin-top: 0;
  }

  .trust-grid,
  .service-grid,
  .project-grid,
  .process-grid,
  .values-grid,
  .capability-grid,
  .contact-layout,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .image-frame {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--charcoal);
    box-shadow: var(--shadow);
  }

  .image-frame img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: none;
  }

  .image-note {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem 1.1rem 1.15rem;
  }

  .image-note strong {
    font-size: 1.28rem;
  }

  .capability img {
    height: 260px;
    min-height: 0;
    object-fit: cover;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card.feature,
  .gallery-card.portrait,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card.compact {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 330px;
  }

  .gallery-card.tall {
    min-height: 390px;
  }

  .case-media {
    min-height: 285px;
  }

  .case-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band,
  .contact-panel {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
