/* ================================================
   SAMUEL & CRISTINA — BODA DIGITAL
   Antigua Guatemala · 29 & 30 Enero 2027
   Champagne · Sage Green · Gold · Cursive Elegance
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Great+Vibes&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --champagne: #F5EDD6;
  --cream: #FAF7F0;
  --white: #FDFCF9;
  --sage: #6B8C6B;
  --sage-dk: #3D5A3E;
  --sage-lt: #8FAF8F;
  --sage-pale: #EAF0EA;
  --gold: #C9A84C;
  --gold-lt: #E5D49A;
  --text: #2C2C2C;
  --text2: #5A5550;
  --text3: #8A8078;
  --border: rgba(107, 140, 107, 0.18);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
  --fs: 'Great Vibes', cursive;
  --ff: 'Cinzel', serif;
  --fb: 'Cormorant Infant', serif;
  --navH: 62px;
  --py: 84px;
  --maxW: 920px;
  --r: 13px;
  --rLg: 13px;
}

/* ── RESET ──────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  /* Aumentado de 16px por defecto */
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── LAYOUT UTILITIES ───────────────────────────── */
.wrap {
  max-width: var(--maxW);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--py) 0;
}

.text-center {
  text-align: center;
}

.label {
  display: block;
  font-family: var(--ff);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.label--lt {
  color: rgba(255, 255, 255, .65);
}

.sec-title {
  font-family: var(--ff);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text);
  line-height: 1.3;
}

.sec-title--lt {
  color: #fff;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px auto;
  max-width: 180px;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage), transparent);
}

.ornament-dot {
  width: 5px;
  height: 5px;
  border: 1px solid var(--sage);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  font-style: italic;
  text-align: center;
  max-width: 500px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* fade-in on scroll */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fi.vis {
  opacity: 1;
  transform: translateY(0);
}

.fi:nth-child(2) {
  transition-delay: .1s;
}

.fi:nth-child(3) {
  transition-delay: .2s;
}

.fi:nth-child(4) {
  transition-delay: .3s;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 999;
  height: var(--navH);
  background: rgba(250, 247, 240, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-c {
  width: 100%;
  max-width: 1100px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav-brand {
  font-family: var(--fs);
  font-size: 1.8rem;
  color: var(--sage-dk);
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-brand em {
  font-family: var(--fb);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: var(--ff);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 7px 7px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dk);
  background: var(--sage-pale);
}



.nav-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  flex-shrink: 0;
  margin-left: 8px;
}

.nav-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-btn.open span:nth-child(2) {
  opacity: 0;
}

.nav-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #d1d8d1;
  /* Base sage color placeholder */
  background-image: linear-gradient(180deg, #e9ede9 0%, #d1d8d1 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .5) 45%, rgba(0, 0, 0, .72) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}

/* Arch SVG "NUESTRA BODA" */
.arch-svg {
  width: min(280px, 78vw);
  display: block;
  margin-bottom: -6px;
}

.arch-text-path {
  font-family: var(--ff);
  font-size: 11.5px;
  letter-spacing: .3em;
  fill: rgba(255, 255, 255, .82);
}

.hero-names {
  font-family: var(--fs);
  font-size: clamp(3.2rem, 13vw, 6.5rem);
  line-height: .95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.hero-amp {
  font-family: var(--fb);
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  margin: 4px 0;
  letter-spacing: .1em;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 14px;
}

.hero-divider span {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, .3);
  display: block;
}

.hero-divider svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-lt);
  flex-shrink: 0;
}

.hero-date {
  font-family: var(--ff);
  font-size: .85rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 4px;
}

.hero-place {
  font-family: var(--fb);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 30px;
}

/* Countdown */
.cd {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px;
  /* Matched with other cards */
  padding: 14px 22px;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.cd-num {
  font-family: var(--ff);
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.cd-lbl {
  font-family: var(--ff);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 5px;
}

.cd-sep {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 14px;
}

/* Scroll indicator */
.scroll-dn {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .65);
  transition: color .3s;
  animation: bounce 2.4s ease-in-out infinite;
  cursor: pointer;
}

.scroll-dn:hover {
  color: #fff;
}

.scroll-dn-text {
  font-family: var(--ff);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.scroll-dn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(9px)
  }
}

/* ── EVENTS ─────────────────────────────────────── */
.events-section {
  background: var(--champagne);
  position: relative;
}

.timeline {
  margin-top: 44px;
}

.timeline-day {
  margin-bottom: 36px;
  text-align: center;
}

.tdb {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.tdb-name {
  font-family: var(--ff);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
}

.tdb-num {
  font-family: var(--fs);
  font-size: 5.5rem;
  line-height: .85;
  color: var(--sage-dk);
}

.tdb-month {
  font-family: var(--ff);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text3);
  margin-top: 4px;
}

/* ── HORIZONTAL EVENTS TIMELINE ─────────────────── */
.ev-htimeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

/* Línea horizontal entre cards */
.ev-htimeline::before {
  content: '';
  position: absolute;
  top: 27px;
  /* altura del centro del dot */
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sage-lt) 10%, var(--sage) 50%, var(--sage-lt) 90%, transparent);
  z-index: 0;
}

