/* =========================================================
   VARIABLES (tema)
   ========================================================= */
:root{
  --bg:#fbfcfa;
  --text:#1f2a24;
  --muted:rgba(31,42,36,.68);
  --brand:#5d8f77;
  --brand-2:#f2f6f3;
  --brand-3:#cfe2d6;
  --accent:#c7a86a;
  --border:rgba(31,42,36,.16);
  --shadow:0 18px 50px rgba(0,0,0,.08);
  --shadow-soft:0 10px 28px rgba(0,0,0,.06);
  --max:1200px;
  --radius:18px;
  --safe-top:env(safe-area-inset-top);
  --safe-bottom:env(safe-area-inset-bottom);
}

/* =========================================================
   BASE / RESET
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); }
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
p{ line-height:1.75; margin:.5rem 0; }

h1,h2,h3{
  font-family:'Playfair Display',serif;
  line-height:1.15;
  margin:0 0 .55rem;
}

.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

section{ padding:84px 0; }
.section--alt{ background:var(--brand-2); }

.section__title{
  font-size:clamp(30px,3.6vw,46px);
  text-align:center;
  letter-spacing:.2px;
}
.section__title::after{
  content:"";
  display:block;
  width:56px;
  height:2px;
  margin:14px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
  opacity:.9;
}
.section__lead{
  max-width:780px;
  margin:14px auto 34px;
  text-align:center;
  color:var(--muted);
}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid rgba(199,168,106,.55);
  outline-offset:2px;
}

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

/* =========================================================
   BOTONES
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:.95rem 1.25rem;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:800;
  border:0;
  box-shadow:var(--shadow-soft);
  cursor:pointer;
  transition:transform .15s ease, filter .2s ease;
}
.btn:hover{ transform:translateY(-1px); filter:brightness(1.03); }

.btn--ghost{
  background:rgba(255,255,255,.75);
  color:var(--text);
  border:1px solid rgba(31,42,36,.18);
  box-shadow:none;
}
.btn--ghost:hover{ background:#fff; }

/* =========================================================
   HEADER + DRAWER
   ========================================================= */
.siteHeader{
  position:sticky;
  top:0;
  z-index:100;
  padding-top:var(--safe-top);
  background:rgba(251,252,250,.72);
  backdrop-filter:blur(10px) saturate(180%);
  border-bottom:1px solid rgba(31,42,36,.08);
}
.headerInner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{ display:flex; flex-direction:column; gap:2px; }
.brand__title{ font-weight:800; letter-spacing:.2px; }
.brand__tag{
  font-size:12px;
  color:rgba(31,42,36,.72);
  letter-spacing:.18em;
  text-transform:uppercase;
}
.menuTrigger{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(31,42,36,.14);
  background:rgba(255,255,255,.7);
  cursor:pointer;
  font-weight:800;
}
.menuTrigger__icon{ width:18px; height:12px; position:relative; display:inline-block; }
.menuTrigger__icon::before,
.menuTrigger__icon::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background:rgba(31,42,36,.7);
  border-radius:999px;
}
.menuTrigger__icon::before{ top:0; }
.menuTrigger__icon::after{ bottom:0; }
.menuTrigger__text{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; }

.drawerOverlay{ position:fixed; inset:0; background:rgba(0,0,0,.35); }
.drawer{
  position:fixed;
  right:14px;
  top:14px;
  width:min(360px, calc(100vw - 28px));
  background:rgba(255,255,255,.9);
  border:1px solid rgba(31,42,36,.14);
  border-radius:20px;
  box-shadow:var(--shadow);
  transform:translateY(-10px) scale(.98);
  opacity:0;
  transition:opacity .22s ease, transform .22s ease;
  overflow:hidden;
}
.drawer.isOpen{ transform:translateY(0) scale(1); opacity:1; }

.drawerTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(31,42,36,.08);
  background:
    radial-gradient(700px 140px at 20% 0%, rgba(207,226,214,.65), transparent 60%),
    radial-gradient(700px 140px at 90% 20%, rgba(199,168,106,.18), transparent 55%);
}
.drawerBrand__title{ font-weight:800; }
.drawerBrand__sub{ font-size:12px; color:var(--muted); margin-top:2px; }
.drawerClose{
  border:0;
  background:rgba(255,255,255,.8);
  width:34px; height:34px;
  border-radius:999px;
  cursor:pointer;
}
.drawerLinks{ display:flex; flex-direction:column; padding:10px 10px 14px; }
.drawerLinks a{
  padding:12px 12px;
  border-radius:14px;
  font-weight:700;
  color:rgba(31,42,36,.86);
}
.drawerLinks a:hover{ background:rgba(207,226,214,.45); }
.drawerLinks .cta{ margin-top:8px; background:var(--brand); color:#fff; }

.drawerFooter{ padding:12px 16px 16px; color:var(--muted); font-size:12px; }
kbd{
  padding:2px 6px;
  border-radius:8px;
  border:1px solid rgba(31,42,36,.18);
  background:rgba(255,255,255,.75);
}
@media (max-width: 768px) {
  .drawerFooter {
    display: none;
  }
}

/* =========================================================
   HERO (base)
   ========================================================= */
.hero{
  position:relative;
  min-height:88svh;
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  background:url('../Images/Brujas_Bruselas.jpg') center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.18), rgba(0,0,0,.45));
}
.hero__inner{
  position:relative;
  z-index:1;
  padding:84px 20px;
  max-width:980px;
}
.heroKicker{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.26);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(3px);
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.names{ font-size:clamp(52px, 6.4vw, 78px); margin-top:12px; }
.heroLead{ margin:10px 0 18px; opacity:.95; font-size:18px; }
.heroMeta{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(3px);
  font-weight:700;
  font-size:13px;
}
.heroActions{
  margin-top:8px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.heroHint{ margin-top:26px; font-size:13px; opacity:.85; }

/* =========================================================
   COUNTDOWN (base)
   ========================================================= */
.countdown{
  margin-top:16px;
  display:grid;
  grid-auto-flow:column;
  gap:12px;
  justify-content:center;
}
.cd-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:14px;
  padding:.7rem .9rem;
  min-width:86px;
}
.cd-num{ font-size:clamp(30px, 4.6vw, 42px); font-weight:800; line-height:1; }
.cd-label{ font-size:12px; letter-spacing:.8px; text-transform:uppercase; opacity:.9; }
.hero-date{ position:relative; display:inline-block; margin-top:.8rem; padding:0 .25rem; color:#fff;  font-size:clamp(16px,2vw,20px);  font-weight:700;  letter-spacing:.05em;}
.hero-date::before{  content:""; position:absolute; left:-6px; right:-6px; bottom:.15em; height:.75em; background:#6d927d; transform:skewX(-12deg); z-index:-1; border-radius:4px;}

/* =========================================================
   CARDS / TIMELINE / GALLERY
   ========================================================= */
.card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(31,42,36,.12);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.card__body{ padding:22px; }

.couple{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:30px;
  align-items:stretch;
}
.couple .card img{
  height:520px;
  width:100%;
  object-fit:cover;
  object-position:center 26%;
}
.timeline{ display:grid; gap:16px; max-width:820px; margin:0 auto; }
.step{
  display:grid;
  grid-template-columns:74px 1fr;
  gap:12px;
  align-items:baseline;
  padding:16px;
  border-radius:16px;
  border:1px dashed rgba(31,42,36,.18);
  background:rgba(255,255,255,.9);
}
.step time{ font-weight:900; color:var(--brand); }
.step p{ margin:0; color:var(--muted); line-height:1.5; }

.gallery{ columns:2; column-gap:18px; }
.gallery img{
  width:100%;
  border-radius:16px;
  margin:0 0 18px;
  break-inside:avoid;
  box-shadow:var(--shadow-soft);
}

/* =========================================================
   GRAN DÍA
   ========================================================= */
.gran-dia-editorial{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:42px;
  align-items:start;
  margin-top:32px;
}
.gran-dia-editorial__image{
  display:inline-block;
  border:1px solid rgba(31,42,36,.14);
  padding:10px;
  border-radius:22px;
  background:rgba(255,255,255,.85);
  box-shadow:var(--shadow-soft);
}
.gran-dia-editorial__image img{ max-width:520px; width:auto; height:auto; display:block; }
.gran-dia-editorial__content{ display:flex; flex-direction:column; gap:34px; }
.gran-dia-block{ max-width:650px; }

.gran-dia-title{ font-size:28px; font-weight:500; margin:0 0 6px; }
.gran-dia-title--underline{ position:relative; display:inline-block; padding-bottom:8px; }
.gran-dia-title--underline::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:46px; height:2px;
  background:linear-gradient(90deg, var(--accent), rgba(199,168,106,.15));
  border-radius:999px;
}
.gran-dia-subtitle{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(93,143,119,.75);
  margin-bottom:14px;
}
.gran-dia-meta{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(31,42,36,.78);
}
.sep{ opacity:.5; }
.link-icono{ border-bottom:1px solid rgba(31,42,36,.22); padding-bottom:2px; }
.link-icono:hover{ border-bottom-color:rgba(31,42,36,.45); }

/* =========
   AUTOBUSES 
   ========= */
#autobuses .bus-route{
  --rail-x:54px;
  position:relative;
  max-width:920px;
  margin:26px auto 0;
  padding:26px 26px 26px var(--rail-x);
  border-radius:26px;
  border:1px solid rgba(31,42,36,.10);
  background:
    radial-gradient(1000px 260px at 18% 0%, rgba(207,226,214,.55), transparent 60%),
    radial-gradient(900px 260px at 90% 100%, rgba(199,168,106,.16), transparent 62%),
    rgba(255,255,255,.86);
  box-shadow:0 16px 46px rgba(0,0,0,.06);
  overflow:visible;
}

