:root {
  --bg: #3c3c3b;
  --bg-deep: #3c3c3b;
  --text: #f6f6f6;
  --muted: rgba(246, 246, 246, 0.82);
  --accent: #ffaa00;
  --line: rgba(246, 246, 246, 0.35);
  --max-width: 1380px;
  --page-padding-desktop: 48px;
  --page-padding-tablet: 32px;
  --page-padding-mobile: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0.015em;
}

.container {
  width: min(var(--max-width), calc(100vw - (var(--page-padding-desktop) * 2)));
  margin: 0 auto;
}

.topbar {
  background: #ffaa00;
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 290px;
  height: auto;
  margin-left: -13px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 46px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #3c3c3b;
  text-transform: uppercase;
  font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  font-size: 18px;
}

.menu a:hover,
.menu a:focus-visible {
  color: #f6f6f6;
}

.menu a[aria-current="page"] {
  color: #f6f6f6;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #3c3c3b;
  background: transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #3c3c3b;
  display: block;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: #f6f6f6;
}

.menu-toggle:hover span,
.menu-toggle:focus-visible span {
  background: #f6f6f6;
}

.hero {
  aspect-ratio: 1920 / 862;
  background-image: url("assets/Imagen Hero Serravalle Final 2.jpg?v=20260620a");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.hero-overlay {
  min-height: 100%;
  background: transparent;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 64px) 0;
  position: relative;
}

.hero-content {
  text-align: center;
  width: min(920px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: reveal 900ms ease-out;
}

.hero-content h1 {
  margin: 0;
  font: 500 clamp(38px, 4.6vw, 66px) / 1.05 "Roboto", sans-serif;
  letter-spacing: 0.015em;
  text-align: center;
  display: grid;
  justify-items: center;
  row-gap: 8px;
}

.hero-title-desktop-line,
.hero-title-mobile-line {
  display: block;
  white-space: nowrap;
  margin-inline: auto;
  text-align: center;
}

.hero-title-mobile-line,
.hero-mobile-divider {
  display: none;
}

@media (max-width: 960px) {
  .hero-title-desktop-line,
  .hero-title-mobile-line {
    white-space: normal;
  }
}

.hero-content p {
  margin: 48px auto 18px;
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 400;
  max-width: 760px;
  color: var(--text);
  text-align: center;
}

.hero-subtitle-desktop-line,
.hero-subtitle-mobile-line {
  display: block;
}

.hero-subtitle-mobile-line {
  display: none;
}

@media (min-width: 641px) {
  .hero-content p {
    display: grid;
    row-gap: 10px;
  }

  .hero-subtitle-desktop-line {
    white-space: nowrap;
  }
}

.hero-scroll-arrow {
  position: absolute;
  left: 50%;
  top: calc(100% + 32px);
  width: 68px;
  height: 49px;
  transform: translateX(-50%) rotate(90deg);
  background: url("assets/Arrow-OK-01.svg") center / contain no-repeat;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hero-scroll-arrow:hover,
.hero-scroll-arrow:focus-visible,
.hero-scroll-arrow:active {
  background: url("assets/Arrow-OK-01-yellow.svg") center / contain no-repeat;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #3c3c3b;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font: 400 1.7rem/1 "Roboto", sans-serif;
  margin-inline: auto;
  align-self: center;
}

.cta:hover,
.cta:focus-visible {
  color: #f6f6f6;
}

.section {
  padding: 84px 0;
}

.section-about,
#services,
#projects {
  padding-bottom: 0;
}

.section-about .container,
#services .container,
#projects .container {
  border-bottom: 2px solid rgba(255, 170, 0, 0.8);
  padding-bottom: 86px;
}

.home-page #services,
.home-page #projects,
.home-page .section-why {
  padding-top: 86px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font: 700 1.05rem/1 "Roboto", sans-serif;
  letter-spacing: 0.015em;
  margin: 0 0 16px;
}

.about-text {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.about-summary {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 58ch;
}

.about-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: none;
  font-family: "DIN Alternate", "DIN Condensed", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.015em;
}

.about-link:hover,
.about-link:focus-visible {
  color: var(--text);
}

.home-page .about-link.home-link-lowercase {
  color: rgba(246, 246, 246, 0.56);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.home-page .about-link.home-link-lowercase:hover,
.home-page .about-link.home-link-lowercase:focus-visible {
  color: var(--accent);
}

.about-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 10px;
}

.section-about-home .about-grid {
  align-items: start;
}

.section-about-home .about-grid > div {
  display: flex;
  flex-direction: column;
}

.section-about-home .about-link {
  margin-top: auto;
  padding-top: 18px;
}

.home-page .about-link {
  font-size: 16px;
}

.section-about-home .about-text {
  font-size: 20px;
  line-height: 32px;
  text-align: left;
  text-justify: auto;
}

.section-about-home .about-text + .about-text {
  margin-top: 18px;
}

.about-text-mobile-short {
  display: none;
}

.section-about-home {
  padding-top: 96px;
}

.section-about-page {
  padding-top: 84px;
}

.section-about-page h2 {
  font-size: 38px;
}

.section-about-page .container {
  border-bottom: 0;
  padding-bottom: 102px;
}

.about-page-media {
  width: 100%;
  aspect-ratio: 25 / 12;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 10px;
}

.about-page-copy {
  margin: 0;
  max-width: none;
}

