@charset "utf-8";

:root {
  --red: #ea5358;
  --red-dark: #c93e44;
  --ink: #0c0e11;
  --ink-2: #11151a;
  --ink-3: #181d23;
  --panel: #1d232a;
  --panel-soft: #222932;
  --line: #303944;
  --text: #f5f6f7;
  --muted: #c1c7cf;
  --muted-2: #9ea7b2;
  --white: #fff;
  --paper: #f7f8fa;
  --paper-line: #d9dde2;
  --shadow: 0 20px 60px rgba(0, 0, 0, .28);
  --radius: 10px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #ff7479;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--white);
  text-decoration: none;
}

p {
  margin: 0 0 20px;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.025em;
}

h1 {
  font-size: 44px;
  line-height: 1.12;
}

h2 {
  font-size: 32px;
  line-height: 1.22;
}

h3 {
  font-size: 21px;
  line-height: 1.32;
}

ul,
ol {
  margin-top: 0;
}

.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: auto !important;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.row {
  display: flex;
  gap: 32px;
  margin-left: 0 !important;
}

.row:before,
.row:after {
  display: none;
}

[class*="span"] {
  float: none;
  min-height: 0;
  margin-left: 0 !important;
}

.span12 { width: 100% !important; }
.span8 { width: calc(66.666% - 11px) !important; }
.span7 { width: calc(58.333% - 14px) !important; }
.span6 { width: calc(50% - 16px) !important; }
.span5 { width: calc(41.667% - 18px) !important; }
.span4 { width: calc(33.333% - 21px) !important; }
.span3 { width: calc(25% - 24px) !important; }

.spinner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink) url(../img/spinner.gif) center no-repeat;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: #ff7b80;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

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

