.weekend-contact-dialog {
  width: min(650px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  color: #2d202b;
  overflow: visible;
}

.weekend-contact-dialog::backdrop {
  background: rgba(32, 21, 31, .64);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.weekend-contact-sheet {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 248, 250, .92)),
    #fff8fa;
  box-shadow: 0 32px 90px rgba(50, 28, 48, .3);
}

.weekend-contact-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .3;
  pointer-events: none;
}

.weekend-contact-orb-pink { top: -115px; left: -85px; background: #ef9de3; }
.weekend-contact-orb-gold { right: -105px; bottom: -120px; background: #d9bd69; }

.weekend-contact-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(76, 57, 72, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: #342630;
  font: 400 26px/1 Arial, sans-serif;
  cursor: pointer;
}

.weekend-contact-eyebrow {
  position: relative;
  margin: 0 0 13px;
  color: #9a752b;
  font: 700 11px/1.3 Jost, Arial, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.weekend-contact-sheet h2 {
  position: relative;
  max-width: 530px;
  margin: 0;
  color: #241a22;
  font: 400 clamp(40px, 7vw, 62px)/.94 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}

.weekend-contact-copy {
  position: relative;
  max-width: 540px;
  margin: 20px 0 24px;
  color: #6e626b;
  font: 400 15px/1.7 Jost, Arial, sans-serif;
}

.weekend-contact-context {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 13px 17px;
  border: 1px solid rgba(158, 118, 44, .18);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(239, 157, 227, .13), rgba(217, 189, 105, .15));
  font-family: Jost, Arial, sans-serif;
}

.weekend-contact-context span { color: #8b7d86; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.weekend-contact-context strong { color: #3a2b36; font-size: 13px; text-align: right; }
.weekend-contact-options { position: relative; display: grid; gap: 12px; }

.weekend-contact-option {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 15px 18px;
  border: 1px solid rgba(61, 44, 57, .12);
  border-radius: 24px;
  color: #32242e;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.weekend-contact-option.is-email { background: rgba(255, 255, 255, .78); }
.weekend-contact-option.is-sms { border-color: rgba(255, 255, 255, .2); background: linear-gradient(120deg, #452f42, #2c222d); color: #fff; }
.weekend-contact-option:hover { transform: translateY(-2px); border-color: rgba(158, 118, 44, .42); box-shadow: 0 14px 30px rgba(59, 39, 55, .12); }
.weekend-contact-option:focus-visible, .weekend-contact-close:focus-visible, .weekend-contact-fallback:focus-visible { outline: 3px solid #c594b9; outline-offset: 3px; }

.weekend-contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef9de3, #dfc574);
  color: #30232d;
  font: 700 12px/1 Jost, Arial, sans-serif;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.weekend-contact-option span:nth-child(2) { min-width: 0; }
.weekend-contact-option small, .weekend-contact-option strong, .weekend-contact-option em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: Jost, Arial, sans-serif; }
.weekend-contact-option small { margin-bottom: 4px; color: #9a752b; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.weekend-contact-option.is-sms small { color: #e7ca79; }
.weekend-contact-option strong { font-size: 15px; }
.weekend-contact-option em { margin-top: 3px; color: #8d8089; font-size: 11px; font-style: normal; }
.weekend-contact-option.is-sms em { color: #cfc4cc; }
.weekend-contact-option b { font: 400 22px/1 Jost, Arial, sans-serif; }

.weekend-contact-note {
  position: relative;
  margin: 18px 0 8px;
  color: #81757d;
  font: 400 11px/1.55 Jost, Arial, sans-serif;
  text-align: center;
}

.weekend-contact-fallback {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #6a5565;
  font: 600 11px/1.4 Jost, Arial, sans-serif;
  text-underline-offset: 4px;
}

@media (max-width: 620px) {
  .weekend-contact-dialog { width: calc(100vw - 20px); margin: auto 10px 10px; border-radius: 30px; }
  .weekend-contact-sheet { padding: 34px 20px 25px; }
  .weekend-contact-close { top: 14px; right: 14px; }
  .weekend-contact-sheet h2 { max-width: 88%; font-size: clamp(38px, 12vw, 52px); }
  .weekend-contact-copy { margin-top: 17px; font-size: 14px; }
  .weekend-contact-option { grid-template-columns: 46px minmax(0, 1fr) auto; min-height: 84px; padding: 13px; border-radius: 21px; }
  .weekend-contact-icon { width: 46px; height: 46px; border-radius: 16px; }
  .weekend-contact-option strong { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .weekend-contact-option { transition: none; }
}
