:root {
  --forest_dark: #10271c;
  --forest: #1f4b35;
  --forest_medium: #356447;
  --olive: #718052;
  --olive_dark: #53613c;
  --sage: #d7e0cf;
  --cream: #f2eee3;
  --surface: #fffdf8;
  --sand: #ded2bd;
  --clay: #a94f2d;
  --clay_dark: #843b22;
  --ink: #152019;
  --muted: #3f4c44;
  --line: #b8b3a7;
  --white: #ffffff;
  --gold: #ffbf47;
  --focus_dark: #6b3a00;
  --success: #176331;
  --error: #9b1c1c;
  --content_width: 76rem;
  --wide_content_width: 84rem;
}

/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.skip_link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.skip_link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0.2rem solid var(--focus_dark);
  outline-offset: 0.2rem;
  box-shadow: 0 0 0 0.4rem var(--gold);
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.site_header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.14);
  background: var(--forest_dark);
  color: var(--white);
  box-shadow: 0 0.35rem 1.5rem rgba(0, 0, 0, 0.16);
}

.header_inner.container {
  width: min(var(--wide_content_width), calc(100% - 2rem));
}

.header_inner {
  min-height: 7.25rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
  color: var(--white);
  text-decoration: none;
}

.brand_mark {
  width: 4.75rem;
  height: 4.75rem;
  display: flex;
  flex: 0 0 4.75rem;
  align-items: center;
  justify-content: center;
}

.brand_mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.brand_name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand_name strong,
.brand_name small {
  display: block;
  line-height: 1;
}

.brand_name strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand_name small {
  margin-top: 0.5rem;
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site_nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site_nav a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding-inline: 0.1rem;
  border-bottom: 0.15rem solid transparent;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.site_nav a:hover,
.site_nav a[aria-current="page"] {
  border-color: var(--gold);
}

.header_cta {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 0.1rem solid var(--clay);
  background: var(--clay);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.header_cta:hover {
  border-color: var(--clay_dark);
  background: var(--clay_dark);
}

.menu_button {
  display: none;
  min-height: 3rem;
  padding: 0.65rem 0.95rem;
  border: 0.1rem solid var(--white);
  background: transparent;
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

/* --------------------------------------------------
   SHARED BUTTONS AND LABELS
-------------------------------------------------- */

.button_row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border: 0.1rem solid var(--forest);
  background: var(--forest);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: var(--forest_dark);
  background: var(--forest_dark);
}

.button_primary {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.button_primary:hover {
  border-color: var(--clay_dark);
  background: var(--clay_dark);
}

.button_secondary {
  border-color: var(--white);
  background: rgba(16, 39, 28, 0.45);
  color: var(--white);
}

.button_secondary:hover {
  background: var(--white);
  color: var(--forest_dark);
}

.button_light {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest_dark);
}

.button_light:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--forest_dark);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow_dark {
  color: var(--olive_dark);
}

.section_link {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 0.3rem;
}

.section_link:hover {
  color: var(--clay_dark);
}

/* --------------------------------------------------
   HOME HERO
-------------------------------------------------- */

.hero_section {
  position: relative;
  min-height: 48rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest_dark);
  color: var(--white);
}

.hero_image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  color: transparent;
  font-size: 0;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 29, 20, 0.96) 0%,
    rgba(16, 39, 28, 0.85) 42%,
    rgba(16, 39, 28, 0.32) 74%,
    rgba(16, 39, 28, 0.12) 100%
  );
}

.hero_content.container {
  width: min(var(--wide_content_width), calc(100% - 2rem));
}

.hero_content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-block: 7rem 10rem;
}

.hero_copy {
  max-width: 48rem;
  margin-left: 0;
}

.hero_copy .eyebrow {
  margin-bottom: 1.25rem;
}

.hero_copy h1 {
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero_lead {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.15rem;
}

.hero_information {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25);
  background: rgba(16, 39, 28, 0.88);
  backdrop-filter: blur(0.5rem);
}

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

