/* =====================================================================
   Belu & Mati — 19 de diciembre 2026
   styles.css
   ===================================================================== */

@font-face {
  font-family: 'Darker Grotesque';
  src: url("assets/DarkerGrotesque.ttf") format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bitcount Grid Single';
  src: url("assets/BitcountGridSingle.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Typography scale ──
   3 tamaños únicos para todo el sitio (título / cuerpo / leyenda).
   Se redefinen una sola vez para mobile dentro del media query —
   cualquier elemento que use estas variables se adapta solo.
   Excepciones que no usan esta escala: #diecinueve, #env-card span
   (textos del hero/sobre) y los controles de UI (botones). */
:root {
  --fs-title: 48px;  /* títulos de sección: NOS VEMOS!!, ELEGANTE, Confirmá asistencia... */
  --fs-body:  20px;  /* párrafos, filas de datos, copy de banking, inputs de formulario */
  --fs-tag:   16px;  /* leyendas cortas: DRESSCODE, DÍAS/HORAS/..., tooltip toggle */

  /* Pesos */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  /* Letter-spacing — tres niveles únicamente */
  --ls-tight: 1px;   /* texto corrido con mayúsculas puntuales */
  --ls-tag: 2px;     /* etiquetas cortas en mayúscula */
  --ls-wide: 3px;    /* acentos decorativos */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #E7DF96; }
body {
  font-family: 'Darker Grotesque', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #2F0415;
  overflow-x: hidden;
}
input, select, button { font-family: 'Darker Grotesque', sans-serif; }

/* ── Animations ── */
@keyframes calSlide {
  from { transform: translateX(var(--cal-from, 0px)); }
  to   { transform: translateX(var(--cal-to, -516px)); }
}
@keyframes okIn {
  0%   { opacity: 0; transform: translateY(18px) scale(.96); }
  100% { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* ── Hero ── */
#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 16px 0;
}
#stage-box {
  position: relative;
  overflow: hidden;
  /* width/height set by JS */
}
#hero-inner {
  width: 1280px;
  height: 760px;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  /* transform: scale() set by JS */
}

/* ── Collage items ── */
.collage-item {
  position: absolute;
  transition:
    left   .8s cubic-bezier(.22,.61,.36,1),
    top    .8s cubic-bezier(.22,.61,.36,1),
    width  .8s cubic-bezier(.22,.61,.36,1),
    height .8s cubic-bezier(.22,.61,.36,1),
    transform .8s cubic-bezier(.22,.61,.36,1);
}
.collage-inner {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .35s ease;
}
.collage-item:hover .collage-inner {
  /* override set inline by JS per item */
}

/* ── 19 DE DICIEMBRE ── */
#diecinueve {
  position: absolute;
  font-size: 27px;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-semibold);
  color: #2F0415;
  white-space: nowrap;
  z-index: 11;
  pointer-events: none;
  transition:
    left   .8s cubic-bezier(.22,.61,.36,1),
    top    .8s cubic-bezier(.22,.61,.36,1),
    transform .8s cubic-bezier(.22,.61,.36,1);
}

