:root {
  --brown-950: #24170f;
  --brown-900: #3b2a1f;
  --brown-800: #4c3320;
  --brown-700: #6b4728;
  --tan-600: #9b6a33;
  --orange-600: #bd4b00;
  --orange-500: #f07a19;
  --orange-400: #f79543;
  --cream-100: #f6e6c8;
  --sand-100: #f7eddb;
  --sand-200: #ead7b3;
  --paper: #fffaf1;
  --white: #ffffff;
  --charcoal: #333333;
  --muted: #6f6256;
  --line: rgba(59, 42, 31, 0.17);
  --shadow-sm: 0 8px 24px rgba(50, 32, 17, 0.09);
  --shadow-lg: 0 24px 60px rgba(50, 32, 17, 0.18);
  --radius-sm: 0.45rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;
  --container: 75rem;
  --header-height: 5.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--brown-900);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--brown-900);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.7rem, 5.3vw, 5.6rem);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
}

::selection {
  color: var(--white);
  background: var(--orange-600);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.35rem;
  color: var(--white);
  background: var(--brown-950);
  font-weight: 700;
  text-decoration: none;
}

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

.eyebrow {
  margin-bottom: 0.35rem;
  color: var(--orange-600);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4.5rem, 7vw, 7.2rem);
}

.section-heading {
  max-width: 43rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading > p:last-child {
  margin-inline: auto;
  max-width: 38rem;
  color: var(--muted);
}

.section-heading--light h2,
.section-heading--light > p:last-child {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.45rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--orange {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 10px 25px rgba(216, 95, 0, 0.2);
}

.button--orange:hover {
  background: #c85300;
  box-shadow: 0 13px 28px rgba(216, 95, 0, 0.28);
}

.button--outline {
  border-color: var(--tan-600);
  color: var(--brown-900);
  background: rgba(255, 250, 241, 0.73);
  box-shadow: none;
}

.button--outline:hover {
  border-color: var(--brown-900);
  background: var(--white);
}

.button--outline svg {
  width: 1.18rem;
  fill: currentColor;
}

.button--outline strong {
  margin-left: 0.25rem;
}

.button--dark {
  color: var(--white);
  background: var(--brown-900);
}

.button--dark:hover {
  background: var(--brown-950);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange-600);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.topbar {
  min-height: 2.4rem;
  color: var(--sand-100);
  background: var(--brown-950);
  font-size: 0.74rem;
}

.topbar__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.topbar svg {
  width: 0.9rem;
  fill: var(--orange-500);
}

.topbar span {
  font-weight: 600;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  overflow: visible;
  border-bottom: 1px solid rgba(59, 42, 31, 0.1);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 6px 20px rgba(59, 42, 31, 0.05);
  backdrop-filter: blur(10px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 102;
  width: 10.25rem;
  height: calc(var(--header-height) + 2rem);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  align-self: flex-start;
  margin-top: -0.55rem;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(36, 23, 15, 0.2));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.1vw, 2.4rem);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding-block: 0.75rem;
  color: var(--brown-900);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--orange-500);
  content: "";
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header__cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  min-width: 4.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(59, 42, 31, 0.18);
  border-radius: var(--radius-sm);
  color: var(--brown-900);
  background: var(--cream-100);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  width: 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-toggle__icon span {
  width: 1.55rem;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(0.37rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-0.37rem) rotate(-45deg);
}

.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.noscript-nav a {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 35rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream-100);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(246, 230, 200, 0.96) 0%,
      rgba(246, 230, 200, 0.76) 33%,
      rgba(246, 230, 200, 0) 55%
    ),
    linear-gradient(0deg, rgba(36, 23, 15, 0.08), transparent 35%);
  content: "";
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 4rem;
}

.hero__copy {
  width: min(56%, 43rem);
}

.hero__lede {
  max-width: 34rem;
  margin-bottom: 1.9rem;
  color: #4c4137;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-card {
  position: absolute;
  right: 10.5%;
  bottom: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(47, 29, 17, 0.91);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.trust-card__check {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--orange-500);
  border-radius: 50%;
}

