:root {
  --ink: #18201f;
  --ink-soft: #44504d;
  --paper: #fbfaf7;
  --paper-strong: #ffffff;
  --line: #dcd7cd;
  --teal: #006b5d;
  --teal-dark: #00473f;
  --clay: #b65b3a;
  --clay-dark: #86412d;
  --stone: #f0eee8;
  --shadow: 0 20px 50px rgba(24, 32, 31, 0.12);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(220, 215, 205, 0.84);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--stone);
  color: var(--ink);
}

.header-call {
  display: grid;
  gap: 0;
  min-width: 164px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.header-call span {
  color: var(--ink-soft);
  font-size: 12px;
}

.header-call strong {
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, 84svh, 780px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 17, 16, 0.88) 0%, rgba(10, 17, 16, 0.66) 38%, rgba(10, 17, 16, 0.18) 76%),
    linear-gradient(0deg, rgba(10, 17, 16, 0.38), rgba(10, 17, 16, 0.08));
}

.hero-content {
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 88px 0 112px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c6a8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  font-weight: 850;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.4vw, 23px);
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 107, 93, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.button.ghost {
  background: var(--paper-strong);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.proof-strip {
  width: var(--container);
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(220, 215, 205, 0.9);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

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

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

.proof-strip strong {
  font-size: 17px;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p,
.section-copy p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading h2 + p,
.section-copy h2 + p {
  margin-top: 18px;
}

.compact {
  max-width: 700px;
}

.intro-section,
.seo-section,
.contact-section,
.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 42px;
  align-items: start;
}

.metrics,
.local-services {
  display: grid;
  gap: 14px;
}

.metric,
.local-services,
.service-card,
.project-card,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.metric {
  padding: 20px;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--teal-dark);
  font-size: 18px;
}

.metric span {
  margin-top: 4px;
  color: var(--ink-soft);
}

.service-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background: var(--stone);
}

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

.service-card {
  min-height: 100%;
  padding: 24px;
}

.service-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, 0.75) 46%, rgba(255, 255, 255, 0.75) 54%, transparent 54%),
    linear-gradient(var(--teal), var(--teal));
}

.service-icon.tile {
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.8) 47%, rgba(255, 255, 255, 0.8) 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.8) 47%, rgba(255, 255, 255, 0.8) 53%, transparent 53%),
    linear-gradient(var(--clay), var(--clay));
}

.service-icon.finish {
  background:
    linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.82) 56%, transparent 56%),
    linear-gradient(var(--ink), var(--ink));
}

.service-card p,
.service-card li {
  color: var(--ink-soft);
}

.service-card ul,
.local-services ul {
  padding-left: 20px;
}

.service-card li + li,
.local-services li + li {
  margin-top: 7px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 850;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 24px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 800;
}

.filter-button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.project-card {
  overflow: hidden;
}

.project-card.featured {
  grid-row: span 2;
}

.project-media-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.project-card img,
.project-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card.featured img,
.project-card.featured video {
  height: 602px;
}

.project-media-button:hover img,
.project-media-button:focus-visible img,
.project-media-button:hover video,
.project-media-button:focus-visible video {
  transform: scale(1.02);
}

.project-media-button img,
.project-media-button video {
  transition: transform 220ms ease;
}

.project-card div {
  padding: 20px;
}