#autobuses .bus-vehicle{
  position:absolute;
  z-index:20;
  pointer-events:none;
  line-height:1;
  font-size:22px;
  opacity:.95;
  will-change:left, top;
  transform:translate(-50%, -50%);
  filter:drop-shadow(0 10px 14px rgba(0,0,0,.12));
}

#autobuses .bus-stop{
  position:relative;
  border-left:0;
  padding:18px 0 18px 28px;
}
#autobuses .bus-stop + .bus-stop{
  margin-top:6px;
  padding-top:22px;
}
#autobuses .bus-stop + .bus-stop::before{
  content:"";
  position:absolute;
  left:28px;
  right:10px;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(31,42,36,.08), transparent);
}

#autobuses .bus-dot{
  position:absolute;
  width:12px;
  height:12px;
  border-radius:999px;
  left:-6px;
  top:22px;
  background:var(--accent);
  box-shadow:
    0 0 0 5px rgba(199,168,106,.14),
    0 10px 18px rgba(0,0,0,.08);
  z-index:5;
}
#autobuses .bus-stop:first-child .bus-dot{
  background:var(--brand);
  box-shadow:
    0 0 0 5px rgba(93,143,119,.14),
    0 10px 18px rgba(0,0,0,.08);
}
#autobuses .bus-stop:last-child .bus-dot{
  background:rgba(31,42,36,.55);
  box-shadow:
    0 0 0 5px rgba(31,42,36,.10),
    0 10px 18px rgba(0,0,0,.08);
}

#autobuses .bus-route::before{
  content:"";
  position:absolute;
  left:var(--rail-x);
  top:calc(26px + 22px + 6px);
  bottom:calc(26px + 22px + 6px);
  width:2px;
  background:rgba(31,42,36,.14);
  border-radius:999px;
  opacity:.95;
}

#autobuses .bus-stop h4{
  margin:0 0 8px;
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  font-size:16px;
  font-weight:900;
  color:rgba(31,42,36,.92);
}
#autobuses .bus-leg{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:rgba(31,42,36,.70);
}
#autobuses .bus-arrow{ opacity:.45; padding:0 8px; }
#autobuses .bus-stop small{
  display:inline-flex;
  margin-top:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:rgba(31,42,36,.62);
  background:rgba(207,226,214,.35);
  border:1px solid rgba(93,143,119,.18);
}

@media (max-width:560px){
  #autobuses .bus-route{
    --rail-x:42px;
    padding:20px 16px 20px var(--rail-x);
    border-radius:22px;
  }
  #autobuses .bus-stop{ padding-left:24px; }
  #autobuses .bus-stop h4{ font-size:14px; }
  #autobuses .bus-route::before{
    top:calc(20px + 22px + 6px);
    bottom:calc(20px + 22px + 6px);
  }
}

/* =======
   PLAYER
   ======= */
.playerWrap{ display:flex; justify-content:center; }
.player{
  width:100%;
  max-width:760px;
  background:#111;
  padding:20px;
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,.45);
}
.main{ display:flex; flex-direction:column; gap:14px; }
.column-2{ padding:10px; }
.cover{
  width:100%;
  max-width:200px;
  aspect-ratio:1/1;
  border-radius:16px;
  overflow:hidden;
  margin:0 auto 10px;
  box-shadow:0 10px 26px rgba(0,0,0,.4);
}
.cover img{ width:100%; height:100%; object-fit:cover; }

