    :root{
      --ink: #634c31;
      --hero-text:#fff;
      --hero-overlay:rgba(0,0,0,.42);
      --hero-overlay-2:rgba(0,0,0,.10);
      --hero-frame:rgba(255,255,255,.55);

      /* Tipografía global */
      --font-main: "EB Garamond", serif;
      --font-script: "Monsieur La Doulaise", cursive;
    }

    @font-face {
      font-family: "EB Garamond";
      src: url("../fonts/EB_Garamond/EBGaramond-VariableFont_wght.ttf") format("truetype");
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "EB Garamond";
      src: url("../fonts/EB_Garamond/EBGaramond-Italic-VariableFont_wght.ttf") format("truetype");
      font-weight: 100 900;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: "Monsieur La Doulaise";
      src: url("../fonts/Monsieur_La_Doulaise/MonsieurLaDoulaise-Regular.ttf") format("truetype");
      font-weight: 100;
      font-style: normal;
      font-display: swap;
    }


    /* Evitar azul automático en teléfonos / números */
      a[href^="tel"],
      a[href^="sms"],
      a[href^="mailto"], a{
        color: #e2c28b;
        text-decoration: none;
        font-weight: inherit;
      }

      a[x-apple-data-detectors]{
        color: #e2c28b !important;
        text-decoration: none !important;
        font-size: inherit !important;
        font-family: inherit !important;
        font-weight: inherit !important;
      }

    

    *{ box-sizing:border-box; }
       html, body{
        margin:0;
        font-family: var(--font-main);
        color: var(--ink);
        font-weight:100;
        background-color: #ffffff;
        background-image: url("images/paper-texture.webp");
        background-repeat: repeat;
        background-size: auto;
      }
    body{ margin:0; }

    /* HERO */
    .hero{
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      }

      .hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }


      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,0.15),
          rgba(0,0,0,0.45)
        );
        z-index: 1;
      }

      .hero__frame {
      position: relative;
      z-index: 2;
      min-height: 100svh;
      display: grid;
      align-items: end; /* 👈 esto lo empuja abajo */
    }

    .hero__content{
      text-align:center;
      padding: clamp(20px, 5.5vw, 64px) clamp(16px, 5vw, 48px) clamp(22px, 7vw, 78px);
      width:min(680px, 100%);
      margin:0 auto;
      color: #ffffff;
    }

    .hero__kicker{
      margin:0 0 clamp(10px, 2.2vw, 18px);
      letter-spacing:.45em;
      font-size: clamp(18px, 2.2vw, 16px);
      text-transform:uppercase;
      opacity:.92;
      font-weight:100;
    }

    .hero__title{ margin:0; line-height:1.02; }

    .hero__names{
      display:inline-block;
      font-size: clamp(38px, 7.4vw, 70px);
      letter-spacing:.08em;
      text-transform:uppercase;
      font-weight:500;
    }

    .hero__amp{ font-weight:500; opacity:.95; }

    .hero__date{
      margin: clamp(18px, 3.6vw, 30px) 0 0;
      display:inline-flex;
      align-items:baseline;
      justify-content:center;
      gap: clamp(20px, 4vw, 44px);
      letter-spacing:.42em;
      text-transform:uppercase;
      font-weight:100;
    }

    .hero__dateWord{ font-size: clamp(18px, 2.4vw, 16px); opacity:.92; }

    .hero__dateNum{
      font-size: clamp(48px, 9vw, 86px);
      letter-spacing:.06em;
      font-weight:100;
      opacity:.98;
    }


    /* PAPER SECTION */
    .paper-wrap{
      position:relative;
      background: transparent;
      display:flex;
      justify-content:center;
    }

    .paper{
      position:relative;
      max-width: 900px;
      width:100%;
      padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 72px);
      background: linear-gradient(to bottom, #f5efe4, #f1eadc);
      color:#6b4f32;
      text-align:center;
      border-radius: 6px 6px 28px 28px;
      box-shadow: 0 18px 40px rgba(0,0,0,.18);
      font-family: var(--font-main);
    }

    .paper::after{
      content:"";
      position:absolute;
      left:-2%;
      right:-2%;
      bottom:-26px;
      height:56px;
      background:
        radial-gradient(40px 18px at 10% 0%, transparent 70%, #f1eadc 72%),
        radial-gradient(50px 20px at 30% 0%, transparent 70%, #f1eadc 72%),
        radial-gradient(45px 22px at 55% 0%, transparent 70%, #f1eadc 72%),
        radial-gradient(60px 24px at 80% 0%, transparent 70%, #f1eadc 72%);
      background-repeat: repeat-x;
      background-size: 120px 56px;
    }

    .paper__title{
      margin:0 0 clamp(22px, 4vw, 40px);
      font-size: clamp(18px, 4.8vw, 38px);
      letter-spacing:.12em;
      text-transform:uppercase;
      font-weight:100;
      line-height:1.4;
    }

    .paper__text{
      margin:0 auto;
      max-width: 640px;
      font-size: clamp(18px, 3.6vw, 20px);
      line-height:1.9;
      letter-spacing:.10em;
      font-weight:100;
    }

    .paper__ref{
      display:block;
      margin-top: 10px;
      font-style:italic;
      letter-spacing:.14em;
      opacity:.9;
    }

    /* COUNTDOWN (minimal, igual al diseño) */
    .countdown-wrap{
      padding: clamp(70px, 12vw, 120px) 16px;
      display:flex;
      justify-content:center;
      background: transparent;
    }

    .countdown{
      text-align:center;
      color: var(--ink);
    }

    .countdown__label{
      margin:0 0 10px;
      text-transform:uppercase;
      letter-spacing:.4em;
      font-size: clamp(18px, 2.5vw, 18px);
      opacity:.7;
      font-weight:100;
    }

    .countdown__number{
      margin:0;
      font-size: clamp(72px, 14vw, 140px);
      line-height:1;
      font-weight:100;
      letter-spacing:.02em;
    }

    .countdown__line{
      display:block;
      width:80px;
      height:1px;
      background: var(--ink);
      margin: 24px auto 0;
      opacity:.5;
    }

    /* BANNER FOTO + FRASE */


    .banner{
      max-width: 980px;
      margin: 0 auto;
    }

    .banner__photo{
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #ffffff;
      overflow: hidden;
    }

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

    .banner__caption{
      text-align:center;
      padding: clamp(26px, 4.8vw, 44px) 16px 0;
      font-size: clamp(20px, 3.4vw, 30px);
      line-height: 1.35;
      letter-spacing: .02em;
    }

    .banner__caption strong{
      font-weight: 700;
    }

    /* TARJETA DE PAPEL (imagen + sombra) */
    .card-wrap{
      padding: clamp(70px, 12vw, 120px) 16px;
      display:flex;
      justify-content:center;
      background: transparent;
    }

    .card{
      position:relative;
      max-width: 860px;
      width:90%;
      box-shadow: 0 0px 30px rgba(0,0,0,0.12)
    }

    .card img{
      width:100%;
      display:block;
    }

    /* UBICACIÓN – CEREMONIA */
    .location-wrap{
      padding: clamp(80px, 14vw, 140px) 16px;
      display:flex;
      justify-content:center;
    }

    .location{
      max-width: 820px;
      width:100%;
      text-align:center;
    }

    .location__image{
      max-width: 520px;
      margin: 0 auto clamp(28px, 5vw, 48px);
    }

    .location__image img{
      width:100%;
      display:block;
    }

    .location__title{
      margin:0 0 14px;
      font-size: clamp(20px, 4.4vw, 30px);
      text-transform:uppercase;
      font-weight:500;
    }

    .location__name{
      margin:0 0 8px;
      font-size: clamp(20px, 3.6vw, 24px);
      font-weight:500;
    }

    .location__address{
      margin:0 0 34px;
      font-size: clamp(18px, 3.2vw, 19px);
      opacity:.75;
    }

    .location__btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 10px 26px;
      border:1px solid #e2c28b;
      border-radius: 999px;
      text-decoration:none;
      color: var(--ink);
      font-size: 18px;
      letter-spacing:.18em;
      font-weight:500;
      background: transparent;
      transition: all .25s ease;
    }

    .location__btn:hover{
      background: #e2c28b;
      color:#ffffff;
    }
  

    /* FULL WIDTH BANNER (solo imagen) */
    .full-banner{
      width:100%;
      padding: clamp(50px, 8vw, 90px) 0;
    }

    .full-banner__image{
      width:100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .full-banner__image img{
      width:100%;
      height:auto;
      display:block;
    }

    /* ETIQUETA (código de vestimenta) */
    .etiquette-wrap{
      padding: clamp(90px, 16vw, 150px) 16px;
      display:flex;
      justify-content:center;
    }

    .etiquette{
      max-width: 900px;
      width:100%;
      text-align:center;
      position:relative;
    }

  

    .etiquette__intro{
      margin:0 auto 34px;
      max-width: 760px;
      font-size: clamp(18px, 3.6vw, 24px);
      line-height: 1.55;
    }

    .etiquette__block{
      margin: 0 auto 26px;
      max-width: 760px;
      font-size: clamp(18px, 3.6vw, 24px);
      line-height: 1.65;
    }

    .etiquette__block strong{
      font-weight:700;
    }

    .etiquette__note{
      margin: 10px auto 46px;
      max-width: 760px;
      font-size: clamp(18px, 3.4vw, 22px);
      line-height: 1.6;
    }

    .etiquette__photo{
      position:relative;
      width:min(520px, 92%);
      margin: 0 auto;
      padding: 18px;
    }

    .etiquette__photo img{
      width:100%;
      display:block;
    }

    /* esquinas doradas tipo Canva */
    .etiquette__photo::before,
    .etiquette__photo::after{
      content:"";
      position:absolute;
      inset: 0;
      pointer-events:none;
      border-radius: 10px;
    }

    .etiquette__photo::before{
      /* esquina superior izquierda */
      background:
        linear-gradient(#e2c28b,#e2c28b) left 8px top 8px / 46px 2px no-repeat,
        linear-gradient(#e2c28b,#e2c28b) left 8px top 8px / 2px 46px no-repeat,
        /* esquina inferior derecha */
        linear-gradient(#e2c28b,#e2c28b) right 8px bottom 8px / 46px 2px no-repeat,
        linear-gradient(#e2c28b,#e2c28b) right 8px bottom 8px / 2px 46px no-repeat;
      opacity:.9;
    }

    .etiquette__caption{
      margin: 26px auto 0;
      max-width: 760px;
      font-size: clamp(18px, 3.6vw, 24px);
    }

    /* REGALOS */
    .gifts-wrap{
      padding: clamp(90px, 16vw, 160px) 16px;
      display:flex;
      justify-content:center;
    }

    .gifts{
      max-width: 820px;
      width:100%;
      text-align:center;
    }

    

    .gifts__bow img{
      width:100%;
      display:block;
    }

    .gifts__title{
      margin: 0 0 18px;
      font-size: clamp(40px, 8vw, 64px);
      font-style: italic;
      font-weight: 500;
    }

    .gifts__subtitle{
      margin: 0 0 28px;
      font-size: clamp(18px, 3.4vw, 22px);
      text-transform: uppercase;
      font-weight: 500;
      line-height: 1.5;
    }

    .gifts__text{
      margin: 0 auto 46px;
      max-width: 720px;
      font-size: clamp(18px, 3.6vw, 24px);
      line-height: 1.55;
    }

    .bankcard-wrap{
      display:flex;
      justify-content:center;
    }

    .bankcard{
      width: min(620px, 92vw);
      aspect-ratio: 1.58 / 1;
      border-radius: 22px;
      position: relative;
      overflow: hidden;          
      background: #0b3d2e;
    }

    .bankcard::before{
      content:"";
      position:absolute;
      inset:-2px;
      /* reflejos tipo metal */
      background:
        linear-gradient(120deg,
          rgba(255,255,255,.55) 0%,
          rgba(255,255,255,.15) 20%,
          rgba(255,255,255,0) 40%),
        linear-gradient(300deg,
          rgba(0,0,0,.35) 0%,
          rgba(0,0,0,0) 45%);
      opacity:.45;
      pointer-events:none;
    }

    .bankcard__chip{
      position:absolute;
      left: 34px;
      top: 34px;
      width: 54px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(255,255,255,.32), rgba(255,255,255,.12));
      box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
    }

    .bankcard__chip::after{
      content:"";
      position:absolute;
      inset: 12px 10px;
      border-radius: 6px;
      border: 1px solid rgba(0,0,0,.22);
      opacity:.35;
    }

    .bankcard__monogram{
      position: absolute;
      right: 130px;
      top: 14px;
      width: 120px;
      height: 120px;
      object-fit: contain;
      opacity: .35;
    }

    .bankcard__tap{
      position:absolute;
      right: 38px;
      top: 34px;
      width: 40px;
      height: 40px;
      opacity:.35;
    }

    .bankcard__tap::before,
    .bankcard__tap::after{
      content:"";
      position:absolute;
      inset:0;
      border: 2px solid rgba(255,255,255,.85);
      border-color: rgba(255,255,255,.85) transparent transparent transparent;
      border-radius: 999px;
      transform: rotate(45deg);
    }

    .bankcard__tap::after{
      inset: 10px;
      opacity:.75;
    }

    .bankcard__content{
      position:absolute;
      left: 42px;
      right: 42px;
      bottom: 34px;
      color: rgba(255,255,255,.92);
      text-align:center;
    }

    .bankcard__number{
      margin:0 0 10px;
      font-size: clamp(20px, 4.2vw, 30px);
      letter-spacing: .22em;
      font-weight: 500;
      line-height: 1.2;
    }

    .bankcard__name{
      margin:0;
      font-size: clamp(18px, 3.4vw, 26px);
      letter-spacing: .18em;
      text-transform: uppercase;
      opacity:.95;
    }

    .bankcard [contenteditable]{
      outline: none;
      border-radius: 10px;
      padding: 2px 6px;
    }

    .bankcard [contenteditable]:focus{
      box-shadow: 0 0 0 2px rgba(255,255,255,.32);
      background: rgba(255,255,255,.08);
    }

    
    /* RECEPCIONES (RSVP) */
    .receptions-wrap{
      padding: 25px;
      display:flex;
      justify-content:center;
    }

    .receptions{
      max-width: 860px;
      width:100%;
      text-align:center;
    }

    .receptions__intro{
      margin: 0 auto 56px;
      max-width: 760px;
      font-size: clamp(18px, 3.8vw, 26px);
  
    }

    /* SOBRE DE PAPEL (ABIERTO) */
    .envelope-open{
      position: relative;
      width: min(520px, 92vw);
      height: 380px;
      margin: 0 auto 56px;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
    }





    /* Tarjeta interior */
    .envelope-open__card{
      position:absolute;
      left:50%;
      top: 98px;
      transform: translateX(-50%);
      width: 78%;
      border-radius: 8px;
      padding: 36px 26px 30px;
      text-align:center;
      z-index:3;
    }

    .envelope-open__name{
      margin: 0 0 14px;
      font-size: clamp(20px, 4vw, 28px);
      text-transform: uppercase;
      font-weight:500;
    }

    .envelope-open__seats{
      margin:0;
      font-size: clamp(18px, 3.2vw, 20px);
     
    }


    .envelope_reception{
      width: 100%;
      padding: 18px;

    }

    .receptions__note{
      margin: 0 auto 16px;
      max-width: 760px;
      font-size: clamp(18px, 3.8vw, 26px);
      line-height: 1.55;
    }

    .receptions__contact{
      margin-top: 18px;
      font-size: clamp(18px, 3.8vw, 26px);
    }

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

    /* TIMELINE PROGRAMA */
    .timeline-wrap{
      padding: clamp(90px, 16vw, 160px) 16px;
      display:flex;
      justify-content:center;
    }

    .timeline{
      max-width: 900px;
      width:100%;
      text-align:center;
      position:relative;
    }

    .timeline__header img, .etiquette img{
      width: 100%;
      max-width: 520px;
      display:block;
    }

    .timeline__title, .etiquette__title, .gifts__title, .receptions__title, .lodging__title {
      font-size: clamp(68px, 5.5vw, 42px);
      font-weight:100;
      font-family: "Monsieur La Doulaise", cursive;
      font-weight: 500;
      font-style: normal;
      margin-bottom: 20px;
    }

    .timeline__list{
      position:relative;
      margin:0 auto;
      padding:0;
      list-style:none;
      display:grid;
      grid-template-columns: 1fr 40px 1fr;
      row-gap: 70px;
      align-items:center;
    }

    .timeline__line{
      position:absolute;
      top: 280px; /* inicia debajo del header */
      bottom:0;
      left:50%;
      width:2px;
      background:#e2c28b;
      transform: translateX(-50%);
    }

    .timeline__item{
      display:contents;
    }

    .timeline__left{
      text-align:center;
      padding-right: 0;
    }

    .timeline__event{
      font-size: 16px;
      letter-spacing:.26em;
      text-transform:uppercase;
      font-weight:600;
      margin-bottom:4px;
    }

    .timeline__time{
      font-size: 15px;
      letter-spacing:.22em;
      opacity:.8;
    }

    .timeline__dot{
      width:18px;
      height:18px;
      border:2px solid #e2c28b;
      border-radius:50%;
      background:#ffffff;
      z-index:1;
      margin:0 auto;
    }

    .timeline__right{
      text-align:left;
      padding-left: 24px;
    }

    .timeline__icon img{
      max-width: 80px;
      display:block;
    }

    @media (max-width: 768px){
      .timeline__list{
        grid-template-columns: 1fr 30px 1fr;
        row-gap: 56px;
      }

      .timeline__left{
        text-align:right;
        padding-right:0;
      }

      .timeline__right{
        padding-left: 16px;
      }
    }

      /* REGALOS */
    .gifts-wrap{
      padding: clamp(90px, 16vw, 160px) 16px;
      display:flex;
      justify-content:center;
    }

    .gifts{
      max-width: 760px;
      width:100%;
      text-align:center;
    }



    .gifts__bow img{
      width:100%;
      display:block;
    }

  

    .gifts__subtitle{
      margin:0 0 22px;
      font-size: clamp(18px, 3.6vw, 22px);
      line-height:1.6;
      text-transform:uppercase;
      opacity:.9;
    }

    .gifts__text{
      margin:0 auto 46px;
      max-width: 520px;
      font-size: clamp(18px, 3.4vw, 20px);
      line-height:1.8;
      opacity:.85;
    }

    /* ==============================
       RSVP (desde tu export de Canva)
       Ajustado a paleta + tipografía
       ============================== */
    :root{
      --rsvp-bg: rgba(255,255,255,0.86);
      --rsvp-card: rgba(255,255,255,0.96);
      --rsvp-text: var(--ink);
      --rsvp-accent: #e2c28b;
      --rsvp-accent-2: var(--ink);
      --rsvp-border: rgba(99,76,49,0.18);
      --rsvp-shadow: 0 18px 55px rgba(0,0,0,0.18);
      --rsvp-radius: 22px;
    }

    .rsvp-form{display:flex; flex-direction:column; gap:10px}
    .rsvp-label{font-size:16px; opacity:0.9;}
    .rsvp-input{
      width:100%;
      border:1px solid var(--rsvp-border);
      border-radius:14px;
      padding:12px 12px;
      background: rgba(255,255,255,0.9);
      color: var(--rsvp-text);
      font-size:14px;
      font-family: var(--font-main);
    }

    .rsvp-actions{display:flex; gap:10px; margin-top:10px; flex-wrap:wrap}

    .rsvp-primary, .rsvp-secondary{
      border-radius:999px;
      padding:12px 14px;
      font-weight:700;
      cursor:pointer;
      border:1px solid var(--rsvp-border);
      font-family: var(--font-main);
      text-transform:uppercase;
    }

    .rsvp-primary{
      background: var(--rsvp-accent-2);
      color:white;
      border-color: rgba(0,0,0,0.08);
    }

    .rsvp-secondary{background:transparent; color:var(--rsvp-text)}

    .rsvp-status{
      margin:10px 0 0 0; 
      font-size:24px; 
      min-height:18px; 
      opacity:0.9; 
      font-weight: 500;
    }

    /* RSVP (inputs) */
    .rsvp-form{display:flex; flex-direction:column; gap:10px}
    .rsvp-label{font-size:18px;}
    .rsvp-input{
      width:100%;
      border:1px solid var(--rsvp-border);
      border-radius:14px;
      padding:12px 12px;
      background: rgba(255,255,255,0.9);
      color: var(--rsvp-text);
      font-size:18px;
      font-family: var(--font-main);
    }

    .rsvp-actions{display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; justify-content:center}

    .rsvp-primary, .rsvp-secondary{
      border-radius:999px;
      padding:12px 14px;
      font-weight:700;
      cursor:pointer;
      border:1px solid var(--rsvp-border);
      font-family: var(--font-main);
      text-transform:uppercase;
    }

    .rsvp-primary{ background: var(--rsvp-accent-2); color:white; border-color: rgba(0,0,0,0.08); }
    .rsvp-secondary{ background:transparent; color:white; border-color: #ffffff; }

    .rsvp-help{ margin: 8px auto 0; max-width: 560px; font-size: 16px;  opacity:.75; text-transform: uppercase; }

    .receptions__text{
      font-size: 18px;
    }

    .receptions-form{
      background-color: #0b3d2e;
      padding: 26px;
      color: #fff;

    }

    .reception__deadline{
      align-items: center;
      padding: 30px;
      text-align: center;
    }

    /* HOSPEDAJES */
.lodging-wrap{
  padding: clamp(90px, 16vw, 160px) 18px;
  display:flex;
  justify-content:center;
}

.lodging{
  max-width: 980px;
  width:100%;
  text-align:center;
}

.lodging__intro{
  margin: 0 auto 18px;
  max-width: 760px;
  font-size: clamp(18px, 3.6vw, 24px);
  line-height:1.55;
  opacity:.95;
}

.lodging__note{
  margin: 0 auto 46px;
  max-width: 820px;
  font-size: clamp(16px, 3.2vw, 20px);
  line-height:1.65;
  opacity:.85;
}

.lodging-map{
  width:100%;
  margin-top: 30px;
}

.lodging-map iframe{
  width:100%;
  border:0;
  display:block;
}

/* APP BUTTONS (Airbnb / Booking) */
.lodging-apps{
  display:flex;
  justify-content:center;
  gap:26px;
  margin: 10px 0 50px;
}

.lodging-app{
  width:110px;
  text-decoration:none;
  color: var(--ink);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.lodging-app img{
  width:82px;
  height:82px;
  object-fit:cover;
  border-radius:22px; /* iOS style */
  padding:0px;
  box-shadow:
    0 8px 18px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.lodging-app span{
  font-size:14px;
  text-transform:uppercase;
  opacity:.9;
}

.lodging-app:hover img{
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0,0,0,.22),
    inset 0 0 0 1px rgba(0,0,0,.08);
}

@media (max-width: 480px){
  .lodging-app{
    width:96px;
  }
  .lodging-app img{
    width:74px;
    height:74px;
  }
}

/* MUSIC TOGGLE */
.music-toggle{
  position: fixed;
  bottom: 22px;
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11,61,46,0.9); /* verde oscuro */
  color: #ffffff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 9998;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  transition: transform .25s ease, background .25s ease;
}

.music-toggle:hover{
  transform: scale(1.05);
  background: rgba(11,61,46,1);
}

.music-toggle.is-playing{
  background: rgba(99,76,49,0.95); /* tu color tinta */
}

.honeymoon-experience {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.polaroid-card {
  width: 320px;
  background: #fffdf9;
  border-radius: 8px;
  padding: 14px 14px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.polaroid-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.polaroid-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.polaroid-body {
  text-align: center;
  padding-top: 16px;
}

.polaroid-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9d8b78;
  margin-bottom: 8px;
}

.polaroid-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.1;
  color: #3e3128;
  margin: 0 0 10px;
}

.polaroid-price {
  font-size: 20px;
  font-weight: 600;
  color: #7a5c46;
  margin: 0 0 18px;
}

.polaroid-button {
  display: inline-block;
  padding: 12px 22px;
  background: #b88a5a;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.polaroid-button:hover {
  background: #a1764b;
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .polaroid-card {
    width: 100%;
    max-width: 320px;
  }

  .polaroid-photo img {
    height: 300px;
  }

  .polaroid-title {
    font-size: 26px;
  }
}

.honeymoon-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #b88a5a;
  color: white;
  font-size: 14px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 100;
  transition: all 0.3s ease;
}

.honeymoon-btn:hover {
  background: #a1764b;
  transform: translateY(-2px);
  font-weight: 100;
}