.about-page-copy p {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.015em;
  font-weight: 300;
}

.about-page-copy p + p {
  margin-top: 18px;
}

.about-mobile-inline-tail {
  display: none;
}

.about-section-divider {
  border-top: 2px solid rgba(255, 170, 0, 0.8);
  margin: 72px 0 86px;
}

.section-services-page {
  padding-top: 84px;
}

.section-services-page .container {
  border-bottom: 0;
  padding-bottom: 60px;
}

.section-services-page h2 {
  margin-bottom: 22px;
  font-size: 38px;
}

.services-page .services-intro {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.015em;
  font-weight: 300;
  max-width: none;
}

.services-page .service-card p,
.services-page .services-module p {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.015em;
  font-weight: 300;
  max-width: none;
}

.services-section-divider {
  border-top: 2px solid rgba(255, 170, 0, 0.8);
  margin: 0;
}

.services-intro + .services-section-divider {
  margin: 72px 0 86px;
}

.services-module {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.services-module + .services-module {
  border-top: 0;
  margin-top: 28px;
  padding-top: 0;
}

.services-page-card {
  border: 1.5px solid var(--muted);
  border-radius: 10px;
  padding: 28px 30px 30px;
  min-height: 0;
}

.services-page-card-header {
  display: block;
}

.services-page-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
}

.services-page-card-divider {
  width: 100%;
  border-top: 1.5px solid var(--text);
  margin: 18px 0 18px;
}

.services-page-card p {
  margin: 0;
  color: var(--muted);
  font-size: inherit;
  line-height: inherit;
  font-weight: 300;
}

h2 {
  margin: 0 0 22px;
  font: 700 clamp(32px, 3vw, 52px) / 1 "Roboto", sans-serif;
  color: var(--accent);
  text-transform: uppercase;
}

.home-page #services h2,
.home-page #projects h2,
.home-page .section-why h2 {
  font-size: 38px;
}

.section-about h2 {
  font-size: clamp(32px, 3vw, 52px);
}

.section-about.section-about-page h2 {
  font-size: 38px;
}

.home-page #about .eyebrow {
  font-size: 38px;
  line-height: 1;
  margin: 0 0 22px;
}

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

.service-card {
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  padding: 18px 20px;
  min-height: 160px;
}

.service-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 0 12px -8px;
  color: var(--text);
}

.service-icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.45rem;
  font-weight: 500;
}

.home-page #services .service-grid {
  grid-template-columns: 1fr 1fr;
}

.home-page #services .service-card {
  border-color: var(--muted);
  padding: 24px 26px;
  min-height: 0;
}

.home-page #services .service-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
}

.home-page #services .service-card-divider {
  width: 100%;
  border-top: 1.5px solid var(--text);
  margin: 18px 0;
}

.home-page #services .service-card p {
  color: var(--muted);
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
}

.home-page #services .service-link {
  margin-top: 28px;
}

.home-services-mobile-card {
  display: none;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
}

.project-card-link {
  display: block;
  text-decoration: none;
}

.project-card-media {
  overflow: hidden;
}

.project-card img {
  display: block;
  vertical-align: top;
  width: 100%;
  aspect-ratio: 351 / 205;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 0;
  transition: transform 260ms ease;
}

.project-card:nth-child(1) img {
  object-position: center 55%;
}

.project-card:nth-child(2) img {
  object-position: center 38%;
}

.project-card:nth-child(3) img {
  object-position: center 52%;
}

.project-card .bar,
.project-card .project-region-bar {
  height: 34px;
  flex: 0 0 34px;
  background: var(--accent);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3c3c3b;
  -webkit-text-fill-color: #3c3c3b;
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.project-card-link:hover img,
.project-card-link:focus-visible img {
  transform: scale(1.04);
}

.project-card-link:hover .bar,
.project-card-link:hover .project-region-bar,
.project-card-link:focus-visible .bar,
.project-card-link:focus-visible .project-region-bar {
  color: #f6f6f6;
  -webkit-text-fill-color: #f6f6f6;
}

.project-card-link:focus-visible {
  outline: 2px solid #f6f6f6;
  outline-offset: 2px;
}

.project-copy {
  margin-top: 24px;
}

.project-copy p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
  font-weight: 300;
}

.section-why p {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.015em;
  font-weight: 300;
  text-align: left;
}

.section-projects-page {
  padding-top: 84px;
}

#projects.section-projects-page .container {
  border-bottom: 0;
  padding-bottom: 0;
}

.section-projects-page h2 {
  text-align: left;
  margin: 0 0 22px;
  font-size: 38px;
}

.section-contact-page h2 {
  text-align: left;
  margin: 0 0 22px;
  font-size: 38px;
}

.project-intro {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.015em;
  font-weight: 300;
  max-width: none;
}

.project-section-divider {
  border-top: 2px solid rgba(255, 170, 0, 0.8);
  margin: 0;
}

.project-intro + .project-section-divider {
  margin: 72px 0 86px;
}

.projects-area-band {
  margin: 0 0 84px;
  height: 36px;
  position: relative;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font: 400 clamp(1.35rem, 2vw, 24px) / 1 "Roboto", sans-serif;
  letter-spacing: 0.015em;
  scroll-margin-top: 170px;
  background-image:
    linear-gradient(rgba(255, 170, 0, 0.8), rgba(255, 170, 0, 0.8)),
    linear-gradient(rgba(255, 170, 0, 0.8), rgba(255, 170, 0, 0.8));
  background-repeat: no-repeat;
  background-position: top left, bottom left;
  background-size: 100% 2px, 100% 2px;
}

