:root {
  --ink: #181714;
  --charcoal: #26231f;
  --stone: #f2eadf;
  --limestone: #d7c8b3;
  --mortar: #b9a891;
  --brick: #a84f35;
  --brick-dark: #713426;
  --earth: #6f5f4f;
  --earth-dark: #4a3d31;
  --gold: #d89728;
  --gold-dark: #a96614;
  --white: #fffaf2;
  --muted: #695f52;
  --line: rgba(24, 23, 20, 0.15);
  --shadow: 0 22px 60px rgba(24, 23, 20, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.top-bar {
  background: linear-gradient(90deg, var(--charcoal), var(--earth-dark));
  color: var(--white);
  font-size: 0.82rem;
}

.top-bar__inner,
.nav,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.top-bar a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(127, 146, 161, 0.96), rgba(219, 227, 234, 0.94));
  border: 1px solid rgba(111, 132, 149, 0.86);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(58, 73, 89, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-text span {
  display: block;
  color: #8c510d;
  font-family: "Segoe Script", "Brush Script MT", "Snell Roundhand", cursive;
  font-size: 0.96rem;
  font-weight: 700;
  text-transform: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 780;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(169, 102, 20, 0.28);
}

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

.button--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--earth-dark);
  color: var(--white);
  border-color: var(--earth-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 23, 20, 0.88), rgba(74, 61, 49, 0.62) 56%, rgba(111, 95, 79, 0.18)),
    url("../img/project-brick-wall.webp") center / cover;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: clamp(-120px, -6vw, -40px);
  bottom: clamp(-160px, -10vw, -70px);
  width: min(34vw, 420px);
  aspect-ratio: 345 / 575;
  content: "";
  background: url("../img/mills-arch-mark-small.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.hero--compact {
  background:
    linear-gradient(90deg, rgba(24, 23, 20, 0.86), rgba(74, 61, 49, 0.58)),
    url("../img/projects/hero-cultured-stone-home.webp") center / cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.72fr);
  gap: 3rem;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0 5rem;
}

.hero--compact .hero__inner {
  grid-template-columns: minmax(0, 760px);
  padding: 4.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #8c510d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.seasonal-panel .eyebrow {
  color: var(--gold);
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: 5.25rem;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 1.2rem;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.proof-tile {
  padding: 1rem;
  border: 1px solid rgba(216, 151, 40, 0.34);
  background: rgba(24, 23, 20, 0.42);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.1);
}

.proof-tile strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.proof-tile span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.9rem;
  font-weight: 720;
}

.estimate-card,
.consultation-card {
  padding: 1.3rem;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  border-radius: var(--radius);
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.estimate-card h2,
.consultation-card h2 {
  font-size: 1.6rem;
}

.estimate-card p,
.consultation-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.quick-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 720;
}

.quick-list li::before {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: 5rem 0;
}

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

.section--dark {
  background: linear-gradient(135deg, var(--charcoal), var(--earth-dark));
  color: var(--white);
}

.section--tight {
  padding: 3.5rem 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-header p,
.muted {
  color: var(--muted);
}

.section--dark .section-header p,
.section--dark .muted {
  color: rgba(255, 253, 248, 0.72);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.section--dark .card {
  color: var(--ink);
}

.card h3 {
  margin-bottom: 0.7rem;
}

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

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold-dark);
  font-weight: 850;
  text-decoration: none;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--image) center / cover;
  opacity: 0.78;
  transform: scale(1.02);
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(32, 32, 29, 0.02), rgba(32, 32, 29, 0.66));
}

.service-card > * {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.service-card h3 {
  margin-top: 7.5rem;
}

.service-card p {
  color: rgba(255, 253, 248, 0.82);
}

.service-card .card-link {
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.split .muted {
  margin-top: 1rem;
}

.visual-panel {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(216, 151, 40, 0.05), rgba(24, 23, 20, 0.34)),
    url("../img/projects/gallery-river-rock-front.webp") center / cover;
  box-shadow: var(--shadow);
}

.seasonal-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.44fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(24, 23, 20, 0.92), rgba(74, 61, 49, 0.78) 52%, rgba(24, 23, 20, 0.34)),
    url("../img/projects/gallery-ledgestone-home-front.webp") center / cover;
  color: var(--white);
  border: 1px solid rgba(216, 151, 40, 0.34);
  box-shadow: var(--shadow);
}

.seasonal-panel__content {
  display: grid;
  align-content: center;
  max-width: 760px;
}

.seasonal-panel h2 {
  max-width: 760px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.seasonal-panel p {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.82);
}

.seasonal-panel .eyebrow {
  margin-bottom: 0.9rem;
}

.seasonal-panel .button--outline {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.45);
  background: rgba(255, 253, 248, 0.08);
}

.seasonal-panel .button--outline:hover,
.seasonal-panel .button--outline:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.seasonal-panel__notes {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem;
  list-style: none;
  border-left: 1px solid rgba(255, 253, 248, 0.24);
  background: rgba(24, 23, 20, 0.34);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.08);
}

.seasonal-panel__notes li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.15);
}