/* ── Envelope ── */
#env-wrap {
  position: absolute;
  cursor: pointer;
  outline: none;
  z-index: 12;
  transition:
    left   .8s cubic-bezier(.22,.61,.36,1),
    top    .8s cubic-bezier(.22,.61,.36,1),
    transform .8s cubic-bezier(.22,.61,.36,1);
}
#env-inner {
  position: absolute;
  left: 50%; top: 50%;
  width: 380px; height: 306px;
  perspective: 1300px;
  transform: translate(-50%, -50%) scale(0.6628);
  transform-origin: center;
}
#env-bg {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  z-index: 0;
  background: linear-gradient(180deg, #a0afb5 0%, #99a8ae 100%);
  box-shadow: 0 30px 60px -22px rgba(40,55,62,.55);
}
#env-card {
  position: absolute;
  left: 50%; top: 16px;
  width: 300px; height: 233px;
  margin-left: -150px;
  z-index: 3;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(168deg, #efe9dc 0%, #e5ddcd 100%);
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(30,45,52,.3), inset 0 0 16px rgba(120,110,88,.07);
  transition: transform .95s cubic-bezier(.22,1,.36,1) .28s;
  transform: translateY(0) rotate(0deg);
}
#env-card span {
  font-family: 'Bitcount Grid Single', 'Courier New', monospace;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.35;
  color: #38342d;
  max-width: 9ch;
}
#env-body {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='306'%3E%3Cdefs%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='6'/%3E%3C/filter%3E%3C/defs%3E%3Cpolygon points='0,0 190,158 380,0 398,322 -18,322' fill='white' filter='url(%23b)'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='306'%3E%3Cdefs%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='6'/%3E%3C/filter%3E%3C/defs%3E%3Cpolygon points='0,0 190,158 380,0 398,322 -18,322' fill='white' filter='url(%23b)'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
#env-flap-wrap {
  position: absolute;
  inset: 0;
  transform-origin: 50% 0%;
  transition: transform .66s cubic-bezier(.45,0,.2,1);
  z-index: 6;
  pointer-events: none;
}
#env-flap-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
  clip-path: path('M0 0 L380 0 L201.9 160.7 Q190 171.4 178.1 160.7 Z');
}

/* ── Toggle bar (trazo / escoba) ── */
#toggle-bar {
  display: flex;
  justify-content: center;
}
#toggle-pill {
  display: flex;
  align-items: stretch;
  background: #F3EDC7;
  border-radius: 12px;
  padding: 5px;
  gap: 4px;
  box-shadow: 0 3px 10px rgba(47,4,21,.12);
}
.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background .25s;
  user-select: none;
}
.toggle-btn .tip {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  background: #2F0415;
  color: #F3EDC7;
  font-size: var(--fs-tag);
  letter-spacing: var(--ls-tag);
  padding: 5px 11px;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
  box-shadow: 0 3px 8px rgba(47,4,21,.25);
}
.toggle-btn:hover .tip { opacity: 1; }
#btn-trazo.active  { background: #DED8AA; }
#btn-escoba.active { background: #DED8AA; }

/* ── Countdown ── */
#countdown {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 0;
}
#countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
#countdown-header h2 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  letter-spacing: 2px;
  color: #2F0415;
  text-align: center;
}
.ornament { font-size: var(--fs-tag); color: #2F0415; letter-spacing: var(--ls-tag); }
#countdown-digits {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-top: 42px;
}
.cd-unit {
  flex: 1;
  max-width: 200px;
  text-align: center;
  border-right: 1px solid rgba(47,4,21,.4);
  padding: 0 16px;
}
.cd-unit:last-child { border-right: none; }
.cd-num {
  font-weight: var(--fw-medium);
  font-size: var(--fs-title);
  line-height: 1;
  color: #2F0415;
}
.cd-label {
  font-size: var(--fs-tag);
  letter-spacing: var(--ls-wide);
  color: #2F0415;
  margin-top: 8px;
}

/* ── Calendar ── */
#calendar-outer {
  max-width: 1280px;
  margin: 64px auto 0;
  padding: 0 24px;
}
#calendar-outer .diciembre-img {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
#calendar-outer .diciembre-img img {
  height: 64px;
  width: auto;
  display: inline-block;
}
#calendar-scroll {
  width: 100%;
  overflow: hidden;
}
#calendar-track {
  position: relative;
  width: 2464px;
  /* JS añade la clase .animated cuando entra en viewport */
  transform: translateX(0px);
  will-change: transform;
  transition: none;
}
#calendar-track.animated {
  animation: calSlide 1.15s cubic-bezier(.25,.8,.3,1) both;
  animation-fill-mode: forwards;
}
.cal-row {
  display: flex;
  border-top: 1px solid rgba(47,4,21,.55);
  border-bottom: 1px solid rgba(47,4,21,.55);
}
.cal-row.numbers { border-top: none; position: relative; }
.cal-cell {
  width: 176px;
  padding: 18px 0;
  text-align: center;
  font-size: var(--fs-tag);
  letter-spacing: 2px;
  border-right: 1px solid rgba(47,4,21,.55);
}
.cal-cell:last-child { border-right: none; }
.cal-num-cell {
  width: 176px;
  height: 250px;
  padding: 14px 18px;
  border-right: 1px solid rgba(47,4,21,.55);
  position: relative;
}
.cal-num-cell:last-child { border-right: none; }
.cal-num-cell .num {
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: 1;
}
.cal-19 .num {
  position: relative;
  z-index: 2;
}
.cal-19-label {
  position: absolute;
  left: 0; right: 0;
  top: 74px;
  text-align: center;
  z-index: 2;
  font-size: var(--fs-tag);
  letter-spacing: 1px;
  line-height: 1.7;
}
.cal-19-hearts {
  font-size: var(--fs-tag);
  letter-spacing: 2px;
  margin-top: 2px;
}
.cal-19-circle {
  position: absolute;
  left: 50%; top: 50%;
  width: 235px;
  transform: translate(-50%, -52%);
  z-index: 1;
  pointer-events: none;
}

