@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("fonts/dm-serif-display-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("fonts/dm-serif-display-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --paper: #f5f0e5;
  --ink: #17383a;
  --pepper: #d85b32;
  --wheat: #e9dfc9;
  --sun: #f1cb84;
  --line: rgba(23, 56, 58, 0.17);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: var(--paper);
  background-image: radial-gradient(
    rgba(23, 56, 58, 0.045) 0.55px,
    transparent 0.7px
  );
  background-size: 5px 5px;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--pepper);
  color: #fff;
}
.display {
  font-family: "DM Serif Display", Georgia, serif;
}
.container {
  width: min(100% - 40px, 1440px);
  margin: auto;
}
.content {
  width: min(100% - 40px, 1320px);
  margin: auto;
}
.narrow {
  width: min(100% - 40px, 1120px);
  margin: auto;
}
.sale-strip {
  background: #ad3d25;
  color: #fff;
  position: relative;
  z-index: 55;
}
.sale-copy {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sale-copy span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.sale-copy a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  padding-bottom: 2px;
}
.header-spacer {
  height: 74px;
}
.main-header {
  position: fixed;
  inset-inline: 0;
  z-index: 50;
  height: 74px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 229, 0.96);
  box-shadow: 0 9px 24px rgba(23, 56, 58, 0.08);
  backdrop-filter: blur(12px);
  transition: top 0.2s ease;
}
.header-inner {
  height: 74px;
  width: min(100% - 40px, 1440px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand img {
  height: 41px;
  width: 41px;
  object-fit: contain;
}
.brand strong {
  font:
    400 26px/1 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.04em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 19px;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(23, 56, 58, 0.65);
  padding: 6px 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--pepper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  transform: scaleX(1);
}
.head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.project-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.head-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 22px;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 20px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font:
    400 25px/1 "DM Serif Display",
    Georgia,
    serif;
}
.mobile-menu .sale-button {
  display: inline-block;
  margin-top: 16px;
  border: 0;
  background: var(--pepper);
  color: #fff;
  padding: 13px 16px;
  font:
    700 11px/1 "DM Sans",
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pepper);
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.16s,
    background 0.18s,
    color 0.18s;
}
.button:active {
  transform: scale(0.97);
}
.button-pepper {
  background: var(--pepper);
  color: #fff;
}
.button-ink {
  background: var(--ink);
  color: #fff;
}
.button-sun {
  background: var(--sun);
  color: var(--ink);
}
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(23, 56, 58, 0.35);
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 45, 47, 0.92),
    rgba(17, 45, 47, 0.76) 39%,
    rgba(17, 45, 47, 0.22) 75%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 0;
}
.edition {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sun);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.edition:before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--sun);
}
.hero-copy {
  max-width: 900px;
  padding: 48px 0;
}
.hero-copy h1 {
  margin: 18px 0 0;
  font:
    400 clamp(64px, 9vw, 144px) / 0.82 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.07em;
}
.hero-copy em {
  color: var(--sun);
}
.hero-copy p {
  max-width: 540px;
  margin: 32px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
  font-size: 12px;
}
.hero-meta b {
  display: block;
  color: var(--sun);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-meta span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
}
.section {
  padding: 92px 0;
}
.section-wheat {
  background: var(--wheat);
}
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head h2 {
  margin: 10px 0 0;
  font:
    400 clamp(42px, 5vw, 72px) / 0.95 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.two-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  border-block: 1px solid var(--line);
}
.agenda-feature {
  display: flex;
  min-height: 354px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pepper);
  padding: 40px;
  color: #fff;
}
.agenda-feature h3 {
  margin: 38px 0 0;
  font:
    400 44px/0.92 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.04em;
}
.agenda-feature p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.agenda-short {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.agenda-short a {
  display: flex;
  gap: 22px;
  padding: 40px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
}
.agenda-short a:last-child {
  border-bottom: 0;
}
.agenda-short a:hover {
  background: var(--wheat);
}
.serial {
  font:
    400 42px/1 "DM Serif Display",
    Georgia,
    serif;
  color: var(--pepper);
}
.agenda-short h3 {
  margin: 8px 0 0;
  font:
    400 32px/1 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.04em;
}
.agenda-short p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.7);
}
.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story {
  border-top: 1px solid rgba(23, 56, 58, 0.25);
  padding-top: 16px;
}
.story.big {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.story-image {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.story-image img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  transition: transform 0.5s;
}
.story.big .story-image img {
  height: 100%;
}
.story:hover .story-image img {
  transform: scale(1.04);
}
.story-index {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}
.story h3 {
  margin: 12px 0 0;
  font:
    400 40px/0.93 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.story.big h3 {
  font-size: 50px;
}
.story p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.7);
}
.story .read {
  display: inline-flex;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.image-text-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.image-text-grid figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}