.title{ font-size:22px; color:#fff; text-align:left; }
.titleGroup{ font-size:16px; color:rgba(255,255,255,.55); text-align:left; margin-top:-6px; }

.row-2{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.cell-button,.cell-timeline{ display:flex; align-items:center; justify-content:center; }
.cell-timeline{ flex:10; padding:10px; }
.cell-button{ flex:1; }

.cell-button button{
  background:none;
  border:0;
  color:#fff;
  cursor:pointer;
  font-size:28px;
  transition:transform .15s ease, opacity .15s ease;
}
.cell-button button:hover{ transform:translateY(-1px); opacity:.92; }

.cell-button-play button{
  background:none;
  border:0;
  color:#fff;
  cursor:pointer;
  font-size:44px;
  transition:transform .15s ease;
}
.cell-button-play button:hover{ transform:scale(1.06); }

#time-remaining{ color:#fff; opacity:.9; flex:2; text-align:right; }

.progress-container{
  width:100%;
  height:6px;
  background:rgba(255,255,255,.25);
  border-radius:999px;
  cursor:pointer;
  margin-bottom:5px;
}
.progress{ height:100%; width:0; background:#fff; border-radius:999px; }

.playlist{
  margin-top:12px;
  width:100%;
  background:#0b0b0b;
  border-radius:14px;
  max-height:280px;
  overflow-y:auto;
  overflow-x:hidden;
  padding:8px;
}
.playlist li{
  list-style:none;
  padding:10px;
  margin:6px 0;
  background:#121212;
  color:rgba(255,255,255,.62);
  border-radius:12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  transition:background .2s ease, color .2s ease;
}
.playlist li:hover{ background:#1f1f1f; color:#fff; }
.playlist li.active{ background:#000; color:#fff; }
.playlist img{ width:40px; height:40px; border-radius:10px; object-fit:cover; }
.playlist li span{
  flex:1;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

@media (max-width:740px){
  .player{ max-width:520px; padding:14px; border-radius:20px; }
  .cover{ max-width:170px; margin:0 auto 8px; border-radius:16px; }

  .title{
    font-size:18px;
    line-height:1.15;
    margin-top:6px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .titleGroup{
    font-size:13px;
    margin-top:2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .row-2{ gap:8px; align-items:center; }

  .cell-button button{
    width:44px; height:44px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    display:grid;
    place-items:center;
    font-size:20px;
  }
  .cell-button-play button{
    width:54px; height:54px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    display:grid;
    place-items:center;
    font-size:34px;
  }

  .progress-container{ height:8px; margin-bottom:0; }
  #time-remaining{
    font-size:12px;
    opacity:.85;
    flex:0 0 auto;
    min-width:44px;
    text-align:right;
  }

  .playlist{ max-height:210px; padding:8px; border-radius:14px; }
  .playlist li{ padding:10px; border-radius:12px; margin:6px 0; }
  .playlist img{ width:34px; height:34px; border-radius:10px; }
}

@media (max-width:390px){
  .player{ padding:12px; }
  .cover{ max-width:155px; }
  .cell-button-play button{ width:50px; height:50px; font-size:32px; }
}

@media (min-width:741px){
  .player{
    max-width:980px;
    padding:22px;
    border-radius:26px;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:18px;
    align-items:start;
  }
  .player .main{ grid-column:1; gap:14px; }
  .player .playlist{
    grid-column:2;
    margin-top:0;
    max-height:520px;
    border-radius:18px;
  }

  .cover{ max-width:260px; margin:0 auto 12px; border-radius:18px; }

  .title{
    font-size:24px;
    line-height:1.12;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .titleGroup{
    font-size:15px;
    margin-top:4px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .row-2{ gap:10px; }

  .cell-button button{
    width:46px; height:46px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    display:grid;
    place-items:center;
    font-size:22px;
  }
  .cell-button-play button{
    width:62px; height:62px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    display:grid;
    place-items:center;
    font-size:40px;
  }

  .progress-container{ height:8px; margin-bottom:0; }
  #time-remaining{
    font-size:13px;
    opacity:.9;
    flex:0 0 auto;
    min-width:52px;
    text-align:right;
  }

  .playlist{ padding:10px; }
  .playlist li{ padding:12px; border-radius:14px; }
  .playlist img{ width:42px; height:42px; border-radius:12px; }
}

@media (min-width:1100px){
  .player{ grid-template-columns:340px 1fr; max-width:1040px; }
  .cover{ max-width:280px; }
}

/* ===========
   FORMULARIOS
   =========== */
.content-narrow{ width:100%; max-width:860px; margin:0 auto; }

.formCard{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(31,42,36,.14);
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.formCard--alt{ background:rgba(255,255,255,.84); }

.formCard__head{
  padding:22px 22px 16px;
  background:radial-gradient(1200px 200px at 50% 0%, rgba(207,226,214,.55), transparent 60%);
  border-bottom:1px solid rgba(31,42,36,.08);
}
.formCard__kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(31,42,36,.62);
  font-weight:800;
}
.formCard__title{ margin-top:6px; font-size:clamp(20px, 2.2vw, 26px); }
.formCard__note{ margin-top:6px; color:var(--muted); font-size:14px; }

.form{ padding:18px 22px 22px; }
.formGrid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field{ margin-top:12px; }

.form label{
  display:block;
  margin:0 0 8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(31,42,36,.72);
}
.form input,.form select,.form textarea{
  width:100%;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(31,42,36,.16);
  background:rgba(255,255,255,.9);
  font:inherit;
  transition:border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.form input::placeholder,.form textarea::placeholder{ color:rgba(31,42,36,.45); }
.form input:focus,.form select:focus,.form textarea:focus{
  outline:none;
  border-color:rgba(93,143,119,.55);
  box-shadow:0 0 0 4px rgba(207,226,214,.7), 0 14px 28px rgba(0,0,0,.08);
  transform:translateY(-1px);
}
.hint{ margin-top:8px; font-size:13px; color:rgba(31,42,36,.62); }
.notice{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:16px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(207,226,214,.35);
  border:1px solid rgba(93,143,119,.22);
  color:rgba(31,42,36,.78);
}
.formActions{ margin-top:18px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.microcopy{ color:rgba(31,42,36,.62); font-size:14px; }

.acompanante-item{
  margin-top:16px;
  padding:14px 14px 4px;
  border-radius:18px;
  border:1px dashed rgba(31,42,36,.18);
  background:rgba(255,255,255,.75);
}

/* ==========
   FORM RSVP
   ==========*/
.form .field{ margin-bottom:.9rem; }

.form label,.field .label{
  display:block;
  font-size:.85rem;
  font-weight:500;
  margin-bottom:.35rem;
}

.hint{
  margin-top:.25rem;
  font-size:.8rem;
  opacity:.7;
  line-height:1.25;
}

.formGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:.75rem 1rem;
}

.field--full{ width:100%; }
.formGrid .field--full{ grid-column:1 / -1; }

.form input[type="text"],
.form input[type="number"],
.form textarea{
  width:100%;
  padding:.55rem .7rem;
  border-radius:10px;
  border:1px solid #e1e1e1;
  background:#fff;
  font-size:.9rem;
  line-height:1.2;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form input::placeholder,.form textarea::placeholder{ opacity:.6; }

.form input:focus,.form textarea:focus{
  outline:none;
  border-color:#c9a24d;
  box-shadow:0 0 0 2px rgba(201,162,77,.15);
}

.form input[type="number"]{ max-width:180px; }

.field--full textarea{ min-height:90px; resize:vertical; }

.radioGroup{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}
.radioOption{ position:relative; cursor:pointer; }
.radioOption input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.radioOption span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.45rem .85rem;
  border-radius:999px;
  border:1.5px solid #ddd;
  background:#fff;
  font-size:.95rem;
  transition:all .2s ease;
  user-select:none;
}
.radioOption span::before{ display:none; }
.radioOption:hover span{ border-color:#c9a24d; }

.radioOption input[type="radio"]:checked + span{
  border-color:#c9a24d;
  background:rgba(201,162,77,.08);
  font-weight:500;
}
.radioOption input[type="radio"]:focus-visible + span{
  outline:2px solid #c9a24d;
  outline-offset:2px;
}

.radioGroup--sm .radioOption--sm span{
  padding:.35rem .65rem;
  font-size:.85rem;
}

.mt-2{ margin-top:.75rem; }

.companionCard{
  margin-top:.75rem;
  padding:.85rem;
  border-radius:14px;
  border:1px solid #eee;
  background:#fafafa;
}
.companionCard__title{
  font-weight:600;
  font-size:.9rem;
  margin-bottom:.5rem;
}

.notice{
  margin:1rem 0;
  padding:.75rem .85rem;
  border-radius:12px;
  background:#fff;
  border:1px solid #eee;
  font-size:.85rem;
  opacity:.9;
}

.formActions{
  margin-top:1.2rem;
  display:flex;
  align-items:center;
  gap:.75rem;
}
.formActions .btn{
  padding:.65rem 1.2rem;
  border-radius:999px;
  font-size:.9rem;
}
.microcopy{ font-size:.8rem; opacity:.7; }

@media (max-width:600px){
  .formGrid{ grid-template-columns:1fr; }
  .form input[type="number"]{ max-width:100%; }
  .companionCard{ padding:.75rem; }

  .radioGroup{
    display:flex;
    flex-wrap:nowrap;
    width:100%;
    gap:.5rem;
    align-items:stretch;
  }
  .radioOption{ flex:1 1 0; min-width:0; }
  .radioOption span{
    width:100%;
    height:34px;
    padding:0 .75rem;
    font-size:.82rem;
    line-height:1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .radioGroup--sm .radioOption--sm span{ height:32px; font-size:.8rem; }

  .radioGroup[aria-label="Asistencia"] .radioOption:first-child{ flex:0 0 42%; }
  .radioGroup[aria-label="Asistencia"] .radioOption:last-child{ flex:0 0 58%; }
  .radioGroup[aria-label="Asistencia"] .radioOption span{ padding:0 .9rem; }
  
  /* NUEVO — evita zoom en iOS al hacer focus */
  .form input[type="text"],
  .form input[type="number"],
  .form textarea{
    font-size:16px;
  }
}

@media (min-width:768px){
  .radioGroup[aria-label="Asistencia"]{
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    gap:24px;
  }
  .radioGroup[aria-label="Asistencia"] .radioOption{ flex:0 0 auto; }
  .radioGroup[aria-label="Asistencia"] .radioOption span{ white-space:nowrap; }
}

/* ======================
   MENSAJES + PAGINACIÓN
   ======================*/
#lista-mensajes{
  display:flex;
  flex-direction:column;
  gap:14px;
  width:100%;
  margin-top:28px;
}
.mensaje-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(31,42,36,.12);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}
.mensaje-head{ display:flex; justify-content:space-between; gap:12px; margin-bottom:8px; }
.mensaje-name{ font-weight:800; }
.mensaje-date{ color:var(--muted); font-size:13px; }
.mensaje-text{ color:rgba(31,42,36,.82); line-height:1.65; }

.emptyState{
  padding:18px;
  border-radius:18px;
  border:1px dashed rgba(31,42,36,.2);
  background:rgba(255,255,255,.75);
  color:var(--muted);
  text-align:center;
}

#paginacion{
  margin-top:clamp(18px, 3vw, 30px);
  text-align:center;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
}
#paginacion button{
  margin:0;
  padding:.62rem 1.05rem;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  font-weight:650;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  transition:transform .15s ease, filter .2s ease, box-shadow .2s ease, opacity .2s ease;
}
#paginacion button:hover:not(.disabled){
  transform:translateY(-2px);
  filter:brightness(1.05);
  box-shadow:0 16px 30px rgba(0,0,0,.14);
}
#paginacion button:active:not(.disabled){ transform:translateY(0); }
#paginacion button.disabled{ opacity:.55; cursor:default; box-shadow:none; }

.pager{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
}
.pagerBtn{
  padding:.62rem 1.05rem;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  transition:transform .15s ease, filter .2s ease;
}
.pagerBtn:hover:not(:disabled){ transform:translateY(-2px); filter:brightness(1.05); }
.pagerBtn:disabled{ opacity:.55; cursor:default; box-shadow:none; }
.pagerInfo{
  font-size:14px;
  color:var(--muted);
  white-space:nowrap;
  padding:0 8px;
}

/* ======
   MODAL 
   ======*/
.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(10,20,14,.55);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  justify-content:center;
  align-items:center;
  padding:18px;
  z-index:9999;
}
.modal-content{
  background:
    radial-gradient(900px 180px at 50% 0%, rgba(207,226,214,.55), transparent 60%),
    rgba(255,255,255,.96);
  border:1px solid rgba(93,143,119,.22);
  border-radius:var(--radius);
  width:min(520px, 100%);
  padding:28px 28px 24px;
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  position:relative;
}
.close{
  position:absolute;
  top:14px;
  right:16px;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  padding:6px 10px;
  border-radius:10px;
  color:rgba(31,42,36,.55);
  transition:background .15s ease, color .15s ease;
  float:none;
}
.close:hover{
  background:rgba(31,42,36,.07);
  color:var(--text);
}
.modal-content p{
  font-family:'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
  text-align:center;
  margin:10px 0 0;
  white-space:pre-line;
}

@media (max-width:480px){
  .modal-content{ padding:24px 18px 20px; }
  .modal-content p{ font-size:14px; }
}

/* ===========
   INFO SPLIT
   ===========*/
.info-split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:start;
}
.mapCard{ overflow:hidden; }
.faqCard h3{ margin-top:12px; }

/* =======
   FOOTER
   =======*/
footer{
  padding:40px 0;
  border-top:1px solid rgba(31,42,36,.10);
  text-align:center;
  color:var(--muted);
  padding-bottom:calc(40px + var(--safe-bottom));
}
.footerLink{
  display:inline-block;
  border-bottom:1px solid rgba(31,42,36,.22);
  padding-bottom:2px;
}
.footerLink:hover{ border-bottom-color:rgba(31,42,36,.45); }

/* ==================
   RESPONSIVE GENERAL
   ================== */
@media (max-width:1024px){
  .couple{ grid-template-columns:1fr; }
  .gran-dia-editorial{ grid-template-columns:1fr; gap:22px; }
  .gran-dia-editorial__image{ justify-self:center; display:block; width:100%; max-width:520px; }
  .gran-dia-editorial__image img{ max-width:100%; width:100%; }
}

@media (max-width:740px){
  section{ padding:68px 0; }
  .countdown{
    grid-auto-flow:row;
    grid-template-columns:repeat(2, minmax(140px,1fr));
    justify-items:center;
  }
  .gallery{ columns:1; }
  .info-split{ grid-template-columns:1fr; }
  .formGrid{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  .mensaje-card, #paginacion button, .close{ transition:none; }
  .mensaje-card:hover, #paginacion button:hover:not(.disabled){ transform:none; }
}

/* ==========
   HERO FINAL
   ==========*/
#top.hero .hero__inner{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:72px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

#top.hero .names{
  white-space:nowrap;
  text-align:center;
  margin:0 auto;
  max-width:100%;
}

@media (max-width:740px){
  #top.hero .names{
    font-size:clamp(34px, 10vw, 58px);
    line-height:1.02;
  }
}

#top.hero .tag{
  max-width:320px;
  margin-left:auto;
  margin-right:auto;
}

#top.hero .hero__inner > p.cd-card{
  width:fit-content;
  max-width:calc(100% - 32px);
  min-width:0;
  padding:8px 12px;
  margin:10px auto 6px;
  border-radius:14px;
  font-size:14px;
  line-height:1.15;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

#top.hero .countdown{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:nowrap;
  gap:8px;
  margin:6px auto 0;
  width:auto;
}

#top.hero .countdown > .cd-card{
  width:70px;
  height:62px;
  min-width:0;
  padding:0;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
#top.hero .countdown .cd-num{
  font-size:26px;
  font-weight:900;
  line-height:1;
}
#top.hero .countdown .cd-label{
  margin-top:4px;
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.85;
}