.hero_information_grid > div {
  padding: 1.4rem 2rem;
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.hero_information_grid > div:last-child {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.information_label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--sage);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero_information strong {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
}

/* --------------------------------------------------
   HOME STATEMENT
-------------------------------------------------- */

.statement_section {
  padding-block: 7rem;
  border-bottom: 0.0625rem solid var(--line);
  background: var(--surface);
}

.statement_grid {
  display: grid;
  grid-template-columns: 0.5fr 1.3fr 0.8fr;
  align-items: start;
  gap: 4rem;
}

.statement_grid h2 {
  margin-bottom: 0;
  color: var(--forest_dark);
}

.statement_grid > div:last-child {
  padding-top: 2.4rem;
}

.statement_grid > div:last-child p {
  margin-bottom: 0;
  color: var(--muted);
}

/* --------------------------------------------------
   SHARED SECTION HEADERS
-------------------------------------------------- */

.section_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.section_header > div {
  max-width: 46rem;
}

.section_header h2 {
  margin-bottom: 0;
  color: var(--forest_dark);
}

/* --------------------------------------------------
   HOME SERVICES
-------------------------------------------------- */

.services_section {
  padding-block: 7rem;
}

.services_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  border-top: 0.125rem solid var(--ink);
}

.service {
  padding-block: 2.5rem;
  border-bottom: 0.0625rem solid var(--line);
}

.service_number {
  display: block;
  margin-bottom: 1.75rem;
  color: var(--clay_dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service h3 {
  color: var(--forest_dark);
  font-size: 1.4rem;
}

.service p {
  max-width: 31rem;
  color: var(--muted);
}

.service > a {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 0.3rem;
}

.service > a:hover {
  color: var(--clay_dark);
}

/* --------------------------------------------------
   HOME RESULT SECTION
-------------------------------------------------- */

.result_section {
  min-height: 43rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
}

.result_image {
  min-height: 43rem;
  overflow: hidden;
}

.result_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem max(3rem, calc((100vw - 76rem) / 2));
  color: var(--white);
}

.result_content h2 {
  max-width: 35rem;
  color: var(--white);
}

.result_content > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--sage);
}

.result_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.result_list li {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
}

.result_list li:nth-child(odd) {
  padding-right: 1rem;
}

.result_list li:nth-child(even) {
  padding-left: 1rem;
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.3);
}

.result_content .button {
  width: fit-content;
  margin-top: 1rem;
}

/* --------------------------------------------------
   HOME CUSTOMERS
-------------------------------------------------- */

.customers_section {
  padding-block: 7rem;
  background: var(--surface);
}

.customer_list {
  border-top: 0.125rem solid var(--ink);
}

.customer_list article {
  display: grid;
  grid-template-columns: 5rem 0.8fr 1.2fr;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 0.0625rem solid var(--line);
}

.customer_list article > span {
  color: var(--clay_dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.customer_list h3 {
  color: var(--forest_dark);
}

.customer_list p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

/* --------------------------------------------------
   HOME PROCESS
-------------------------------------------------- */

.process_section {
  padding-block: 7rem;
  background: var(--forest_dark);
  color: var(--white);
}

.process_grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
}

.process_heading {
  align-self: start;
}

.process_heading h2 {
  color: var(--white);
}

.process_heading > p:last-child {
  color: var(--sage);
}

.process_steps {
  margin: 0;
  padding: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.process_steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.25);
}

.step_number {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process_steps h3 {
  color: var(--white);
}

.process_steps p {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--sage);
}

/* --------------------------------------------------
   HOME ESTIMATE CTA
-------------------------------------------------- */

.estimate_section {
  padding-block: 6rem;
  background: var(--sand);
}

.estimate_inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 6rem;
}

.estimate_inner h2 {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--forest_dark);
}

.estimate_inner > div:last-child p {
  color: var(--muted);
}

