/* =========================================================
   Daniela & Sebastian — Wedding Landing
   Tokens (paleta de marca)
   - Ink:          #23255C  (azul noche)
   - Slate:        #334958  (pizarra)
   - Accent:       #4C6B2A  (verde bosque)
   - Accent light: #AEBB7A  (verde salvia)
   - Teal:         #7EB5AC  (verde azulado)
   - Dusty blue:   #93A6C7  (azul empolvado)
   - Mist:         #DCEAEA  (menta pálido)
   - Cream:        #F4F1DC  (texto sobre oscuro / fondo claro)
   ========================================================= */

@font-face {
  font-family: 'Bellavoir Delight';
  src: url('assets/fonts/BellavoirDelight.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amsterdam Handwriting';
  src: url('assets/fonts/AmsterdamHandwriting.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Priestacy';
  src: url('assets/fonts/Priestacy.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Palisade';
  src: url('assets/fonts/Palisade.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

   :root {
    --ink: #23255C;
    --green-deep: #334958;
    --green-mid: #7EB5AC;
    --gold: #4C6B2A;
    --gold-light: #AEBB7A;
    --cream: #F4F1DC;
    --beige-dark: #E7E0C4;
    --dusty-blue: #93A6C7;
    --mist: #DCEAEA;

    --font-script: 'Bellavoir Delight', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --nav-height: 64px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-color: var(--cream);
    background-image: linear-gradient(rgba(231, 224, 196, 0.68), rgba(231, 224, 196, 0.68)), url('assets/bg1.png');
    background-repeat: repeat;
    background-size: 700px 700px;
    color: var(--cream);
    font-family: var(--font-serif);
    overflow-x: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
  
  ::selection {
    background: var(--gold);
    color: var(--ink);
  }
  
  /* Visible keyboard focus everywhere */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
  }
  
  /* =========================================================
     NAVBAR
     ========================================================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid rgba(35, 37, 92, 0.12);
    box-shadow: 0 1px 0 rgba(35, 37, 92, 0.08);
    transition: box-shadow 0.4s ease;
  }

  .navbar.is-scrolled {
    box-shadow: 0 2px 14px rgba(35, 37, 92, 0.12);
  }

  .navbar__inner {
    width: 100%;
    height: 100%;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar__brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .navbar__brand-name {
    font-family: var(--font-serif);
    font-variant: small-caps;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    color: var(--ink);
  }

  .navbar__brand-date {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.65;
    margin-top: 0.2rem;
  }
  
  .navbar__menu {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.2vw, 2.2rem);
  }

  .navbar__link {
    position: relative;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0.4rem 0;
    opacity: 0.85;
    transition: opacity 0.25s ease, color 0.25s ease;
  }

  .navbar__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .navbar__link:hover,
  .navbar__link:focus-visible,
  .navbar__link.is-active {
    opacity: 1;
    color: var(--gold);
  }

  .navbar__link:hover::after,
  .navbar__link:focus-visible::after,
  .navbar__link.is-active::after {
    width: 100%;
  }
  
  .navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
  }
  
  .navbar__toggle span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }
  
  .navbar__toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .navbar__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .navbar__toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  
  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 560px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
  }

  @media (max-width: 700px) {
    .hero {
      height: 110vh;
      height: 110dvh;
      height: calc(var(--vh, 1vh) * 110);
    }
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
  }
  
  .hero__content {
    position: relative;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
  }
  
  .hero__names {
    font-family: var(--font-script);
    font-weight: 400;
    line-height: 0.9;
    font-size: clamp(1.8rem, 9vw, 7rem);
    white-space: nowrap;
    color: var(--cream);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  }

  @media (max-width: 700px) {
    .hero__names {
      font-weight: 700;
      font-size: clamp(2.1rem, 11vw, 3.8rem);
    }
  }

  .hero__names span {
    display: inline-block;
  }

  .hero__amp {
    font-family: 'Tangerine', cursive;
    padding: 0 0.15em;
    font-size: 1.1em;
  }

  .hero__meta {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cream);
    margin-top: 1.6rem;
    min-height: 1em;
  }

  .typing-cursor {
    display: inline-block;
    margin-left: 0.08em;
    animation: blinkCursor 0.85s steps(1) infinite;
  }

  .typing-cursor.is-done {
    animation: none;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  @keyframes blinkCursor {
    50% {
      opacity: 0;
    }
  }

  @media (max-width: 700px) {
    .hero__meta {
      font-size: clamp(0.68rem, 2.75vw, 0.82rem);
      letter-spacing: 0.15em;
      white-space: nowrap;
    }
  }

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

  .hero__scroll {
    position: absolute;
    bottom: clamp(1.5rem, 4vh, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
  }

  .hero__scroll-icon {
    display: block;
    opacity: 0;
    animation:
      heroScrollIn 1s ease 0.9s forwards,
      heroScrollBounce 2.8s ease-in-out 1.9s infinite;
  }

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

  @keyframes heroScrollBounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(9px);
    }
  }

  /* =========================================================
     GENERIC SECTIONS (placeholders)
     ========================================================= */
  .section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }


  .section__inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
    text-align: center;
  }

  .section__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(35, 37, 92, 0.55);
    margin-bottom: 1rem;
  }

  .section__title {
    font-family: 'Palisade', var(--font-script);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(3.1rem, 7.5vw, 4.9rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
    display: inline-block;
  }

  @media (max-width: 700px) {
    .section__title {
      font-weight: 700;
      font-size: clamp(3.3rem, 11.5vw, 4.1rem);
    }

    #section3 .section__title,
    #section4 .section__title,
    #section-venezuela .section__title,
    #section6 .section__title {
      margin-bottom: 1.75rem;
    }

    #section5 .section__title {
      margin-bottom: 2.5rem;
    }
  }

  .section__text {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: rgba(35, 37, 92, 0.65);
  }

  /* =========================================================
     SECTION 2 — ITINERARIO (cards de eventos)
     ========================================================= */
  .section__inner--itinerary {
    width: 100%;
    max-width: 1120px;
  }

  .itinerary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
    align-items: stretch;
  }

  .itin-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(35, 37, 92, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(35, 37, 92, 0.06);
  }

  .itin-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    flex-shrink: 0;
  }

  .itin-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cream);
    opacity: 0.3;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  .itin-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .itin-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: clamp(1.2rem, 2vw, 1.5rem) clamp(1.35rem, 2.2vw, 1.75rem) clamp(1.3rem, 2vw, 1.6rem);
  }

  .itin-card__date {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dusty-blue);
    margin-bottom: 0.4rem;
  }

  .itin-card__titlerow {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .itin-card__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.6vw, 1.65rem);
    color: var(--ink);
  }

  .itin-card__block {
    width: 100%;
    margin-bottom: 1.1rem;
  }

  .itin-card__label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dusty-blue);
    margin-bottom: 0.3rem;
  }

  .itin-card__label:not(:first-child) {
    margin-top: 0.65rem;
  }

  .itin-card__value {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--ink);
  }

  .itin-card__block .itin-card__value:first-of-type {
    min-height: 2.2rem;
  }

  .itin-card__dresscode {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 1.1rem;
  }

  .itin-card__moodboard-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
  }

  .itin-card__moodboard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(35, 37, 92, 0.32);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity 0.25s ease;
  }

  .itin-card__moodboard:hover,
  .itin-card__moodboard:focus-visible {
    opacity: 0.65;
  }

  .itin-card__moodboard-panel {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    transition: grid-template-rows 0.35s ease;
  }

  .itin-card__moodboard-wrap.is-open .itin-card__moodboard-panel {
    grid-template-rows: 1fr;
  }

  .itin-card__moodboard-panel-inner {
    overflow: hidden;
  }

  .itin-card__moodboard-panel-inner p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(35, 37, 92, 0.65);
    padding-top: 1rem;
  }

  .itin-card__moodboard-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 1rem;
  }

  @media (max-width: 900px) {
    .itinerary {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (max-width: 700px) {
    .itinerary {
      width: 80%;
      max-width: none;
      margin-left: auto;
      margin-right: auto;
      gap: 1.25rem;
    }

    .itin-card__image {
      aspect-ratio: 4 / 3;
    }

    .itin-card__body {
      padding: 1.2rem 1.3rem 1.4rem;
    }

    .itin-card__moodboard {
      font-size: 0.42rem;
      padding: 0.4rem 0.8rem;
      letter-spacing: 0.05em;
    }
  }

  /* =========================================================
     SECTION 1 — INTRO (bienvenida + save the date)
     ========================================================= */
  .section--intro {
    min-height: auto;
    position: relative;
    overflow: hidden;
  }

  @media (max-width: 700px) {
    .section--intro {
      min-height: auto;
    }
  }

  .section__inner--intro {
    width: 100%;
    max-width: 1180px;
    padding: clamp(2.75rem, 6.5vw, 4.25rem) 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .section1-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .invitation-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
  }

  .invitation-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .welcome-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }

  .welcome-card__photo {
    position: relative;
    z-index: 1;
    width: clamp(150px, 42vw, 400px);
    flex-shrink: 0;
    background: var(--dusty-blue);
    padding: 4px;
    box-shadow: 0 22px 50px rgba(35, 37, 92, 0.2);
  }

  .welcome-card__photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .welcome-card__text {
    position: relative;
    z-index: 2;
    width: clamp(170px, 44vw, 420px);
    margin-left: clamp(-3rem, -6vw, -1.5rem);
    margin-bottom: clamp(-2.5rem, -5vw, -1.5rem);
    background-color: #ffffff;
    border: 1px solid rgba(150, 190, 222, 0.8);
    box-shadow: 0 22px 50px rgba(35, 37, 92, 0.16);
    padding-top: clamp(1.3rem, 4.2vw, 2.4rem);
    padding-bottom: clamp(0.7rem, 2.6vw, 1.5rem);
    padding-inline: clamp(0.85rem, 3.2vw, 1.85rem);
    text-align: center;
  }

  .welcome-card__text::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(150, 190, 222, 0.9);
    pointer-events: none;
  }

  .intro__paragraph {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.5rem, 1.2vw, 0.68rem);
    line-height: 1.5;
    color: rgba(35, 37, 92, 0.8);
    margin-bottom: clamp(0.5rem, 1.3vw, 0.85rem);
  }

  .intro__closing {
    font-family: 'Alex Brush', var(--font-script);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: rgba(35, 37, 92, 0.8);
    text-align: center;
    margin-top: clamp(0.6rem, 1.5vw, 1rem);
  }

  @media (max-width: 560px) {
    .welcome-card__text::before {
      inset: 4px;
    }
  }

  /* Mobile: card becomes a small horizontal note pinned to the photo's
     bottom-right corner, instead of sitting beside it. Uses a wider
     safety threshold than 560px since some in-app browsers (WhatsApp
     etc.) report viewport widths well above the phone's real size. */
  @media (max-width: 700px) {
    .welcome-card {
      display: block;
      width: fit-content;
      margin: -1.5rem auto -1.5rem;
      top: 4.75rem;
      left: 0.64rem;
    }

    .invitation-wrap {
      margin-top: 9.25rem;
      margin-bottom: -5.75rem;
    }

    .welcome-card__photo {
      width: 67vw;
      max-width: 278px;
      margin: 0;
      transform: translate(-15%, -2.5rem);
      box-shadow: none;
    }

    .welcome-card__text {
      position: absolute;
      right: -6%;
      bottom: -18%;
      left: auto;
      width: 67vw;
      max-width: 253px;
      margin: 0;
      padding-top: 0.8rem;
      padding-bottom: 0.63rem;
      padding-inline: 0.63rem;
      box-shadow: none;
    }

    .welcome-card__text::before {
      inset: 3px;
    }

    .intro__paragraph {
      font-size: 0.55rem;
      line-height: 1.3;
      margin-bottom: 0.34rem;
    }

    .intro__closing {
      font-size: 0.64rem;
      margin-top: 0.17rem;
    }
  }

  .save-the-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.6rem, 1.5vw, 0.9rem);
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
  }

  .save-the-date__title {
    font-family: var(--font-serif);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 0.05em;
    color: var(--gold);
  }

  .save-the-date__countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(0.85rem, 2.5vw, 1.5rem);
  }

  .save-the-date__sep {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1;
    color: var(--ink);
    opacity: 0.5;
  }

  .save-the-date__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .save-the-date__value {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1;
    color: var(--ink);
  }

  .save-the-date__label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(35, 37, 92, 0.75);
  }

  @media (max-width: 700px) {
    .save-the-date {
      margin-top: 3.5rem;
      gap: 0.5rem;
    }

    .save-the-date__title {
      font-size: 1.3rem;
    }

    .save-the-date__countdown {
      gap: 0.6rem;
    }

    .save-the-date__sep {
      font-size: 1.4rem;
    }

    .save-the-date__item {
      gap: 0.2rem;
    }

    .save-the-date__value {
      font-size: 1.4rem;
    }

    .save-the-date__label {
      font-size: 0.5rem;
      letter-spacing: 0.15em;
    }
  }

  /* =========================================================
     SECTION 3 — HOSPEDAJE (cards de hoteles)
     ========================================================= */
  .section__inner--hotels {
    width: 100%;
    max-width: 960px;
  }


  .section--hotels .section__text {
    max-width: 620px;
    margin: 0 auto;
  }

  .section__text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.25s ease;
  }

  .section__text-link:hover,
  .section__text-link:focus-visible {
    opacity: 0.75;
  }

  .section--entre {
    display: block;
    min-height: 0;
    background-color: var(--dusty-blue);
  }

  .entre__img {
    display: block;
    width: 100%;
    height: auto;
  }

  .transport__icon {
    display: block;
    width: clamp(155px, 29vw, 225px);
    height: auto;
    margin: -2.5rem auto -3.5rem;
  }

  .transport__icon--car {
    margin: -2.5rem auto -1.25rem;
  }

  .transport__icon--plane {
    margin-bottom: 0.25rem;
  }

  .transport__icon--plane {
    width: clamp(135px, 25vw, 195px);
  }

  .section--transport .section__text {
    max-width: 620px;
    margin: 0 auto 1rem;
  }

  .section--transport .section__text:last-of-type {
    margin-bottom: 0;
  }

  .mobile-break {
    display: none;
  }

  @media (max-width: 700px) {
    .mobile-break {
      display: block;
    }
  }

  .transport__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
    margin-top: 2.75rem;
  }

  .transport__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border: 1px solid #8A6647;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8A6647;
    text-align: center;
    transition: opacity 0.25s ease;
  }

  .transport__cta-btn:hover,
  .transport__cta-btn:focus-visible {
    opacity: 0.65;
  }

  @media (max-width: 700px) {
    .transport__icon {
      width: 190px;
      margin-bottom: -1.5rem;
    }

    .transport__icon--plane {
      width: 160px;
      margin-top: -1.5rem;
      margin-bottom: -0.5rem;
    }

    .transport__icon--car {
      margin-top: -2.5rem;
      margin-bottom: -1rem;
    }

    .transport__cta {
      flex-wrap: nowrap;
      gap: 0.75rem;
      margin-top: 2.5rem;
    }

    .transport__cta-btn {
      flex: none;
      width: 148px;
      height: 50px;
      padding: 0 0.3rem;
      font-size: 0.5rem;
      letter-spacing: 0.02em;
      line-height: 1.2;
      text-align: center;
    }
  }

  .hotel-cta {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.75rem;
  }

  .hotel-cta__circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid rgba(150, 190, 222, 0.8);
    background: #ffffff;
  }

  .hotel-cta__name {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.65rem;
    letter-spacing: 0.02em;
    color: var(--ink);
  }

  .hotel-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.45rem;
    border: 1px solid rgba(150, 190, 222, 0.8);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.32rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    transition: opacity 0.25s ease;
  }

  .hotel-cta__btn:hover,
  .hotel-cta__btn:focus-visible {
    opacity: 0.65;
  }

  @media (max-width: 700px) {
    .hotel-cta {
      flex-wrap: nowrap;
      gap: 0.6rem;
      margin-top: 2.5rem;
    }

    .hotel-cta__circle {
      width: 100px;
      height: 100px;
      gap: 0.3rem;
    }

    .hotel-cta__name {
      font-size: 1.2rem;
    }

    .hotel-cta__btn {
      padding: 0.18rem 0.3rem;
      font-size: 0.26rem;
      letter-spacing: 0.02em;
    }
  }

  @media (max-width: 700px) {
    #section3 {
      min-height: 0;
    }

    #section3 .section__inner {
      padding-top: clamp(2.5rem, 8vw, 3.5rem);
      padding-bottom: clamp(2.5rem, 8vw, 3.5rem);
    }

    #section1 .section__inner {
      padding-top: 4.5rem;
      padding-bottom: 6rem;
    }

    #section2 .section__inner {
      padding-top: 1.5rem;
    }
  }

  /* =========================================================
     SECTION 4 — ESTILISMO
     ========================================================= */
  .section--stylist {
    min-height: 0;
  }

  .section--stylist .section__inner {
    padding-top: clamp(3rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }

  .section__inner--stylist {
    width: 100%;
    max-width: 700px;
  }

  .stylist-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(2rem, 5vw, 2.75rem);
    padding: 0.65rem 1.2rem;
    border: 1px solid #8A6647;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8A6647;
    transition: opacity 0.25s ease;
  }

  @media (max-width: 700px) {
    .stylist-cta {
      width: 148px;
      height: 50px;
      padding: 0 0.3rem;
      font-size: 0.5rem;
      letter-spacing: 0.02em;
      line-height: 1.2;
      text-align: center;
    }
  }

  .stylist-cta:hover,
  .stylist-cta:focus-visible {
    opacity: 0.65;
  }

  /* =========================================================
     SECTION 5 — GUÍA MARGARITA (acordeón)
     ========================================================= */
  .section--guide {
    min-height: 0;
  }

  .section--guide .section__inner {
    padding-top: clamp(3rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }

  .section__inner--guide {
    width: 100%;
    max-width: 900px;
  }

  .section--guide .section__text {
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }

  .guide-card {
    text-align: left;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem);
    border-radius: 10px;
  }

  .guide-acc {
    display: flex;
    flex-direction: column;
  }

  .guide-acc__item {
    border-bottom: 1px solid rgba(35, 37, 92, 0.15);
  }

  .guide-acc__item:first-child {
    border-top: 1px solid rgba(35, 37, 92, 0.15);
  }

  .guide-acc__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1.15rem 0.25rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: left;
  }

  .guide-acc__question .faq__icon::before,
  .guide-acc__question .faq__icon::after {
    background: var(--ink);
  }

  .guide-acc__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  .guide-acc__item.is-open .guide-acc__panel {
    grid-template-rows: 1fr;
  }

  .guide-acc__panel-inner {
    overflow: hidden;
  }

  .guide-acc__list {
    list-style: none;
    padding: 0 0.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .guide-acc__list li {
    position: relative;
    padding-left: 1.25rem;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(35, 37, 92, 0.75);
  }

  .guide-acc__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--gold);
  }

  .guide-acc__list a {
    transition: opacity 0.2s ease;
  }

  .guide-acc__list a:hover,
  .guide-acc__list a:focus-visible {
    opacity: 0.6;
  }

  /* =========================================================
     SECTION VENEZUELA
     ========================================================= */
  .section__inner--venezuela {
    width: 100%;
    max-width: 1040px;
  }

  .section--venezuela .section__text {
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
  }

  .venezuela-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .venezuela-card {
    position: relative;
    width: clamp(240px, 32vw, 370px);
    height: clamp(300px, 38vw, 430px);
    border-radius: 10px;
    perspective: 1600px;
    outline: none;
  }

  @media (max-width: 560px) {
    .venezuela-grid {
      flex-wrap: nowrap;
      gap: 0.75rem;
    }

    .venezuela-card {
      width: calc(50% - 0.375rem);
      height: auto;
      aspect-ratio: 3 / 5;
    }

    .venezuela-card__face--back {
      gap: 0.3rem;
      padding: 0.85rem;
    }

    .venezuela-card__back-name {
      font-size: 0.95rem;
      margin-bottom: 0.15rem;
    }

    .venezuela-card__back-title {
      font-size: 0.4rem;
      letter-spacing: 0.14em;
    }

    .venezuela-card__hotel-list {
      gap: 0.2rem;
      margin-bottom: 0.2rem;
    }

    .venezuela-card__hotel-list li {
      font-size: 0.5rem;
    }

  }

  .venezuela-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(35, 37, 92, 0.18);
    border-radius: 10px;
  }

  .venezuela-card:focus-visible .venezuela-card__inner,
  .venezuela-card.is-flipped .venezuela-card__inner {
    transform: rotateY(180deg);
  }

  @media (hover: hover) and (pointer: fine) {
    .venezuela-card:hover .venezuela-card__inner,
    .venezuela-card:focus-within .venezuela-card__inner {
      transform: rotateY(180deg);
    }
  }

  .venezuela-card__face {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .venezuela-card__face--front {
    background-size: cover;
    background-position: center;
  }

  .venezuela-card--roques {
    background-image: url('assets/roques1.png');
  }

  .venezuela-card--canaima {
    background-image: url('assets/canaima1.png');
  }

  .venezuela-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 1.5rem 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 55%);
  }

  .venezuela-card__name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--cream);
    text-shadow: 0 2px 12px rgba(35, 37, 92, 0.55);
  }

  .venezuela-card__face--back {
    transform: rotateY(180deg);
    background: var(--beige-dark);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: clamp(1.25rem, 3.5vw, 1.85rem);
    text-align: left;
    overflow-y: auto;
  }

  .venezuela-card__back-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    margin-bottom: 0.3rem;
  }

  .venezuela-card__back-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .venezuela-card__hotel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
  }

  .venezuela-card__hotel-list li {
    font-family: var(--font-serif);
    font-size: 0.68rem;
    color: var(--ink);
  }

  .venezuela-card__hotel-list li::before {
    content: "- ";
  }

  .venezuela-contact {
    width: 100%;
    max-width: 480px;
    margin: clamp(2rem, 5vw, 3rem) auto 0;
    text-align: center;
  }

  .venezuela-contact__text {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(35, 37, 92, 0.65);
  }

  .venezuela-contact__link {
    color: var(--gold);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

  .venezuela-contact__link:hover,
  .venezuela-contact__link:focus-visible {
    opacity: 0.65;
  }

  @media (max-width: 700px) {
    .venezuela-contact {
      max-width: none;
      width: 100vw;
      position: relative;
      left: 50%;
      margin-left: -50vw;
      padding-inline: 1rem;
      margin-top: 1.25rem;
    }

    .venezuela-contact__text {
      font-size: 0.6rem;
      line-height: 1.4;
      padding-top: 0.6rem;
    }
  }

  /* =========================================================
     SECTION 6 — REGALOS
     ========================================================= */
  .section--gifts {
    min-height: 0;
  }

  .section--gifts .section__inner {
    padding-top: clamp(3rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }

  .section__inner--gifts {
    width: 100%;
    max-width: 960px;
  }

  .gift__intro-row {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 620px;
    margin: 0 auto clamp(2rem, 5vw, 2.75rem);
  }

  .gift__intro {
    max-width: 620px;
    line-height: 1.7;
  }

  .gift__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(2.25rem, 5vw, 3.25rem);
  }

  .gift__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.6rem;
    width: 260px;
  }

  .gift__card-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .gift__card-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink);
    word-break: break-word;
  }

  .gift__card-value--nowrap {
    white-space: nowrap;
  }

  @media (max-width: 700px) {
    .gift__grid {
      flex-direction: column;
      align-items: center;
    }
  }

  /* =========================================================
     SECTION 7 — Q&A (acordeón)
     ========================================================= */
  .section--faq {
    min-height: 0;
  }

  .section--faq .section__inner {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  }

  .section__inner--faq {
    width: 100%;
    max-width: 940px;
  }

  .section--faq .section__title {
    margin-bottom: clamp(2rem, 5vw, 2.75rem);
  }

  .faq {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: left;
  }

  .faq__item {
    border: 1px solid #8A6647;
    border-radius: 2px;
    background: var(--cream);
  }

  .faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--dusty-blue);
    text-align: left;
  }

  .faq__icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .faq__icon::before,
  .faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--dusty-blue);
    transform: translate(-50%, -50%);
  }

  .faq__icon::before {
    width: 16px;
    height: 1.5px;
  }

  .faq__icon::after {
    width: 1.5px;
    height: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .faq__item.is-open .faq__icon::after,
  .guide-acc__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  .faq__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }

  .faq__item.is-open .faq__panel {
    grid-template-rows: 1fr;
  }

  .faq__panel-inner {
    overflow: hidden;
  }

  .faq__panel-inner p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(35, 37, 92, 0.65);
    padding: 0 1.5rem 1.1rem;
  }

  /* =========================================================
     FOOTER
     ========================================================= */
  .footer {
    background: var(--cream);
    border-top: 1px solid rgba(35, 37, 92, 0.1);
  }

  .footer__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2rem, 4.5vw, 3rem) 1.5rem;
    text-align: center;
  }

  .footer__logo {
    display: block;
    height: 100px;
    width: auto;
    margin: 0 auto 1rem;
  }

  .footer__names {
    font-family: var(--font-serif);
    font-variant: small-caps;
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .footer__date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(35, 37, 92, 0.75);
  }

  /* =========================================================
     SCROLL REVEAL
     ========================================================= */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* =========================================================
     REDUCED MOTION
     ========================================================= */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .hero__scroll-icon {
      animation: none;
      opacity: 0.8;
      transform: none;
    }
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .typing-cursor {
      display: none;
    }
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 860px) {
    .navbar__toggle {
      display: flex;
    }
  
    .navbar__menu {
      position: fixed;
      inset: 0 0 0 auto;
      width: min(78vw, 320px);
      height: 100vh;
      background-color: var(--cream);
      background-image: linear-gradient(rgba(231, 224, 196, 0.68), rgba(231, 224, 196, 0.68)), url('assets/bg1.png');
      background-repeat: repeat;
      background-size: 700px 700px;
      backdrop-filter: blur(14px);
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 2.2rem;
      padding: clamp(6rem, 24vw, 7.5rem) clamp(2rem, 8vw, 3rem) 2rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      border-left: 1px solid rgba(76, 107, 42, 0.2);
    }

    .navbar__menu.is-open {
      transform: translateX(0);
    }

    .navbar__menu .navbar__link {
      font-size: 0.9rem;
      color: var(--ink);
    }

    .navbar__menu .navbar__link:hover,
    .navbar__menu .navbar__link:focus-visible,
    .navbar__menu .navbar__link.is-active {
      color: var(--gold);
    }

    .navbar__menu .navbar__link::after {
      background: var(--gold);
    }
  }

  @media (max-width: 480px) {
    .navbar__brand-name {
      font-size: 0.95rem;
    }
  }