@media (min-width:741px){
  #top.hero .countdown{ gap:10px; margin-top:10px; }
  #top.hero .countdown > .cd-card{ width:86px; height:72px; border-radius:12px; }
  #top.hero .countdown .cd-num{ font-size:34px; }
  #top.hero .countdown .cd-label{ font-size:10px; letter-spacing:.14em; }
}

#top.hero .heroActions{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:nowrap;
  gap:10px;
  width:100%;
  max-width:430px;
  margin:12px auto 0;
}
#top.hero .heroActions .btn{
  flex:1 1 0;
  min-width:0;
  white-space:nowrap;
  padding:.85rem .95rem;
  font-size:14px;
}
@media (max-width:360px){
  #top.hero .heroActions .btn{
    font-size:13px;
    padding:.8rem .85rem;
  }
}

@media (max-width:740px){
  #top.hero{
    background-size:125% auto;
    background-position:27% 45%;
    background-repeat:no-repeat;
  }
}
@media (max-width:390px){
  #top.hero{
    background-size:120% auto;
    background-position:25% 45%;
    background-repeat:no-repeat;
  }
}

/* =============
   ALOJAMIENTOS 
   =============*/
#Alojamientos.section{ display:block; height:auto; min-height:0; overflow:visible; }
#Alojamientos > .container{ display:block; height:auto; min-height:0; overflow:visible; }