/* Header */
header {
  position: relative;
  z-index: 50;
  padding: 0;
  background: var(--white);
  border-top: 4px solid #3d2528;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

header .row {
  display: block;
}

.navbar_ {
  margin: 0;
}

.navbar_ > .container {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
}

.navbar_ .brand_ {
  float: none;
  margin: 0;
  padding: 0;
}

.navbar_ .brand_ h1 {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

#logo {
  display: block;
  width: 230px;
  height: 70px;
  background: url(../img/logo.png) center/contain no-repeat;
  text-indent: -9999px;
}

.nav-collapse_ {
  float: none;
}

.nav-collapse_.collapse {
  height: auto !important;
  overflow: visible !important;
}

.nav-collapse_ .nav {
  display: flex;
  float: none;
  gap: 8px;
  margin: 0;
  align-items: center;
}

.nav-collapse_ .nav > li {
  float: none;
  margin: 0;
}

.nav-collapse_ .nav li a,
.nav-collapse_ .nav > li > a {
  display: flex;
  width: auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 18px;
  border-radius: 24px;
  background: transparent;
  color: #17191d;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-shadow: none;
  transition: background .2s ease, color .2s ease;
}

.nav-collapse_ .nav > li > a:hover,
.nav-collapse_ .nav > li > a:focus,
.nav-collapse_ .nav > li.active > a,
.nav-collapse_ .nav > li.active > a:hover {
  background: var(--red);
  color: var(--white);
}

.nav-collapse_ .nav ul {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  display: none;
  width: 245px;
  margin: 0;
  padding: 10px;
  transform: translateX(-50%);
  border: 1px solid #e4e6e9;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  list-style: none;
}

.nav-collapse_ .nav li {
  position: relative;
}

.nav-collapse_ .nav li:hover > ul,
.nav-collapse_ .nav li:focus-within > ul {
  display: block;
}

.nav-collapse_ .nav ul li a {
  min-height: 40px;
  justify-content: flex-start;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
}

.nav-collapse_ .nav ul li a:hover,
.nav-collapse_ .nav ul li a:focus {
  background: #f2f3f5;
  color: var(--red-dark);
}

.btn-navbar_ {
  display: none !important;
}

/* Shared surfaces */
.bg-content {
  background: var(--ink);
}

.content-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-black {
  background: #0b0e11;
}

.section-dark {
  background: var(--ink-2);
}

.section-charcoal {
  background: var(--ink-3);
}

.page-intro {
  padding: 58px 0 54px;
  background:
    radial-gradient(circle at 85% 20%, rgba(234, 83, 88, .10), transparent 36%),
    linear-gradient(135deg, #12161b, #0b0e11);
  border-top: 1px solid #222831;
}

.page-intro .container {
  position: relative;
}

.page-intro h1 {
  max-width: 850px;
  margin-bottom: 14px;
}

.compact-intro {
  padding: 44px 0 38px;
}

.button,
.btn-primary-large,
.contact-submit,
.btn.btn-1 {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  text-shadow: none;
  box-shadow: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus,
.btn-primary-large:hover,
.btn-primary-large:focus,
.contact-submit:hover,
.contact-submit:focus,
.btn.btn-1:hover,
.btn.btn-1:focus {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.text-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: #ff7479;
  font-weight: 700;
}

.text-link:after {
  margin-left: 7px;
  content: "→";
}

/* Home hero and slideshow */
.home-hero {
  padding: 42px 0 46px;
  background:
    linear-gradient(rgba(8, 10, 12, .72), rgba(8, 10, 12, .84)),
    url(../img/bg-content.jpg) center/cover;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .85fr);
  overflow: hidden;
  border: 1px solid #2b323b;
  border-radius: var(--radius);
  background: #101419;
  box-shadow: var(--shadow);
}

.hero-media {
  min-width: 0;
  background: #000;
}

.flexslider {
  position: relative;
  margin: 0;
  padding: 0;
  background: #000;
}

.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flexslider .slides > li {
  display: none;
  width: 100%;
  margin: 0;
  opacity: 1;
}

.flexslider .slides > li:first-child {
  display: block;
}

.flexslider .slides img {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 770 / 393;
  object-fit: cover;
}

.flex-control-nav {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 10;
  display: flex;
  gap: 8px;
  margin: 0;
  list-style: none;
}

.flex-control-nav li {
  margin: 0;
}

.flex-control-nav a {
  display: block;
  width: 9px;
  height: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  color: transparent;
  cursor: pointer;
}

.flex-control-nav a.flex-active {
  background: var(--red);
  border-color: var(--red);
}

.flex-direction-nav {
  margin: 0;
  list-style: none;
}

.flex-direction-nav a {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -21px;
  border-radius: 50%;
  background: rgba(10, 12, 15, .72);
  color: transparent;
}

.flex-direction-nav a:after {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.flex-direction-nav .flex-prev {
  left: 16px;
}

.flex-direction-nav .flex-next {
  right: 16px;
}

.flex-direction-nav .flex-prev:after {
  content: "‹";
}

.flex-direction-nav .flex-next:after {
  content: "›";
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-left: 1px solid #2b323b;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: 41px;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.hero-copy .button {
  align-self: flex-start;
  margin-top: 4px;
}

/* Home service cards */
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  list-style: none;
}

.home-service-grid > li {
  display: block;
  width: auto !important;
  margin: 0;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}

.service-card > img {
  display: block;
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 238px;
  padding: 23px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card .text-link {
  margin-top: auto;
  font-size: 14px;
}

/* About and gallery */
.about-row {
  align-items: stretch;
}

.about-card,
.gallery-card {
  height: 100%;
  box-sizing: border-box;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.about-profile {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

.about-profile img {
  display: block;
  width: 150px;
  border-radius: 6px;
}

.about-profile p,
.about-card > p {
  color: var(--muted);
}

.modern-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  list-style: none;
}

.modern-gallery li {
  float: none;
  width: auto;
  margin: 0;
}

.modern-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: #090b0d;
}

.modern-gallery img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: cover;
  transition: transform .25s ease, opacity .25s ease;
}

.modern-gallery a:hover img {
  opacity: .86;
  transform: scale(1.035);
}

.featured-testimonial {
  height: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}

.featured-testimonial p {
  color: #e3e6e9;
  font-size: 17px;
  line-height: 1.75;
}

.featured-testimonial footer {
  margin-top: 18px;
  padding: 0;
  background: transparent;
  color: var(--muted-2);
  font-size: 13px;
}

.local-card,
.callout-card {
  height: 100%;
  box-sizing: border-box;
  padding: 32px;
  border: 1px solid #6e3a3e;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 83, 88, .12), transparent),
    var(--panel);
}

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

/* Services */
.services-intro .page-lead {
  margin-bottom: 26px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-detail-grid > .span4 {
  width: auto !important;
}

.service-detail-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-detail-card > img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.service-detail-card > div {
  flex: 1;
  padding: 28px;
}

.service-detail-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-detail-card p,
.service-detail-card li {
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0;
  padding: 0 0 9px 24px;
}

.check-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #ff7479;
  content: "✓";
  font-weight: 700;
}

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

.process-grid li {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1014;
}

.process-grid li > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.process-grid h3 {
  margin-bottom: 9px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Info pages */
.info-layout {
  align-items: flex-start;
}

.info-content {
  min-width: 0;
}

.info-content > .page-lead:first-child {
  margin-top: 0;
}

.info-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.info-layout > aside {
  position: sticky;
  top: 24px;
}

.info-nav-card,
.contact-prompt {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.info-nav-card h2,
.contact-prompt h2 {
  margin-bottom: 14px;
  font-size: 23px;
}

.info-nav-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-nav-card li {
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-nav-card li:first-child {
  border-top: 0;
}

.info-nav-card a {
  display: block;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 4px;
  color: #f0f2f4;
  font-size: 14px;
}

.info-nav-card a:hover,
.info-nav-card a:focus {
  background: #2a313a;
}

.info-nav-card .active a {
  background: rgba(234, 83, 88, .15);
  color: #ff8589;
  font-weight: 700;
}

.contact-prompt {
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(234, 83, 88, .10), transparent),
    var(--panel);
}

.contact-prompt p {
  color: var(--muted);
  font-size: 14px;
}

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

.testimonial-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.testimonial-card img {
  display: block;
  width: 88px;
  height: 126px;
  border-radius: 4px;
  object-fit: cover;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  color: #e3e6e9;
  font-size: 14px;
  line-height: 1.7;
}

.testimonial-author {
  margin: 14px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 400;
}

.wall-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 38px;
}

.wall-gallery figure,
.art-size-guide {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.wall-gallery img,
.art-size-guide img {
  display: block;
  width: 100%;
  height: auto;
}

.wall-gallery figcaption,
.art-size-guide figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 13px;
}

.art-size-guide {
  margin: 26px 0 34px;
  background: #fff;
}

.art-size-guide figcaption {
  color: #535a63;
}

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

.pricing-grid section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.pricing-grid h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.pricing-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  padding: 17px 54px 17px 20px;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #ff7479;
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary:after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.inline-cta {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid #6e3a3e;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 83, 88, .11), transparent),
    var(--panel);
}

.inline-cta h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

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

/* Contact */
.contact-layout {
  align-items: flex-start;
}

.contact-form-card {
  padding: 34px;
  border: 1px solid var(--paper-line);
  border-radius: 9px;
  background: var(--paper);
  color: #252a31;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin-bottom: 5px;
  color: #171a1f;
  font-size: 28px;
}

.form-heading {
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--paper-line);
}

.form-heading p,
.field-help,
.form-privacy {
  margin: 0;
  color: #626a74;
  font-size: 12px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 19px 18px;
}

.form-field {
  flex: 0 0 calc(50% - 9px);
  min-width: 0;
}

.form-field-full {
  flex-basis: 100%;
}

.form-field label {
  display: block;
  margin: 0 0 7px;
  color: #2a2f36;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.form-field label > span:not(.optional) {
  color: #b52e35;
}

.optional {
  color: #777f89;
  font-size: 11px;
  font-weight: 400;
}

.contact-form-card .form-field input[type="text"],
.contact-form-card .form-field input[type="email"],
.contact-form-card .form-field input[type="tel"],
.contact-form-card .form-field input[type="date"],
.contact-form-card .form-field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #9da5af;
  border-radius: 5px;
  background: #fff;
  color: #171a1f;
  font: 15px/1.45 Inter, Arial, sans-serif;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .04);
}

