:root {
  --ink: #171615;
  --charcoal: #24211e;
  --muted: #67605a;
  --line: #ded8d1;
  --paper: #f7f4ef;
  --warm: #eee7dd;
  --white: #ffffff;
  --gold: #c79635;
  --gold-dark: #9b7229;
  --wood: #a87842;
  --shadow: 0 24px 70px rgba(29, 24, 19, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(247, 244, 239, 0.92);
  border-bottom: 1px solid rgba(222, 216, 209, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(7, 5px);
  align-items: end;
  gap: 4px;
  height: 38px;
  width: 61px;
  flex: 0 0 auto;
  padding: 4px 0;
}

.brand-mark span {
  display: block;
  width: 5px;
  background: linear-gradient(180deg, #efc058, var(--gold-dark));
  border-radius: 2px 2px 0 0;
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(7) {
  height: 18px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(6) {
  height: 25px;
}

.brand-mark span:nth-child(3),
.brand-mark span:nth-child(5) {
  height: 31px;
}

.brand-mark span:nth-child(4) {
  height: 38px;
}

.brand-text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-text strong {
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.14em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.brand.inverted .brand-text small,
.brand.inverted {
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.site-nav a:not(.button) {
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 28px rgba(23, 22, 21, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(23, 22, 21, 0.18);
}

.button.small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.9rem;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.84);
}

.button.gold {
  background: linear-gradient(180deg, #edc15d, var(--gold));
  color: #16110a;
  border-color: #edc15d;
  box-shadow: 0 16px 38px rgba(199, 150, 53, 0.28);
}

.button.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.86) 0%, rgba(16, 14, 12, 0.62) 36%, rgba(16, 14, 12, 0.16) 74%),
    linear-gradient(0deg, rgba(16, 14, 12, 0.42), rgba(16, 14, 12, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) 0 42px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.service-line {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 112px) 0;
}

.intro {
  max-width: 960px;
  margin-top: 16px;
  text-align: center;
}

.intro p {
  margin: 0 auto;
  max-width: 790px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 390px;
  color: var(--muted);
}

.text-link {
  color: var(--gold-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

.service-card {
  display: block;
  min-height: 260px;
  padding: 18px 18px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  background: var(--soft);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 150, 53, 0.58);
  box-shadow: 0 16px 38px rgba(29, 24, 19, 0.08);
}

.service-card:hover h3 {
  color: var(--gold-dark);
}

.card-icon {
  width: 62px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 2px;
  background:
    linear-gradient(90deg, var(--gold) 9%, transparent 9% 18%, var(--gold) 18% 27%, transparent 27% 36%, var(--gold) 36% 45%, transparent 45% 54%, var(--gold) 54% 63%, transparent 63% 72%, var(--gold) 72% 81%, transparent 81%);
  opacity: 0.95;
}

.card-icon.accent {
  background:
    linear-gradient(135deg, transparent 0 46%, var(--gold) 47% 53%, transparent 54%) 0 0 / 100% 100%,
    linear-gradient(45deg, transparent 0 46%, var(--gold) 47% 53%, transparent 54%) 0 0 / 100% 100%,
    linear-gradient(var(--gold), var(--gold)) 0 0 / 100% 4px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 100% 4px no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) 0 0 / 4px 100% no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) 100% 0 / 4px 100% no-repeat;
}

.card-icon.fireplace {
  border: 4px solid var(--gold);
  border-bottom: 12px solid var(--gold);
  background: transparent;
}

.card-icon.panels {
  background:
    linear-gradient(var(--gold), var(--gold)) 0 0 / 100% 4px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 100% 4px no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) 0 0 / 4px 100% no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) 100% 0 / 4px 100% no-repeat,
    linear-gradient(90deg, transparent 47%, var(--gold) 47% 53%, transparent 53%);
}

.card-icon.molding {
  background:
    repeating-linear-gradient(90deg, var(--gold) 0 4px, transparent 4px 18px),
    linear-gradient(var(--gold), var(--gold)) 0 50% / 100% 4px no-repeat;
}

.card-icon.options {
  border: 3px solid var(--gold);
  background:
    radial-gradient(circle at 20% 50%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 50%, var(--gold) 0 4px, transparent 5px);
}

.inspiration {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inspiration-copy p {
  color: var(--muted);
  max-width: 520px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 16px;
}

.tile,
.photo-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
}

.tile:first-child,
.photo-tile:first-child {
  grid-row: span 2;
}

.photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.62), rgba(17, 17, 17, 0.06));
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.tile.dark::before {
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.28)),
    repeating-linear-gradient(90deg, #493823 0 14px, #c79635 14px 18px, #493823 18px 32px);
}