#Alojamientos .my-hotels-grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

#Alojamientos .hotel-tile{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(31,42,36,.12);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
#Alojamientos .hotel-tile:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(0,0,0,.10);
  border-color:rgba(93,143,119,.22);
}

#Alojamientos .hotel-tile > .Hotelrow-1:first-child{
  padding:14px 16px 12px;
  background:linear-gradient(
    135deg,
    rgba(207,226,214,.38) 0%,
    rgba(255,255,255,.74) 55%,
    rgba(255,255,255,.55) 100%
  );
  border-bottom:1px solid rgba(31,42,36,.08);
}

#Alojamientos .hotel-tile h3{
  margin:0;
  font-family:inherit;
  font-size:18px;
  font-weight:600;
  letter-spacing:.2px;
  color:rgba(31,42,36,.9);
  line-height:1.2;
}

#Alojamientos .hotel-tile > .Hotelrow-2{ padding:0; margin:0; }

#Alojamientos .Hotelcarousel{
  position:relative;
  width:100%;
  height:210px;
  overflow:hidden;
  background:#f4f5f3;
}
#Alojamientos .Hotelcarousel-track{
  display:flex;
  width:100%;
  height:100%;
  transform:translateX(0%);
  transition:transform .35s ease;
  will-change:transform;
}
#Alojamientos .Hotelcarousel-track img{
  flex:0 0 100%;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  user-select:none;
  -webkit-user-drag:none;
}

