:root {
  --bg: #0b0f14;
  --bg-2: #111821;
  --ink: #17202a;
  --text: #f5f3ee;
  --muted: #aeb6bf;
  --paper: #f6f1e8;
  --paper-2: #fffaf1;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(23,32,42,.14);
  --accent: #d8762a;
  --accent-2: #e6b15f;
  --blue: #2e6f9e;
  --green: #546a45;
  --shadow: 0 24px 80px rgba(0,0,0,.32);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.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;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 54px);
  color: #fff;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8, 12, 17, .86);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.12);
  padding-block: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand-logo {
  width: clamp(68px, 7vw, 84px);
  height: clamp(68px, 7vw, 84px);
  padding: 5px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(246,241,232,.96);
  box-shadow: 0 16px 42px rgba(0,0,0,.24);
  overflow: hidden;
  transition: width .25s ease, height .25s ease, background .25s ease, padding .25s ease, border-radius .25s ease;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}
.site-header.is-scrolled .brand-logo {
  width: clamp(58px, 6vw, 70px);
  height: clamp(58px, 6vw, 70px);
  background: rgba(246,241,232,.98);
  padding: 4px;
  border-radius: 19px;
}
.site-header.is-scrolled .brand-logo img { border-radius: 15px; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav a { color: rgba(255,255,255,.82); }
.nav a:hover { color: #fff; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.55);
  padding: 12px 16px;
}
.nav-toggle { display: none; }

.section { padding: clamp(74px, 9vw, 128px) 0; position: relative; overflow: hidden; }
.section > .container { position: relative; z-index: 2; }
.section-dark { background: var(--bg); color: var(--text); }
.section-light { background: var(--paper); color: var(--ink); }
.photo-section::before,
.photo-location::before,
.photo-events::before,
.photo-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.photo-section::after,
.photo-location::after,
.photo-events::after,
.photo-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.photo-cabana::before {
  background-image: url('./assets/images/cabana-bosque.webp');
  opacity: .34;
  filter: saturate(.9) contrast(1.05);
  background-position: right center;
}
.photo-deck::before {
  background-image: url('./assets/images/deck-jardin.webp');
  opacity: .28;
  filter: saturate(.9) contrast(1.08);
  background-position: left center;
}
.photo-route::before {
  background-image: url('./assets/images/ruta-mar-atardecer.webp');
  opacity: .27;
  filter: saturate(.86) contrast(1.1);
  background-position: right center;
}
.photo-moto-contact::before {
  background-image: url('./assets/images/moto-jardin.webp');
  opacity: .26;
  filter: saturate(.86) contrast(1.06);
  background-position: center;
}
.photo-sea-stone::before {
  background-image: url('./assets/images/mar-mate-atardecer.webp');
  opacity: .25;
  filter: saturate(.88) contrast(1.08);
  background-position: center;
}
.photo-section::after {
  background:
    linear-gradient(90deg, rgba(246,241,232,.94) 0%, rgba(246,241,232,.83) 52%, rgba(246,241,232,.7) 100%),
    radial-gradient(circle at 78% 18%, rgba(255,250,241,.2), transparent 34%);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 12px;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow.dark { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: .92;
  font-weight: 300;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}
h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.025em;
}
p { font-size: 18px; line-height: 1.62; }
.lead { color: rgba(255,255,255,.78); font-size: 21px; }
.muted { color: #596270; }
.small { color: #6c7480; font-size: 14px; line-height: 1.45; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 68px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,8,11,.92), rgba(6,8,11,.62) 46%, rgba(6,8,11,.15)), linear-gradient(0deg, rgba(11,15,20,.94), rgba(11,15,20,0) 50%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,11,.92), rgba(6,8,11,.58) 44%, rgba(6,8,11,.2)),
    linear-gradient(0deg, rgba(11,15,20,.96), rgba(11,15,20,.08) 58%),
    url('./assets/images/moto-sierras.webp') center center / cover no-repeat,
    #122033;
  transform: scale(1.01);
}
.hero-bg > * { display: none; }
.sun {
  position: absolute;
  right: 13vw; top: 17vh;
  width: 160px; height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffd28d, #e8792c 68%, transparent 70%);
  opacity: .82;
  filter: blur(.2px);
}
.mountains { position: absolute; left: 0; right: 0; bottom: 24%; height: 35%; background-repeat: repeat-x; }
.mountain-back {
  opacity: .72;
  background: linear-gradient(135deg, transparent 0 38%, #385062 39% 46%, transparent 47%) 0 100%/340px 100%, linear-gradient(45deg, transparent 0 42%, #2b4355 43% 51%, transparent 52%) 120px 100%/420px 100%;
}
.mountain-front {
  bottom: 19%;
  opacity: .95;
  background: linear-gradient(135deg, transparent 0 34%, #1c2a35 35% 48%, transparent 49%) 0 100%/300px 100%, linear-gradient(45deg, transparent 0 42%, #16222c 43% 58%, transparent 59%) 80px 100%/380px 100%;
}
.road {
  position: absolute;
  left: 50%; bottom: -20%;
  transform: translateX(-50%);
  width: 58vw; height: 58vh;
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  background: linear-gradient(90deg, #0d1118, #1c222a 49%, #d9d4ca 50%, #1c222a 51%, #0d1118);
  opacity: .98;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 360px; gap: 42px; align-items: end; }
.hero-lead { max-width: 740px; color: rgba(255,255,255,.82); font-size: clamp(20px, 2vw, 26px); line-height: 1.38; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); }
.button-outline { color: var(--ink); border-color: var(--dark-line); background: transparent; }
.full { width: 100%; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts span {
  padding: 12px 14px;
  color: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-facts strong { color: #fff; }
.hero-card {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 34px; margin-bottom: 14px; }
.hero-card p { color: rgba(255,255,255,.76); font-size: 16px; }
.card-kicker { margin-bottom: 18px; color: var(--accent-2)!important; font-size: 12px!important; font-weight: 1000; text-transform: uppercase; letter-spacing: .18em; }

.split { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(36px, 8vw, 90px); align-items: start; }
.split.reverse { grid-template-columns: 1fr 1fr; }
.prose p { color: #3b4653; font-size: 21px; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading.wide { max-width: 940px; }
.section-heading p { color: #596270; }
.cards { display: grid; gap: 18px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  background: var(--paper-2);
}
.feature-card .icon {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--accent);
  font-weight: 1000;
  letter-spacing: .1em;
}
.feature-card p { color: #596270; font-size: 16px; line-height: 1.5; }

.location {
  background: linear-gradient(135deg, #091018, #111d27 58%, #1a292f);
}
.photo-location::before {
  background-image: url('./assets/images/sierra-animas-cartel.webp');
  opacity: .38;
  filter: saturate(.92) contrast(1.08);
  background-position: center;
}
.photo-location::after {
  background:
    linear-gradient(90deg, rgba(9,16,24,.94), rgba(17,29,39,.75) 52%, rgba(17,29,39,.58)),
    linear-gradient(0deg, rgba(9,16,24,.94), rgba(9,16,24,.14));
}
.location-grid { display: grid; grid-template-columns: 1fr 470px; gap: 70px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.45; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 11px; height: 11px; background: var(--accent); transform: rotate(45deg); }
.dark-list li { color: #3d4752; }
.map-card {
  position: relative;
  height: 520px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.google-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(.9) contrast(1.04);
}

.route-list { display: grid; gap: 1px; border: 1px solid var(--dark-line); background: var(--dark-line); }
.route-item { display: grid; grid-template-columns: 110px 1fr; gap: 26px; padding: 34px; background: var(--paper-2); }
.route-number { color: var(--accent); font-size: 42px; font-weight: 300; line-height: 1; letter-spacing: -.05em; }
.route-item p { color: #596270; margin-bottom: 0; }

.events { background: #0d1117; }
.photo-events::before {
  background-image: url('./assets/images/parrilla-fogon.webp');
  opacity: .42;
  filter: saturate(.92) contrast(1.05);
  background-position: center;
}
.photo-events::after {
  background:
    linear-gradient(90deg, rgba(13,17,23,.93), rgba(13,17,23,.66) 58%, rgba(13,17,23,.86)),
    linear-gradient(0deg, rgba(13,17,23,.92), rgba(13,17,23,.22));
}
.event-panel { padding: 34px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.event-list { margin: 22px 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.event-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-size: 17px; }
.note { color: rgba(255,255,255,.62); font-size: 15px; margin-bottom: 0; }

.services-grid { display: grid; grid-template-columns: .75fr 1.1fr; gap: 70px; align-items: start; }
.service-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; padding: 32px; border: 1px solid var(--dark-line); background: var(--paper-2); }

.manifesto {
  color: #fff;
  background: #0b0f14;
}
.photo-manifesto::before {
  background-image: url('./assets/images/mar-mate-atardecer.webp');
  opacity: .58;
  filter: saturate(.9) contrast(1.08);
  background-position: center;
}
.photo-manifesto::after {
  background:
    linear-gradient(90deg, rgba(11,15,20,.93), rgba(11,15,20,.52) 58%, rgba(11,15,20,.84)),
    radial-gradient(circle at 20% 20%, rgba(216,118,42,.28), transparent 34%);
}
.manifesto-box { max-width: 1040px; }
blockquote { margin: 0; font-size: clamp(32px, 5vw, 72px); line-height: 1.02; letter-spacing: -.05em; font-weight: 300; }

.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: center; }
.contact-card { padding: 30px; border: 1px solid var(--dark-line); background: var(--paper-2); display: grid; gap: 14px; }
.footer { padding: 34px 0; background: #080c11; color: rgba(255,255,255,.72); }
.footer p { margin: 6px 0 0; font-size: 14px; color: rgba(255,255,255,.52); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a:hover { color: #fff; }

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px; height: 44px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: #fff;
  }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: #fff; }
  .nav {
    position: fixed;
    top: 76px; left: 20px; right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(8,12,17,.96);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a:last-child { border-bottom: 0; }
  .hero-grid, .location-grid, .split, .split.reverse, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-card { max-width: 560px; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
  .location-grid, .services-grid, .contact-grid { gap: 38px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding: 12px 14px; }
  .brand-logo { width: 58px; height: 58px; padding: 4px; border-radius: 18px; }
  .brand-logo img { border-radius: 14px; }
  .site-header.is-scrolled .brand-logo { width: 54px; height: 54px; border-radius: 17px; }
  .hero { padding-bottom: 42px; }
  h1 { font-size: clamp(44px, 15vw, 68px); }
  h2 { font-size: clamp(32px, 11vw, 48px); }
  p, .prose p { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: 1fr; }
  .cards.four, .service-columns { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .feature-card .icon { margin-bottom: 38px; }
  .map-card { height: 420px; }
  .route-item { grid-template-columns: 1fr; padding: 26px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  blockquote { font-size: clamp(30px, 12vw, 48px); }
}