.image-text-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.image-text-grid h2 {
  margin: 10px 0 0;
  font:
    400 70px/0.92 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.image-text-grid p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(23, 56, 58, 0.72);
}
.route-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.route-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 13px;
  transition: background 0.18s;
}
.route-chip:hover {
  background: var(--wheat);
}
.route-chip span {
  display: grid;
  gap: 2px;
  flex: 1;
}
.route-chip b {
  font-size: 12px;
}
.route-chip small {
  font-size: 11px;
  color: rgba(23, 56, 58, 0.6);
}
.newsletter {
  text-align: center;
}
.newsletter h2 {
  max-width: 900px;
  margin: 18px auto 0;
  font:
    400 clamp(48px, 7vw, 92px) / 0.9 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.newsletter p {
  max-width: 550px;
  margin: 24px auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}
.footer {
  margin-top: 80px;
  background: var(--ink);
  color: var(--paper);
}
.footer-inner {
  padding: 64px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
}
.footer-brand strong {
  font:
    400 32px/1 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.04em;
}
.footer p {
  color: rgba(245, 240, 229, 0.7);
  font-size: 14px;
  line-height: 1.65;
}
.footer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
}
.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(245, 240, 229, 0.75);
}
.footer-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  padding-left: 22px;
}
.footer-contact a {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid var(--sun);
  padding-bottom: 4px;
  color: var(--sun);
  font-size: 14px;
}
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  color: rgba(245, 240, 229, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--wheat);
  padding: 96px 0;
}
.section-intro:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(
      113deg,
      transparent 0 48%,
      rgba(23, 56, 58, 0.18) 48.3% 48.7%,
      transparent 49%
    ),
    linear-gradient(
      22deg,
      transparent 0 53%,
      rgba(23, 56, 58, 0.13) 53.4% 53.8%,
      transparent 54%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 130px,
      rgba(23, 56, 58, 0.08) 131px 132px
    );
}
.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 32px;
  align-items: end;
}
.coordinate-stamp {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid rgba(23, 56, 58, 0.25);
  padding: 7px 8px;
  color: rgba(23, 56, 58, 0.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.coordinate-stamp img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  margin-left: 3px;
}
.section-intro h1 {
  margin: 0;
  font:
    400 clamp(55px, 8vw, 118px) / 0.91 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.section-intro p {
  max-width: 750px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.75);
}
.filter-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 32px;
}
.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.filter {
  border: 1px solid var(--line);
  padding: 9px 12px;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.filter.active,
.filter:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.note {
  margin-top: 36px;
  border-left: 2px solid var(--pepper);
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.7);
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.plan-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.plan-card h2 {
  margin: 40px 0 0;
  font:
    400 40px/0.92 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.plan-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}
.plan-meta {
  border-top: 1px solid currentColor;
  padding-top: 14px;
  font-size: 12px;
}
.plan-green {
  background: #d4e0bb;
}
.plan-blue {
  background: #b9d6da;
}
.plan-wheat {
  background: var(--wheat);
}
.rutas-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}
.route-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: #fff;
}
.route-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.route-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 56, 58, 0.9),
    rgba(23, 56, 58, 0.18),
    transparent
  );
}
.route-hero-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
}
.route-hero-copy h2 {
  max-width: 620px;
  margin: 12px 0 0;
  font:
    400 64px/0.9 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.route-trace {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--sun);
  font-size: 9px;
  font-weight: 700;
}
.route-trace span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(23, 56, 58, 0.65);
}
.route-trace i {
  height: 34px;
  border-left: 1px dashed currentColor;
}
.route-help {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.route-help h2 {
  margin: 12px 0 0;
  font:
    400 64px/0.91 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.route-help p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(23, 56, 58, 0.72);
}
.route-help-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-left: 20px;
}
.route-help-list:before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: var(--pepper);
}
.route-row {
  display: grid;
  grid-template-columns: 80px 1fr 0.55fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.route-row h3 {
  margin: 0;
  font:
    400 31px/0.95 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.04em;
}
.route-row p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.65);
}
.route-row small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 56, 58, 0.55);
}
.material-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.65fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}
.market-image {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}
.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market-image span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--ink);
  padding: 6px 8px;
  color: var(--sun);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.market-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-inline: 1px solid var(--line);
  padding: 4px 26px;
}
.market-copy h2 {
  font:
    400 42px/0.92 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.market-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.7);
}
.material-card {
  padding: 28px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 27px,
      rgba(23, 56, 58, 0.1) 28px 29px
    ),
    linear-gradient(120deg, rgba(216, 91, 50, 0.12), transparent 60%);
}
.material-card h2 {
  font:
    400 33px/0.95 "DM Serif Display",
    Georgia,
    serif;
}
.orange-section {
  background: var(--pepper);
  color: #fff;
}
.orange-section .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.orange-section .section-head p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}
.three-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.three-notes article {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 20px;
}
.three-notes h3 {
  margin: 14px 0 0;
  font:
    400 40px/0.92 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.045em;
}
.three-notes p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.place-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.place-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.place-card figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
}
.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.place-card:hover img {
  transform: scale(1.05);
}
.place-card figure span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}
.place-card > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.place-card h3 {
  margin: 14px 0 0;
  font:
    400 40px/1 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.place-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.7);
}
.atlas {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}
.atlas h2 {
  margin: 14px 0 0;
  font:
    400 64px/0.9 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.055em;
}
.atlas-map {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-image:
    linear-gradient(
      33deg,
      transparent 49.6%,
      rgba(241, 203, 132, 0.7) 50%,
      transparent 50.5%
    ),
    linear-gradient(
      144deg,
      transparent 49.6%,
      rgba(241, 203, 132, 0.45) 50%,
      transparent 50.5%
    );
}
.node {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--ink);
  padding: 7px 9px;
  color: var(--sun);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.node.city {
  top: 30%;
  left: 11%;
}
.node.sierra {
  top: 14%;
  left: 44%;
}
.node.coast {
  right: 11%;
  top: 47%;
}
.node.huerta {
  bottom: 14%;
  left: 38%;
}
.article-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding-block: 96px;
}
.article-aside {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.article-aside p {
  font-size: 14px;
  color: rgba(23, 56, 58, 0.65);
}
.article-copy > p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(23, 56, 58, 0.78);
}
.article-copy h2 {
  margin: 42px 0 0;
  font:
    400 54px/0.94 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.quote {
  margin: 40px 0;
  border-left: 2px solid var(--pepper);
  background: var(--wheat);
  padding: 26px;
  font:
    400 32px/1.05 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.03em;
}
.article-copy figure {
  margin: 40px 0;
}
.article-copy figcaption {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(23, 56, 58, 0.55);
}
.story-header {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.story-header > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.story-header:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 56, 58, 0.6);
}
.story-header .narrow {
  position: relative;
  z-index: 1;
  padding-block: 130px;
}
.story-header h1 {
  max-width: 1040px;
  margin: 18px 0 0;
  font:
    400 clamp(64px, 8vw, 128px) / 0.83 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.07em;
}
.story-header p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.sale-hero {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
}
.sale-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
}
.sale-hero h1 {
  margin: 14px 0 0;
  font:
    400 clamp(60px, 8vw, 128px) / 0.83 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.07em;
}
.sale-hero h1 em {
  color: var(--sun);
}
.sale-hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.sale-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.sale-stat b {
  display: block;
  font:
    400 42px/1 "DM Serif Display",
    Georgia,
    serif;
  color: var(--sun);
}
.sale-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.sale-quote {
  align-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 24px;
}
.sale-quote p {
  font:
    400 42px/0.94 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
  color: #fff;
}
.sale-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sale-assets article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.sale-assets h2 {
  margin: 30px 0 0;
  font:
    400 38px/1 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.045em;
}
.sale-assets p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 56, 58, 0.7);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-grid h2 {
  margin: 14px 0 0;
  font:
    400 78px/0.86 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.06em;
}
.contact-grid > div > p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(23, 56, 58, 0.72);
}
.form {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.form label {
  display: grid;
  gap: 7px;
  color: rgba(23, 56, 58, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 56, 58, 0.35);
  background: transparent;
  padding: 12px 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--pepper);
}
.direct-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid var(--line);
  padding: 26px 0;
}
.direct-contact h2 {
  margin: 4px 0 0;
  font:
    400 36px/1 "DM Serif Display",
    Georgia,
    serif;
  letter-spacing: -0.04em;
}
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: grid;
    place-items: center;
  }
  .head-actions {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }
  .stories {
    grid-template-columns: 1fr 1fr;
  }
  .story.big {
    grid-column: span 2;
  }
  .place-grid {
    grid-template-columns: 1fr;
  }
  .rutas-feature,
  .image-text-grid,
  .sale-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    display: none;
  }
}
@media (max-width: 720px) {
  .container,
  .content,
  .narrow {
    width: min(100% - 32px, 1440px);
  }
  .sale-copy {
    min-height: 72px;
    display: block;
    line-height: 1.65;
  }
  .sale-copy a {
    display: block;
    width: max-content;
    margin: 2px auto 0;
  }
  .header-inner {
    width: min(100% - 32px, 1440px);
  }
  .brand strong {
    font-size: 24px;
  }
  .header-spacer {
    height: 74px;
  }
  .hero,
  .hero-inner {
    min-height: 680px;
  }
  .hero-inner {
    padding: 44px 0;
  }
  .hero-copy {
    padding: 26px 0;
  }
  .hero-copy h1 {
    font-size: 64px;
  }
  .hero-copy p {
    font-size: 16px;
    line-height: 1.65;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section {
    padding: 58px 0;
  }
  .section-head {
    display: block;
  }
  .section-head .text-link {
    margin-top: 20px;
  }
  .two-grid,
  .filter-layout,
  .intro-grid,
  .rutas-feature,
  .image-text-grid,
  .atlas,
  .sale-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .agenda-feature {
    min-height: 330px;
    padding: 28px;
  }
  .agenda-short a {
    padding: 28px 0;
  }
  .stories {
    grid-template-columns: 1fr;
  }
  .story.big {
    grid-column: auto;
    display: block;
  }
  .story.big .story-image img {
    height: 256px;
  }
  .story.big h3,
  .story h3 {
    font-size: 42px;
  }
  .route-chips {
    grid-template-columns: 1fr;
  }
  .section-intro {
    padding: 58px 0;
  }
  .section-intro h1 {
    font-size: 58px;
  }
  .section-intro p {
    font-size: 16px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .route-hero {
    min-height: 480px;
  }
  .route-hero-copy {
    padding: 26px;
  }
  .route-hero-copy h2,
  .route-help h2 {
    font-size: 49px;
  }
  .route-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .route-row p {
    grid-column: 2;
  }
  .route-row small {
    grid-column: 2;
  }
  .material-grid,
  .three-notes,
  .sale-assets {
    grid-template-columns: 1fr;
  }
  .market-copy {
    border-inline: 0;
    border-block: 1px solid var(--line);
    padding: 24px 0;
  }
  .orange-section .section-head {
    display: block;
  }
  .place-card {
    grid-template-columns: 1fr;
  }
  .place-card figure {
    min-height: 220px;
  }
  .atlas h2 {
    font-size: 55px;
  }
  .article-copy h2 {
    font-size: 44px;
  }
  .story-header .narrow {
    padding-block: 72px;
  }
  .story-header h1 {
    font-size: 64px;
  }
  .sale-hero {
    padding: 60px 0;
  }
  .sale-hero h1 {
    font-size: 62px;
  }
  .sale-stat {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sale-quote {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px 0 0;
  }
  .sale-quote p {
    font-size: 37px;
  }
  .contact-grid h2 {
    font-size: 61px;
  }
  .footer {
    margin-top: 48px;
  }
  .footer-inner {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .legal {
    display: grid;
    gap: 10px;
  }
  .image-text-grid figure {
    min-height: 300px;
  }
  .image-text-grid h2 {
    font-size: 54px;
  }
}

/* Ajustes de la versión publicada: marca ampliada y banda comercial legible en móvil. */
.brand img {
  height: 60px;
  width: 60px;
}
.sale-mobile-label {
  display: none;
}
@media (max-width: 720px) {
  .sale-copy {
    min-height: 36px;
    display: flex;
    padding: 7px 12px;
    line-height: 1.1;
    font-size: 8px;
    white-space: nowrap;
  }
  .sale-copy a {
    display: inline;
    margin: 0;
  }
  .sale-mobile-label {
    display: inline;
  }
  .sale-desktop-label,
  .sale-description {
    display: none;
  }
  .brand img {
    height: 60px;
    width: 60px;
  }
  .brand strong {
    font-size: 22px;
  }
}