.seasonal-panel__notes li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.seasonal-panel__notes strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.seasonal-panel__notes span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.92rem;
  font-weight: 720;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.story-panel__copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
  font-weight: 720;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.16rem;
  width: 1.1rem;
  height: 1.1rem;
  content: "";
  background: var(--gold-dark);
  clip-path: polygon(14% 52%, 32% 35%, 46% 50%, 78% 18%, 92% 33%, 46% 82%);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 3.8rem;
}

.process .card::before {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  counter-increment: step;
  content: "0" counter(step);
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.quote-band,
.consultation-band {
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(24, 23, 20, 0.94), rgba(74, 61, 49, 0.8)),
    url("../img/stone-detail.svg") center / cover;
  color: var(--white);
  border: 1px solid rgba(216, 151, 40, 0.3);
  box-shadow: var(--shadow);
}

.quote-band,
.consultation-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.quote-band p,
.consultation-band p {
  color: rgba(255, 253, 248, 0.76);
  max-width: 680px;
}

.region-grid {
  align-items: stretch;
}

.region-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border-top: 5px solid var(--gold);
}

.region-card .eyebrow {
  margin-bottom: 0;
}

.region-card .button {
  width: fit-content;
  margin-top: 0.35rem;
}

.region-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.testimonial blockquote {
  margin: 0.85rem 0 1rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial cite {
  margin-top: auto;
  color: var(--muted);
  font-style: normal;
  font-weight: 820;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--image) center / cover;
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(24, 23, 20, 0.08), rgba(24, 23, 20, 0.74));
}

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

.gallery-tile--tall {
  grid-row: span 2;
}

.gallery-tile--wide {
  grid-column: span 2;
}

.gallery-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.65rem;
  background: rgba(32, 32, 29, 0.84);
  color: var(--white);
  border-radius: 5px;
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.area-list a,
.area-list span {
  padding: 0.55rem 0.75rem;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

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

.faq summary {
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 850;
}

.faq details p {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.contact-card {
  padding: 1.35rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
}

.contact-card a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.region-mini-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.contact-locations {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.location-card {
  padding: 1rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.location-card p + p {
  margin-top: 0.65rem;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(32, 32, 29, 0.08);
}

.form a {
  color: var(--gold-dark);
  font-weight: 850;
}

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

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

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(32, 32, 29, 0.22);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 151, 40, 0.34);
  border-color: var(--gold-dark);
}

.site-footer {
  padding: 3rem 0 6rem;
  background: linear-gradient(145deg, #181714, var(--earth-dark));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.82);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.88rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 960px) {
  .top-bar__inner {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% - 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links .button {
    width: 100%;
  }

  .hero__inner,
  .split,
  .section-header,
  .contact-grid,
  .story-panel {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding: 4.7rem 0 3.2rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 1.48rem;
  }

  .hero-proof,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .hero::after {
    width: 260px;
    opacity: 0.11;
  }

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

  .gallery-tile:first-child,
  .gallery-tile--tall,
  .gallery-tile--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .quote-band,
  .consultation-band,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 640px) {
  h1,
  h2,
  h3,
  .lead,
  .button {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .section-actions .button,
  .consultation-band .button {
    width: 100%;
  }

  .top-bar {
    display: none;
  }

  .nav,
  .section-inner,
  .hero__inner {
    width: min(var(--max), calc(100vw - 32px));
  }

  .hero__inner > *,
  .split > *,
  .contact-grid > *,
  .story-panel > *,
  h1,
  .lead,
  .consultation-card,
  .card,
  .contact-card,
  .form,
  .location-card,
  .seasonal-panel,
  .consultation-band {
    min-width: 0;
    max-width: calc(100vw - 32px);
  }

  .nav {
    gap: 0.7rem;
  }

  .brand {
    max-width: calc(100% - 54px);
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    white-space: normal;
  }

  .brand-text span {
    font-size: 0.76rem;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(24, 23, 20, 0.88), rgba(74, 61, 49, 0.62) 56%, rgba(111, 95, 79, 0.18)),
      url("../img/project-brick-wall-mobile.webp") center / cover;
  }

  .hero--compact {
    background:
      linear-gradient(90deg, rgba(24, 23, 20, 0.86), rgba(74, 61, 49, 0.58)),
      url("../img/projects/hero-cultured-stone-home-mobile.webp") center / cover;
  }

  .seasonal-panel {
    background:
      linear-gradient(105deg, rgba(24, 23, 20, 0.92), rgba(74, 61, 49, 0.78) 52%, rgba(24, 23, 20, 0.34)),
      url("../img/projects/gallery-ledgestone-entry-detail.webp") center / cover;
  }

  .brand-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand {
    gap: 0.55rem;
  }

  .seasonal-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .seasonal-panel__notes {
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 248, 0.22);
  }

  .brand-text strong {
    max-width: 166px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .brand-text span {
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    padding-inline: 0.7rem;
    font-size: 0.9rem;
  }

  .form-row,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 190px;
  }

}

@media (max-width: 500px) {
  .nav,
  .section-inner,
  .hero__inner,
  .hero__inner > *,
  .split > *,
  .contact-grid > *,
  .story-panel > *,
  h1,
  .lead,
  .consultation-card,
  .card,
  .contact-card,
  .form,
  .location-card,
  .seasonal-panel,
  .consultation-band {
    width: calc(100vw - 32px);
    max-width: none;
  }

  .nav,
  .section-inner,
  .hero__inner {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 1.96rem;
  }
}