/* ── Dresscode ── */
#dresscode {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px 80px;
}
#dresscode .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
#dresscode .dc-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
#dresscode .dc-tag {
  font-size: var(--fs-tag);
  letter-spacing: var(--ls-tag);
  padding-top: 18px;
}
#dresscode .dc-title {
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  line-height: .95;
}
#dresscode .dc-sub {
  font-size: var(--fs-tag);
  letter-spacing: var(--ls-tag);
  margin-top: 200px;
  padding-left: 130px;
}
#dresscode .dc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#dresscode .dc-photo {
  width: 172px;
  height: auto;
  display: block;
}
#dresscode .dc-text {
  font-size: var(--fs-body);
  line-height: 1.5;
  text-align: justify;
  margin-top: 120px;
  max-width: 315px;
}

/* ── Form ── */
#form-section {
  background: #2F0415;
  width: 100%;
  padding: 64px 24px 80px;
}
#form-inner {
  max-width: 448px;
  margin: 0 auto;
}
#form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
  animation: okIn .7s cubic-bezier(.22,1,.36,1) both;
}
#form-success.visible { display: block; }
#form-success .title {
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  color: #E7DF96;
  line-height: 1.05;
}
#form-success .sub {
  font-size: var(--fs-body);
  color: #F0EAD0;
  margin-top: 16px;
}
#form-success .sub-direccion {
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: #ffffff;
  margin-top: 24px;
  letter-spacing: var(--ls-tight);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
#form-success .sub-direccion .arrow {
  height: 36px;
  width: auto;
}
#form-body { }
#form-body h2 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  letter-spacing: 1px;
  color: #E7DF96;
  text-align: center;
  white-space: nowrap;
}
#form-body .subtitle {
  font-size: var(--fs-body);
  color: #C9A98E;
  text-align: center;
  margin-top: 6px;
}
.form-group { margin-top: 30px; }
.form-group:first-of-type { margin-top: 46px; }
.form-label {
  display: block;
  font-size: var(--fs-body);
  color: #F0EAD0;
  margin-bottom: 10px;
}
.form-input {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #2F0415;
  font-size: var(--fs-body);
  padding: 0 16px;
  outline: none;
}
.radio-row {
  display: flex;
  gap: 44px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: var(--fs-body);
  color: #E7DF96;
}
.radio-label input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: #E7DF96;
  cursor: pointer;
}
/* Dropdown */
.dropdown-wrap { position: relative; }
.dropdown-trigger {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  color: #2F0415;
  font-size: var(--fs-body);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.dropdown-chev {
  font-size: 14px;
  transition: transform .25s;
}
.dropdown-chev.open { transform: rotate(180deg); }
.dropdown-list {
  position: absolute;
  left: 0; right: 0;
  top: 54px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  z-index: 20;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height .3s ease, opacity .25s ease;
}
.dropdown-list.open {
  max-height: 340px;
  opacity: 1;
  pointer-events: auto;
}
.dropdown-option {
  padding: 11px 16px;
  font-size: var(--fs-body);
  color: #2F0415;
  cursor: pointer;
}
.dropdown-option:hover,
.dropdown-option.selected { background: #F3EDC7; }
.dropdown-option.selected { font-weight: 600; }
#other-input {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #2F0415;
  font-size: var(--fs-body);
  padding: 0 16px;
  outline: none;
  margin-top: 12px;
  display: none;
}
#other-input.visible { display: block; }
#submit-btn {
  margin-top: 34px;
  background: #E7DF96;
  color: #2F0415;
  border: none;
  border-radius: 7px;
  font-size: 19px;
  padding: 12px 20px;
  cursor: pointer;
  transition: filter .2s;
}
#submit-btn:hover { filter: brightness(.93); }