.contact-form-card .form-field input:focus,
.contact-form-card .form-field textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(234, 83, 88, .22);
  outline-offset: 0;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.field-help {
  margin-top: 6px;
}

.contact-submit {
  width: 100%;
  margin-top: 22px;
  cursor: pointer;
}

.form-privacy {
  margin-top: 10px;
  text-align: center;
}

.website-field,
.website-field[hidden] {
  position: absolute !important;
  left: -10000px !important;
  display: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-status {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 5px;
}

.contact-status strong,
.contact-status span {
  display: block;
}

.contact-success {
  border-left: 4px solid #2e7d4f;
  background: #e9f6ed;
  color: #245f3d;
}

.contact-error {
  border-left: 4px solid #b52e35;
  background: #fff0f0;
  color: #7e2429;
}

.contact-side-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-side-card > img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-side-content {
  padding: 26px;
}

.contact-side-content h2 {
  margin-bottom: 16px;
  font-size: 23px;
}

.contact-side-content li {
  color: var(--muted);
  font-size: 14px;
}

.direct-contact {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  background: #0c0f13;
}

.direct-contact span,
.direct-contact a {
  display: block;
}

.direct-contact span {
  margin-bottom: 4px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.direct-contact a {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
}

/* Footer */
footer {
  padding: 42px 0 28px;
  background: var(--white);
  color: #5f6670;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 5px;
  color: #171a1f;
  font-size: 17px;
}

.footer-brand span,
.footer-contact a {
  display: block;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-contact {
  text-align: right;
}

.footer-grid a {
  color: #bc373d;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: #772126;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #e2e5e8;
  color: #777e87;
}

/* Focus and motion */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #ff8a8e;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1050px) {
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .9fr);
  }

  .hero-copy {
    padding: 32px;
  }

  .hero-copy h1 {
    font-size: 35px;
  }

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

  .testimonial-list {
    grid-template-columns: 1fr;
  }
}

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .navbar_ > .container {
    min-height: 94px;
  }

  #logo {
    width: 190px;
    height: 58px;
  }

  .nav-collapse_ .nav {
    gap: 2px;
  }

  .nav-collapse_ .nav li a,
  .nav-collapse_ .nav > li > a {
    padding: 9px 12px;
    font-size: 14px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    border-top: 1px solid #2b323b;
    border-left: 0;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .content-section {
    padding: 58px 0;
  }

  .row,
  .service-detail-grid,
  .contact-layout,
  .info-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  [class*="span"] {
    width: 100% !important;
  }

  .service-detail-card > img {
    height: auto;
  }

  .service-detail-card {
    min-height: 0;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .info-layout > aside {
    position: static;
  }

  .info-nav-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
  }

  .info-nav-card li,
  .info-nav-card li:first-child {
    border-top: 0;
  }

  .contact-sidebar {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  header {
    border-top-width: 3px;
  }

  .navbar_ > .container {
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  #logo {
    width: 175px;
    height: 54px;
  }

  .nav-collapse_,
  .nav-collapse_.collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }

  .nav-collapse_ .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-collapse_ .nav li a,
  .nav-collapse_ .nav > li > a {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .nav-collapse_ .nav ul {
    display: none !important;
  }

  .home-hero {
    padding: 24px 0 30px;
  }

  .hero-copy {
    padding: 26px 22px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .page-intro,
  .compact-intro {
    padding: 40px 0 36px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 25px;
  }

  .page-lead {
    font-size: 16px;
  }

  .content-section {
    padding: 46px 0;
  }

  .home-service-grid,
  .wall-gallery {
    grid-template-columns: 1fr;
  }

  .service-card > img {
    height: auto;
  }

  .about-card,
  .gallery-card,
  .featured-testimonial,
  .local-card,
  .callout-card {
    padding: 24px;
  }

  .about-profile {
    grid-template-columns: 105px 1fr;
    gap: 18px;
  }

  .about-profile img {
    width: 105px;
  }

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

  .modern-gallery img {
    height: auto;
  }

  .testimonial-card {
    grid-template-columns: 70px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .testimonial-card img {
    width: 70px;
    height: 100px;
  }

  .info-nav-card ul {
    grid-template-columns: 1fr;
  }

  .form-grid {
    display: block;
  }

  .form-field {
    width: 100%;
    margin-bottom: 18px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-contact {
    text-align: left;
  }
}