.ev-hcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 0;
  position: relative;
}

/* Dot / ícono en la línea */
.ev-hcard-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px var(--champagne), 0 0 0 6px var(--sage-lt);
}

.ev-hcard--drinks .ev-hcard-dot {
  background: rgba(201, 168, 76, 1);
  box-shadow: 0 0 0 5px var(--champagne), 0 0 0 6px var(--gold-lt);
}

.ev-hcard--ceremony .ev-hcard-dot {
  background: var(--sage-dk);
}

.ev-hcard--party .ev-hcard-dot {
  background: var(--sage);
  box-shadow: 0 0 0 5px var(--champagne), 0 0 0 6px var(--sage-lt);
}

.ev-hcard-dot svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card body */
.ev-hcard-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rLg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  width: 100%;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}

.ev-hcard-body:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* Banda de fecha (derecha de la card) */
.ev-hcard-date {
  background: var(--sage-dk);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ev-hcard--drinks .ev-hcard-date {
  background: var(--gold);
}

.ev-hcard--party .ev-hcard-date {
  background: var(--sage);
}

.ev-hcard-day {
  font-family: var(--ff);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.ev-hcard-num {
  font-family: var(--fs);
  font-size: 2.8rem;
  color: #fff;
  line-height: .9;
  display: block;
}

.ev-hcard-month {
  font-family: var(--ff);
  font-size: .48rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

/* Info de la card */
.ev-hcard-info {
  padding: 18px 18px 20px;
  text-align: left;
  flex: 1;
}

.ev-hcard-name {
  font-family: var(--ff);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ev-hcard-venue {
  font-family: var(--fb);
  font-size: .95rem;
  font-style: italic;
  color: var(--text2);
  margin-bottom: 12px;
}

.ev-hcard-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

/* Reutiliza .ev-chip y .ev-map existentes */
.ev-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fb);
  font-size: .88rem;
  color: var(--text2);
}

.ev-chip svg {
  width: 13px;
  height: 13px;
  fill: var(--sage);
  flex-shrink: 0;
}

.ev-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dk);
  border: 1px solid var(--sage);
  padding: 7px 14px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}

.ev-map:hover {
  background: var(--sage-dk);
  color: #fff;
  border-color: var(--sage-dk);
}

.ev-map svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}

/* Mobile: apilar verticalmente */
@media (max-width: 700px) {
  .ev-htimeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ev-htimeline::before {
    display: none;
  }

  .ev-hcard {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .ev-hcard-dot {
    margin-bottom: 0;
    margin-top: 0;
    flex-shrink: 0;
  }

  .ev-hcard-body {
    flex-direction: row;
  }

  .ev-hcard-date {
    min-width: 64px;
    padding: 12px 10px;
  }

  .ev-hcard-num {
    font-size: 2.2rem;
  }
}

/* ── DRESS CODE (ARCH) ──────────────────────────── */

.dc-section {
  background: var(--cream);
  padding: var(--py) 24px;
  display: flex;
  justify-content: center;
  position: relative;
}

.dc-arch-outer {
  width: 100%;
  max-width: 600px;
}

.dc-arch {
  background: var(--sage-dk);
  border-radius: 300px 300px 0 0;
  padding: 72px 48px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dc-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .07) 0%, transparent 65%);
}

