/* ============ Fonts ============ */
@font-face {
  font-family: 'Editorial New';
  src: url('../Fonts/EditorialNew-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Host Grotesk';
  src: url('../Fonts/HostGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ============ Reset ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #f3ede2;
  --cream-2: #ece3d3;
  --dark: #16170f;
  --dark-2: #101107;
  --green: #4c5a3d;
  --green-dark: #414c34;
  --text-dark: #201f18;
  --text-light: #f6f1e6;
  --muted-light: rgba(246, 241, 230, 0.68);
  --muted-dark: rgba(32, 31, 24, 0.62);
  --line-light: rgba(246, 241, 230, 0.35);
  --line-dark: rgba(32, 31, 24, 0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }

h1, h2, h3 {
  font-family: 'Editorial New', serif;
  font-weight: 300;
  letter-spacing: 0;
}

.eyebrow {
  font-family: 'Host Grotesk', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.eyebrow--light { color: var(--muted-light); }

.rule {
  border: none;
  border-top: 1px solid var(--line-dark);
  width: 48px;
  margin: 22px 0;
}
.rule--light { border-top-color: var(--line-light); }

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 26px;
  border: 1px solid var(--line-dark);
  font-family: 'Host Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--text-dark); color: var(--cream); }

.btn--outline-light {
  border-color: var(--line-light);
  color: var(--text-light);
}
.btn--outline-light:hover { background: var(--text-light); color: var(--green-dark); }

/* ============ Placeholder media (swap with real photos) ============ */
[data-placeholder] {
  background-size: cover;
  background-position: center;
  position: relative;
}
[data-placeholder]::before {
  content: "Foto: " attr(data-placeholder);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Host Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 6px 12px;
  pointer-events: none;
  white-space: nowrap;
}

.hero-media { background-color: #2b2f22; }
.itinerary-media { background-color: #2b2f22; }
.split-media { background-color: #23261b; }
.split-media--stay { background-color: #2c3524; }

/* ============ Header / Nav ============ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.nav-links a:hover { opacity: 0.7; }
.nav-links .sep { opacity: 0.4; }
.nav-cta { opacity: 1; }

.logo {
  font-family: 'Editorial New', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.logo--mark { display: inline-flex; align-items: center; }
.logo--mark img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--text-light);
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 18px 48px 32px;
  background: var(--dark);
}
.nav-mobile a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.nav-mobile.open { display: flex; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, #3c4630 0%, #232a1a 55%, #14170e 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,11,6,0.55) 0%, rgba(10,11,6,0.15) 30%, rgba(10,11,6,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 0 48px 64px;
  color: var(--text-light);
}

.hero-left .eyebrow { color: var(--muted-light); margin-bottom: 18px; }
.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero-place {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--muted-light);
}
.hero-left .rule { margin: 22px 0 20px; }
.hero-quote {
  font-family: 'Editorial New', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
}

.hero-right { display: flex; align-items: flex-end; justify-content: flex-end; }
.countdown {
  border-left: 1px solid var(--line-light);
  padding-left: 28px;
  min-width: 300px;
}
.countdown .eyebrow { margin-bottom: 14px; }
.countdown-numbers {
  display: flex;
  gap: 22px;
}
.cd-unit { display: flex; flex-direction: column; }
.cd-num {
  font-family: 'Editorial New', serif;
  font-size: 34px;
  line-height: 1;
}
.cd-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 8px;
}

.scroll-hint {
  position: absolute;
  left: 48px;
  bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero-tagline {
  position: absolute;
  right: 48px;
  bottom: 28px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  line-height: 1.6;
}

/* ============ Split blocks (Lugar / Hospedaje) ============ */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.split-media {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.split-media-text {
  position: relative;
  z-index: 2;
  padding: 48px;
}
.split-media-text--right { text-align: right; float: right; }
.split-media--stay .split-media-text { display: flex; justify-content: flex-end; }
.split-media--stay .eyebrow--light { text-align: right; line-height: 1.7; }

.split-copy {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 40px;
}
.sprig { width: 26px; height: 40px; color: var(--muted-dark); margin-bottom: 20px; }
.date-display {
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0.06em;
  margin: 10px 0 22px;
}
.split-copy-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--muted-dark);
}
.split-copy .rule { margin-top: 24px; }

.split-copy--dark {
  background: var(--green);
  color: var(--text-light);
  align-items: flex-start;
  text-align: left;
  padding: 64px 56px;
}
.stay-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============ Itinerary ============ */
.itinerary {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1fr;
  background: var(--cream-2);
  min-height: 60vh;
}
.itinerary-date {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.itinerary-day {
  font-family: 'Editorial New', serif;
  font-size: 76px;
  line-height: 1;
  margin: 6px 0;
}
.weather-icon {
  width: 30px;
  height: 30px;
  color: var(--muted-dark);
  margin: 4px 0 12px;
}
.weather-temp {
  font-family: 'Editorial New', serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
}
.weather-temp-min {
  font-size: 24px;
  color: var(--muted-dark);
}
.itinerary-month {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  line-height: 1.7;
}

.itinerary-list {
  padding: 64px 40px;
  border-left: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.itinerary-heading {
  font-family: 'Editorial New', serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 30px;
}
.timeline { display: flex; flex-direction: column; gap: 18px; }
.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
}
.time {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted-dark);
}
.event {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.itinerary-note {
  font-family: 'Editorial New', serif;
  font-style: italic;
  font-size: 15px;
  margin-top: 26px;
  color: var(--muted-dark);
}

.itinerary-media {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.place-card {
  position: relative;
  z-index: 2;
  background: var(--cream);
  padding: 26px 34px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.place-card p {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.7;
  margin-bottom: 12px;
}
.place-card-logo {
  height: 26px;
  width: auto;
  filter: brightness(0);
  opacity: 0.85;
}

/* ============ Transporte ============ */
.info-band {
  background: var(--cream-2);
  padding: 72px 40px;
  display: flex;
  justify-content: center;
}
.info-band-inner {
  max-width: 560px;
  text-align: center;
}
.info-band-inner .eyebrow { margin-bottom: 22px; }
.info-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted-dark);
}
.info-text + .info-text { margin-top: 18px; }

/* ============ Opciones de hospedaje ============ */
.stay-options {
  background: var(--dark);
  color: var(--text-light);
  padding: 88px 48px;
}
.stay-options-head { text-align: center; margin-bottom: 56px; }
.stay-options-head .eyebrow--light { margin-bottom: 18px; }
.stay-options-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--text-light);
}
.stay-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.stay-card {
  background: var(--dark);
  border: 1px solid var(--line-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stay-name {
  font-family: 'Editorial New', serif;
  font-size: 19px;
  line-height: 1.3;
}
.stay-distance {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.stay-link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-top: 1px solid var(--line-light);
}
.stay-link:hover { opacity: 0.7; }

/* ============ Inspiración ============ */
.inspiration-band {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 40px;
}
.inspiration-band .split-copy-text { margin-bottom: 6px; }

/* ============ Mesa de regalos ============ */
.registry {
  background: var(--green);
  color: var(--text-light);
  padding: 88px 48px;
}
.registry-head { text-align: center; margin-bottom: 48px; }
.registry-title {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--text-light);
}
.registry-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.registry-card {
  border: 1px solid var(--line-light);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.registry-card:hover { background: var(--text-light); color: var(--green-dark); }
.registry-name {
  font-family: 'Editorial New', serif;
  font-size: 22px;
}
.registry-cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ Footer ============ */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  background: var(--cream);
  border-top: 1px solid var(--line-dark);
}
.footer-left, .footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo--footer { font-size: 20px; color: var(--text-dark); }
.footer-info p {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--muted-dark);
}
.footer-info--right { text-align: right; }
.footer-info--right .rule { display: none; }
.footer-right { position: relative; }
.footer-right::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--line-dark);
}
.footer-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icon svg { width: 16px; height: 16px; color: var(--text-dark); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 22px 24px; }

  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 140px 24px 48px;
    gap: 48px;
  }
  .hero-right { justify-content: flex-start; }
  .countdown { min-width: 0; }
  .scroll-hint, .hero-tagline {
    position: static;
    margin-top: 40px;
  }
  .hero-tagline { text-align: left; }

  .split-block { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; }
  .split-copy { padding: 56px 28px; }
  .split-copy--dark { padding: 56px 28px; }

  .itinerary { grid-template-columns: 1fr; }
  .itinerary-date { padding: 48px 28px 0; }
  .itinerary-list { padding: 40px 28px; border-left: none; border-top: 1px solid var(--line-dark); }
  .itinerary-media { min-height: 300px; }

  .site-footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-left, .footer-right { flex-direction: column; gap: 10px; }
  .footer-right::before { display: none; }
  .footer-info--right { text-align: center; }

  .stay-grid { grid-template-columns: 1fr; }
  .stay-options { padding: 64px 24px; }
  .registry-grid { grid-template-columns: 1fr; }
  .registry { padding: 64px 24px; }
  .info-band { padding: 56px 24px; }
  .inspiration-band { padding: 64px 24px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 44px; }
  .countdown-numbers { gap: 14px; }
  .cd-num { font-size: 26px; }
}