/* ── Datos bancarios ── */
#banking {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 40px;
}
#banking .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#banking .header-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
#banking .header-title-row .ornament {
  position: relative;
  top: 7px;
}
#banking .header-title-row h2 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}
#banking .header p {
  font-size: var(--fs-body);
  text-align: center;
  line-height: 1.3;
  max-width: 560px;
}
#banking-table {
  max-width: 448px;
  margin: 40px auto 0;
  border: 1px solid rgba(47,4,21,.6);
  border-radius: 10px;
  padding: 6px 26px;
}
.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(47,4,21,.35);
  font-size: var(--fs-body);
}
.bank-row:last-child { border-bottom: none; }
.bank-row .val { opacity: .85; margin-left: 9px; }
.bank-row-plain {
  padding: 22px 0;
  border-bottom: 1px solid rgba(47,4,21,.35);
  font-size: var(--fs-body);
}
.bank-row-plain .val { opacity: .85; margin-left: 9px; }
.copy-btn {
  position: relative;
  background: #2F0415;
  color: #E7DF96;
  border: none;
  border-radius: 7px;
  font-size: 17px;
  height: 40px;
  min-width: 104px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}
.copy-label,
.copy-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s ease, transform .22s ease;
}
.copy-label { opacity: 1; transform: scale(1); }
.copy-check { opacity: 0; transform: scale(.5); transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1); }
.copy-btn.copied .copy-label { opacity: 0; transform: scale(.85); }
.copy-btn.copied .copy-check { opacity: 1; transform: scale(1); }

/* ── Location ── */
#location {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 120px;
}
#location h2 {
  font-weight: var(--fw-regular);
  font-size: var(--fs-title);
  line-height: .95;
}
#location .loc-line {
  font-size: var(--fs-body);
  letter-spacing: var(--ls-tight);
  margin-top: 18px;
}
#location .loc-line + .loc-line { margin-top: 4px; }
#maps-btn {
  margin-top: 26px;
  background: #2F0415;
  color: #E7DF96;
  border: none;
  border-radius: 9px;
  font-size: 18px;
  padding: 13px 22px;
  cursor: pointer;
}
#maps-btn:hover { opacity: .88; }
#calendar-btn {
  display: block;
  width: fit-content;
  margin-top: 14px;
  background: transparent;
  color: #2F0415;
  border: 1.5px solid #2F0415;
  border-radius: 9px;
  font-size: 18px;
  padding: 13px 22px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}
#calendar-btn:hover { background: #2F0415; color: #E7DF96; }

/* ================================================================
   RESPONSIVE — Mobile (≤ 768px)
   ================================================================ */

/* Mobile hero estático: siempre oculto (el collage usa #stage-box también en mobile) */
#mobile-hero { display: none; }
/* Saltos de línea solo para mobile */
.mob-br { display: none; }