/* Textura de papel opalina — referencia al filtro SVG definido en el HTML */
.dc-arch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  filter: url(#paper-noise);
  mix-blend-mode: soft-light;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.dc-inner {
  position: relative;
  z-index: 1;
}

.dc-items {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 28px 0 24px;
}

.dc-item {
  flex: 1;
  padding: 0 20px;
}

.dc-divider {
  width: 1px;
  background: rgba(255, 255, 255, .2);
  margin: 6px 0;
}

.dc-event {
  display: block;
  font-family: var(--ff);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
}

.dc-style {
  display: block;
  font-family: var(--fs);
  font-size: 2.1rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.dc-date {
  display: block;
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  font-style: italic;
}

.dc-note {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}

.dc-cursive {
  font-family: var(--fs);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .5);
}

/* Botanical for dc section */
.dc-botanical {
  position: absolute;
  opacity: .25;
  pointer-events: none;
}

.dc-botanical--left {
  left: -30px;
  top: 40px;
  transform: rotate(180deg) scaleX(-1);
}

.dc-botanical--right {
  right: -30px;
  top: 40px;
}

/* ── GUIDE SECTION ──────────────────────────────── */
.guide-section {
  background: var(--white);
}

.guide-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: rgba(107, 140, 107, .08);
  border-radius: 50px;
  padding: 4px;
  margin: 32px 0 0;
}

.guide-tabs::-webkit-scrollbar {
  display: none;
}

.guide-tab {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--ff);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text2);
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.guide-tab.active {
  background: var(--sage-dk);
  color: #fff;
}

.guide-tab:hover:not(.active) {
  background: var(--sage-pale);
  color: var(--sage-dk);
}

.guide-panel {
  display: none;
  text-align: left;
  padding-top: 32px;
  animation: panelFade .4s ease;
}

.guide-panel.active {
  display: block;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.g-sub {
  margin-bottom: 36px;
}

.g-sub-title {
  font-family: var(--ff);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-dk);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.places {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}

.place {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow .25s, transform .25s;
}

.place:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ── FEATURED PLACE (Villa Bokeh) ────────────────── */
.place--featured {
  background: linear-gradient(135deg, var(--sage-dk) 0%, #2a4a2b 100%);
  border: none;
  color: #fff;
  grid-column: 1 / -1; /* Full-width across all columns */
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(61, 90, 62, .28);
  position: relative;
  overflow: hidden;
}

.place--featured::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(229,212,154,.18) 0%, transparent 70%);
  pointer-events: none;
}

.place--featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(61, 90, 62, .38);
}

.place-featured-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.place-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 4px;
}

.place-featured-badge svg {
  width: 11px;
  height: 11px;
  fill: var(--gold-lt);
  flex-shrink: 0;
}

.place--featured .place-name {
  color: #fff;
  font-size: 1.25rem;
}

.place--featured .place-desc {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}

.place-featured-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--fb);
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.place-featured-code svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold-lt);
}

.place-featured-code strong {
  font-family: var(--ff);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--gold-lt);
}

.place-featured-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.place--featured .place-link {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
}

.place--featured .place-link:hover {
  color: #fff;
}

.place-featured-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dk);
  background: #25d366;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background .2s, box-shadow .2s;
  font-weight: 700;
}

.place-featured-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}

.place-featured-wa svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── GOLD CARD (Villa Bokeh Hoteles) ─────────────── */
.place--gold {
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, .14);
  background: linear-gradient(135deg, #fffdf5 0%, var(--cream) 100%);
}

.place--gold:hover {
  box-shadow: 0 6px 24px rgba(201, 168, 76, .22);
}

.place-gold-code {
  font-family: var(--fb);
  font-size: .85rem;
  color: var(--text2);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 6px;
  padding: 7px 12px;
  margin-top: 2px;
}