.tile.wood::before {
  background:
    linear-gradient(120deg, rgba(49, 35, 22, 0.3), rgba(49, 35, 22, 0.05)),
    repeating-linear-gradient(90deg, #7b502d 0 20px, #b98043 20px 25px, #8e6035 25px 40px);
}

.tile.light::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(18, 16, 14, 0.58)),
    repeating-linear-gradient(90deg, #e9e1d6 0 38px, #d4cabd 38px 42px);
}

.tile span,
.photo-tile span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.process {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.steps article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps article::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(199, 150, 53, 0.12);
}

.steps .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 22, 21, 0.96), rgba(50, 39, 27, 0.96)),
    repeating-linear-gradient(90deg, rgba(199, 150, 53, 0.2) 0 5px, transparent 5px 22px);
  border-radius: var(--radius);
}

.contact-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-band h2 {
  margin-bottom: 12px;
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button.ghost-on-dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.button.ghost-on-dark:hover {
  color: var(--ink);
  background: var(--white);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.quote-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.quote-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-weight: 700;
}

.quote-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 150, 53, 0.16);
}

.quote-form {
  padding: clamp(12px, 2vw, 18px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 6px;
  background: var(--white);
}

.quote-fallback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.quote-fallback a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span,
.area-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.area-list a {
  border-color: rgba(199, 150, 53, 0.5);
}

.area-list a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(29, 24, 19, 0.08);
}

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

.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.audience-panel {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: clamp(28px, 5vw, 44px);
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.audience-panel:nth-child(2) {
  background: #5b4938;
}

.audience-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.reviews {
  padding-top: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.faq {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding: 46px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: #111111;
}

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

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
}

.footer-nap,
.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nap strong {
  color: var(--white);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 10vw, 112px) 0 clamp(42px, 7vw, 72px);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.45rem, 5.8vw, 4.9rem);
}

.page-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--warm);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-body {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 84px) 0;
  border-top: 1px solid var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 22px;
}

.copy-block p,
.copy-block li {
  color: var(--muted);
}

.copy-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.sidebar-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(29, 24, 19, 0.08);
}

.sidebar-card p {
  color: var(--muted);
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.city-card {
  min-height: 118px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.city-card:hover {
  color: var(--gold-dark);
  border-color: rgba(199, 150, 53, 0.55);
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: 73px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-phone {
    border-top: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    background: var(--ink);
    border: 0;
    border-radius: var(--radius);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .trust-strip,
  .service-grid,
  .review-grid,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .contact-band {
    align-items: start;
    flex-direction: column;
  }

  .inspiration,
  .audience,
  .quote-section,
  .page-hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

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

  .mini-gallery {
    grid-template-rows: 190px 190px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .brand-mark {
    transform: scale(0.86);
    transform-origin: left center;
    margin-right: -8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(16, 14, 12, 0.88) 0%, rgba(16, 14, 12, 0.58) 60%, rgba(16, 14, 12, 0.34) 100%);
  }

  .hero-content {
    padding-top: 72px;
    min-height: 690px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .section,
  .contact-band {
    width: min(100% - 32px, var(--max));
  }

  .band-actions {
    justify-content: stretch;
    width: 100%;
  }

  .band-actions .button {
    flex: 1 1 210px;
  }

  .quote-form {
    margin-inline: -6px;
    padding: 8px;
  }

  .quote-form iframe {
    min-height: 820px;
  }

  .service-card {
    min-height: auto;
  }

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

  .mini-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .tile:first-child,
  .photo-tile:first-child {
    grid-row: auto;
  }
}