@media (max-width: 768px) {

  /* ── Global ── */
  body { overflow-x: hidden; }

  /* Escala tipográfica mobile: redefine las 3 variables — todo lo
     que use var(--fs-title/body/tag) se adapta automáticamente. */
  :root {
    --fs-title: 32px;
    --fs-body:  16px;
    --fs-tag:   12px;
  }

  /* ── Hero ── */
  #hero {
    height: auto;
    min-height: unset;
    padding: 0;
    gap: 8px;
  }
  /* Toggle oculto en mobile — no hay modo libre/ordenado */
  #toggle-bar { display: none; }
  /* stage-box: visible, JS lo redimensiona a 375×540×scale */
  #stage-box { overflow: hidden; }

  /* Sin transiciones de toggle en mobile */
  .collage-item  { transition: none !important; }
  .collage-inner { transition: none !important; }
  #diecinueve    { transition: none !important; font-size: 20px; font-weight: 400; }
  #env-wrap      { transition: none !important; }

  /* Aparición sutil al scrollear, una vez pasado el hero */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Sobre: microinteracción 30% más chica en mobile */
  #env-inner { transform: translate(-50%, -50%) scale(0.464); }

  /* Ocultar calendario en mobile */
  #calendar-outer  { display: none; }
  #calendar-scroll { display: none; }

  /* ── Countdown — una sola fila horizontal ── */
  #countdown {
    padding: 20px 12px 0;
  }
  #countdown-header {
    gap: 12px;
  }
  #countdown-header h2 {
    letter-spacing: 0.4px;
    white-space: nowrap;
  }
  #countdown-digits {
    margin-top: 16px;
    flex-wrap: nowrap;
    gap: 0;
  }
  .cd-unit {
    flex: 1;
    max-width: 25%;
    border-right: 1px solid rgba(47,4,21,.4);
    border-bottom: none;
    padding: 0 4px;
  }
  .cd-unit:last-child { border-right: none; }
  .cd-label { letter-spacing: 0; }

  /* ── Calendario ── */
  #calendar-outer {
    padding: 0 12px;
    margin-top: 32px;
  }
  #calendar-outer .diciembre-img img { height: 40px; }
  #calendar-scroll {
    overflow: hidden;
    width: 100%;
  }
  #calendar-track { transform-origin: top left; }

  /* ── Dresscode ── */
  #dresscode {
    padding: 48px 16px 40px;
  }
  #dresscode .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #dresscode .dc-label {
    flex-direction: column;
    gap: 4px;
  }
  #dresscode .dc-tag   { padding-top: 0; }
  #dresscode .dc-sub   { margin-top: 16px; padding-left: 0; }
  #dresscode .dc-right { align-items: flex-start; }
  #dresscode .dc-photo { width: 120px; }
  #dresscode .dc-text  { margin-top: 20px; max-width: 100%; font-size: 18px; }

  /* ── Form ── */
  #form-section { padding: 48px 16px 56px; }
  #form-body .subtitle { font-size: 18px; }
  #form-success .sub { font-size: 14px; }
  #form-success .sub-direccion { font-size: 14px; }
  .form-label   { font-size: 18px; }
  .radio-row    { gap: 20px; flex-wrap: wrap; }
  #submit-btn   { width: 100%; font-size: 18px; padding: 14px 16px; }

  /* ── Datos bancarios ── */
  #banking { padding: 36px 16px 28px; }
  #banking .header { gap: 10px; text-align: center; }
  #banking .header-title-row { gap: 16px; }
  #banking .header-title-row .ornament { top: 4px; }
  #banking .header-title-row h2 { font-size: 25px; letter-spacing: 0px; }
  #banking .header p { max-width: 100%; line-height: 1.25; font-size: 18px; }
  .mob-br { display: block; }
  #banking-table { padding: 4px 16px; }
  /* Botón copiar a la derecha en la misma fila */
  .bank-row {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
  }
  .bank-row div {
    font-size: 16px;
    word-break: break-all;
    flex: 1 1 auto;
  }
  .bank-row div span:first-child { margin-right: 4px; }
  .bank-row .val { margin-left: 0; }
  .copy-btn      { flex-shrink: 0; min-width: 80px; font-size: 15px; height: 36px; }
  .bank-row-plain { font-size: 16px; padding: 12px 0; word-break: break-all; }
  .bank-row-plain .val          { margin-left: 4px; }
  .bank-row-plain span[style]   { margin-left: 4px !important; }

  /* ── Location ── */
  #location { padding: 36px 16px 80px; margin-top: 50px; }
  #maps-btn { width: 100%; font-size: 17px; padding: 14px 16px; }
  #calendar-btn { width: 100%; font-size: 17px; padding: 14px 16px; }
}