.projects-area-band::before,
.projects-area-band::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  background: url("assets/Arrow-OK-01-yellow.svg") center / contain no-repeat;
  transform: translateY(-50%) rotate(90deg);
  filter: drop-shadow(0.4px 0 0 rgba(255, 170, 0, 0.95))
    drop-shadow(-0.4px 0 0 rgba(255, 170, 0, 0.95));
}

.projects-area-band::before {
  left: -10px;
}

.projects-area-band::after {
  right: -10px;
}

.project-intro + .projects-area-band {
  margin-top: 72px;
}

.projects-area-band + .project-feature {
  padding-top: 0;
}

.projects-region-grid {
  display: contents;
}

.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: 0;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.project-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--muted);
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
}

.project-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.project-feature + .project-feature {
  border-top: 0;
  margin-top: 48px;
}

.project-feature + .projects-area-band {
  margin-top: 86px;
}

.project-feature.is-reverse .project-feature-copy {
  order: 2;
}

.project-feature.is-reverse .project-feature-media {
  order: 1;
}

.project-feature-copy {
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 30px 30px;
  position: relative;
  z-index: 1;
}

.project-feature-label {
  margin: 0;
  color: #f6f6f6;
  text-transform: none;
  font: 400 30px/1.05 "Roboto", sans-serif;
}

.project-feature-copy p:not(.project-feature-label) {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1.5px solid var(--text);
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: var(--muted);
}

.project-feature-meta {
  color: #f6f6f6;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

.project-feature-copy .project-feature-label {
  margin: 0;
}

.project-detail-link {
  color: inherit;
  text-decoration: none;
}

.project-title-mobile {
  display: none;
}

.project-title-desktop {
  display: inline;
}

.project-specs-mobile {
  display: none;
}

.project-detail-link:hover,
.project-detail-link:focus-visible,
.project-feature:hover .project-detail-link,
.project-feature:focus-within .project-detail-link {
  color: var(--accent);
}

.project-feature-media {
  display: block;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
  position: relative;
  z-index: 1;
}

.project-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 351 / 205;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: inherit;
  transition: transform 260ms ease;
}

.project-feature-media:hover img,
.project-feature:hover img,
.project-feature:focus-within img {
  transform: scale(1.04);
}

.section-project-detail {
  padding-top: 84px;
}

.project-detail-title {
  margin: 0 0 22px;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
  font: 700 38px/1 "Roboto", sans-serif;
}

.project-detail-hero {
  width: 100%;
  aspect-ratio: 1236 / 650;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.project-detail-hero-serravalle {
  aspect-ratio: 1794 / 877;
}

.project-detail-copy {
  margin: 0;
  max-width: none;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.015em;
  font-weight: 300;
}

.section-project-detail .project-detail-topbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  column-gap: 24px;
}

.section-project-detail .project-detail-topbar-side {
  display: flex;
  width: 100%;
}

.section-project-detail .project-detail-topbar-side.is-prev {
  justify-content: flex-start;
  margin-left: -20px;
}

.section-project-detail .project-detail-topbar-side.is-next {
  justify-content: flex-end;
  margin-right: 0;
}

.section-project-detail .project-detail-title {
  margin: 0;
}

.section-project-detail .project-detail-nav-link-top {
  color: rgba(246, 246, 246, 0.56);
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 400;
  gap: 14px;
}

.section-project-detail .project-detail-nav-link-top.is-prev {
  justify-content: flex-start;
  gap: 6px;
  font-style: normal;
  font-weight: 300;
}

.section-project-detail .project-detail-nav-link-top.is-next {
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
  gap: 6px;
  font-style: normal;
  font-weight: 300;
  transform: translateX(20px);
}

.section-project-detail .project-detail-nav-link-top::before {
  content: none;
  display: none;
}

.section-project-detail .project-detail-nav-arrow {
  display: inline-block;
  flex: 0 0 auto;
  align-self: center;
  width: 64px;
  height: 44px;
  background: url("assets/Arrow-OK-01.svg") center / contain no-repeat;
  transform: translateY(-1px);
}

.section-project-detail .project-detail-nav-link-top.is-prev .project-detail-nav-arrow {
  transform: translateY(-1px) rotate(180deg);
}

.section-project-detail .project-detail-nav-link-top:hover .project-detail-nav-arrow,
.section-project-detail .project-detail-nav-link-top:focus-visible .project-detail-nav-arrow {
  background-image: url("assets/Arrow-OK-01-yellow.svg");
}

.section-project-detail .project-detail-nav-link-top:hover,
.section-project-detail .project-detail-nav-link-top:focus-visible {
  color: var(--accent);
}

.section-project-detail .project-detail-intro-block {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  column-gap: 38px;
  align-items: stretch;
  margin-top: 22px;
}

.section-project-detail .project-detail-specs p {
  margin: 0;
  color: #f6f6f6;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

.section-project-detail .project-detail-intro-rule {
  width: 1px;
  height: auto;
  align-self: stretch;
  background: rgba(246, 246, 246, 0.72);
}

.section-project-detail .project-section-divider {
  margin: 72px 0 86px;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  padding-bottom: 102px;
}

.project-detail-gallery-serravalle {
  padding-bottom: 24px;
}

.project-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding-inline: 0;
  padding-bottom: 108px;
}