.estimate_inner .button {
  margin-top: 1rem;
}

/* --------------------------------------------------
   INTERNAL PAGE HERO
-------------------------------------------------- */

.page_hero {
  position: relative;
  overflow: hidden;
  background: var(--forest_dark);
  color: var(--white);
}

.page_hero_background {
  position: absolute;
  inset: 0;
}

.page_hero_background img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  color: transparent;
  font-size: 0;
}

.page_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 29, 20, 0.97) 0%,
    rgba(16, 39, 28, 0.87) 50%,
    rgba(16, 39, 28, 0.3) 100%
  );
}

.page_hero_content {
  position: relative;
  z-index: 2;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem;
}

.page_hero_content h1 {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page_hero_lead {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.12rem;
}

/* --------------------------------------------------
   INTERNAL PAGE INTRODUCTION
-------------------------------------------------- */

.page_introduction {
  padding-block: 6rem;
  border-bottom: 0.0625rem solid var(--line);
  background: var(--surface);
}

.page_introduction_grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 6rem;
}

.page_introduction h2 {
  margin-bottom: 0;
  color: var(--forest_dark);
}

.page_introduction_copy {
  padding-top: 2rem;
}

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

.page_introduction_copy p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------
   SERVICES PAGE
-------------------------------------------------- */

.service_details_section {
  padding-block: 7rem;
}

.service_details {
  border-top: 0.125rem solid var(--ink);
}

.service_detail {
  display: grid;
  grid-template-columns: 4rem 0.8fr 1.2fr;
  gap: 3rem;
  padding-block: 3rem;
  border-bottom: 0.0625rem solid var(--line);
}

.service_detail_number {
  color: var(--clay_dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service_detail h2 {
  margin-bottom: 0;
  color: var(--forest_dark);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

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

.service_detail_content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 1.5rem 0 2rem;
  padding: 0;
  border-top: 0.0625rem solid var(--line);
  list-style: none;
}

.service_detail_content li {
  padding: 0.8rem 0;
  border-bottom: 0.0625rem solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
}

.service_detail_content li:nth-child(odd) {
  padding-right: 1rem;
}

.service_detail_content li:nth-child(even) {
  padding-left: 1rem;
  border-left: 0.0625rem solid var(--line);
}

.service_detail_content a {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 0.3rem;
}

/* --------------------------------------------------
   SHOWCASE PAGE
-------------------------------------------------- */

.showcase_section {
  padding-block: 7rem;
}

.showcase_intro {
  max-width: 47rem;
  margin-bottom: 4rem;
}

.showcase_intro h2 {
  color: var(--forest_dark);
}

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

.project_feature {
  min-height: 34rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  margin-bottom: 5rem;
  background: var(--forest);
}

.project_feature_image {
  min-height: 34rem;
  overflow: hidden;
}

.project_feature_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project_feature_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  color: var(--white);
}

.project_feature_content h2 {
  color: var(--white);
}

.project_feature_content p {
  color: var(--sage);
}

.project_type {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project_categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.project_category {
  padding-top: 1.5rem;
  border-top: 0.2rem solid var(--olive);
}

.project_category span {
  color: var(--clay_dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.project_category h3 {
  margin-top: 1.5rem;
  color: var(--forest_dark);
}

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

/* --------------------------------------------------
   ABOUT PAGE
-------------------------------------------------- */

.about_story {
  padding-block: 7rem;
}

.about_story_grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
}

.about_story h2 {
  color: var(--forest_dark);
}

.about_story_content {
  padding-top: 2rem;
}

.about_story_content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about_story_content p:last-child {
  margin-bottom: 0;
}

.values_section {
  padding-block: 7rem;
  background: var(--surface);
}

.values_heading {
  max-width: 44rem;
  margin-bottom: 4rem;
}

.values_heading h2 {
  color: var(--forest_dark);
}

.values_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.125rem solid var(--ink);
}

.value {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 0.0625rem solid var(--line);
}

.value:nth-child(odd) {
  border-right: 0.0625rem solid var(--line);
}

.value span {
  color: var(--clay_dark);
  font-size: 0.7rem;
  font-weight: 700;
}

.value h3 {
  color: var(--forest_dark);
}

.value p {
  margin-bottom: 0;
  color: var(--muted);
}

.veteran_section {
  padding-block: 7rem;
  background: var(--forest);
  color: var(--white);
}

.veteran_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.veteran_grid h2 {
  color: var(--white);
}

.veteran_grid > div:last-child {
  padding-top: 2rem;
}

.veteran_grid p {
  color: var(--sage);
}

/* --------------------------------------------------
   CONTACT PAGE
-------------------------------------------------- */

.contact_section {
  padding-block: 7rem;
}

.contact_grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 6rem;
}

.contact_information {
  position: sticky;
  top: 9rem;
}

.contact_information h2 {
  color: var(--forest_dark);
}

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

.contact_help {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.125rem solid var(--ink);
}

.contact_help h3 {
  color: var(--forest_dark);
}

.contact_help ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.estimate_form {
  padding: 2.5rem;
  border: 0.1rem solid var(--line);
  background: var(--surface);
}

.estimate_form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form_heading {
  margin-bottom: 2.5rem;
}

.form_heading h2 {
  color: var(--forest_dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.form_heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem;
  border: 0.1rem solid #69756d;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--forest);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.checkbox_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.checkbox_grid label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 400;
}

.checkbox_grid input {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--forest);
}

.form_actions {
  margin-top: 2rem;
}

.form_status {
  min-height: 2rem;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 700;
}

.form_status.success {
  color: var(--success);
}

.form_status.error {
  color: var(--error);
}

.honeypot {
  position: absolute;
  left: -10000rem;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
}

/* --------------------------------------------------
   SHARED INTERNAL CTA
-------------------------------------------------- */

.internal_cta {
  padding-block: 6rem;
  background: var(--sand);
}

.internal_cta_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 6rem;
}