#Alojamientos .Hotelcarousel::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:56px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.28));
  pointer-events:none;
}

#Alojamientos .Hotelnav{ display:none; }

#Alojamientos .Hotelindicators{
  position:absolute;
  left:0; right:0; bottom:10px;
  display:flex;
  justify-content:center;
  gap:7px;
  z-index:2;
  padding:0 10px;
}
#Alojamientos .Hotelindicators button{
  width:7px;
  height:7px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.6);
  cursor:pointer;
  padding:0;
  transition:transform .15s ease, background .15s ease;
}
#Alojamientos .Hotelindicators button[aria-current="true"]{
  background:#fff;
  transform:scale(1.4);
}

#Alojamientos .hotel-tile > .Hotelrow-1:last-child{
  margin:0;
  padding:14px 16px 18px;
  border-top:1px solid rgba(31,42,36,.06);
  background:#fff;
}

#Alojamientos .hotel-tile p{
  margin:8px 0;
  line-height:1.55;
  color:rgba(31,42,36,.86);
  font-size:14.5px;
}
#Alojamientos .hotel-tile p i{
  color:rgba(93,143,119,.92);
  margin-right:8px;
  width:18px;
  text-align:center;
}
#Alojamientos .hotel-tile a.link-icono{
  border-bottom:1px solid rgba(31,42,36,.22);
  padding-bottom:2px;
  text-decoration:none;
}
#Alojamientos .hotel-tile a.link-icono:hover{ border-bottom-color:rgba(31,42,36,.45); }