.place-gold-code strong {
  font-family: var(--ff);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--gold);
}

.place-gold-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.place-gold-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff);
  font-size: .52rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #25d366;
  padding: 6px 11px;
  border-radius: 6px;
  font-weight: 700;
  transition: background .2s, box-shadow .2s;
}

.place-gold-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}

.place-gold-wa svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

.place-name {
  font-family: var(--fb);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.place-desc {
  font-size: .9rem;
  color: var(--text2);
  font-style: italic;
  line-height: 1.4;
  flex: 1;
}

.place-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
  transition: color .2s;
}

.place-link:hover {
  color: var(--sage-dk);
}

.place-link svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

/* ── PLACES EXPANDABLE ───────────────────────────── */
.places--hidden {
  display: none;
  margin-top: 10px;
}

.places--hidden.open {
  display: grid;
}

.places-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  width: 100%;
  padding: 0 4px;
}

.places-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-dk);
  background: transparent;
  border: 1px solid var(--sage);
  padding: 10px 22px;
  border-radius: 99px;
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
}

.places-toggle-btn:hover {
  background: var(--sage-dk);
  color: #fff;
  border-color: var(--sage-dk);
  box-shadow: 0 4px 18px rgba(61,90,62,.18);
}

.places-toggle-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  transition: transform .35s ease;
}

.places-toggle-btn[aria-expanded="true"] .places-toggle-icon {
  transform: rotate(180deg);
}

.badge {
  display: inline-block;
  font-family: var(--ff);
  font-size: .5rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.badge--high {
  background: rgba(201, 168, 76, .14);
  color: #8B6914;
}

.badge--mid {
  background: var(--sage-pale);
  color: var(--sage-dk);
}

.badge--low {
  background: rgba(107, 140, 107, .1);
  color: var(--sage);
}

.badge--airbnb {
  background: rgba(255, 90, 71, .08);
  color: #c0392b;
}

/* Emergency card */
.emergency {
  background: rgba(61, 90, 62, .06);
  border: 1px solid rgba(61, 90, 62, .14);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-top: 28px;
}

.emergency h3 {
  font-family: var(--ff);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-dk);
  margin-bottom: 14px;
}

.emergency-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.emergency-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.e-label {
  font-family: var(--ff);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
}

.e-num {
  font-family: var(--ff);
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}

.e-num:hover {
  color: var(--sage-dk);
}

/* ── TRANSPORT ──────────────────────────────────── */
.transport-section {
  background: var(--champagne);
}

.t-card {
  max-width: 580px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rLg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.t-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 140, 107, .1) 0%, transparent 70%);
  border-radius: 50%;
}

.t-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--sage-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.t-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.t-route {
  font-family: var(--ff);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.t-title {
  font-family: var(--fs);
  font-size: 2.4rem;
  color: var(--sage-dk);
  margin-bottom: 14px;
  line-height: 1.1;
}

.t-desc {
  font-size: 1rem;
  color: var(--text2);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.t-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.t-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: var(--text2);
}

.t-feature svg {
  width: 15px;
  height: 15px;
  fill: var(--sage);
  flex-shrink: 0;
}

.t-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-dk);
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--ff);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  cursor: pointer;
}

.t-btn:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

.t-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
}

/* ── RSVP ───────────────────────────────────────── */
.rsvp-section {
  background: var(--cream);
}

.rsvp-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.rsvp-opt {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rLg);
  padding: 42px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.rsvp-opt:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.rsvp-opt--primary {
  border-color: var(--sage);
  background: linear-gradient(145deg, var(--white), var(--sage-pale));
}

.rsvp-opt-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.rsvp-opt--primary .rsvp-opt-icon {
  background: var(--sage-dk);
}

.rsvp-opt-icon svg {
  width: 26px;
  height: 26px;
}

.rsvp-opt-title {
  font-family: var(--ff);
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 10px;
}

.rsvp-opt-desc {
  font-size: 1.05rem;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rsvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--ff);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  outline: none;
  border: none;
}

