:root {
  --orange: #ff6000;
  --blue: #030085;
  --magenta: #8a016d;
  --ink: #241f35;
  --muted: #6f687c;
  --paper: #fff8f1;
  --cream: #fff2e6;
  --line: rgba(36, 31, 53, 0.14);
  --white: #ffffff;
  --green: #2b8f6b;
  --sky: #dfeef4;
  --shadow: 0 20px 60px rgba(36, 31, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(130deg, rgba(255, 96, 0, 0.13) 0%, rgba(223, 238, 244, 0.58) 32%, rgba(255, 255, 255, 0.94) 58%, rgba(138, 1, 109, 0.08) 100%);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 248, 241, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Signika", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: rgba(3, 0, 133, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 64px) 36px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 96, 0, 0.22), transparent 34%),
    linear-gradient(155deg, rgba(3, 0, 133, 0.14), transparent 46%),
    radial-gradient(circle at 68% 34%, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(180deg, #dfeef4 0%, #fff8f1 72%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: repeating-linear-gradient(135deg, var(--orange) 0 12px, var(--blue) 12px 24px);
}

.route-line {
  position: absolute;
  right: clamp(30px, 10vw, 160px);
  top: 16%;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border: 3px dashed rgba(3, 0, 133, 0.24);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(12deg);
}

.route-stop {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 8px rgba(138, 1, 109, 0.14);
}

.route-stop.one {
  right: 42%;
  top: 28%;
}

.route-stop.two {
  right: 16%;
  top: 48%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 96, 0, 0.16);
}

.route-stop.three {
  right: 29%;
  bottom: 18%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(3, 0, 133, 0.14);
}

.hero-inner {
  align-self: center;
  width: min(820px, 100%);
  padding-bottom: clamp(18px, 4vw, 48px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: "Signika", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Signika", sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(3, 0, 133, 0.2);
}

.button.secondary {
  border: 1px solid rgba(3, 0, 133, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
}

.hero-panel {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(1040px, 100%);
}

.hero-panel article,
.resource-card,
.gallery-card,
.update-card,
.metrics article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel article {
  min-height: 164px;
  padding: 20px;
}

.hero-panel span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Signika", sans-serif;
  font-weight: 700;
}

.hero-panel h2 {
  font-size: 1.35rem;
}

.hero-panel p,
.resource-card p,
.update-card p,
.gallery-card p,
.copy-stack p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(54px, 8vw, 98px) clamp(20px, 5vw, 64px);
}

.section.split,
.section.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.section h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.copy-stack {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}

.viajera-band {
  background: var(--blue);
  color: var(--white);
}

.viajera-band .section-kicker {
  color: #ffc98f;
}

.viajera-band h2 {
  max-width: 760px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metrics article {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.metrics strong {
  display: block;
  font-family: "Signika", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: #d9d7ee;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.gallery-grid,
.resource-grid,
.updates-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}

.gallery-card div {
  padding: 16px;
}

.gallery-card h3,
.resource-card h3,
.update-card h3 {
  font-size: 1.35rem;
}

.resource-card,
.update-card {
  min-height: 210px;
  padding: 22px;
  text-decoration: none;
}

.resource-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 22px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: "Signika", sans-serif;
  font-weight: 700;
}

.resource-card:hover,
.resource-card:focus-visible {
  outline: none;
  border-color: rgba(255, 96, 0, 0.45);
  transform: translateY(-2px);
}

.contact {
  background: #ffffff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.site-footer span:first-child {
  font-family: "Signika", sans-serif;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel,
  .metrics,
  .gallery-grid,
  .resource-grid,
  .updates-list,
  .section.split,
  .section.contact {
    grid-template-columns: 1fr;
  }

  .route-line {
    opacity: 0.38;
    right: -28%;
    top: 20%;
    width: 72vw;
    height: 72vw;
  }
}

@media (max-width: 560px) {
  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.58);
  }

  h1 {
    font-size: 2.74rem;
  }

  .hero-panel article,
  .resource-card,
  .update-card,
  .metrics article {
    min-height: auto;
  }
}