.project-detail-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  font-weight: 300;
  line-height: 1;
  transition: none;
}

.project-detail-nav-link.is-next {
  flex-direction: row-reverse;
}

.project-detail-nav-link::before {
  content: "";
  width: 58px;
  height: 42px;
  background-image: url("assets/Arrow-OK-01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 132% 132%;
  transition: none;
}

.project-detail-nav-link.is-prev::before {
  transform: rotate(180deg);
}

.project-detail-nav-link.is-next::before {
  transform: none;
}

.project-detail-nav-link:hover,
.project-detail-nav-link:focus-visible {
  color: var(--accent);
}

.project-detail-nav-link:hover::before,
.project-detail-nav-link:focus-visible::before {
  background-image: url("assets/Arrow-OK-01-yellow.svg");
}

.project-detail-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.project-detail-gallery .project-detail-gallery-portrait-image {
  aspect-ratio: auto;
  object-fit: contain;
}

.project-detail-placeholder {
  width: 100%;
  background: #575756;
  border-radius: 10px;
}

.project-detail-hero-placeholder {
  aspect-ratio: 1236 / 650;
}

.project-detail-gallery-placeholder {
  aspect-ratio: 16 / 9;
}

.project-feature-last {
  margin-bottom: 108px;
}

.section-why {
  padding-bottom: 96px;
}

.section-contact-page {
  padding-top: 84px;
}

.section-contact-page .container {
  border-bottom: 0;
  padding-bottom: 178px;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 28px;
}

.contact-field {
  display: grid;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--muted);
  border-radius: 10px;
  color: var(--text);
  font: 300 clamp(16px, 1.2vw, 20px) / 1.35 "Roboto", sans-serif;
  padding: 16px 20px;
}

.contact-field input {
  min-height: 70px;
}

.contact-field textarea {
  min-height: 240px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(246, 246, 246, 0.72);
  font-style: italic;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: 0;
  border-color: var(--accent);
}

.contact-submit {
  margin-top: 0;
  width: fit-content;
  min-width: 172px;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(246, 246, 246, 0.9);
  background: transparent;
  color: #f6f6f6;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font: 700 1.15rem/1 "DIN Alternate", "DIN Condensed", "Arial Narrow", sans-serif;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #3c3c3b;
}

footer {
  border-top: 2px solid rgba(246, 246, 246, 0.31);
}

@media (min-width: 769px) {
  .project-detail-hero {
    aspect-ratio: 1794 / 877;
  }

  .project-detail-gallery {
    padding-bottom: 24px;
  }
}

@media (min-width: 1025px) {
  .projects-region-grid + .projects-area-band {
    margin-top: 84px;
  }
}

@media (min-width: 769px) {
  .home-page #projects .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1279px) and (min-width: 1025px) {
  .project-feature-label {
    font-size: 26px;
  }

  .project-feature-label .project-detail-link {
    white-space: nowrap;
  }
}

@media (max-width: 1439px) and (min-width: 1024px) {
  .section-project-detail .project-detail-topbar {
    grid-template-columns: minmax(64px, 1fr) auto minmax(64px, 1fr);
    column-gap: 16px;
  }

  .section-project-detail .project-detail-title {
    justify-self: center;
    min-width: 0;
  }

  .project-title-desktop {
    display: inline-block;
    white-space: nowrap;
    font-size: 32px;
  }

  .section-project-detail .project-detail-nav-link-top.is-next {
    transform: translateX(20px);
  }
}

.footer-grid {
  padding: 25px 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 108px;
  justify-content: start;
}

.footer-brand,
.footer-title {
  margin: 0 0 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.015em;
  line-height: 1.6;
}

.footer-title {
  font-weight: 500;
}

.footer-grid > div:first-child .footer-title {
  margin-bottom: 0;
}

.footer-grid > div:nth-child(2) .footer-brand {
  margin-bottom: 0;
}

.footer-tagline {
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.footer-grid p:not(.footer-brand):not(.footer-title):not(.footer-tagline),
.footer-grid li,
.footer-grid a {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent);
}

.footer-address {
  margin-top: 0;
  color: #f6f6f6;
}

