@font-face {
  font-family: "Aviano";
  src: url("https://talud.arca-grupo.com/assets/fonts/AvianoSlabW00-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Sentient";
  src: url("https://talud.arca-grupo.com/assets/fonts/Sentient-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --forest: #283d0f;
  --forest-deep: #17240c;
  --moss: #1c3730;
  --paper: #fafaf5;
  --sand: #ede9e2;
  --clay: #ad3d17;
  --line: rgba(40, 61, 15, 0.18);
  --shadow: 0 20px 60px rgba(23, 36, 12, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--forest);
  font-family: "Sentient", Georgia, serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--forest);
  padding: 10px 14px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(250, 250, 245, 0.78);
  color: var(--forest);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(250, 250, 245, 0.94);
  box-shadow: 0 14px 34px rgba(23, 36, 12, 0.12);
}

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

.menu-button,
.language-toggle {
  font: inherit;
}

.menu-button {
  display: none;
  margin-left: auto;
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  padding: 9px 14px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a,
.language-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-family: "Aviano", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0;
  text-decoration: none;
}

.language-toggle {
  min-height: 34px;
  padding: 5px 9px;
  border: 1px solid rgba(40, 61, 15, 0.16);
  background: rgba(250, 250, 245, 0.48);
  font-size: 12px;
}

.site-nav a:hover,
.language-toggle:hover {
  color: var(--clay);
}

.site-nav .nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--forest);
  background: var(--forest) !important;
  background-color: var(--forest) !important;
  color: #fff !important;
  padding: 9px 15px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 36, 12, 0.16);
}

.site-nav .nav-action:hover {
  background: var(--forest-deep) !important;
  background-color: var(--forest-deep) !important;
  border-color: var(--forest-deep);
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
}

.hero-media,
.hero-media video,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  z-index: 1;
}

.hero-media img {
  z-index: 0;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(23, 36, 12, 0.22), rgba(23, 36, 12, 0.6)),
    rgba(23, 36, 12, 0.18);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - 36px));
  padding-top: 90px;
}

.kicker,
.site-nav a,
.button,
.model-grid h3,
.faq summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  letter-spacing: 0;
}

.hero .kicker {
  color: var(--paper);
}

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

h1 {
  margin-bottom: 18px;
  font-family: "Aviano", Georgia, serif;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.04;
}

.hero p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(250, 250, 245, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 20px;
  color: inherit;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

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

.button-light {
  color: var(--paper);
}

.button-light:hover {
  background: var(--paper);
  color: var(--forest);
}

.button-dark {
  background: var(--forest);
  color: var(--paper);
}

.section {
  padding: clamp(54px, 6.5vw, 92px) 24px;
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.intro {
  display: block;
  background: #dad4c9;
  text-align: center;
}

.intro > * {
  max-width: 900px;
}

.section-heading p,
.feature p,
.contact p,
.model-grid p,
.faq p {
  color: #40522b;
  font-size: 18px;
}

.centered {
  text-align: center;
}

.inventory {
  background: #f4f1ea;
}

.lot-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid var(--line);
  background: rgba(250, 250, 245, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lot-visual {
  position: relative;
  display: grid;
  min-height: clamp(245px, 34vw, 350px);
  margin-bottom: clamp(-116px, -9vw, -72px);
  place-items: center;
  overflow: hidden;
}

.lot-visual::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(40, 61, 15, 0.16);
  transform: rotate(-3deg);
}

.lot-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: contrast(1.04);
  opacity: 0.9;
  transform: scale(1);
}

.lot-visual img.is-transitioning {
  animation: lotFade 520ms ease both;
}

@keyframes lotFade {
  0% {
    opacity: 0.34;
    filter: brightness(0.62) saturate(0.6);
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    filter: contrast(1.04);
    transform: scale(1);
  }
}

.lot-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px) clamp(10px, 2vw, 18px) 0;
  background: linear-gradient(
    180deg,
    rgba(250, 250, 245, 0),
    rgba(250, 250, 245, 0.86) 18%,
    rgba(250, 250, 245, 0.96) 100%
  );
  text-align: center;
}

.lot-copy .kicker {
  margin-bottom: 6px;
}

.lot-copy h3 {
  margin-bottom: 4px;
  font-family: "Aviano", Georgia, serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.08;
}

.lot-price {
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 19px;
  font-weight: 700;
}

.lot-copy p:not(.kicker):not(.lot-price) {
  margin-bottom: 0;
}