#Alojamientos .hotel-tile ul{
  margin:10px 0 0;
  padding-left:18px;
  color:rgba(31,42,36,.82);
  font-size:14px;
}

#Alojamientos .hotel-tile p[style*="font-size:14px"]{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(207,226,214,.34);
  border:1px solid rgba(93,143,119,.20);
}

@media (max-width:1024px){
  #Alojamientos .my-hotels-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  #Alojamientos .Hotelcarousel{ height:220px; }
}
@media (max-width:640px){
  #Alojamientos .my-hotels-grid{ grid-template-columns:1fr; gap:16px; }
  #Alojamientos .Hotelcarousel{ height:240px; }
}

@media (max-width:768px){
  html,body{ scroll-behavior:auto; }
}
@media (hover:none) and (pointer:coarse){
  html,body{ scroll-behavior:auto !important; }
}

/* ================
   LINKS PELUQUERIA
   ================ */
.links-wedding{
  line-height:2;
  font-size:1.05rem;
  text-align:center;
}
.links-wedding span{ display:block; }
.links-wedding a{
  color:inherit;
  text-decoration:none;
  font-weight:600;
}
.links-wedding a:hover{ text-decoration:underline; }

@media (min-width:768px){
  .links-wedding{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    column-gap:36px;
    row-gap:6px;
    max-width:980px;
    margin:0 auto;
    text-align:left;
  }
}
