/* ==========================================================================
   CSS Reset (from Tailwind CSS v4.1.14)
   Preserves exact reset behavior from Tailwind's Preflight
   ========================================================================== */

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

:-moz-focusring {
  outline: auto;
}

progress {
  vertical-align: baseline;
}

summary {
  display: list-item;
}

ol,
ul,
menu {
  list-style: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

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

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

::file-selector-button {
  margin-inline-end: 4px;
}

::placeholder {
  opacity: 1;
  color: currentcolor;
}

@supports (color: color-mix(in lab, red, red)) {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

textarea {
  resize: vertical;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-date-and-time-value {
  min-height: 1lh;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

:-moz-ui-invalid {
  box-shadow: none;
}

button,
input:where([type="button"], [type="reset"], [type="submit"]),
::file-selector-button {
  appearance: button;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[hidden]:where(:not([hidden="until-found"])) {
  display: none !important;
}

/* Screen Reader Only Utility (for accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   Design Tokens - ARCH Ltd Brand Colors & Typography
   ========================================================================== */

:root {
  /* Typography */
  --font-sans: Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  --font-mono:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;

  /* Brand Colors */
  --color-orange: #f58229;
  --color-orange-alt: #f7803f;
  --color-tan: #afa081;
  --color-tan-dark: #766a63;
  --color-blue: #8ed8f8;
  --color-cyan: #00aeef;
  --color-yellow: #ffc600;
  --color-pale-blue: #eaf7fe;
  --color-beige: #f1eeea;
  --color-gray: #b9b9b9;
  --color-gray-light: #ded9ce;
  --color-text: #222;
  --color-white: #fff;

  /* Semantic Colors */
  --color-link: var(--color-tan);
  --color-link-hover: var(--color-orange);

  /* Custom Font Sizes */
  --text-2xs: 0.5625rem; /* 9px */

  /* Breakpoints (informational - for reference) */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 900px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.4;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  margin: 16px 0;
  font-weight: 700;
}

/* ==========================================================================
   Component Classes (Reusable)
   ========================================================================== */

.site-container {
  margin: 0 auto;
  max-width: 900px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto 1fr;
  padding: 1.25rem 0 2rem;
}

.site-header {
  grid-column: span 3 / span 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 3rem;
}

.mobile-site-logo {
  width: 74px;
}

.site-branding-container {
  display: flex;
  gap: 18px;
  align-items: center;
}

.utility-nav {
  display: flex;
  gap: 1rem;
  font-weight: 100;
  font-size: 10px;
  line-height: 14px;
}

.site-branding {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-title {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 15px;
}

.site-title a {
  color: var(--color-orange);
}

.site-tagline {
  color: var(--color-tan);
  white-space: nowrap;
}

.site-meta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.site-meta .site-location {
  color: var(--color-tan);
}

.nav-wrapper {
  grid-column-start: 4;
  font-size: 0.75em;
  display: flex;
  flex-direction: column;
  padding: 0 53px 0 18px;
  font-weight: 100;
}

.primary-nav-wrapper {
  gap: 16px;
}

.site-logo {
  display: flex;
}

.primary-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-nav-wrapper {
  grid-row-start: 2;
  padding-top: 34px;
  gap: 32px;
}

.aside-wrapper {
  grid-row-start: 3;
  grid-column-start: 4;
  padding-top: 58px;
  padding-right: 32px;
}

.aside-wrapper aside {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  padding-left: 23px;
  padding-top: 15px;
  font-size: 12px;
  color: var(--color-orange);
  font-weight: 100;
}

/* Navigation Components */
.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a {
  color: var(--color-cyan);
}

.section-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 26px;
}

.section-nav > .current_page_item {
  position: relative;
}

.section-nav > .current_page_item > a {
  color: var(--color-cyan);
}

.section-nav > .current_page_item:before {
  content: ">";
  color: var(--color-cyan);
  position: absolute;
  transform: translate(-0.75rem, -1px);
}

.section-nav > .current_page_ancestor > a,
.section-nav > .current_page_parent > a {
  color: var(--color-cyan);
}

/* Article Content Component */
.article-wrapper {
  grid-row-start: 2;
  grid-row: span 3 / span 3;
  grid-column: span 3 / span 3;
  grid-column-start: 1;
  padding-right: 45px;
  padding-top: 20px;
}

.hentry {
  font-size: 12px;
  background: var(--color-pale-blue);
  padding: 0 3rem 0 3rem;
}

.hentry h2 {
  font-size: 22px;
  font-weight: 100;
  margin: 0.75rem 0;
  margin-bottom: 0.625rem;
}

.hentry h3 {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

.hentry h4 {
  margin-bottom: 8px;
}

.hentry h4 + p {
  margin-top: 0;
}

.hentry p {
  line-height: 1.5em;
  margin: 0.75em 0;
}

.hentry > p:last-child {
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}

.hentry ul {
  padding-left: 8px;
  margin: 1em 0 1.5rem;
  list-style: none;
}

.hentry li {
  text-indent: -8px;
  margin-bottom: 0.75rem;
}

.hentry li:before {
  content: "\2022";
  color: var(--color-tan);
  font-size: 13px;
  margin-right: 3px;
}

/* Aside - Sidebar Component */

.aside-text {
  font-size: 14px;
  line-height: 1.43em;
  color: #f58229;
  font-weight: 100;
}

.aside-text h1 {
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  font-size: 9px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 2.1em;
}

.aside-text h1 + p {
  margin-top: 0;
}

.aside-text p {
  margin-bottom: 0.5rem;
}

.aside-text li:before {
  content: "•";
  color: var(--color-tan-dark);
  margin-right: 0.25rem;
  font-size: var(--text-2xs);
}

blockquote {
  font-size: 1.25em;
  color: #f58229;
  margin: 0;
  font-weight: 100;
}

.aside-text blockquote {
  text-indent: -5px;
  font-size: 14px;
  line-height: 20px;
}

/* Utility Classes */
.alignleft {
  float: left;
  margin-right: 9px;
  margin-bottom: 9px;
}

.alignright {
  float: right;
  margin-left: 9px;
  margin-bottom: 9px;
}

/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */

/* Consolidated h2 styles for multiple sections */
.the-arch-difference h2,
.parent-about-us h2,
.parent-our-services h2,
.parent-our-experience h2,
.newsletter h2 {
  color: var(--color-tan);
}

/* Home Page */
.home-content {
  grid-column: span 4 / span 4;
  display: grid;
  grid-template-columns: subgrid;
  position: relative;
  padding-top: 28px;
  padding-left: 3rem;
  padding-right: 2rem;
}

.linkedin-link-wrapper {
  font-size: 12px;
}

.home-background-graphic {
  position: absolute;
  z-index: -1;
  top: -56px;
  pointer-events: none;
}

.home-slider {
  grid-column: span 4 / span 4;
  display: grid;
  grid-template-columns: subgrid;
  margin-bottom: 10px;
}

.home-slider .slider-nav {
  transform: translateY(-10px);
  grid-column: span 4 / span 4;
}

.home-article {
  grid-column: span 3 / span 3;
  padding-right: 12px;
  height: 100%;
}

.home-article-inner {
  font-weight: 100;
  background: var(--color-orange-alt);
  padding-top: 15px;
  padding-left: 18px;
  padding-right: 20px;
  padding-bottom: 16px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-article-inner a {
  color: var(--color-white);
  font-size: 12px;
  white-space: nowrap;
}

.home-article-inner h2 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 4px;
  line-height: 22px;
}

.home-article-inner p {
  font-size: 16px;
  margin: 0;
  line-height: 22px;
  color: #222;
}

.home-news-wrapper {
  display: flex;
  height: 100%;
}

.home-news {
  padding: 10px 20px;
  background: var(--color-beige);
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  justify-content: center;
}

.home-news h1 {
  font-weight: 900;
  font-size: 9px;
  text-transform: uppercase;
  line-height: 13px;
  letter-spacing: 1px;
}

.home-news h1 a {
  color: var(--color-text);
}

.home-news h2 {
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
}

/* Services Top Graphic Page */
.our-services-content {
  grid-row-start: 2;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
}

/* Contact Page */
.parent-contact .hentry {
  background: none;
}

.parent-contact h2 {
  color: #afa081;
  margin-bottom: 15px;
}

.contact-us .contact-info {
  display: flex;
  column-gap: 16px;
  padding-bottom: 30px;
  gap: 3rem;
}

.contact-us .hentry a[href*="mailto:"] {
  color: #000;
}

.contact-info p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.contact-street-address {
  white-space: nowrap;
}

.parent-contact .hentry {
  padding-right: 0;
}

.directions .hentry p:first-of-type {
  max-width: 80ch;
}

.directions iframe {
  margin-top: 29px;
  margin-bottom: 5px;
}

/* Portfolio/Slider Page */
.portfolio-content {
  grid-row-start: 2;
  grid-row: span 2 / span 2;
  grid-column: span 3 / span 3;
  grid-column-start: 1;
  padding-right: 46px;
  padding-top: calc(0.25rem * 5);
}

.portfolio-article {
  background-color: var(--color-pale-blue);
  padding-left: 3rem;
  padding-right: 3rem;
}

.portfolio-slider {
  padding-top: 8px;
}

.portfolio-slider .slider-nav {
  transform: translateY(-34px);
}

.portfolio-article-inner {
  background-color: var(--color-white);
  padding: 15px 22px 18px 20px;
}

/* About Us - The ARCH Difference */
.the-arch-difference h2 + h3 {
  margin-top: -2px;
}

.the-arch-difference .aside-wrapper {
  padding-right: 28px;
}

.the-arch-difference .aside-text {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
}

.the-arch-difference .aside-text blockquote p {
  margin-bottom: 0;
}

.the-arch-difference .aside-text blockquote + p {
  margin-top: 4px;
}

/* About Us - Your Trusted Partner / Why an Owner's Representative */
.your-trusted-partner-a-total-solution .hentry {
  padding-bottom: 16px;
}

.parent-about-us .aside-text ul {
  padding-left: 0;
  list-style: none;
  margin-top: 8px;
}

.parent-about-us .aside-text li {
  text-indent: -8px;
  margin-bottom: 8px;
}

.parent-about-us .aside-text ul li:before {
  content: "\2022";
  font-size: 0.75em;
  margin-right: 3px;
  color: var(--color-tan-dark);
}

.parent-about-us .aside-text li a {
  color: var(--color-orange);
}

.parent-about-us .aside-text li a:hover {
  color: var(--color-tan);
}

.parent-about-us .sub-pages .children {
  display: none;
  speak: none;
}

/* About Us - Our Team */

.parent-about-us h3 {
  margin-top: 14px;
}

.parent-about-us img.alignleft {
  margin-top: 3px;
  height: 101px;
  width: auto;
}

.parent-our-team .hentry,
.newsletter .hentry {
  background: var(--color-beige);
}

.parent-our-team .section-nav {
  padding-right: 29px;
  text-transform: capitalize;
}

/* Our Services */
.parent-our-services .hentry {
  background: var(--color-white);
}

.parent-our-services h2 {
  margin-top: 15px;
}

.parent-our-services h2 + h3 {
  margin-top: -2px;
}

/* Our Services - Flow Chart */
.flow-chart {
  background: var(--color-pale-blue);
  width: 627px;
  height: 266px;
  float: left;
  padding: 33px 0px 25px 25px;
  margin-bottom: 20px;
  margin-top: 18px;
  list-style: none;
  margin-left: -25px;
}

.flow-chart li {
  position: relative;
  float: left;
  margin-right: 18px;
}

.flow-chart .last-child {
  margin-right: 0;
  margin-top: 91px;
}

.flow-chart .last-child:after {
  content: none;
}

.flow-chart li:after {
  position: absolute;
  top: 50%;
  margin-top: 4px;
  right: -21px;
  content: "";
  display: block;
  height: 13px;
  width: 23px;
  background: transparent url(../img/flow-chart.webp) -517px -138px no-repeat;
}

.flow-chart li a {
  display: block;
  height: 200px;
  width: 110px;
  background: url(../img/flow-chart.webp) -25px -33px no-repeat;
}

.flow-chart .flow-chart-planning {
  background-position: -153px -33px;
}

.flow-chart .flow-chart-pre-construction {
  background-position: -281px -33px;
}

.flow-chart .flow-chart-construction {
  background-position: -409px -33px;
}

.flow-chart .flow-chart-opening {
  background-position: -537px -125px;
  width: 66px;
  height: 41px;
}

.flow-chart .flow-chart-assessment:hover {
  background-position: -25px -298px;
}

.flow-chart .flow-chart-planning:hover {
  background-position: -153px -298px;
}

.flow-chart .flow-chart-pre-construction:hover {
  background-position: -281px -298px;
}

.flow-chart .flow-chart-construction:hover {
  background-position: -409px -298px;
}

.flow-chart .flow-chart-opening:hover {
  background-position: -537px -390px;
}

/* Our Experience */

/* Our Experience - Featured Projects */
.parent-our-experience .hentry {
  padding-bottom: 20px;
}

.parent-featured-projects h3 {
  margin-top: 3px;
}

.parent-our-experience h4 {
  margin-top: 12px;
}

.parent-our-experience blockquote {
  font-size: 14px;
}

.parent-our-experience blockquote p {
  margin-bottom: 0.25em;
  text-indent: -4px;
  margin-top: 25px;
}

.parent-our-experience blockquote + p {
  margin-top: 0.25em;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 100;
}

.parent-featured-projects .aside-text {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 15px 19px 20px 20px;
  border: 0;
  font-size: 14px;
  line-height: 1.43em;
}

.parent-featured-projects .aside-text h1 {
  margin-top: 10px;
  margin-bottom: 3px;
}

.parent-featured-projects .aside-text h1:first-child {
  margin-top: 0;
}

.parent-featured-projects .sub-pages .children {
  text-transform: none;
}

.parent-featured-projects .page-item-76,
.parent-featured-projects .page-item-69 {
  width: 90px;
}

.specialized-expertise-demonstrated-success .hentry {
  background: none;
  padding-top: 9px;
  padding-right: 50px;
}

.specialized-expertise-demonstrated-success .hentry > p:last-child {
  padding-bottom: 4px;
}

.specialized-expertise-demonstrated-success h3 {
  margin-bottom: 5px;
}

.specialized-expertise-demonstrated-success h4 {
  color: #f58229;
  font-weight: 400;
  font-size: 14px;
  margin-top: 0;
}

.specialized-expertise-demonstrated-success .aside-text {
  border: 0;
  font-size: 14px;
  line-height: 20px;
  padding-left: 18px;
  padding-top: 9px;
}

.specialized-expertise-demonstrated-success .aside-text h1 {
  padding-right: 18px;
}

/* Newsletter */
.newsletter form {
  margin-top: 35px;
}

.newsletter .aside-text {
  border: 0;
  padding-left: 18px;
}
.aside-text h1 {
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  font-size: 9px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 2.1em;
}

.newsletter .aside-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsletter .aside-text li:before {
  content: "";
  display: none;
}

.newsletter .aside-text h1 {
  color: #00aeef;
  text-transform: capitalize;
  letter-spacing: 0;
}

.newsletter .aside-text li,
.newsletter .aside-text h1 {
  font-weight: 100;
  font-size: 12px;
  margin-bottom: 5px;
}

/* ==========================================================================
   Shared Overrides
   ========================================================================== */

.the-arch-difference .hentry,
.parent-about-us .hentry,
.newsletter .hentry {
  margin-top: -10px;
  padding-top: 10px;
}

.the-arch-difference .aside-text {
  padding-left: 18px;
  padding-top: 30px;
}

.the-arch-difference .hentry {
  padding-right: 50px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-left: 3rem;
  padding-top: 32px;
  color: var(--color-tan);
  grid-column: span 4 / span 4;
  padding-right: 2rem;
}

.footer-content {
  font-size: 0.6875em;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-contact-group {
  display: none;
}

/* ==========================================================================
   Forms
   ========================================================================== */

input {
  padding: 10px;
  font-size: 12px;
  border: none;
  outline: none;
  background: white;
  line-height: normal;
}

.newsletter .hentry form input[type="text"],
.newsletter .hentry form input[type="email"] {
  margin-bottom: 14px;
}

input[type="submit"] {
  background: #f7803f;
  color: #fff;
}

/* Contact Form 7 */
div.wpcf7-validation-errors {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  color: var(--color-yellow);
  border: none;
}

div.wpcf7-mail-sent-ok {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  border: none;
}

/* ==========================================================================
   Special Components
   ========================================================================== */

/* Slider Component */
.slider {
  position: relative;
}

.slider-nav {
  display: flex;
  gap: 1rem;
}

.slider-nav-button {
  border: 0;
  border-radius: 9999px;
  padding: 0;
  cursor: pointer;
  width: 10px;
  height: 10px;
}

.slider-nav-button[data-active="true"] {
  background-color: var(--color-blue);
}

.slider-nav-button[data-active="false"] {
  background-color: var(--color-gray-light);
}

.slider-tracks {
  display: grid;
  grid-column: span 4 / span 4;
  grid-template-columns: subgrid;
}

.slider-track {
  display: grid;
  grid-template-columns: subgrid;
  grid-row-start: 1;
  grid-column: 1 / span 4;
  opacity: 0;
  z-index: -10;
  position: relative;
  transition: opacity 1000ms;
  grid-template-rows: 325px;
}

.slider-image-link {
  grid-column: span 3 / span 3;
}

.slider-track[data-active="true"] {
  opacity: 1;
  z-index: 10;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-aside {
  background: var(--color-blue);
  font-size: 13px;
  font-weight: 100;
  padding: 18px 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.slider-aside h1 {
  font-weight: 100;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.slider-aside h2 {
  color: var(--color-text);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 9px;
}

.slider-aside blockquote {
  color: var(--color-text);
  font-size: 13px;
  padding-top: 1px;
  line-height: 1.5em;
  font-weight: 100;
  margin-bottom: 7px;
}

.slider-aside.hanging-quote blockquote {
  text-indent: -0.25rem;
}

.slider-aside blockquote p {
  line-height: 19px;
}

.slider-aside p {
  line-height: 19px;
}

.slider-aside > p:last-child {
  margin-top: 7px;
}

.slider-aside blockquote + p:last-child {
  margin-top: 0;
}

.slider-aside a {
  font-size: 12px;
  color: var(--color-white);
}

/* Portfolio Slider Variant */
.slider--portfolio {
  padding: 1.25rem 0;
  position: relative;
}

.slider--portfolio .slider-track {
  display: flex;
}

.slider--portfolio .slider-track img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slider--portfolio .slider-nav {
  position: absolute;
  top: 10px;
}

/* ==========================================================================
 Mobile Navigation
 ========================================================================== */

.mobile-nav-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: end;
  transform: translateY(-3px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: none;
  flex-direction: column;
  z-index: 20;
}

.mobile-nav-back {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.mobile-nav-header-row-1 {
  padding: 24px 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav-logo {
  width: 136px;
  height: auto;
}

.mobile-nav-header-row-2 {
  padding: 16px 20px;
  display: none;
  border-bottom: 1px solid var(--color-gray-light);
  background-color: #f9f9f9;
}

.mobile-nav[data-nav-state="submenu"] .mobile-nav-header-row-2 {
  display: flex;
}

.mobile-nav-content {
  flex: 1;
  overflow-y: auto;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mobile-nav-toggle-open,
.mobile-nav-toggle-close {
  height: 30px;
  width: 30px;
  fill: var(--color-text);
  cursor: pointer;
}

/* Prevent body scroll when mobile nav is open */
body.mobile-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Menu */
.mobile-nav-menu .sub-menu {
  display: none;
}

/* Menu items */
.mobile-nav .menu-item {
  padding-left: 20px;
  padding-right: 20px;
}

.mobile-nav .menu-item a,
.mobile-nav .menu-item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5px 20px 0;
  font-weight: 300;
  cursor: pointer;
  width: 100%;
  color: var(--color-link);
}

.mobile-nav-menu > .menu-item + .menu-item > * {
  border-top: 1px solid var(--color-gray-light);
}

/* Icons */
.mobile-nav .chevron-right,
.mobile-nav .chevron-left {
  height: 15px;
  width: auto;
  fill: var(--color-gray-light);
}

.mobile-nav .menu-item:not(.menu-item-has-children) .chevron-right {
  display: none;
}

/* ==========================================================================
   Media Queries - Organized by Breakpoint
   ========================================================================== */

/* Desktop and larger (900px+) */
@media (width >= 900px) {
  .mobile-site-logo {
    display: none;
  }

  .mobile-nav-toggle-wrapper {
    display: none;
  }
}

/* Tablet and smaller (< 900px) */
@media (width < 900px) {
  .site-container {
    padding-top: 0;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    grid-column: span 4 / span 4;
    align-items: center;
    padding: 2rem 2rem 3rem;
  }

  .home-content {
    flex-direction: column;
    justify-content: space-between;
    grid-column: span 4 / span 4;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 10px;
    display: flex;
  }

  .home-content > * {
    margin: 0;
  }

  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .site-branding {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .hentry {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .primary-nav-wrapper,
  .section-nav-wrapper,
  .utility-nav {
    display: none;
  }

  .home-article {
    padding-right: 0;
  }

  .home-background-graphic {
    top: -10px;
  }

  /* Slider Mobile Styles */
  .home-slider .slider-tracks {
    display: block;
    position: relative;
  }

  .home-slider .slider-track {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: 100%;
  }

  .home-slider .slider-track[data-track="3"] {
    position: relative;
  }

  .home-slider .slider-track:not([data-track="3"]) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

  .home-slider .slider-image-link {
    aspect-ratio: 2240 / 1165;
    overflow: hidden;
    position: relative;
  }

  .home-slider .slider-track img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-slider .slider-track[data-track="0"] img {
    object-fit: contain;
  }

  .portfolio-content {
    grid-column: span 4 / span 4;
    padding-right: 0;
  }

  .portfolio-article {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .parent-featured-projects .aside-wrapper {
    background-color: var(--color-pale-blue);
    grid-column: span 4 / span 4;
    grid-row-start: 4;
    grid-column-start: 1;
    padding: 0 2rem 2rem;
  }

  .article-wrapper {
    padding-right: 2rem;
  }

  .hentry {
    padding-right: 2rem;
  }

  .aside-wrapper {
    padding-right: 2rem;
    padding-top: 42px;
  }

  .parent-our-services .article-wrapper {
    grid-column: span 4 / span 4;
  }

  .parent-our-team .article-wrapper,
  .contact-us .article-wrapper {
    grid-column: span 4 / span 4;
    padding-right: 0;
  }

  .the-arch-difference .article-wrapper {
    padding-right: 0;
  }

  .parent-contact .hentry {
    padding-right: 2rem;
  }

  .contact-us .contact-info {
    column-gap: 4rem;
  }

  .footer-phone,
  .footer-email {
    display: none;
  }
  .footer-contact-group {
    display: flex;
    width: 100%;
    text-align: center;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .footer-content {
    display: flex;
    text-align: center;
    text-align: center;
    column-gap: 1rem;
    row-gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .footer-phone,
  .footer-email {
    display: none;
  }
  .footer-contact-group .footer-phone,
  .footer-contact-group .footer-email {
    display: inline;
  }
}

/* Medium mobile and smaller (< 750px) */
@media (width < 750px) {
  .site-meta {
    display: none;
  }

  .site-title a {
    display: flex;
    flex-direction: column;
  }

  .home-news-wrapper {
    grid-column: span 4 / span 4;
  }

  .home-article {
    grid-column: span 4 / span 4;
    padding-right: 0;
  }
  .article-wrapper {
    grid-column: span 4 / span 4;
  }

  .aside-wrapper {
    grid-row-start: 5;
    grid-column: span 4 / span 4;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .aside-wrapper .aside-text {
    padding-left: 0;
    padding-top: 0;
  }

  .aside-wrapper aside {
    border: 0;
  }

  .directions .hentry {
    padding-right: 0rem;
  }

  .directions iframe {
    width: 100%;
  }

  .parent-about-us .article-wrapper {
    padding-right: 0;
  }

  .contact-us .contact-info {
    column-gap: 2rem;
  }

  .site-tagline {
    letter-spacing: 2.8px;
    font-size: 14.8px;
  }
}

/* Small mobile (< 480px) */
@media (width < 480px) {
  .site-header {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25px;
  }

  .home-content {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-site-logo {
    display: none;
  }

  .portfolio-article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .parent-featured-projects .aside-wrapper {
    padding: 0 20px 20px;
  }

  .home-background-graphic {
    top: -5px;
  }

  .hentry {
    padding-left: 20px;
    padding-right: 20px;
  }

  .directions .article-wrapper {
    padding-right: 20px;
  }

  .aside-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-us .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}