.project-card p {
  margin: 0 0 8px;
  color: var(--clay-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-description,
.media-count {
  display: block;
}

.project-description {
  margin-top: 10px;
  color: var(--ink-soft);
}

.media-count {
  margin-top: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.media-dialog {
  width: min(1040px, calc(100% - 32px));
  max-height: min(880px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.media-dialog::backdrop {
  background: rgba(10, 17, 16, 0.72);
}

.media-dialog-inner {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.media-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.media-dialog-header h2 {
  font-size: clamp(22px, 3vw, 34px);
}

.dialog-close {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.media-dialog-body {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
}

.media-dialog-body img,
.media-dialog-body video {
  width: 100%;
  max-height: min(68vh, 640px);
  object-fit: contain;
}

.media-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.media-dialog-actions .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.reviews-section {
  align-items: stretch;
}

.reviews-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.review-summary {
  display: grid;
  gap: 5px;
  width: min(100%, 280px);
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.review-summary strong {
  color: var(--teal-dark);
  font-size: 46px;
  line-height: 1;
}

.review-stars {
  color: var(--clay);
  font-size: 18px;
  letter-spacing: 0;
}

.reviews-panel {
  display: grid;
  gap: 18px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

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

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 107, 93, 0.14);
}

.rating-field {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-field legend {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.rating-field label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  cursor: pointer;
}

.rating-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--teal);
}

.rating-field span {
  color: var(--clay);
  font-size: 18px;
}

.reviews-list {
  display: grid;
  gap: 12px;
}

.review-card,
.reviews-empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.review-text {
  color: var(--ink);
}

.reviews-empty {
  margin: 0;
  color: var(--ink-soft);
}

.process-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: #fff;
}

.process-section .eyebrow {
  color: #f3c6a8;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 30px;
  color: #f3c6a8;
  font-weight: 850;
}

.process-list p {
  color: rgba(255, 255, 255, 0.76);
}

.seo-section {
  align-items: center;
}

.local-services {
  padding: 24px;
}

.local-services h3 {
  margin-bottom: 8px;
}

.local-services li {
  color: var(--ink-soft);
}

.faq-section {
  padding-top: 52px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.contact-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background: var(--stone);
}

.contact-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.contact-options {
  margin-top: 28px;
}

.contact-option {
  display: grid;
  min-width: 210px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.contact-option span {
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-option strong {
  margin-top: 3px;
  color: var(--teal-dark);
}

.lead-form {
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

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

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 107, 93, 0.14);
}

.lead-form > label,
.contact-preference,
.consent,
.form-button {
  margin-top: 16px;
}

.contact-preference {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  border: 0;
}

.contact-preference legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.contact-preference label,
.consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 700;
}

.contact-preference input,
.consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
  accent-color: var(--teal);
}

.consent {
  color: var(--ink-soft);
  font-size: 13px;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-status.error {
  color: #a23622;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: #fff;
}

.footer-brand .brand-mark {
  background: var(--teal);
}

.site-footer p,
.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer a {
  color: #fff;
}

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

.legal-page {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(34px, 6vw, 62px);
}

.legal-page section {
  max-width: 860px;
  margin-top: 34px;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.admin-page {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
}

.admin-hero {
  max-width: 780px;
  margin-bottom: 52px;
}

.admin-hero h1 {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 66px);
}

.admin-hero p {
  color: var(--ink-soft);
  font-size: 18px;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 24px;
}

.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.admin-login input {
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.admin-section {
  margin-bottom: 52px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.admin-card h3 {
  font-size: 19px;
}

.admin-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-files {
  color: var(--teal-dark);
  font-weight: 800;
}

.content-page {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.content-hero {
  max-width: 860px;
  margin-bottom: 58px;
}

.content-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 6.4vw, 76px);
}

.content-hero p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.content-grid > div,
.content-faq {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.content-grid p,
.content-checklist li {
  color: var(--ink-soft);
}

.content-checklist {
  margin: 16px 0 0;
  padding-left: 20px;
}

.content-checklist li + li {
  margin-top: 8px;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding-top: 10px;
  }

  .site-nav.is-open a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .proof-strip,
  .service-grid,
  .process-list,
  .intro-section,
  .seo-section,
  .contact-section,
  .reviews-section,
  .admin-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .project-card.featured {
    grid-row: auto;
  }

  .project-card.featured img,
  .project-card.featured video,
  .project-card img,
  .project-card video {
    height: 330px;
  }

  .process-list li {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(220, 215, 205, 0.92);
    border-radius: var(--radius);
    background: rgba(251, 250, 247, 0.95);
    box-shadow: 0 16px 40px rgba(24, 32, 31, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-contact-bar a:nth-child(2) {
    background: var(--teal);
  }

  .mobile-contact-bar a:nth-child(3) {
    background: var(--clay-dark);
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 17, 16, 0.86), rgba(10, 17, 16, 0.5)),
      linear-gradient(0deg, rgba(10, 17, 16, 0.5), rgba(10, 17, 16, 0.08));
  }

  .hero-content {
    padding: 70px 0 96px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .hero-actions,
  .contact-options {
    width: 100%;
  }

  .button,
  .contact-option {
    width: 100%;
  }

  .proof-strip {
    margin-top: -38px;
  }

  .section {
    padding: 70px 0;
  }

  .service-section,
  .process-section,
  .contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .project-card.featured img,
  .project-card.featured video,
  .project-card img,
  .project-card video {
    height: 260px;
  }

  .media-dialog-header,
  .media-dialog-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .review-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .admin-login {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