.footer-address br:first-child {
  display: none;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.copyright {
  border-top: 2px solid rgba(246, 246, 246, 0.31);
  text-align: center;
  padding: 16px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 1439px) and (min-width: 769px) {
  .home-page .section-about-home .about-grid {
    grid-template-columns: 1fr;
  }

  .home-page .section-about-home .about-grid > div {
    order: 1;
  }

  .home-page .section-about-home .about-home-image {
    order: 2;
    height: 300px;
    object-position: center 78%;
  }
}

@media (max-width: 1200px) and (min-width: 961px) {
  .home-page .section-about-home .about-home-image {
    object-position: center 88%;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .topbar-inner {
    min-height: 74px;
    gap: 12px;
    padding: 12px 0;
    position: relative;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand img {
    width: 220px;
    margin-left: -10px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    gap: 5.25px;
    border-radius: 4px;
    border-width: 1.75px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.75px;
  }

  .site-nav {
    display: block;
    position: absolute;
    top: calc(100% + 2px);
    left: calc(50% - 50vw);
    width: 100vw;
    background: #ffaa00;
    border-top: 1px solid rgba(60, 60, 59, 0.35);
    border-bottom: 2px solid #3c3c3b;
    padding: 0 var(--page-padding-tablet);
    z-index: 25;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 360ms ease, visibility 0ms linear 360ms;
  }

  .site-nav.is-open {
    max-height: 320px;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 420ms ease, visibility 0ms linear 0ms;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-10px);
    transition: transform 360ms ease;
  }

  .site-nav.is-open .menu {
    transform: translateY(0);
    transition: transform 420ms ease;
  }

  .menu li {
    width: 100%;
    border-top: 1px solid rgba(60, 60, 59, 0.25);
  }

  .menu li:first-child {
    border-top: 0;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 12px 2px;
    font-size: 1.16rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .home-page .section-about-home .about-home-image {
    object-position: center 98%;
  }

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

  .footer-grid > div:first-child {
    display: none;
  }
}

@keyframes reveal {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  html {
    font-size: 12px;
  }

  .brand img {
    margin-left: -10px;
  }

  .topbar-inner {
    min-height: 82px;
  }

  .menu {
    gap: 18px;
  }

  .about-grid,
  .project-copy,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .project-feature,
  .project-feature.is-reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-feature.is-reverse .project-feature-copy,
  .project-feature.is-reverse .project-feature-media {
    order: initial;
  }

  .project-feature-copy {
    max-width: none;
    padding: 24px 22px;
  }

  .about-page-media {
    aspect-ratio: 16 / 9;
  }

  .about-section-divider {
    margin: 84px 0;
  }

  .project-detail-copy {
    max-width: none;
  }

  .section-project-detail .project-detail-topbar,
  .section-project-detail .project-detail-intro-block {
    grid-template-columns: 1fr;
  }

  .section-project-detail .project-detail-topbar {
    row-gap: 18px;
  }

  .section-project-detail .project-detail-topbar-side.is-next {
    justify-content: flex-start;
  }

  .section-project-detail .project-detail-nav-link-top.is-prev,
  .section-project-detail .project-detail-nav-link-top.is-next {
    text-align: left;
  }

  .section-project-detail .project-detail-intro-block {
    row-gap: 20px;
  }

  .section-project-detail .project-detail-intro-rule {
    display: none;
  }

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

  .project-detail-hero-serravalle {
    aspect-ratio: 16 / 9;
  }

  .project-detail-nav {
    padding-bottom: 84px;
  }

  .services-module {
    grid-template-columns: 1fr;
  }

  .services-page-card {
    min-height: 0;
  }

  .contact-field input {
    min-height: 62px;
  }

  .contact-field textarea {
    min-height: 210px;
  }
}

@media (max-width: 960px) and (min-width: 769px) {
  .topbar-inner {
    min-height: 74px;
  }
}

@media (max-width: 1023px) and (min-width: 900px) {
  .section-project-detail .project-detail-topbar {
    grid-template-columns: minmax(64px, 1fr) auto minmax(64px, 1fr);
    column-gap: 16px;
    row-gap: 0;
  }

  .section-project-detail .project-detail-topbar-side.is-next {
    justify-content: flex-end;
  }

  .section-project-detail .project-detail-nav-link-top.is-prev {
    text-align: left;
  }

  .section-project-detail .project-detail-nav-link-top.is-next {
    text-align: right;
  }

  .section-project-detail .project-detail-title {
    justify-self: center;
    min-width: 0;
  }

  .section-project-detail .project-title-desktop {
    display: inline-block;
    white-space: nowrap;
    font-size: 32px;
  }

  .section-project-detail .project-title-mobile {
    display: none !important;
  }

  .section-project-detail .project-detail-nav-link-top.is-next {
    transform: translateX(20px);
  }
}

@media (max-width: 899px) and (min-width: 769px) {
  .section-project-detail .project-detail-topbar {
    grid-template-columns: minmax(64px, 1fr) auto minmax(64px, 1fr);
    column-gap: 16px;
    row-gap: 0;
  }

  .section-project-detail .project-detail-topbar-side.is-next {
    justify-content: flex-end;
  }

  .section-project-detail .project-detail-nav-link-top.is-prev {
    text-align: left;
  }

  .section-project-detail .project-detail-nav-link-top.is-next {
    text-align: right;
  }

  .section-project-detail .project-detail-title {
    justify-self: center;
    min-width: 0;
  }

  .section-project-detail .project-title-desktop {
    display: inline-block;
    white-space: nowrap;
    font-size: 32px;
  }

  .section-project-detail .project-title-mobile {
    display: none !important;
  }

  .section-project-detail .project-detail-nav-link-top.is-next {
    transform: translateX(20px);
  }
}

@media (max-width: 1024px) {
  .project-feature-copy p:not(.project-feature-label),
  .project-feature-meta {
    font-size: 18px;
    line-height: 30px;
  }

  .home-page #about .about-text,
  .home-page .section-why p,
  .home-page #services .service-card p {
    font-size: 18px;
    line-height: 30px;
  }

  .services-page .service-card p,
  .services-page .services-module p {
    font-size: 18px;
    line-height: 30px;
  }

  .container {
    width: calc(100vw - (var(--page-padding-tablet) * 2));
  }
}

@media (min-width: 1024px) and (max-width: 1024px) {
  .container {
    width: min(var(--max-width), calc(100vw - (var(--page-padding-desktop) * 2)));
  }

  .footer-grid {
    grid-template-columns: auto auto;
    gap: 108px;
    justify-content: start;
  }

  .footer-grid > div:first-child {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    gap: 30px;
  }

  .footer-grid > div:first-child {
    display: none;
  }

  .footer-brand,
  .footer-title,
  .footer-grid p:not(.footer-brand):not(.footer-title):not(.footer-tagline),
  .footer-grid li,
  .footer-grid a {
    font-size: 14px;
  }

  .copyright {
    font-size: 12px;
    white-space: nowrap;
  }

  .footer-grid > div:nth-child(2) {
    order: 1;
  }

  .topbar-inner {
    min-height: 74px;
    gap: 12px;
    padding: 12px 0;
    position: relative;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand img {
    width: 220px;
    margin-left: -10px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    gap: 5.25px;
    border-radius: 4px;
    border-width: 1.75px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.75px;
  }

  .site-nav {
    display: block;
    position: absolute;
    top: calc(100% + 2px);
    left: calc(50% - 50vw);
    width: 100vw;
    background: #ffaa00;
    border-top: 1px solid rgba(60, 60, 59, 0.35);
    border-bottom: 2px solid #3c3c3b;
    padding: 0 var(--page-padding-mobile);
    z-index: 25;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 360ms ease, visibility 0ms linear 360ms;
  }

  .site-nav.is-open {
    max-height: 320px;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 420ms ease, visibility 0ms linear 0ms;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-10px);
    transition: transform 360ms ease;
  }

  .site-nav.is-open .menu {
    transform: translateY(0);
    transition: transform 420ms ease;
  }

  .menu li {
    width: 100%;
    border-top: 1px solid rgba(60, 60, 59, 0.25);
  }

  .menu li:first-child {
    border-top: 0;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 12px 2px;
    font-size: 1.16rem;
  }

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

  .section-contact-page {
    padding-top: 84px;
  }

  .section-about-page {
    padding-top: 84px;
  }

  .section-services-page {
    padding-top: 84px;
  }

  .section-project-detail {
    padding-top: 84px;
  }

  .section-contact-page .container {
    padding-bottom: 72px;
  }

  .section-about-page .container {
    padding-bottom: 72px;
  }

  .services-module {
    margin-top: 0;
  }

  .services-module + .services-module {
    margin-top: 24px;
    padding-top: 0;
  }

  .services-intro + .services-section-divider {
    margin: 72px 0 86px;
  }

  .projects-area-band {
    margin-bottom: 84px;
  }

  .project-intro + .projects-area-band {
    margin-top: 84px;
  }

  .project-feature-copy {
    order: 2;
  }

  .project-feature.is-reverse .project-feature-copy {
    order: 2;
  }

  .project-feature-media {
    order: 1;
  }

  .project-feature.is-reverse .project-feature-media {
    order: 1;
  }

  .project-detail-copy {
    margin-top: 84px;
  }

  .section-project-detail .project-section-divider {
    margin: 84px 0;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 14px 16px;
  }

  .contact-field textarea {
    min-height: 180px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .project-intro + .projects-area-band {
    margin-top: 72px;
  }

  .projects-region-grid + .projects-area-band {
    margin-top: 84px;
  }

  #projects.section-projects-page .container {
    padding-bottom: 72px;
  }

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

  .projects-region-grid .project-feature {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto;
    height: 100%;
    align-content: start;
  }

  .projects-region-grid .project-feature-last {
    margin-bottom: 0;
  }

  .projects-region-grid .project-feature + .project-feature {
    margin-top: 0;
  }

  .projects-region-grid .project-feature-copy {
    order: 2;
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .projects-region-grid .project-feature.is-reverse .project-feature-copy {
    order: 2;
  }

  .projects-region-grid .project-feature-media,
  .projects-region-grid .project-feature.is-reverse .project-feature-media {
    order: 1;
    height: 260px;
    aspect-ratio: auto;
  }

  .projects-region-grid .project-feature-label {
    font-size: 22px;
    line-height: 1.05;
  }

  .projects-region-grid .project-feature img {
    aspect-ratio: auto;
    height: 100%;
  }

  .projects-region-grid .project-feature-copy p:not(.project-feature-label) {
    margin-top: 18px;
    padding-top: 18px;
  }

  .projects-region-grid .project-feature-label .project-detail-link {
    white-space: nowrap;
  }
}

@media (max-width: 1024px) and (min-width: 900px) {
  .projects-region-grid:last-of-type {
    margin-bottom: 96px;
  }

  #projects.section-projects-page .container {
    padding-bottom: 0;
  }
}

@media (max-width: 899px) and (min-width: 769px) {
  .projects-area-band {
    margin-bottom: 36px;
  }

  .project-intro + .projects-area-band {
    margin-top: 52px;
  }

  .projects-region-grid + .projects-area-band {
    margin-top: 52px;
  }

  .section-projects-page .container {
    margin-bottom: -12px;
  }

  #projects.section-projects-page .container {
    padding-bottom: 0;
    margin-bottom: -12px;
  }

  .projects-region-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projects-region-grid:last-of-type {
    margin-bottom: 96px;
  }

  .projects-region-grid .project-feature {
    grid-template-rows: none;
    height: auto;
    align-content: stretch;
  }

  .projects-region-grid .project-feature-last {
    margin-bottom: 0;
  }

  .projects-region-grid .project-feature + .project-feature {
    margin-top: 28px;
  }

  .projects-region-grid .project-feature-copy {
    padding: 28px 30px 30px;
  }

  .projects-region-grid .project-feature-media,
  .projects-region-grid .project-feature.is-reverse .project-feature-media {
    height: auto;
    aspect-ratio: auto;
  }

  .projects-region-grid .project-feature-label {
    font-size: 25px;
  }

  .project-title-full {
    display: none;
  }

  .project-title-mobile {
    display: inline;
  }

  .projects-region-grid .project-feature-label .project-detail-link {
    white-space: nowrap;
  }

  .projects-region-grid .project-feature-copy p:not(.project-feature-label),
  .projects-region-grid .project-feature-meta {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 768px) {
  .project-detail-hero {
    aspect-ratio: 16 / 9;
  }

  .section-project-detail {
    padding-top: 40px;
  }

  .section-project-detail .project-detail-title {
    font-size: 25px;
    line-height: 1.05;
    font-weight: 400;
    text-align: left;
    color: #f6f6f6;
    text-transform: none;
  }

  .project-title-desktop {
    display: none;
  }

  .project-title-mobile {
    display: inline;
  }

  .project-specs-desktop {
    display: none;
  }

  .project-specs-mobile {
    display: block;
  }

  .section-project-detail .project-detail-intro-block {
    row-gap: 18px;
    margin-top: 18px;
  }

  .section-project-detail .project-detail-intro-rule {
    display: block;
    width: 100%;
    height: 1.5px;
    background: rgba(246, 246, 246, 0.8);
  }

  .section-project-detail .project-detail-specs {
    order: 2;
  }

  .section-project-detail .project-detail-intro-rule {
    order: 1;
  }

  .section-project-detail .project-detail-specs::after {
    content: "";
    display: block;
    width: 100%;
    height: 1.5px;
    margin-top: 18px;
    background: rgba(246, 246, 246, 0.8);
  }

  .section-project-detail .project-detail-copy {
    order: 3;
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
    color: var(--muted);
    text-align: left;
  }

  .section-project-detail .project-detail-specs p {
    color: #f6f6f6;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-align: left;
  }

  .section-project-detail .project-specs-mobile {
    white-space: nowrap;
  }

  .section-project-detail .project-section-divider {
    border-top-color: rgba(255, 170, 0, 0.8);
    margin: 36px 0 44px;
  }

  .project-detail-gallery {
    gap: 28px;
    padding-bottom: 10px;
  }

  .section-project-detail .project-detail-topbar {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .section-project-detail .project-detail-topbar-side {
    display: none;
  }

  .services-intro + .services-section-divider {
    display: block;
    margin: 36px 0 44px;
  }

  .section-projects-page .container {
    margin-bottom: -12px;
  }

  .projects-area-band {
    margin-bottom: 36px;
  }

  .project-intro + .projects-area-band {
    margin-top: 52px;
  }

  .projects-region-grid + .projects-area-band {
    margin-top: 52px;
  }

  .project-feature + .projects-area-band {
    margin-top: 52px;
  }

  .project-feature + .project-feature {
    margin-top: 28px;
  }

  .contact-form {
    gap: 24px;
  }

  .section-contact-page .container {
    padding-bottom: 12px;
  }

  .services-module {
    gap: 28px;
  }

  .services-section-divider + .services-module {
    margin-top: 28px;
  }

  .services-page-card {
    padding: 18px 22px 24px;
    border: 1.5px solid var(--muted);
    border-radius: 10px;
    overflow: hidden;
    background:
      linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)) top / 100% 58px no-repeat,
      transparent;
    scroll-margin-top: 30svh;
  }

  .services-page-card-header {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .services-page-card h3 {
    margin: 0;
    color: inherit;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 400;
  }

  .services-page-card-divider {
    display: block;
    width: calc(100% + 44px);
    margin: 12px 0;
    position: relative;
    left: -22px;
    border-top-color: var(--muted);
    border-top-width: 1.5px;
  }

  .services-page-card p {
    padding: 0;
  }

  .section-services-page .container {
    padding-bottom: 0;
    margin-bottom: 12px;
  }

  .section-about-page .container {
    display: flex;
    flex-direction: column;
  }

  .section-about-page h2 {
    order: 1;
  }

  .section-about-page .about-page-media {
    order: 2;
    margin-top: 8px;
  }

  .section-about-page .about-page-copy {
    order: 3;
    margin-top: 30px;
  }

  .section-about-page .container {
    padding-bottom: 70px;
  }

  .section-about-page .about-section-divider {
    display: none;
  }

  .about-mobile-inline-tail {
    display: inline;
  }

  .home-page #about .eyebrow,
  .home-page #services h2,
  .home-page #projects h2,
  .home-page .section-why h2 {
    font-size: 34px;
  }

  .section-about.section-about-page h2 {
    font-size: 34px;
    line-height: 1;
  }

  .section-services-page h2,
  .section-projects-page h2,
  .section-contact-page h2 {
    font-size: 34px;
    line-height: 1;
  }

  .about-page-copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .services-page .services-intro,
  .projects-page .project-intro {
    font-size: 16px;
    line-height: 26px;
  }

  .home-page .project-card .project-region-bar,
  .home-page .project-card .bar {
    font-size: 14px;
  }

  .section-about-home {
    padding-top: 40px;
  }

  .section-about-page {
    padding-top: 40px;
  }

  .section-services-page,
  .section-projects-page,
  .section-contact-page {
    padding-top: 40px;
  }

  .section-about-home .container {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #services .container,
  #projects .container {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .hero {
    border-bottom: 2px solid rgba(255, 170, 0, 0.8);
  }

  .about-text-desktop {
    display: none;
  }

  .home-page #about .eyebrow {
    margin: 0;
  }

  .about-text-mobile-short {
    display: block;
    margin-top: -16px;
  }

  .about-text-mobile-hide,
  .about-home-image {
    display: none;
  }

  .about-mobile-divider {
    display: block;
    width: 100vw;
    height: 2px;
    margin: 70px 0 0 calc(50% - 50vw);
    background: rgba(255, 170, 0, 0.8);
  }

  .services-mobile-divider,
  .projects-mobile-divider {
    display: block;
    width: 100vw;
    height: 2px;
    margin: 80px 0 0 calc(50% - 50vw);
    background: rgba(255, 170, 0, 0.8);
  }

  .hero {
    aspect-ratio: auto;
    min-height: calc(100svh - 74px);
    background-image: url("assets/Imagen Hero Serravalle Final 2.jpg?v=20260620a");
    background-position: 83% center;
  }

  .hero-overlay {
    min-height: calc(100svh - 74px);
    padding: 0 0 70px;
    align-items: end;
  }

  .hero-content {
    width: 100%;
    align-items: flex-start;
    transform: translateX(-1px);
  }

  .hero-scroll-arrow {
    display: none;
  }

  .hero-content h1 {
    display: grid;
    justify-items: start;
    row-gap: 0;
    font-size: clamp(29px, 10.6vw, 40px);
    line-height: 1.11;
    text-align: left;
    letter-spacing: 0;
  }

  .hero-title-desktop-line {
    display: none;
  }

  .hero-title-mobile-line {
    display: block;
    text-align: left;
    margin-inline: 0;
  }

  .hero-mobile-divider {
    display: block;
    width: 144px;
    height: 1.5px;
    margin: 24px 0 22px 2px;
    background: var(--muted);
  }

  .hero-content p {
    margin: 0;
    max-width: 100%;
    font-size: clamp(19px, 6.3vw, 27px);
    line-height: 1.16;
    text-align: left;
    text-wrap: initial;
  }

  .hero-subtitle-desktop-line {
    display: none;
  }

  .hero-subtitle-mobile-line {
    display: block;
  }

  .project-feature-label {
    font-size: 25px;
  }

  .project-title-full {
    display: none;
  }

  .project-title-mobile {
    display: inline;
  }

  .project-feature-label .project-detail-link {
    white-space: nowrap;
  }

  .project-feature-copy p:not(.project-feature-label),
  .project-feature-meta {
    font-size: 16px;
    line-height: 26px;
  }

  .home-page #services .service-grid {
    display: none;
  }

  .home-services-mobile-card {
    display: block;
    border: 1.5px solid var(--muted);
    border-radius: 10px;
    overflow: hidden;
  }

  .home-services-mobile-item {
    display: block;
    padding: 16px 22px;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 400;
    color: #f6f6f6;
    text-decoration: none;
  }

  .home-services-mobile-item:nth-child(odd) {
    background: rgba(0, 0, 0, 0.22);
  }

  .home-services-mobile-item:hover,
  .home-services-mobile-item:focus-visible {
    color: var(--accent);
  }

  .home-services-mobile-item:focus-visible {
    outline: 2px solid rgba(255, 170, 0, 0.85);
    outline-offset: -2px;
  }

  .home-services-mobile-item + .home-services-mobile-item {
    border-top: 1.5px solid var(--muted);
  }

  .home-page #projects .project-grid {
    gap: 28px;
  }

  .home-page #services {
    padding-top: 40px;
  }

  .home-page #services .service-link {
    display: none;
  }

  .home-page #projects {
    padding-top: 40px;
  }

  .home-page .section-why {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .home-page #services .service-card:last-child {
    display: none;
  }

  .home-page #about .about-text,
  .home-page .section-why p,
  .home-page #services .service-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .home-page .about-link.home-link-lowercase {
    font-size: 16px;
    line-height: 26px;
  }

  .section-about-home .about-link {
    padding-top: 10px;
  }

  .about-link-mobile-inline {
    display: inline;
    padding-top: 0;
    margin-left: 2px;
  }

  .about-link-mobile-standalone {
    display: none;
  }

  .home-page #services .service-card h3 {
    font-size: 25px;
  }

  .services-page-card h3 {
    font-size: 25px;
  }

  .services-page .service-card p,
  .services-page .services-module p {
    font-size: 16px;
    line-height: 26px;
  }

  .services-page-card {
    padding: 15px 22px 32px;
  }

  .services-page-card-divider {
    margin: 15px 0;
  }

  .services-module + .services-module {
    border-top: 0;
    margin-top: 24px;
    padding-top: 0;
  }

  .container {
    width: calc(100vw - (var(--page-padding-mobile) * 2));
  }
}
