:root {
  color-scheme: light;
  --white: #ffffff;
  --cream: #f8f4f0;
  --beige: #efe7df;
  --sage: #8ca595;
  --olive: #4c6657;
  --charcoal: #1f2623;
  --text: #2b2a2a;
  --muted: #6b6b6b;
  --shadow: 0 20px 60px rgba(31, 38, 35, 0.12);
  --title-color: rgba(75, 92, 9, 1);
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  color: var(--title-color);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 244, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 38, 35, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  gap: 1rem;
}

.logo {
  font-family:  "Bodoni MT", "Didot", "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: rgba(75,92,9,1);
}

.nav-toggle {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.6rem;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(31, 38, 35, 0.08);
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.nav-links.show {
  display: flex;
}

.language-toggle {
  border: 1px solid rgba(31, 38, 35, 0.2);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
}

.language-toggle .lang-option.active {
  color: rgba(75,92,9,1);
  font-weight: 600;
}

.language-toggle .lang-divider {
  color: var(--muted);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255, 0.9), rgba(255,255,255, 0.3)),
    url("fotos/foto_inicio.jpeg") center / cover no-repeat;
  padding: 6rem 1.5rem 4rem;
}

.hero-content {
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  max-width: 720px;
  width: 80%;
  min-height: calc(85vh - 6rem);
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.00); /* transparency here */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-content-inner {
  transition: transform 0.2s ease-out;
  will-change: transform;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color:rgba(75,92,9,1);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family:  "Bodoni MT", "Didot", "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  color: var(--black);
  margin-bottom: 0.2rem;
  font-weight: 500;
  line-height: 1.05;
  font-size: 4.4rem;
}

.hero-names h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.05em;
}

.hero h1.hero-names {
  font-family: "Bodoni MT", "Didot", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 20px;
}

@media (max-width: 600px) {
  .hero h1.hero-names {
    font-size: clamp(4.4rem, 10vw, 3.2rem);
    line-height: 0.55;
    letter-spacing: -0.04em;
  }

  .hero h1.hero-names span {
    display: block;
  }
}

.hero-ampersand {
  margin-top: 1rem; 
  font-size: 2.4rem;
  color: var(--black);
  letter-spacing: 0.15rem;
  margin-top: 1rem;
}

.hero-date {
  
  margin-top: 3.5rem; 
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  gap: 0.25rem;          /* space between date and location */
  margin-bottom: 1rem;
  color:var(--black);
}

.hero-location {
  display: flex;
  flex-direction: column;
  color: var(--black);
  align-items: center;   /* center horizontally */
  gap: 0.25rem;          /* space between date and location */
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(75, 92, 9, 1);

  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-content .primary-button {
  margin-top: auto;
  margin-bottom: 0px;
  opacity: 1;
  transform: none;
  animation: none;
}

.section {
  padding: 4rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
  display: grid;
  gap: 1rem;
}

.section-heading h2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.3rem);
  color: rgba(75, 92, 9, 1);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.12rem;
}

.section-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.media-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.media-card {
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.venue-media {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.venue-media-item {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.venue-media-item img,
.venue-media-item iframe {
  width: 100%;
  height: min(70vh, 640px);
  border: none;
  border-radius: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.venue-media-caption {
  color: var(--muted);
  text-align: left;
}

@media (max-width: 768px) {
  .venue-media-item img,
  .venue-media-item iframe {
    height: min(60vh, 520px);
  }
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ðŸ”¥ crops instead of stretching */
  object-position: center;
  display: block;
}
.media-card iframe {
  width: 100%;
  border-radius: 16px;
  border: none;
  min-height: 260px;
}

.media-caption {
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--charcoal);
}

.programa {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.programa-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
}


.programa-time {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 1px solid rgba(125, 132, 92, 0.65);
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  color: rgba(75, 92, 9, 1);
}

.programa-time::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid rgba(125, 132, 92, 0.35);
}

.programa-time::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 1.6rem;
  background: rgba(125, 132, 92, 0.6);
  transform: translateX(-50%);
}

.transport-card {
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 240, 0.9));
  border: 1px solid rgba(31, 38, 35, 0.08);
}

.hotel-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.hotel-details h4 {
  font-size: 2.5rem;
  font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
  color: rgba(75, 92, 9, 1);
  letter-spacing: -0.08em;
  font-weight: 500;
  margin: 0 0 -0.15rem 0;
}