.internal_cta h2 {
  margin-bottom: 0;
  color: var(--forest_dark);
}

.internal_cta_grid > div:last-child p {
  color: var(--muted);
}

.internal_cta .button {
  margin-top: 1rem;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.site_footer {
  padding-top: 5rem;
  background: #091c13;
  color: var(--sage);
}

.footer_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 4rem;
}

.footer_brand {
  margin-bottom: 1.5rem;
}

.footer_brand .brand_mark {
  width: 4.75rem;
  height: 4.75rem;
  flex-basis: 4.75rem;
}

.footer_identity > p {
  max-width: 25rem;
  color: var(--sage);
}

.footer_links h2 {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer_links a {
  display: block;
  width: fit-content;
  margin-block: 0.65rem;
  color: var(--sage);
}

.footer_links a:hover {
  color: var(--white);
}

.footer_links p {
  max-width: 19rem;
  color: var(--sage);
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-block: 1.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  color: var(--sage);
  font-size: 0.75rem;
}

.footer_bottom p {
  margin: 0;
}

/* --------------------------------------------------
   TABLET
-------------------------------------------------- */

@media (max-width: 62rem) {
  .header_inner.container {
    width: min(100% - 2rem, var(--wide_content_width));
  }

  .header_inner {
    min-height: 6rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding-block: 0.65rem;
  }

  .brand_mark {
    width: 4rem;
    height: 4rem;
    flex-basis: 4rem;
  }

  .brand_name strong {
    font-size: 1.05rem;
  }

  .brand_name small {
    font-size: 0.62rem;
  }

  .menu_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site_nav {
    display: none;
    order: 3;
    width: 100%;
  }

  .site_nav.open {
    display: block;
  }

  .site_nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: 0.5rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
  }

  .site_nav a {
    min-height: 3rem;
    padding-block: 0.75rem;
  }

  .header_cta {
    display: none;
  }

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

  .statement_grid > div:first-child {
    grid-column: 1 / -1;
  }

  .statement_grid > div:last-child {
    padding-top: 0;
  }

  .result_section,
  .project_feature {
    grid-template-columns: 1fr;
  }

  .result_image,
  .project_feature_image {
    min-height: 28rem;
  }

  .result_content {
    padding: 5rem 3rem;
  }

  .process_grid,
  .page_introduction_grid,
  .about_story_grid,
  .veteran_grid,
  .contact_grid,
  .internal_cta_grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .page_introduction_copy,
  .about_story_content,
  .veteran_grid > div:last-child {
    padding-top: 0;
  }

  .estimate_inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service_detail {
    grid-template-columns: 3rem 0.8fr 1.2fr;
    gap: 1.5rem;
  }

  .contact_information {
    position: static;
  }

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

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

/* --------------------------------------------------
   MOBILE
-------------------------------------------------- */

@media (max-width: 44rem) {
  .container {
    width: min(100% - 1.5rem, var(--content_width));
  }

  .header_inner.container {
    width: calc(100% - 1.5rem);
  }

  .header_inner {
    min-height: 5.5rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand_mark {
    width: 3.5rem;
    height: 3.5rem;
    flex-basis: 3.5rem;
  }

  .brand_name strong {
    font-size: 0.92rem;
  }

  .brand_name small {
    margin-top: 0.35rem;
    font-size: 0.54rem;
  }

  .hero_section {
    min-height: 46rem;
  }

  .hero_content.container {
    width: calc(100% - 1.5rem);
  }

  .hero_content {
    align-items: flex-start;
    padding-block: 5rem 13rem;
  }

  .hero_overlay {
    background: linear-gradient(
      90deg,
      rgba(10, 29, 20, 0.94),
      rgba(16, 39, 28, 0.72)
    );
  }

  .hero_copy .button_row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .hero_copy .button {
    width: 100%;
  }

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

  .hero_information_grid > div {
    padding: 0.8rem 0;
    border: 0;
  }

  .hero_information_grid > div:last-child {
    border: 0;
  }

  .statement_section,
  .services_section,
  .customers_section,
  .process_section,
  .page_introduction,
  .service_details_section,
  .showcase_section,
  .about_story,
  .values_section,
  .veteran_section,
  .contact_section {
    padding-block: 5rem;
  }

  .statement_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .statement_grid > div:first-child {
    grid-column: auto;
  }

  .section_header {
    display: block;
    margin-bottom: 3rem;
  }

  .section_link {
    display: inline-block;
    margin-top: 1.5rem;
  }

  .services_grid,
  .project_categories,
  .values_grid,
  .form_grid,
  .checkbox_grid {
    grid-template-columns: 1fr;
  }

  .result_image,
  .project_feature_image {
    min-height: 22rem;
  }

  .result_content,
  .project_feature_content {
    padding: 4rem 1.5rem;
  }

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

  .result_list li:nth-child(odd),
  .result_list li:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .customer_list article {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .process_steps li {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .service_detail {
    grid-template-columns: 2.5rem 1fr;
  }

  .service_detail_content {
    grid-column: 2;
  }

  .service_detail_content ul {
    grid-template-columns: 1fr;
  }

  .service_detail_content li:nth-child(odd),
  .service_detail_content li:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .project_categories {
    gap: 2rem;
  }

  .value {
    padding-inline: 0;
  }

  .value:nth-child(odd) {
    border-right: 0;
  }

  .estimate_section,
  .internal_cta {
    padding-block: 5rem;
  }

  .estimate_form {
    padding: 1.25rem;
  }

  .field_full {
    grid-column: auto;
  }

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

  .footer_identity {
    grid-column: auto;
  }

  .footer_bottom {
    display: block;
  }

  .footer_bottom p + p {
    margin-top: 0.5rem;
  }
}

/* --------------------------------------------------
   REDUCED MOTION
-------------------------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