.trust-card__check svg {
  width: 1.25rem;
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-card div > span {
  display: block;
  color: var(--sand-100);
  font-size: 0.76rem;
  line-height: 1.5;
}

.services {
  position: relative;
  background:
    radial-gradient(circle at 50% 0, rgba(240, 122, 25, 0.07), transparent 30rem),
    var(--paper);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-card {
  min-width: 0;
  padding: 1.6rem 1.15rem 1.3rem;
  border: 1px solid rgba(155, 106, 51, 0.25);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.84);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 95, 0, 0.45);
  box-shadow: var(--shadow-sm);
}

.service-card summary {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--brown-900);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  list-style: none;
  text-transform: uppercase;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card__icon {
  width: 4.1rem;
  height: 4.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--tan-600);
  border-radius: 50%;
  color: var(--brown-900);
  background: linear-gradient(145deg, var(--white), var(--sand-100));
}

.service-card__icon svg {
  width: 2.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card__chevron {
  display: none;
}

.service-card__body p {
  min-height: 4.35rem;
  margin: 0.8rem 0 0.95rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.about {
  overflow: hidden;
  background: var(--sand-100);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(22rem, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.about__visual {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--cream-100);
  background: var(--brown-900);
  box-shadow: var(--shadow-lg);
}

.about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.about__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(36, 23, 15, 0.9) 0%, rgba(36, 23, 15, 0.68) 35%, rgba(36, 23, 15, 0.08) 70%),
    linear-gradient(0deg, rgba(36, 23, 15, 0.28), transparent 45%);
  content: "";
}

.about__mark {
  position: absolute;
  z-index: 2;
  top: 3.2rem;
  left: 2.7rem;
  text-shadow: 0 2px 20px rgba(36, 23, 15, 0.35);
}

.about__mark span {
  display: block;
  color: var(--orange-400);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about__mark strong {
  display: block;
  max-width: 15rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.9;
}

.about__copy > p:not(.eyebrow) {
  max-width: 40rem;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.6rem;
  margin: 2rem 0 2.2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-600);
  content: "✓";
  font-size: 0.67rem;
  line-height: 1.05rem;
  text-align: center;
}

.projects {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 50%, rgba(240, 122, 25, 0.13), transparent 30rem),
    var(--brown-950);
}

.projects::before {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-position:
    0 0,
    0 8px,
    8px -8px,
    -8px 0;
  background-size: 16px 16px;
  content: "";
}