.hotel-details p {
  margin: -0.8rem 0 -0.6rem;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.hotel-details .text-link {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.programa-item:last-child .programa-time::after {
  display: none;
}

.programa-hour {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #000000;
}

.programa-period {
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  color: #000000;
}

.programa-details h3 {
  margin: 0 0 0.3rem;
  font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
  font-size: 3rem;
  letter-spacing: -0.08em;
  line-height: 0.95;
  font-weight: 400;
  color: rgba(75, 92, 9, 1);
}

.programa-details p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 700px) {
  .programa-item {
    grid-template-columns: 100px 1fr;
    text-align: left;
    justify-items: start;
    gap: 1rem;
  }

  .programa-time {
    width: 100px;
    height: 100px;
  }

  .programa-hour {
    font-size: 1.4rem;
  }

  .programa-period {
    font-size: 0.65rem;
  }
}



.hotels-card {
  text-align: left;
  font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 240, 0.9));
  border: 1px solid rgba(31, 38, 35, 0.08);
}

.hotels-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.hotels-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}


.hotel-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.hotel-action {
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(76, 102, 87, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
}

@media (max-width: 600px) {
  .hotel-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.countdown {
  --circle-size: clamp(90px, 16vw, 140px);
  --overlap: calc(var(--circle-size) * 0.875);
  --ring-color: rgba(125, 132, 92, 0.65);
  --ring-inner: rgba(125, 132, 92, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 720px;
  margin: 0 auto;
  transition: --overlap 0.9s ease;
}

.countdown-item {
  background: transparent;
  border-radius: 999px;
  border: 1px solid var(--ring-color);
  width: var(--circle-size);
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 0;
  text-align: center;
  box-shadow: none;
  display: grid;
  place-content: center;
  gap: 0.15rem;
  position: relative;
}

.countdown-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid var(--ring-inner);
}

.countdown-item + .countdown-item {
  margin-left: calc(-1 * var(--overlap));
  transition: margin-left 0.9s ease;
}

.countdown-item:nth-child(1) {
  z-index: 4;
}

.countdown-item:nth-child(2) {
  z-index: 3;
}

.countdown-item:nth-child(3) {
  z-index: 2;
}

.countdown-item:nth-child(4) {
  z-index: 1;
}

.countdown.is-aligned {
  --overlap: -2px;
}

.countdown-value {
  font-size: clamp(1.2rem, 4.2vw, 2.2rem);
  color: var(--charcoal);
  font-weight: 500;
}

.countdown-label {
  color: var(--muted);
  font-size: clamp(0.55rem, 1.6vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

@media (max-width: 600px) {
  .countdown {
    --overlap: calc(var(--circle-size) * 0.82);
  }
}

.card iframe {
  width: 100%;
  border: none;
  border-radius: 16px;
  min-height: 300px;
  height: 100%;
  margin-top: 1rem;
  flex: 1;
}

.kepler-frame {
  min-height: 360px;
  height: 60vh;
}

.text-link {
  font-weight: 500;
  color: var(--olive);
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 92, 9, 0.25);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.calendar-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(75, 92, 9, 1);
  fill: none;
  stroke-width: 1.6;
}

.rsvp-block {
  margin: 0 auto;
  max-width: 640px;
  padding: 2rem 1.75rem;
  border-radius: 24px;
  border: 1px solid rgba(75, 92, 9, 0.12);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rsvp-block p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.rsvp-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.rsvp-button {
  padding: 0.6rem 1.6rem;
  min-height: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(75, 92, 9, 0.35);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(75, 92, 9, 1);
  box-shadow: none;
}

.rsvp-calendar {
  border-color: rgba(75, 92, 9, 0.2);
  background: transparent;
}

@media (min-width: 720px) {
  .rsvp-actions {
    flex-direction: row;
    justify-content: center;
  }
}


.map-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.accordion-panel {
  background: var(--white);
  padding: 0 1.5rem 1rem;
  border-radius: 0 0 16px 16px;
  display: none;
  margin-top: -0.75rem;
  box-shadow: var(--shadow);
  font-family: inherit;
}

.accordion-panel.open {
  display: block;
}

.accordion-icon {
  font-size: 1.3rem;
  color: var(--sage);
}

.info-section {
  padding: 5rem 6vw;
}

.rolo-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(75, 92, 9, 0.18);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rolo-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.rolo-accordion .accordion-panel {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -0.5rem;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.rolo-accordion .accordion-panel.open {
  max-height: 1600px;
  opacity: 1;
  padding-top: 0.6rem;
  padding-bottom: 1.4rem;
}

.rolo-table {
  display: grid;
  gap: 0.75rem;
}

.rolo-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 1.2fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(75, 92, 9, 0.1);
}

.rolo-row--header {
  background: transparent;
  border: none;
  padding: 0 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(75, 92, 9, 0.7);
}

.rolo-row--header span {
  font-weight: 600;
}

.rolo-cell {
  display: grid;
  gap: 0.35rem;
  color: var(--text);
}

.rolo-label {
  display: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(75, 92, 9, 0.7);
}

@media (max-width: 780px) {
  .rolo-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .rolo-row--header {
    display: none;
  }

  .rolo-label {
    display: inline-block;
  }
}

.registry-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.registry-details {
  display: grid;
  gap: 1.5rem;
}

.registry-handle {
  font-weight: 600;
  color: var(--olive);
}

.list {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  padding: 0;
  margin: 0.75rem 0 0;
}

.quiz-page {
  background: var(--cream);
}

.quiz-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 6rem 1.5rem 4rem;
}

.quiz-card {
  width: min(900px, 100%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
}

.quiz-language {
  display: flex;
  justify-content: flex-end;
}

.quiz-form {
  display: grid;
  gap: 1.5rem;
}

.quiz-question {
  display: grid;
  gap: 0.75rem;
}

.quiz-question label {
  font-weight: 600;
  color: var(--charcoal);
}

.quiz-options {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.quiz-options label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.quiz-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.quiz-result {
  font-weight: 600;
  color: var(--olive);
}

.card .list {
  text-align: left;
}

.site-footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--beige);
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    border: none;
    background: transparent;
  }

  .hero {
    padding-top: 7rem;
  }

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

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

@media (min-width: 1024px) {
  .section {
    padding: 5rem 2rem;
  }
}




.hero-content *:not(.primary-button) {
  opacity: 0;
  transform: translateY(10px);
}

.hero-content.is-animated *:not(.primary-button) {
  animation: heroFadeIn 0.6s ease forwards;
}

.hero-content.is-animated .hero-names {
  animation-delay: 0.05s;
}

.hero-content.is-animated .hero-ampersand {
  animation-delay: 0.05s;
}

.hero-content.is-animated .hero-date {
  animation-delay: 0.25s;
}

.hero-content.is-animated .eyebrow {
  animation-delay: 0.18s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content-inner {
    transition: none;
    transform: none !important;
  }
  .hero-content * {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}


.full-width-photo {
  width: 100%;
  margin: 0;
}

.full-width-photo img {
  width: 100%;
  height: min(70vh, 720px);
  object-fit: cover;

}

.full-width-photo--map {
  display: grid;
  gap: 0.75rem;
}

.full-width-photo--map iframe {
  width: 100%;
  height: min(70vh, 720px);
  border: none;
  display: block;
}


.full-width-photo--map.full-width-photo--page iframe {
  height: 100%;
}




.full-width-frame {
  height: min(65vh, 720px);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.full-width-photo--page {
  background: linear-gradient(180deg, rgba(15, 18, 16, 0.55), rgba(255, 255, 255, 0.08)),
    url("fotos/fotosilla.jpeg") center / cover no-repeat;
  background-size: cover;
  background-position: center;
  height: min(65vh, 720px);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
}

.full-width-photo.full-width-photo--page,


.full-width-photo--map.full-width-photo--page {
  height: min(65vh, 720px);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}


.full-width-photo1--page {
  background: linear-gradient(180deg, rgba(15, 18, 16, 0.55), rgba(255, 255, 255, 0.08)),
    url("fotos/lugar2.jpeg") center / cover no-repeat;
  background-size: cover;
  background-position: center;
  height: min(65vh, 720px);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
}

.full-width-photo--map.full-width-photo--page {
  background: none;
}

.full-width-photo--page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 16, 0.35), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.full-width-photo.full-width-photo--page::before,
.full-width-photo--map.full-width-photo--page::before {
  background: linear-gradient(180deg, rgba(15, 18, 16, 0.2), rgba(0, 0, 0, 0.02));
}

@media (max-width: 600px) {
  .entry-button img {
    content: url("fotos/sobrecel.jpeg");
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    display: block;
  }

  .full-width-photo--page,
  .full-width-photo.full-width-photo--page,
  .full-width-photo--map.full-width-photo--page {
    height: 70vh;
    padding: 0;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.2);
    position: relative;
  }

  .full-width-photo--page:not(.full-width-photo):not(.full-width-photo--map) {
    background: url("fotos/fotosilla.jpeg") center / cover no-repeat;
  }

  .full-width-photo--page::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    background: url("fotos/fotosilla.jpeg") center / contain no-repeat;
    box-shadow: var(--shadow);
  }
}

.full-width-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  margin: 0;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.8rem, 1.6vw, 1.04rem);
  letter-spacing: 0.06rem;
  text-transform: none;
}

/* Splash intro */
.splash-open {
  overflow: hidden;
}

.splash-open .site-header {
  display: none;
}

.site-main {
  opacity: 0;
  pointer-events: none;
}

.site-main.is-visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease;
}

.entry-splash {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #000;
  display: grid;
  place-items: center;
}

.entry-splash.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.entry-button {
  width: 100vw;
  height: 100vh;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.entry-button img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: var(--cream);
  display: block;
  transition: transform 0.5s ease;
}

.entry-button img.is-rotating {
  transform: rotate(-45deg) scale(1.02);
}

.entry-button:hover img {
  transform: translateY(-4px) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .entry-button img {
    transition: none;
  }
  .entry-button:hover img {
    transform: none;
  }
}