.rsvp-btn--primary {
  background: var(--sage-dk);
  color: #fff;
}

.rsvp-btn--primary:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.rsvp-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.rsvp-note {
  margin-top: 28px;
  font-family: var(--fb);
  font-size: 1.1rem;
  color: var(--text2);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}

.rsvp-deadline {
  display: inline-block;
  font-family: var(--ff);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-dk);
  background: transparent;
  border: 1px solid var(--sage-dk);
  padding: 11px 28px;
  border-radius: 6px;
  margin-top: 16px;
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--sage-dk);
  color: rgba(255, 255, 255, .8);
  text-align: center;
  padding: 56px 24px 36px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .06) 0%, transparent 65%);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-names {
  font-family: var(--fs);
  font-size: 3rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-date {
  font-family: var(--ff);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 24px;
}

.footer-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  margin: 0 auto 20px;
}

.footer-msg {
  font-family: var(--fs);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, .5);
}

/* Botanical SVG global */
.botanical {
  pointer-events: none;
}

/* ── HISTORIA & REGALOS ─────────────────────────── */
.history-section {
  background: var(--cream);
}

/* ── STORY TIMELINE ─────────────────────────────── */
.story-timeline {
  margin: 52px auto 0;
  max-width: 900px;
  position: relative;
  text-align: left;
}

/* Vertical connecting line — centrada */
.story-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--sage-lt) 8%, var(--sage) 50%, var(--sage-lt) 92%, transparent);
}

/* Cada capítulo: grid de 3 columnas — card | ícono | card */
.story-chapter {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  column-gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}

.story-chapter:last-child {
  margin-bottom: 0;
}

/* Ícono siempre en la columna central */
.story-chapter-icon {
  grid-column: 2;
  grid-row: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--sage-lt);
  margin-top: 14px;
  /* alinea con la primera línea del texto */
}

.story-chapter-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Impares (1, 3, 5): card en la DERECHA (columna 3) */
.story-chapter:nth-child(odd) .story-chapter-body {
  grid-column: 3;
  grid-row: 1;
}

/* Pares (2, 4, 6): card en la IZQUIERDA (columna 1) */
.story-chapter:nth-child(even) .story-chapter-body {
  grid-column: 1;
  grid-row: 1;
  order: -1;
  /* coloca la card antes del ícono en el DOM */
}

.story-chapter-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rLg);
  /* Uniform 10px */
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

/* Flecha derecha → apunta hacia el ícono central (para cards en col 3) */
.story-chapter:nth-child(odd) .story-chapter-body::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 20px;
  width: 13px;
  height: 13px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

