:root {
  --bone: #f5f1ea;
  --sandstone: #d8cbb8;
  --charcoal: #2b2b2b;
  --sagebrush: #6e7763;
  --deep-earth: #5a4638;
  --bronze: #8a6a45;
  --ink: #171717;
  --white: #ffffff;
  --line-dark: rgba(43, 43, 43, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 28px 80px rgba(24, 22, 20, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

section,
footer {
  scroll-margin-top: 96px;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 4px;
}

.skip-link {
  background: var(--sandstone);
  color: var(--ink);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -6rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  background: rgba(24, 22, 20, 0.9);
  color: var(--white);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(24, 22, 20, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 86px;
  padding: 0 1.5rem;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.brand img {
  height: 58px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.35rem;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after {
  background: var(--sandstone);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.nav-toggle svg {
  height: 24px;
  width: 24px;
}

.hero {
  color: var(--white);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/vistas-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.84) 0%, rgba(18, 17, 15, 0.58) 42%, rgba(18, 17, 15, 0.18) 78%),
    linear-gradient(180deg, rgba(18, 17, 15, 0.42) 0%, rgba(18, 17, 15, 0.06) 44%, rgba(18, 17, 15, 0.82) 100%);
}

.hero-copy {
  margin: 0 auto;
  max-width: var(--max);
  min-height: 100vh;
  padding: 9rem 1.5rem 12rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--bronze);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-copy .eyebrow,
.readiness .eyebrow {
  color: var(--sandstone);
}

.hero h1,
.intro-statement h2,
.section-heading h2,
.project-copy h2,
.story-copy h2,
.lifestyle-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 5.7rem;
  line-height: 0.95;
  margin: 0;
  max-width: 840px;
}

.hero-line {
  color: var(--sandstone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
  margin: 1.25rem 0 0;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  margin: 1.4rem 0 0;
  max-width: 650px;
}

.hero-actions,
.project-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 0.7rem;
  justify-content: center;
  letter-spacing: 0;
  min-height: 50px;
  padding: 0.9rem 1.15rem;
  text-align: center;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button svg {
  height: 20px;
  width: 20px;
}

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

.button-light {
  background: var(--bone);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--sandstone);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
  width: 100%;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--deep-earth);
}

.button-fit {
  width: auto;
}

.hero-index {
  background: rgba(24, 22, 20, 0.88);
  border-top: 1px solid var(--line-light);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.hero-index div {
  border-right: 1px solid var(--line-light);
  min-height: 116px;
  padding: 1.25rem max(1.25rem, calc((100vw - var(--max)) / 8));
}

.hero-index div:last-child {
  border-right: 0;
}

.hero-index span,
.metric span {
  color: var(--sandstone);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-index strong,
.metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.12;
  margin-top: 0.4rem;
}

.section {
  padding: 6.5rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
}

.intro,
.featured-project,
.project-story,
.lifestyle,
.about,
.contact-section {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
}

.intro-statement h2,
.section-heading h2,
.project-copy h2,
.story-copy h2,
.lifestyle-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-size: 3.45rem;
  line-height: 1.02;
  margin: 0;
}

.intro-copy,
.about-list {
  border-left: 1px solid var(--line-dark);
  color: rgba(43, 43, 43, 0.76);
  display: grid;
  gap: 1.2rem;
  padding-left: 2rem;
}

.intro-copy p,
.project-copy p,
.story-copy p,
.lifestyle-copy p,
.about-copy p,
.contact-copy p,
.section-heading p {
  font-size: 1.06rem;
  margin: 0;
}

.section-heading p,
.project-copy p,
.story-copy p,
.lifestyle-copy p,
.about-copy p {
  color: rgba(43, 43, 43, 0.76);
  margin-top: 1.15rem;
}

.what-we-do {
  background: var(--charcoal);
  color: var(--white);
}

.what-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.what-card {
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid var(--line-light);
  min-height: 310px;
  padding: 2rem;
}

.what-card:last-child {
  border-right: 0;
}

.what-card span {
  color: var(--sandstone);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin-bottom: 4.5rem;
}

.what-card h3,
.project-card h3,
.audience-grid h3 {
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.what-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.featured-project,
.project-story {
  background: var(--sandstone);
  align-items: center;
}

.project-subtitle {
  color: var(--bronze);
  font-weight: 800;
  text-transform: uppercase;
}

.project-media,
.story-media,
.plan-map {
  margin: 0;
}

.project-media img,
.story-media img {
  box-shadow: var(--shadow);
  height: 560px;
  object-fit: cover;
  width: 100%;
}

.metrics {
  background: var(--deep-earth);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 2rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
}

.metric {
  border-right: 1px solid var(--line-light);
  min-height: 120px;
  padding: 0 1.25rem;
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  border-right: 0;
  padding-right: 0;
}

.metric small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 0.25rem;
}

.project-story {
  background: var(--bone);
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.72fr);
}

.plan-section {
  background: var(--bone);
}

.section-heading {
  max-width: 880px;
}

.plan-experience {
  align-items: stretch;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  margin-top: 3rem;
}

.plan-control {
  display: grid;
  gap: 0.85rem;
}

.phase-button {
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--charcoal);
  cursor: pointer;
  min-height: 136px;
  padding: 1.2rem;
  text-align: left;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.phase-button span {
  color: var(--bronze);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phase-button strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.12;
  margin-top: 0.5rem;
}

.phase-button small {
  display: block;
  line-height: 1.45;
  margin-top: 0.55rem;
}

.phase-button.is-active,
.phase-button:hover,
.phase-button:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.plan-map {
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  min-height: 480px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.plan-map img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

.plan-map figcaption {
  color: rgba(43, 43, 43, 0.68);
  font-size: 0.88rem;
  margin-top: 0.8rem;
}

.plan-pin {
  background: rgba(43, 43, 43, 0.88);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  left: 50%;
  opacity: 0.4;
  padding: 0.45rem 0.6rem;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.pin-phase-1 {
  left: 38%;
  top: 43%;
}

.pin-commercial {
  left: 26%;
  top: 32%;
}

.pin-future {
  left: 68%;
  top: 48%;
}

.plan-map[data-active-phase="phase-1"] .pin-phase-1,
.plan-map[data-active-phase="commercial"] .pin-commercial,
.plan-map[data-active-phase="future"] .pin-future {
  background: var(--bronze);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

.lifestyle {
  background: var(--bone);
}

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

.image-grid img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.image-grid img:first-child {
  grid-column: 1 / -1;
  height: 380px;
}

.projects {
  background: var(--charcoal);
  color: var(--white);
}

.what-we-do .eyebrow,
.projects .eyebrow,
.what-we-do .section-heading p,
.projects .section-heading p,
.readiness .section-heading p {
  color: var(--sandstone);
}

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

.project-card {
  background: rgba(255, 255, 255, 0.06);
  min-height: 280px;
  padding: 1.5rem;
}

.project-card-featured {
  background: rgba(216, 203, 184, 0.14);
}

.project-card span {
  color: var(--sandstone);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.project-card p,
.audience-grid p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.project-card a {
  border-bottom: 1px solid var(--sandstone);
  color: var(--sandstone);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  margin-top: 1.2rem;
  text-transform: uppercase;
}

.about {
  background: var(--sandstone);
  align-items: center;
}

.about-list {
  background: rgba(255, 255, 255, 0.28);
  border-left: 0;
  gap: 0;
  padding: 0;
}

.about-list div {
  border-bottom: 1px solid var(--line-dark);
  padding: 1.3rem;
}

.about-list div:last-child {
  border-bottom: 0;
}

.about-list strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.about-list span {
  color: rgba(43, 43, 43, 0.72);
  display: block;
  margin-top: 0.45rem;
}

.readiness {
  background: var(--deep-earth);
  color: var(--white);
}

.audience-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.audience-grid article {
  background: rgba(255, 255, 255, 0.06);
  min-height: 235px;
  padding: 1.5rem;
}

.contact-section {
  background: var(--sagebrush);
  color: var(--white);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1.2rem;
  max-width: 650px;
}

.contact-details {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.contact-details a,
.contact-details span {
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
}

.contact-form {
  background: var(--bone);
  color: var(--charcoal);
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-form label {
  color: rgba(43, 43, 43, 0.74);
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.35rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--line-dark);
  color: var(--charcoal);
  min-height: 48px;
  padding: 0.85rem;
  width: 100%;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bronze);
  outline: 3px solid rgba(138, 106, 69, 0.22);
}

.form-status {
  color: var(--deep-earth);
  font-weight: 800;
  margin: 0;
  min-height: 1.4rem;
}

.site-footer {
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 1fr auto;
  padding: 1.5rem max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
}

.site-footer img {
  height: 56px;
  width: auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0.7rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

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

.copyright {
  font-size: 0.8rem;
  text-align: right;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 4.6rem;
  }

  .intro,
  .featured-project,
  .project-story,
  .plan-experience,
  .lifestyle,
  .about,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .metrics,
  .what-grid,
  .project-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-media img,
  .story-media img {
    height: 460px;
  }
}

@media (max-width: 840px) {
  section,
  footer {
    scroll-margin-top: 86px;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(24, 22, 20, 0.98);
    border-top: 1px solid var(--line-light);
    display: grid;
    gap: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    position: absolute;
    right: 0;
    top: 78px;
    transition: max-height 220ms ease, padding 220ms ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    max-height: 430px;
    padding-bottom: 1rem;
    padding-top: 1rem;
    visibility: visible;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 0;
  }

  .hero-copy {
    min-height: 0;
    padding-bottom: 3.25rem;
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-line {
    font-size: 1.55rem;
  }

  .hero-index,
  .metrics,
  .what-grid,
  .project-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-index {
    position: relative;
  }

  .hero-index div,
  .metric,
  .what-card {
    border-bottom: 1px solid var(--line-light);
    border-right: 0;
  }

  .hero-index div,
  .what-card,
  .project-card,
  .audience-grid article {
    min-height: auto;
  }

  .hero-index div:last-child,
  .metric:last-child,
  .what-card:last-child {
    border-bottom: 0;
  }

  .metric,
  .metric:first-child,
  .metric:last-child {
    padding: 1rem 0;
  }

  .intro-statement h2,
  .section-heading h2,
  .project-copy h2,
  .story-copy h2,
  .lifestyle-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }
.contact-copy {
  width: 80% !important;
  margin: 0 auto !important;
  padding-top: 40px !important;
}
  .intro-copy,
  .about-list {
    border-left: 0;
    padding-left: 0;
  }

  .project-card span {
    margin-bottom: 2.5rem;
  }

  .phase-button {
    min-height: auto;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 0.98rem;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .brand img {
    height: 42px;
    max-width: 232px;
    object-fit: contain;
  }

  .section,
  .contact-section {
    padding: 3.75rem 1rem;
  }
.contact-section {
  padding: 40px;
}
  .hero-copy {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-line {
    font-size: 1.32rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .project-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button-fit {
    width: 100%;
  }

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

  .image-grid img,
  .image-grid img:first-child,
  .project-media img,
  .story-media img {
    height: 290px;
  }

  .plan-map {
    min-height: 0;
    padding: 0.7rem;
  }

  .plan-map img {
    min-height: 0;
  }

  .plan-pin {
    display: none;
    font-size: 0.65rem;
    left: 1.15rem;
    padding: 0.35rem 0.45rem;
    top: 1.15rem;
    transform: none;
    z-index: 1;
  }

  .plan-map[data-active-phase="phase-1"] .pin-phase-1,
  .plan-map[data-active-phase="commercial"] .pin-commercial,
  .plan-map[data-active-phase="future"] .pin-future {
    display: inline-block;
    transform: none;
  }
}

@media (max-width: 380px) {
  .brand img {
    height: 38px;
    max-width: 210px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .intro-statement h2,
  .section-heading h2,
  .project-copy h2,
  .story-copy h2,
  .lifestyle-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .hero-index strong,
  .metric strong,
  .about-list strong {
    font-size: 1.25rem;
  }
}


.contact-copy {
    width: 80%;
    margin: 0 auto;
    padding-top: 40px;
}