.projects .container {
  position: relative;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: var(--brown-900);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.project-card__art {
  position: relative;
  height: 13rem;
  overflow: hidden;
  background: var(--tan-600);
}

.project-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover .project-card__art img {
  transform: scale(1.035);
}

.project-card__content {
  padding: 1.5rem;
}

.project-card__content p {
  margin-bottom: 0.2rem;
  color: var(--orange-400);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.85rem;
}

.project-card__content span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.testimonials {
  background:
    linear-gradient(rgba(246, 230, 200, 0.8), rgba(246, 230, 200, 0.8)),
    var(--cream-100);
}

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

.testimonial {
  position: relative;
  margin-bottom: 0;
  padding: 0.5rem clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

.testimonial + .testimonial {
  border-left: 1px solid rgba(59, 42, 31, 0.15);
}

.testimonial__quote {
  position: absolute;
  top: -1.8rem;
  left: 1.2rem;
  color: rgba(155, 106, 51, 0.22);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.testimonial blockquote {
  position: relative;
  min-height: 6rem;
  margin-bottom: 1.15rem;
  color: #493b30;
  font-size: 0.91rem;
  line-height: 1.65;
}

.testimonial figcaption {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial figcaption span {
  display: block;
  color: var(--muted);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
}

.stars {
  margin-top: 0.35rem;
  color: var(--orange-600);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.contact::before {
  position: absolute;
  top: -15rem;
  right: -12rem;
  width: 35rem;
  height: 35rem;
  border: 5rem solid rgba(240, 122, 25, 0.035);
  border-radius: 50%;
  content: "";
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(30rem, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 0.8rem;
  margin-block: 2rem;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.contact-methods a:hover {
  transform: translateX(4px);
  border-color: var(--orange-500);
}

.contact-methods a > span {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange-600);
}

.contact-methods svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-methods a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.contact-methods strong {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1rem;
}

.service-area {
  padding-left: 1rem;
  border-left: 3px solid var(--orange-500);
}

.service-area strong {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.service-area p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.estimate-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 1.6rem;
}

.form-heading span {
  color: var(--orange-600);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0.15rem 0 0;
  font-size: 2.5rem;
}

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

.form-grid label {
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brown-900);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(59, 42, 31, 0.2);
  border-radius: 0.35rem;
  color: var(--charcoal);
  background: #fffdfa;
  font-size: 0.88rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-grid input,
.form-grid select {
  height: 3rem;
  padding-inline: 0.8rem;
}

.form-grid textarea {
  min-height: 7rem;
  padding: 0.75rem 0.8rem;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(240, 122, 25, 0.14);
}

.estimate-form .button {
  margin-top: 1.1rem;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-status:not(:empty) {
  color: var(--brown-900);
  font-weight: 700;
}

.site-footer {
  padding: 3.6rem 0 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--brown-950);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer__brand {
  color: var(--white);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer__about p {
  max-width: 21rem;
  margin: 0.55rem 0 1rem;
  font-size: 0.78rem;
}

.footer__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--orange-400);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.footer__links a,
.footer__contact a {
  text-decoration: none;
}

.footer__links a:hover,
.footer__contact a:hover,
.footer__bottom a:hover {
  color: var(--orange-400);
}

.footer__links a,
.footer__list,
.footer__contact {
  font-size: 0.76rem;
}

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

.footer__list li + li {
  margin-top: 0.35rem;
}

.footer__contact {
  display: grid;
  gap: 0.4rem;
  font-style: normal;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.67rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  display: flex;
  gap: 1rem;
}

.mobile-call {
  display: none;
}

.legal-page {
  min-height: 100svh;
  background: var(--sand-100);
}

.legal-header {
  padding-block: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-header .brand {
  width: 8.75rem;
  height: 6.25rem;
  margin-block: -0.75rem -1.5rem;
}

.legal-main {
  width: min(calc(100% - 2rem), 50rem);
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.legal-main article {
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-main h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

.legal-main h2 {
  margin-top: 2rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 5.2rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  .header__cta {
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .hero__copy {
    width: 58%;
  }

  .trust-card {
    right: 2rem;
  }

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

  .service-card:nth-last-child(-n + 2) {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 0.8fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 3;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 4.8rem;
  }

  .topbar {
    display: none;
  }

  .site-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    border-bottom-color: rgba(59, 42, 31, 0.2);
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(59, 42, 31, 0.12);
    isolation: isolate;
  }

  .header__inner {
    justify-content: space-between;
  }

  .brand {
    width: 8.25rem;
    height: calc(var(--header-height) + 1.4rem);
    margin-top: -0.3rem;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    z-index: 95;
    inset: calc(var(--header-height) + env(safe-area-inset-top)) 0 auto;
    max-height: calc(100svh - var(--header-height) - env(safe-area-inset-top));
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-130%);
    visibility: hidden;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    transition:
      transform 220ms ease,
      visibility 0s linear 220ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .primary-nav a {
    padding: 0.9rem 0.4rem;
    border-bottom: 1px solid var(--line);
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 42rem;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(246, 230, 200, 0.98), rgba(246, 230, 200, 0.87) 58%, rgba(246, 230, 200, 0.2)),
      linear-gradient(0deg, rgba(36, 23, 15, 0.08), transparent 35%);
  }

  .hero__image {
    object-position: 55% center;
  }

  .hero__copy {
    width: min(67%, 34rem);
  }

  .trust-card {
    right: 1rem;
    bottom: 1.5rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 23rem;
  }

  .about__mark strong {
    font-size: 4rem;
  }

  .projects__grid {
    gap: 0.7rem;
  }

  .project-card__art {
    height: 10rem;
  }

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

  .testimonial {
    max-width: 38rem;
    margin-inline: auto;
    padding-block: 1.6rem;
  }

  .testimonial + .testimonial {
    border-top: 1px solid rgba(59, 42, 31, 0.15);
    border-left: 0;
  }

  .testimonial__quote {
    position: static;
    height: 2rem;
    display: block;
    margin: 0 auto 0.25rem;
    font-size: 3.5rem;
    line-height: 0.8;
    text-align: center;
  }

  .testimonial blockquote {
    min-height: 0;
  }

  .contact__copy {
    max-width: 42rem;
  }
}

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

  h1 {
    font-size: clamp(2.75rem, 11.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .section {
    padding-block: 4.2rem;
  }

  .hero {
    position: relative;
    min-height: auto;
    padding-bottom: 0;
    background: var(--brown-900);
  }

  .hero > .hero__image {
    display: block;
    object-position: 57% center;
  }

  .hero::after {
    display: block;
    background:
      linear-gradient(
        90deg,
        rgba(246, 230, 200, 0.88) 0%,
        rgba(246, 230, 200, 0.68) 60%,
        rgba(246, 230, 200, 0.35) 100%
      ),
      linear-gradient(
        180deg,
        transparent 60%,
        rgba(36, 23, 15, 0.2) 100%
      );
  }

  .hero__inner {
    min-height: auto;
    display: block;
    padding: 2.5rem 0 0;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__lede {
    font-size: 0.95rem;
  }

  .hero__actions {
    display: grid;
  }

  .button--outline {
    background: rgba(255, 250, 241, 0.76);
    backdrop-filter: blur(5px);
  }

  .trust-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 2rem);
    min-height: 3.35rem;
    align-items: center;
    margin: 1.25rem -1rem 0;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-card__check {
    width: 1.65rem;
    height: 1.65rem;
    border-width: 1.5px;
  }

  .trust-card__check svg {
    width: 1rem;
  }

  .trust-card strong {
    margin-bottom: 0.1rem;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .trust-card div > span {
    display: inline;
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .trust-card div > span + span::before {
    margin-inline: 0.25rem;
    color: var(--orange-400);
    content: "•";
  }

  .services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .service-card,
  .service-card:hover {
    padding: 0;
    transform: none;
    text-align: left;
  }

  .service-card summary {
    min-height: 3.7rem;
    flex-direction: row;
    gap: 0.8rem;
    padding: 0.55rem 0.8rem;
    cursor: pointer;
  }

  .service-card__icon {
    width: 2.7rem;
    height: 2.7rem;
    margin: 0;
  }

  .service-card__icon svg {
    width: 1.65rem;
  }

  .service-card__chevron {
    width: 1.25rem;
    display: block;
    margin-left: auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 160ms ease;
  }

  .service-card[open] .service-card__chevron {
    transform: rotate(90deg);
  }

  .service-card__body {
    padding: 0 1rem 1rem 4.3rem;
  }

  .service-card__body p {
    min-height: 0;
    margin-top: 0;
  }

  .about__grid {
    gap: 2.5rem;
  }

  .about__visual {
    min-height: 19rem;
  }

  .about__mark {
    top: 2.2rem;
    left: 2rem;
  }

  .about__mark strong {
    max-width: 12rem;
    font-size: 3.65rem;
  }

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

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

  .project-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .project-card__art {
    height: 100%;
    min-height: 10rem;
  }

  .project-card__content {
    padding: 1.2rem;
  }

  .project-card__content h3 {
    font-size: 1.5rem;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 1.5rem;
  }

  .footer__about {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(3.5rem + env(safe-area-inset-bottom));
    display: grid;
    place-content: center;
    justify-items: center;
    padding-inline: 3.5rem;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--orange-600);
    box-shadow: 0 -5px 18px rgba(59, 42, 31, 0.18);
    padding-bottom: env(safe-area-inset-bottom);
    text-decoration: none;
  }

  .mobile-call__number {
    display: grid;
    grid-template-columns: 1.3rem auto 1.3rem;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
  }

  .mobile-call__number::after {
    width: 1.3rem;
    content: "";
  }

  .mobile-call__number svg {
    width: 1.3rem;
    fill: currentColor;
  }

  .mobile-call__number strong {
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .mobile-call > small {
    display: block;
    margin-top: 0.08rem;
    opacity: 0.88;
    font-size: 0.64rem;
    line-height: 1;
    text-align: center;
  }
}

@media (max-width: 410px) {
  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  .brand {
    width: 7.8rem;
  }

  .hero__inner {
    padding-top: 2.15rem;
  }

  .trust-card {
    width: calc(100% + 1.4rem);
    margin-inline: -0.7rem;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card__art {
    height: 9rem;
  }

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

  .footer__about {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