/* Flecha izquierda → apunta hacia el ícono central (para cards en col 1) */
.story-chapter:nth-child(even) .story-chapter-body::before {
  content: '';
  position: absolute;
  right: -7px;
  top: 20px;
  width: 13px;
  height: 13px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

.story-chapter-tag {
  display: block;
  font-family: var(--ff);
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

/* Título: Cinzel Bold en lugar de cursiva */
.story-chapter-title {
  font-family: var(--ff);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--sage-dk);
  line-height: 1.3;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.story-verse {
  font-family: var(--fb);
  font-size: 1.08rem;
  color: var(--text2);
  font-style: italic;
  line-height: 1.85;
}

.story-verse p {
  margin-bottom: 10px;
}

.story-verse p:last-child {
  margin-bottom: 0;
}

/* Climax chapter (último) — acento dorado */
.story-chapter--climax .story-chapter-icon {
  background: linear-gradient(135deg, var(--gold), #a8722a);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--gold-lt);
}

.story-chapter--climax .story-chapter-body {
  background: linear-gradient(145deg, var(--champagne), var(--cream));
  border-color: rgba(201, 168, 76, .3);
}

.story-chapter--climax:nth-child(odd) .story-chapter-body::before {
  background: var(--champagne);
}

.story-chapter--climax:nth-child(even) .story-chapter-body::before {
  background: var(--champagne);
}

.story-chapter--climax .story-chapter-tag {
  color: var(--gold);
}

.story-chapter--climax .story-chapter-title {
  color: var(--text);
}

/* Mobile: volver a layout de columna única */
@media (max-width: 700px) {
  .story-timeline::before {
    left: 27px;
    transform: none;
  }

  .story-chapter {
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
  }

  .story-chapter-icon {
    grid-column: 1;
    margin-top: 12px;
  }

  .story-chapter:nth-child(odd) .story-chapter-body,
  .story-chapter:nth-child(even) .story-chapter-body {
    grid-column: 2;
    grid-row: 1;
    order: 0;
  }

  .story-chapter:nth-child(odd) .story-chapter-body::before,
  .story-chapter:nth-child(even) .story-chapter-body::before {
    left: -7px;
    right: auto;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-right: none;
    border-top: none;
    transform: rotate(45deg);
    background: var(--white);
  }

  .story-chapter--climax:nth-child(even) .story-chapter-body::before,
  .story-chapter--climax:nth-child(odd) .story-chapter-body::before {
    background: var(--champagne);
  }

  .story-chapter-title {
    font-size: .85rem;
  }

  .story-verse {
    font-size: 1rem;
  }
}

.gifts-section {
  background: var(--cream);
}

/* ── GIFTS FLORAL ICON TOP ──────────────────────── */
.gifts-floral-icon {
  width: 80px;
  height: 140px;
  margin: 0 auto 10px;
  overflow: visible;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.gifts-floral-icon:hover {
  opacity: 1;
}

.gifts-floral-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── GIFTS TITLE MAIN ───────────────────────────── */
.gifts-title-main {
  letter-spacing: .35em !important;
  font-size: 1.45rem;
}

/* ── GIFTS INTRO TEXTS ──────────────────────────── */
.gifts-intro {
  font-family: var(--fb);
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.75;
  margin: 22px auto 0;
  max-width: 460px;
}

.gifts-cursive {
  font-family: var(--fs);
  font-size: 2rem;
  color: var(--text2);
  margin: 14px auto 0;
  line-height: 1.4;
  opacity: .85;
}

.gifts-heart-sep {
  margin: 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gifts-sub {
  font-family: var(--fb);
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 400px;
}

.gifts-divider {
  width: 60px;
  height: 1px;
  background: var(--sage-lt);
  margin: 30px auto 24px;
}

.gifts-stores-label {
  font-family: var(--ff);
  font-size: .58rem;
  letter-spacing: .26em;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ── GIFTS STORES GRID ──────────────────────────── */
.gifts-stores {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rLg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Vertical separator between stores */
.gifts-store-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

/* Individual store card */
.gifts-store-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 20px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
  position: relative;
  gap: 10px;
  min-width: 0;
}

.gifts-store-card:hover {
  background: var(--champagne);
  transform: translateY(-2px);
}

/* Logo container */
.gifts-store-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  /* Tightened to match Sukasa logo */
  width: 100%;
  overflow: hidden;
}

.gifts-store-logo svg,
.gifts-store-logo img {
  max-width: 100%;
  height: 40px;
  display: block;
  object-fit: contain;
}

/* Specific scaling requested by user */
#giftStoreSukasa .gifts-store-logo img {
  height: 70px;
  /* Restored to 70px */
}

#giftStoreAmbitec .gifts-store-logo svg,
#giftStoreCrateBarrel .gifts-store-logo img {
  height: 55px;
  /* Consistent height for both */
}

/* Mini botanical sprig below logo */
.gifts-store-sprig {
  display: flex;
  justify-content: center;
  margin: 5px 0;
}

.gifts-store-sprig svg {
  width: 28px;
  height: 64px;
  /* Adjusted for vertical sprig-2 */
  display: block;
  opacity: .9;
}

/* "Da clic en el logo..." text */
.gifts-store-cta {
  font-family: var(--fb);
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* Ambitec — coming soon state */
.gifts-store-card--soon {
  opacity: .65;
  cursor: default;
  pointer-events: none;
  position: relative;
}

.gifts-store-card--soon::after {
  content: 'Próximamente';
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--ff);
  font-size: .45rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  border: 1px solid var(--border);
  padding: 3px 7px;
  border-radius: 4px;
}

/* ── GIFTS BANK BANNER ────────────────────────────── */
.gifts-bank-banner {
  display: flex;
  align-items: stretch;
  max-width: 680px;
  margin: 0 auto 60px;
  background: #f4f1ee;
  /* Soft champagne background from reference */
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.gifts-bank-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  /* Reduced padding */
  flex-shrink: 0;
  color: #a69076;
}

.gifts-bank-icon-wrap svg {
  width: 38px;
  /* Slightly smaller icon */
  height: 38px;
}

.gifts-bank-divider {
  width: 1px;
  background: rgba(166, 144, 118, 0.2);
  margin: 20px 0;
  /* Shorter divider */
  flex-shrink: 0;
}

.gifts-bank-content {
  flex: 1;
  padding: 22px 40px;
  /* Reduced padding */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gifts-bank-intro {
  font-family: var(--fb);
  font-size: .95rem;
  /* Slightly smaller text */
  color: #555;
  line-height: 1.4;
  /* Tighter line height */
  margin: 0 0 12px;
  /* Reduced margin */
}

.gifts-bank-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Tighter gap between account rows */
}

.gifts-bank-row {
  font-family: var(--ff);
  font-size: .78rem;
  color: #444;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gifts-bank-label {
  font-weight: 700;
  color: #a69076;
  text-transform: uppercase;
  font-size: .62rem;
  letter-spacing: .05em;
  min-width: 55px;
}

.gifts-bank-value {
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 650px) {
  .gifts-bank-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 20px 40px;
  }

  .gifts-bank-divider {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .gifts-bank-icon-wrap {
    padding: 35px 20px 20px;
  }

  .gifts-bank-content {
    padding: 20px 25px 40px;
    text-align: center;
  }

  .gifts-bank-intro {
    font-size: .95rem;
  }
}

.gifts-bank-num {
  font-family: var(--ff);
  font-size: .85rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: .06em;
  word-break: break-all;
}

/* ── GIFTS BOTTOM ORNAMENT ──────────────────────── */
.gifts-bottom-ornament {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  opacity: .65;
}

/* ── RESPONSIVE GIFTS ───────────────────────────── */
@media (max-width: 640px) {
  .gifts-stores {
    flex-direction: column;
    max-width: 340px;
  }

  .gifts-store-sep {
    width: 100%;
    height: 1px;
  }

  .gifts-store-card {
    padding: 22px 24px 18px;
  }

  .gifts-bank-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 22px 20px;
  }

  .gifts-bank-row {
    justify-content: center;
  }

  .gifts-bank-label {
    min-width: auto;
  }

  .gifts-bank-intro {
    text-align: center;
  }

  .gifts-title-main {
    font-size: 1.15rem;
    letter-spacing: .22em !important;
  }

  .gifts-cursive {
    font-size: 1.7rem;
  }
}


/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 992px) {
  :root {
    --py: 60px;
  }

  .nav-links {
    position: fixed;
    top: var(--navH);
    left: 0;
    right: 0;
    background: rgba(250, 247, 240, .98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 14px 20px 20px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s ease, opacity .4s ease;
    border-bottom: 1px solid var(--border);
    z-index: -1;
    width: 100%;
    box-sizing: border-box;
    max-height: calc(100svh - var(--navH));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: .68rem;
    padding: 12px 16px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
  }

  .nav-btn {
    display: flex;
  }

  .dc-items {
    flex-direction: column;
    gap: 20px;
  }

  .dc-divider {
    width: 50px;
    height: 1px;
    margin: 0 auto;
  }

  .dc-arch {
    padding: 56px 28px 44px;
  }

  .t-events {
    max-width: 100%;
  }

  .t-card {
    padding: 36px 24px;
  }

  .places {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:460px) {
  .places {
    grid-template-columns: 1fr;
  }

  .cd {
    padding: 12px 14px;
    gap: 5px;
  }

  .cd-item {
    min-width: 40px;
  }

  .cd-sep {
    font-size: 1rem;
  }
}