:root {
  --bone: #f1ece1;
  --paper: #faf6ee;
  --card: #ffffff;
  --cream: #f5ecd3;
  --ink: #1f2a23;
  --ink-soft: #586458;
  --ink-dim: #8a8170;
  --rule: #e0d8c5;
  --rule-soft: #ece4d0;
  --clay: #b06a3b;
  --clay-deep: #7a4012;
  --ochre: #c89a4a;
  --ochre-deep: #8a6520;
  --sage: #7a8f6a;
  --sage-deep: #324132;
  --rust: #a8492a;
  --forest: #5a7848;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 640px;
}

.hero-poster {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px 48px 48px;
  background: var(--clay);
  color: var(--cream);
}

.hero-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  max-width: 360px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 0.96;
}

.wordmark span {
  color: var(--ochre);
}

.hero-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-nav a,
.text-arrow,
.service-card a,
.site-footer a {
  transition: opacity 140ms ease;
}

.hero-nav a:hover,
.hero-nav a:focus-visible,
.text-arrow:hover,
.text-arrow:focus-visible,
.service-card a:hover,
.service-card a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  max-width: 780px;
}

.kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  margin-top: 18px;
  max-width: 780px;
  color: var(--cream);
  font-size: clamp(4.6rem, 8.3vw, 7.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 em {
  display: block;
  color: var(--ochre);
  font-style: italic;
}

.lede {
  max-width: 540px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(245, 236, 211, 0.75);
  border-radius: 0;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.3px;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 140ms ease,
    color 140ms ease,
    opacity 140ms ease,
    transform 140ms ease;
}

.call-button:hover,
.call-button:focus-visible {
  transform: translateY(-1px);
}

.call-button-primary {
  background: var(--cream);
  color: var(--ink);
}

.call-button-secondary {
  background: rgba(245, 236, 211, 0.12);
}

.call-button-ghost {
  background: transparent;
}

.text-arrow,
.hero-estimate {
  margin-top: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  color: currentColor;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.photo-frame {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 240px;
  overflow: hidden;
  background: var(--rule);
}

.photo-frame img {
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  min-height: 640px;
}

.hero-photo img {
  object-position: 55% center;
}

.photo-frame figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #3d2f1a;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stat-strip article {
  min-height: 146px;
  padding: 30px 28px;
  background: var(--paper);
  border-right: 1px solid var(--rule);
}

.stat-strip article:nth-child(even) {
  background: var(--cream);
}

.stat-strip article:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  color: var(--clay);
  font-family: var(--display);
  font-size: clamp(3rem, 4.7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

.services {
  padding: 70px 48px;
}

.services h2,
.section-heading h2,
.estimate-cta h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.services h2 {
  max-width: 960px;
  margin-bottom: 36px;
  font-size: clamp(3.3rem, 5.9vw, 5.4rem);
}

.services h2 em,
.estimate-cta h2 em {
  color: var(--clay);
  font-style: italic;
}

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

.service-card {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--cream);
}

.service-card.sage {
  background: var(--sage);
}

.service-card.clay {
  background: var(--clay);
}

.service-card.ochre {
  background: var(--ochre);
  color: var(--ink);
}

.service-card.slate {
  background: #3d5560;
}

.service-card > p,
.service-card a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card > p {
  opacity: 0.86;
}

.service-card h3 {
  font-size: clamp(2.35rem, 3vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.service-card div p {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
  opacity: 0.92;
}

.service-card a {
  display: inline-block;
  margin-top: 24px;
}

.answer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  padding: 0 48px 70px;
}

.answer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.answer-copy .kicker,
.faq-section .kicker {
  color: var(--clay-deep);
}

.answer-copy h2 {
  max-width: 820px;
  margin-top: 10px;
  font-size: clamp(2.65rem, 4.8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.answer-copy p:not(.kicker) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.answer-grid {
  display: grid;
  background: var(--cream);
  border: 1px solid var(--rule);
}

.answer-grid article {
  padding: 30px;
  border-bottom: 1px solid var(--rule);
}

.answer-grid article:last-child {
  border-bottom: 0;
}

.answer-grid h3,
.faq-list h3 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.answer-grid p,
.faq-list p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.work {
  padding: 0 48px 70px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
  padding: 0 48px 70px;
}

.about-band .photo-frame {
  min-height: 420px;
}

.about-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.about-band .kicker {
  color: var(--clay-deep);
}

.about-band h2 {
  max-width: 740px;
  margin-top: 10px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.about-band p:not(.kicker) {
  max-width: 700px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading .kicker {
  color: var(--clay-deep);
}

.section-heading h2 {
  max-width: 840px;
  font-size: clamp(2.75rem, 4.8vw, 4.8rem);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 12px;
}

.work-grid .photo-frame {
  min-height: 0;
  aspect-ratio: 5 / 3;
}

.testimonial {
  padding: 70px 48px;
  background: var(--ink);
  color: var(--cream);
}

.testimonial .kicker {
  margin-bottom: 28px;
  color: var(--ochre);
}

.review-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 30px;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial blockquote p {
  max-width: 1040px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.testimonial blockquote:not(:first-child) p {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.25;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  color: var(--ochre);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 1.5px;
  line-height: 1.45;
  text-transform: uppercase;
}

.faq-section {
  padding: 70px 48px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.faq-list article {
  min-width: 0;
  padding: 30px;
  background: var(--paper);
}

.estimate-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 60px 48px;
  background: var(--ochre);
  color: var(--ink);
}

.estimate-cta h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.estimate-cta .cta-actions a,
.estimate-cta .cta-actions button,
.submit-estimate {
  min-height: 56px;
  padding: 0 28px;
  background: var(--ink);
  border: 0;
  border-radius: 0;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.estimate-cta button:hover,
.estimate-cta button:focus-visible,
.estimate-cta .cta-actions a:hover,
.estimate-cta .cta-actions a:focus-visible,
.submit-estimate:hover,
.submit-estimate:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-actions a,
.cta-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 40px 48px;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
}

.site-footer h3 {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-footer p {
  margin-top: 6px;
}

.site-footer div:first-child p:first-of-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
}

.estimate-modal {
  width: min(100vw - 32px, 560px);
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
}

.estimate-modal::backdrop {
  background: rgba(31, 42, 35, 0.72);
}

.modal-card {
  position: relative;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 28px 70px rgba(31, 42, 35, 0.28);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.estimate-form .kicker {
  color: var(--clay-deep);
}

.estimate-form h2 {
  margin-top: 8px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.modal-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--rule);
}

.modal-callout p {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.modal-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-note {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.spam-check {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.estimate-form label {
  display: block;
  margin-top: 14px;
}

.estimate-form label span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  outline: none;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(176, 106, 59, 0.18);
}

.estimate-form textarea {
  min-height: 112px;
  resize: vertical;
}

.submit-estimate {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--forest);
  font-size: 13px;
  line-height: 1.45;
}

.mobile-call-bar {
  display: none;
}

.response-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 48px 24px;
  background: var(--bone);
}

.response-card {
  width: min(100%, 720px);
  padding: 44px;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 64px rgba(31, 42, 35, 0.12);
}

.response-card .kicker {
  color: var(--clay-deep);
}

.response-card h1 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
}

.response-card p:not(.kicker) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.response-card.error {
  border-color: rgba(168, 73, 42, 0.45);
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.response-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.subpage-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 48px;
  background: var(--clay);
  color: var(--cream);
}

.subpage-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.subpage-nav a {
  transition: opacity 140ms ease;
}

.subpage-nav a:hover,
.subpage-nav a:focus-visible {
  opacity: 0.72;
}

.gallery-page {
  background: var(--bone);
}

.gallery-hero {
  padding: 78px 48px 58px;
  background: var(--clay);
  color: var(--cream);
  text-align: center;
}

.gallery-hero .kicker {
  color: var(--cream);
}

.gallery-hero h1 {
  max-width: 1020px;
  margin: 18px auto 0;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
}

.gallery-hero p:not(.kicker) {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.55;
}

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

.gallery-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.gallery-card figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--rule);
}

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

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card div {
  padding: 18px 18px 22px;
}

.gallery-card p {
  color: var(--clay-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  line-height: 1.35;
  text-transform: uppercase;
}

.gallery-card h2 {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.gallery-cta {
  margin-top: 0;
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-nav {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    text-align: center;
  }

  .hero-nav nav {
    justify-content: center;
    gap: 14px 24px;
  }

  .wordmark {
    max-width: 100%;
  }

  .hero-poster {
    min-height: 620px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 860px;
    margin-top: clamp(34px, 6vw, 72px);
    align-self: center;
  }

  h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-photo {
    min-height: 460px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-nav,
  .subpage-nav {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    text-align: center;
  }

  .hero-nav nav,
  .subpage-nav nav {
    justify-content: center;
    gap: 14px 24px;
  }

  .wordmark {
    max-width: 100%;
  }

  .hero-poster {
    min-height: 620px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 860px;
    align-self: center;
  }

  h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-photo {
    min-height: 460px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip article:nth-child(2) {
    border-right: 0;
  }

  .stat-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .service-posters,
  .review-grid,
  .about-band,
  .answer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid blockquote:first-child,
  .about-band .photo-frame {
    grid-column: 1 / -1;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .site-footer,
  .gallery-board {
    grid-template-columns: 1fr 1fr;
  }

  .work-grid .photo-frame:first-child,
  .site-footer div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  body.modal-open {
    padding-bottom: 0;
  }

  .hero-poster,
  .subpage-nav,
  .gallery-hero,
  .gallery-board,
    .services,
    .answer-panel,
    .work,
    .about-band,
    .testimonial,
  .faq-section,
  .estimate-cta,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-poster {
    min-height: 600px;
    padding-top: 26px;
    padding-bottom: calc(122px + env(safe-area-inset-bottom));
  }

  .hero-copy {
    margin-top: 26px;
  }

  .subpage-nav nav {
    max-width: 100%;
    gap: 12px 16px;
  }

  .hero-nav nav {
    max-width: 100%;
    gap: 12px 16px;
  }

  h1 {
    font-size: clamp(4.15rem, 17vw, 5.3rem);
    line-height: 1;
  }

  .gallery-hero {
    padding-top: 46px;
    padding-bottom: 112px;
  }

  .gallery-hero h1 {
    font-size: clamp(3rem, 12vw, 4.3rem);
    line-height: 1.02;
  }

  .gallery-hero p:not(.kicker) {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-actions {
    display: none;
  }

  .hero-photo {
    min-height: 390px;
  }

  .stat-strip,
  .service-posters,
  .answer-panel,
  .work-grid,
  .review-grid,
  .about-band,
  .site-footer,
  .gallery-board,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .stat-strip article,
  .stat-strip article:nth-child(2),
  .stat-strip article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .stat-strip article:last-child {
    border-bottom: 0;
  }

  .review-grid blockquote:first-child,
  .about-band .photo-frame,
  .work-grid .photo-frame:first-child,
  .site-footer div:first-child {
    grid-column: auto;
  }

  .services {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .work,
  .about-band,
  .answer-panel,
  .faq-section {
    padding-bottom: 56px;
  }

  .about-band > div,
  .answer-copy {
    padding: 28px 24px;
  }

  .work-grid .photo-frame {
    aspect-ratio: 4 / 3;
  }

  .estimate-cta {
    align-items: stretch;
  }

  .cta-actions,
  .estimate-cta .cta-actions a,
  .estimate-cta .cta-actions button,
  .estimate-cta button {
    width: 100%;
  }

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

  .modal-card,
  .response-card {
    padding: 30px 22px 24px;
  }

  .modal-callout {
    grid-template-columns: 1fr;
  }

  .modal-callout a {
    min-height: 48px;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(31, 42, 35, 0.94);
    border-top: 1px solid rgba(245, 236, 211, 0.18);
    box-shadow: 0 -12px 34px rgba(31, 42, 35, 0.28);
    backdrop-filter: blur(14px);
  }

  body.modal-open .mobile-call-bar {
    display: none;
  }

  .mobile-call-bar a,
  .mobile-call-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 1px solid var(--cream);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-call-bar a {
    background: var(--cream);
    color: var(--ink);
  }

  .mobile-call-bar button {
    background: transparent;
    color: var(--cream);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