.lot-actions {
  display: grid;
  grid-template-columns: 58px minmax(160px, 1fr) 58px;
  gap: 8px;
  align-items: center;
  width: min(100%, 460px);
  margin: 10px auto 0;
}

.lot-arrow {
  min-width: 50px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-family: "Aviano", Georgia, serif;
}

.lot-arrow:hover {
  border-color: var(--forest);
  background: rgba(40, 61, 15, 0.06);
}

.lot-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 560px;
  margin: 12px auto 0;
}

.lot-dot {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-family: "Aviano", Georgia, serif;
}

.lot-dot[aria-selected="true"] {
  background: var(--forest);
  color: var(--paper);
}

.lot-hint {
  max-width: 580px;
  margin: 8px auto 0;
  color: #40522b;
  font-size: 16px;
  text-align: center;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  background: var(--sand);
}

.feature > * {
  max-width: none;
}

.feature img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: saturate(1.01) contrast(1.025);
}

.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

figure {
  margin: 0;
  background: var(--sand);
  overflow: hidden;
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.004);
  filter: saturate(1.01) contrast(1.025);
  animation: landscapeDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

figure:nth-child(2) img {
  animation-delay: 900ms;
}

figure:nth-child(3) img {
  animation-delay: 1800ms;
}

figure:nth-child(4) img {
  animation-delay: 2700ms;
}

figure:hover img {
  transform: scale(1);
}

@keyframes landscapeDrift {
  from {
    transform: scale(1.012) translateX(-0.35%);
  }
  to {
    transform: scale(1) translateX(0.35%);
  }
}

figcaption {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  font-family: "Aviano", Georgia, serif;
  font-size: 13px;
  text-align: center;
}

.models {
  background: #dad4c9;
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 860px;
}

.model-grid article {
  display: grid;
  grid-template-columns: 108px 150px 1fr;
  gap: 10px 16px;
  align-items: center;
  justify-items: center;
  padding: 14px 16px;
  background: rgba(250, 250, 245, 0.7);
  border: 1px solid var(--line);
  text-align: center;
  animation: modelRise 360ms ease-out both;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.model-grid article:nth-child(2) {
  animation-delay: 70ms;
}

.model-grid article:nth-child(3) {
  animation-delay: 140ms;
}

.model-grid article:hover {
  border-color: rgba(40, 61, 15, 0.32);
  box-shadow: 0 14px 34px rgba(23, 36, 12, 0.1);
  transform: translateY(-3px);
}

@keyframes modelRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.model-grid span {
  display: block;
  min-width: 88px;
  margin-bottom: 0;
  color: var(--clay);
  font-weight: 700;
}

.model-grid h3,
.model-grid p {
  margin: 0;
}

.faq {
  background: #f4f1ea;
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: 820px;
}

details {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 4px 16px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

details:hover,
details[open] {
  border-color: rgba(40, 61, 15, 0.32);
  box-shadow: 0 12px 28px rgba(23, 36, 12, 0.08);
  transform: translateY(-2px);
}

summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
}

details p {
  max-width: 680px;
  margin: 10px auto 4px;
  text-align: center;
}

details[open] p {
  animation: faqReveal 220ms ease-out both;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(560px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  background: var(--paper);
}

.contact > * {
  max-width: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  padding: clamp(28px, 3vw, 38px);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label:nth-of-type(4),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fafaf5;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 170ms ease, background 170ms ease;
  touch-action: manipulation;
}

.whatsapp:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.whatsapp svg {
  display: block;
}

.footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 52px 24px;
  text-align: center;
}

.footer img {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.footer-logo {
  aspect-ratio: 216 / 76;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .language-toggle {
    min-height: 46px;
    text-align: left;
  }

  .language-toggle {
    justify-content: flex-start;
    border-color: transparent;
    background: transparent;
    padding-inline: 0;
  }

  .intro,
  .feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .lot-spotlight {
    max-width: 560px;
  }

  .lot-visual {
    min-height: 250px;
    margin-bottom: -88px;
  }

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

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .brand img {
    width: 96px;
  }

  h1 {
    font-size: 38px;
  }

  .actions,
  .button {
    width: 100%;
  }

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

  .model-grid article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lot-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .lot-actions .button,
  .lot-arrow {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .hero-media video {
    display: none;
  }

  .model-grid article,
  details,
  figure img {
    animation: none !important;
    transform: none !important;
  }
}
