/* Kenny Sattaur BBQ — public site
 * Brand: 2023 RE/MAX Graphic Standards
 *   Primary Red  #DC1C2E   Primary Blue #003DA5   Dark Gray #404041
 * Web type: Montserrat (Gotham substitute), Arial fallback. */

:root {
  --remax-red:  #DC1C2E;
  --remax-blue: #003DA5;
  --gray:       #2c2c2e;
  --gray-soft:  #6b6b6c;
  --line:       #dcdce1;
  --cream:      #f1eee8;
  --white:      #ffffff;
  --shadow:     0 18px 44px -16px rgba(16,32,64,.26), 0 2px 6px rgba(16,32,64,.07);
  --radius:     0px;            /* squared off */
  --maxw:       1120px;
  /* Windows-glass (acrylic) surface */
  --glass-bg:     rgba(255,255,255,.60);
  --glass-strong: rgba(255,255,255,.78);
  --glass-border: rgba(255,255,255,.75);
  --glass-blur:   blur(18px) saturate(150%);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--gray);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* subtle diagonal pinstripe + faint blueprint grid over a warm base */
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(135deg, rgba(0,61,165,.030) 0 1px, transparent 1px 12px),
    linear-gradient(0deg, rgba(220,28,46,.018), rgba(220,28,46,.018));
  background-attachment: fixed;
}
h1, h2, h3 { font-weight: 800; line-height: 1.12; color: var(--gray); letter-spacing: -.01em; }
a { color: var(--remax-blue); }
.muted { color: var(--gray-soft); }
.small { font-size: .9rem; }
.tiny  { font-size: .78rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--remax-blue);
  color: #fff; padding: .6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */
.site-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .9rem clamp(1rem, 4vw, 2.5rem);
  background: var(--glass-strong); border-bottom: 2px solid var(--remax-blue);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 6px 20px -10px rgba(16,32,64,.25);
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.05rem; }
.brand-text small { color: var(--gray-soft); font-weight: 600; letter-spacing: .02em; }

/* Official 2023-standard RE/MAX lockup, supplied as a brand asset (no CSS
   approximation of the logo). Falls back to the text wordmark when absent. */
.brand-logo {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.12));
}

/* RE/MAX SouthShore corner tab — white box, black outline, open top (like the invitation) */
.brand-tab {
  align-self: stretch; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 2px solid #111; border-top: none;
  padding: .35rem 1rem; margin: -.9rem 0 -.9rem .25rem;
  font: inherit; cursor: pointer; transition: background .2s, box-shadow .2s;
}
.brand-tab:hover { box-shadow: 0 8px 20px -8px rgba(0,0,0,.4); }
.brand-tab:focus-visible { outline: 2px solid var(--remax-blue); outline-offset: 2px; }
.brand-tab img { height: 44px; width: auto; display: block; pointer-events: none; }
@media (max-width: 640px) { .brand-tab { padding: .3rem .65rem; } .brand-tab img { height: 32px; } }

/* avatar chip — opens the digital business card */
.card-chip {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer; font: inherit;
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  padding: .3rem .7rem .3rem .35rem; transition: box-shadow .2s, transform .15s;
}
.card-chip:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.card-chip:focus-visible { outline: 2px solid var(--remax-blue); outline-offset: 2px; }
.card-chip__avatar {
  width: 36px; height: 36px; flex: 0 0 36px; overflow: hidden; border-radius: var(--radius);
  background: var(--gray); color: #fff; font-size: .82rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--remax-blue);
}
.card-chip__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.card-chip__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.card-chip__text strong { font-size: .82rem; color: var(--gray); }
.card-chip__text small { font-size: .66rem; color: var(--remax-red); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 540px) { .card-chip__text { display: none; } .card-chip { padding: .25rem; } }

.head-nav { display: flex; gap: 1.25rem; }
.head-nav a { color: var(--gray); text-decoration: none; font-weight: 600; font-size: .95rem; }
.head-nav a:hover { color: var(--remax-red); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: .85rem 1.6rem; border-radius: var(--radius);
  font-weight: 700; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  font-size: .95rem; letter-spacing: .02em; text-transform: uppercase;
  transition: transform .12s ease, box-shadow .2s ease, background .2s, filter .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: linear-gradient(180deg, #e8313f, var(--remax-red)); color: #fff; box-shadow: 0 8px 20px -8px rgba(220,28,46,.6); }
.btn-primary:hover   { filter: brightness(1.05); box-shadow: 0 12px 26px -8px rgba(220,28,46,.7); }
.btn-secondary { background: linear-gradient(180deg, #0a49b8, var(--remax-blue)); color: #fff; box-shadow: 0 8px 20px -8px rgba(0,61,165,.6); }
.btn-secondary:hover { filter: brightness(1.06); box-shadow: 0 12px 26px -8px rgba(0,61,165,.7); }
.btn-ghost     { background: var(--glass-bg); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); color: var(--remax-blue); border-color: var(--remax-blue); }
.btn-ghost:hover { background: var(--remax-blue); color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--remax-blue) 0%, #002a73 100%);
  background-size: cover; background-position: center; color: #fff;
  padding: clamp(3rem, 9vw, 6.5rem) clamp(1rem, 5vw, 3rem);
}
/* RE/MAX angular red+blue stripe — the business-card signature accent */
.remax-stripe,
.hero::after,
.site-foot::before {
  background: linear-gradient(110deg, var(--remax-red) 0 47%, #fff 47% 53%, var(--remax-blue) 53% 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 11px; z-index: 1;
}
.hero--placeholder { background: linear-gradient(135deg, #0a49b8 0%, var(--remax-blue) 45%, #001b4d 100%); }
.hero--placeholder::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 16px),
    radial-gradient(130% 90% at 85% -15%, rgba(255,255,255,.14), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-weight: 700;
  color: #fff; opacity: .85; margin: 0 0 .6rem; font-size: .82rem;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 6vw, 4rem); margin: 0 0 1rem; max-width: 16ch; }
.hero .lede { font-size: clamp(1.05rem, 2.4vw, 1.35rem); max-width: 56ch; opacity: .95; }
.hero-facts {
  list-style: none; padding: 0; margin: 1.6rem 0; display: flex; flex-wrap: wrap; gap: 1rem 1.8rem;
  font-weight: 600;
}
.hero-facts li { display: flex; align-items: center; gap: .5rem; }
.hero-facts span { font-size: 1.2rem; }
.hero-venue { margin: -.4rem 0 1.2rem; font-weight: 600; line-height: 1.5; }
.hero-venue__name, .hero-venue__addr { display: block; }
.hero-venue__addr { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 1px; width: fit-content; }
.hero-venue__addr:hover { border-bottom-color: #fff; }
.nowrap { white-space: nowrap; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .5rem; }

.weather-strip {
  margin-top: 1.8rem; display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
  padding: .55rem 1.1rem; border-radius: var(--radius);
  -webkit-backdrop-filter: blur(10px) saturate(140%); backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset; font-weight: 600;
}
.weather-icon { font-size: 1.3rem; }

/* Self-hosted Meteocons animated SVG */
.weather-icon.wx-meteocon-wrap { width: 48px; height: 48px; flex: 0 0 48px; line-height: 0; }
.wx-meteocon { width: 48px; height: 48px; display: block; }

/* ---------- animated weather icon (CSS fallback) ---------- */
.weather-icon.wx-icon {
  font-size: 0; line-height: 0; position: relative; display: inline-block;
  width: 46px; height: 42px; flex: 0 0 46px; overflow: visible;
}
.wx-icon > span { position: absolute; }

/* sun + rotating rays */
.wx-sun {
  top: 5px; left: 6px; width: 19px; height: 19px; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 35% 32%, #fff1b8 0%, #ffd23d 46%, #ffb01f 100%);
  box-shadow: 0 0 9px 2px rgba(255,196,61,.6);
  animation: wx-sun-pulse 3s ease-in-out infinite;
}
.wx-rays {
  left: -2px; top: -3px; width: 34px; height: 34px; border-radius: 50%; z-index: 1;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,210,61,.95) 0deg 4deg, transparent 4deg 30deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 11px, #000 12px 15px, transparent 16px);
          mask: radial-gradient(circle at 50% 50%, transparent 0 11px, #000 12px 15px, transparent 16px);
  animation: wx-spin 14s linear infinite;
}

/* clouds */
.wx-cloud {
  left: 9px; bottom: 9px; width: 30px; height: 12px; background: #fff; border-radius: 9px; z-index: 3;
  box-shadow: 0 2px 5px rgba(0,40,90,.25); animation: wx-drift 5s ease-in-out infinite;
}
.wx-cloud::before, .wx-cloud::after { content: ""; position: absolute; border-radius: 50%; background: #fff; }
.wx-cloud::before { width: 13px; height: 13px; top: -6px; left: 4px; }
.wx-cloud::after  { width: 18px; height: 18px; top: -10px; left: 10px; }
.wx-cloud--back {
  left: 4px; bottom: 14px; z-index: 1; opacity: .85; box-shadow: none;
  animation: wx-drift-back 7s ease-in-out infinite;
}
.wx-cloud--back, .wx-cloud--back::before, .wx-cloud--back::after { background: #cdddf0; }

/* rain */
.wx-rain { left: 12px; bottom: 0; width: 26px; height: 11px; z-index: 4; }
.wx-rain i {
  position: absolute; top: 0; width: 2px; height: 6px; border-radius: 2px; opacity: 0;
  background: linear-gradient(#e2f4ff, #9ecbff); animation: wx-fall 1.05s linear infinite;
}
.wx-rain i:nth-child(1) { left: 2px;  animation-delay: 0s; }
.wx-rain i:nth-child(2) { left: 9px;  animation-delay: .26s; }
.wx-rain i:nth-child(3) { left: 16px; animation-delay: .52s; }
.wx-rain i:nth-child(4) { left: 23px; animation-delay: .78s; }
.wx-rain--heavy i { animation-duration: .68s; height: 8px; }

/* snow */
.wx-snow { left: 11px; bottom: 0; width: 26px; height: 12px; z-index: 4; }
.wx-snow i {
  position: absolute; top: 0; width: 5px; height: 5px; border-radius: 50%; background: #fff; opacity: 0;
  box-shadow: 0 0 2px rgba(255,255,255,.8); animation: wx-snowfall 2.2s linear infinite;
}
.wx-snow i:nth-child(1) { left: 2px;  animation-delay: 0s; }
.wx-snow i:nth-child(2) { left: 11px; animation-delay: .7s; }
.wx-snow i:nth-child(3) { left: 20px; animation-delay: 1.3s; }

/* lightning */
.wx-bolt {
  left: 19px; bottom: -2px; width: 9px; height: 14px; background: #ffd23d; z-index: 5;
  clip-path: polygon(55% 0, 10% 58%, 45% 58%, 30% 100%, 90% 42%, 52% 42%);
  filter: drop-shadow(0 0 3px rgba(255,210,61,.9)); animation: wx-flash 2.4s steps(1) infinite;
}

/* fog */
.wx-fog { left: 8px; bottom: 4px; width: 30px; height: 16px; z-index: 4; }
.wx-fog i { position: absolute; left: 0; height: 2px; border-radius: 2px; background: rgba(255,255,255,.9); }
.wx-fog i:nth-child(1) { top: 2px;  width: 26px; animation: wx-fog-slide 3s ease-in-out infinite; }
.wx-fog i:nth-child(2) { top: 7px;  width: 30px; animation: wx-fog-slide 3.6s ease-in-out infinite reverse; }
.wx-fog i:nth-child(3) { top: 12px; width: 22px; animation: wx-fog-slide 3.2s ease-in-out infinite; }

@keyframes wx-spin { to { transform: rotate(360deg); } }
@keyframes wx-sun-pulse {
  0%, 100% { box-shadow: 0 0 8px 1px rgba(255,196,61,.5); }
  50%      { box-shadow: 0 0 13px 4px rgba(255,196,61,.85); }
}
@keyframes wx-drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(2.5px); } }
@keyframes wx-drift-back { 0%, 100% { transform: scale(.82) translateX(0); } 50% { transform: scale(.82) translateX(-3.5px); } }
@keyframes wx-fall {
  0%   { transform: translateY(-2px); opacity: 0; }
  25%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(11px); opacity: 0; }
}
@keyframes wx-snowfall {
  0%   { transform: translate(0, -2px); opacity: 0; }
  25%  { opacity: 1; }
  80%  { opacity: .9; }
  100% { transform: translate(3px, 12px); opacity: 0; }
}
@keyframes wx-flash {
  0%, 42%, 64%, 100% { opacity: 0; }
  44%, 52% { opacity: 1; }
  48% { opacity: .25; }
}
@keyframes wx-fog-slide { 0%, 100% { transform: translateX(-3px); } 50% { transform: translateX(3px); } }

@media (prefers-reduced-motion: reduce) {
  .wx-icon * { animation: none !important; }
  .wx-rain i, .wx-snow i { opacity: .9; }
  .wx-bolt { opacity: 1; }
}

/* ---------- sections ---------- */
main > section { padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 5vw, 3rem); }
.details, .reviews { max-width: var(--maxw); margin: 0 auto; }
.grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  padding: 1.7rem; box-shadow: var(--shadow), 0 1px 0 rgba(255,255,255,.55) inset;
}
.card h2 { margin-top: 0; font-size: 1.3rem; letter-spacing: -.01em; }
.card-accent { border-top: 4px solid var(--remax-red); }
/* live entertainment block */
.live-music { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.card-subhead { margin: 0 0 .35rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--remax-red); font-weight: 800; }
.live-music__name { margin: 0; }
.social-links { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: .7rem 0 0; padding: 0; }
.social-link {
  display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .6rem;
  font-size: .78rem; font-weight: 700; text-decoration: none; color: var(--gray);
  background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: var(--radius);
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.social-link svg { flex: 0 0 auto; }
.social-link:hover { background: var(--remax-blue); color: #fff; border-color: var(--remax-blue); transform: translateY(-1px); }

.menu-group + .menu-group { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.menu-group__label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--remax-red); font-weight: 800; margin: 0 0 .45rem;
}
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { padding: .35rem 0 .35rem 1.6rem; position: relative; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; color: var(--remax-red); font-weight: 800;
}

/* ---------- reviews (3-up coverflow / Rolodex) ---------- */
.reviews { text-align: center; }
.reviews h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 2.2rem; }

.carousel { position: relative; margin: 0 auto; max-width: 1000px; }
.carousel-track {
  position: relative; min-height: 240px; perspective: 1700px; overflow: hidden;
  /* feather edges so the carousel melts into the page (no hard clip).
     Horizontal fade is generous (for the peeking side cards); vertical fade is a
     small fixed band so the active card's full text never gets dimmed. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 15%, #000 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-composite: source-in; -webkit-mask-repeat: no-repeat;
  mask-image:
    linear-gradient(to right, transparent 0, #000 15%, #000 85%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-composite: intersect; mask-repeat: no-repeat;
  transition: height .5s cubic-bezier(.22,.61,.18,1);
}
.review {
  margin: 0; position: absolute; top: 50%; left: 50%;
  width: min(540px, 78%); min-height: 190px; padding: 1.7rem 1.9rem;
  display: flex; flex-direction: column; text-align: left;
  background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: var(--radius);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) scale(.66); opacity: 0; z-index: 0;
  transform-origin: center center; pointer-events: none;
  transition: transform .6s cubic-bezier(.22,.61,.18,1), opacity .6s ease, box-shadow .4s ease;
}
.review.is-active {
  transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 4; pointer-events: auto;
  box-shadow: 0 30px 60px -18px rgba(16,32,64,.5), 0 0 0 1px rgba(255,255,255,.6) inset;
}
.review.is-prev {
  transform: translate(calc(-50% - 308px), -50%) rotateY(35deg) scale(.84);
  opacity: .5; z-index: 2; pointer-events: auto; cursor: pointer;
}
.review.is-next {
  transform: translate(calc(-50% + 308px), -50%) rotateY(-35deg) scale(.84);
  opacity: .5; z-index: 2; pointer-events: auto; cursor: pointer;
}
.review.is-prev:hover, .review.is-next:hover { opacity: .82; }
.review-stars { color: #f5a623; font-size: 1.15rem; letter-spacing: .16em; margin-bottom: .7rem; }
.review blockquote {
  margin: 0 0 1rem; font-size: 1rem; font-style: italic; line-height: 1.5; color: var(--gray);
}
.review figcaption { margin-top: .5rem; font-style: normal; }
.review figcaption strong { display: block; font-size: 1rem; }

.carousel-dots { margin-top: 1.7rem; display: flex; gap: .45rem; justify-content: center; }
.dot { width: 24px; height: 4px; border: none; padding: 0; background: var(--line); cursor: pointer; transition: background .2s, transform .2s; }
.dot.is-active { background: var(--remax-red); transform: scaleY(1.6); }
.attribution, .reviews-attribution { margin-top: 1.1rem; }

/* glass prev/next controls */
.carousel:focus-visible { outline: 3px solid rgba(0,61,165,.35); outline-offset: 6px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: var(--radius); border: 1px solid var(--glass-border);
  background: var(--glass-strong); color: var(--remax-blue);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s ease, background .2s, color .2s, box-shadow .2s;
}
.carousel-arrow:hover { background: var(--remax-blue); color: #fff; transform: translateY(-50%) scale(1.1); box-shadow: 0 16px 32px -10px rgba(0,61,165,.55); }
.carousel-arrow:active { transform: translateY(-50%) scale(.95); }
.carousel-arrow:focus-visible { outline: 2px solid var(--remax-blue); outline-offset: 3px; }
.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }
@media (max-width: 760px) {
  .review { width: 84%; }
  .review.is-prev { transform: translate(calc(-50% - 140px), -50%) rotateY(40deg) scale(.7); opacity: .28; }
  .review.is-next { transform: translate(calc(-50% + 140px), -50%) rotateY(-40deg) scale(.7); opacity: .28; }
}

/* ---------- rsvp / forms ---------- */
.rsvp { background: transparent; border-top: 1px solid var(--line); }
.rsvp-info {
  max-width: var(--maxw); margin: 0 auto 1.8rem; text-align: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-top: 4px solid var(--remax-red);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow); border-radius: var(--radius); padding: 1.7rem clamp(1rem, 4vw, 2rem);
}
.rsvp-info h2 { margin: 0 0 1rem; font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
.rsvp-by { color: var(--remax-red); white-space: nowrap; }
.rsvp-channels {
  list-style: none; margin: 0 0 .8rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.6rem; font-weight: 600;
}
.rsvp-channels li { display: flex; align-items: center; gap: .45rem; }
.rsvp-channels a { color: var(--remax-blue); text-decoration: none; }
.rsvp-channels a:hover { text-decoration: underline; }
.rsvp-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.rsvp-grid .intake-form:only-child { max-width: 540px; margin-inline: auto; width: 100%; }
.intake-form { display: flex; flex-direction: column; gap: .75rem; }
.intake-form h2 { font-size: 1.25rem; margin: 0; }
.intake-form label { display: flex; flex-direction: column; gap: .3rem; font-weight: 600; font-size: .92rem; }
.intake-form input, .intake-form textarea {
  font: inherit; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.7); color: var(--gray);
}
.intake-form input:focus, .intake-form textarea:focus {
  outline: none; border-color: var(--remax-blue); box-shadow: 0 0 0 3px rgba(0,61,165,.15);
}
.intake-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.sentry-status { font-size: .8rem; color: var(--gray-soft); margin: 0; }
.sentry-status--ok { color: #1a7f37; }
.sentry-status--busy { color: var(--remax-blue); }
.sentry-status--error { color: var(--remax-red); }
.form-result { font-size: .9rem; font-weight: 600; margin: .2rem 0 0; min-height: 1.2em; }
.form-result.is-ok  { color: #1a7f37; }
.form-result.is-err { color: var(--remax-red); }
.captcha { display: flex; flex-direction: column; gap: .5rem; padding: .8rem; background: var(--cream); border-radius: var(--radius); }
.captcha img { align-self: flex-start; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- RSVP modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,18,38,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: modal-fade .2s ease; }
.modal__dialog {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  background: var(--glass-strong); border: 1px solid var(--glass-border); border-radius: var(--radius); border-top: 4px solid var(--remax-red);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  box-shadow: 0 30px 70px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.6) inset; padding: clamp(1.4rem, 4vw, 2.2rem);
  animation: modal-pop .22s cubic-bezier(.2,.8,.3,1);
}
.modal__close {
  position: absolute; top: .7rem; right: .8rem; width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--white); color: var(--gray);
  font-size: 1.4rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.modal__close:hover { background: var(--remax-red); color: #fff; border-color: var(--remax-red); }
.modal__dialog h2 { margin: 0 0 .3rem; font-size: clamp(1.3rem, 4vw, 1.6rem); }
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 480px) { .modal__row { grid-template-columns: 1fr; } }
.modal .intake-form { gap: .7rem; }
.modal select {
  font: inherit; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.7); color: var(--gray);
}
.modal select:focus { outline: none; border-color: var(--remax-blue); box-shadow: 0 0 0 3px rgba(0,61,165,.15); }
/* ---------- digital business card ---------- */
.remax-stripe { display: block; height: 11px; }
.modal__dialog.bizcard {
  width: min(560px, 100%); padding: 0; overflow: hidden;
  border: 1px solid var(--glass-border); border-top: none; background: #fff;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.bizcard .modal__close { background: rgba(0,0,0,.4); color: #fff; border-color: transparent; }
.bizcard .modal__close:hover { background: var(--remax-red); }
.bizcard__head { display: flex; gap: 1rem; align-items: center; padding: 1.4rem 1.5rem 1.1rem; }
.bizcard__photo {
  width: 92px; height: 92px; flex: 0 0 92px; overflow: hidden;
  border: 3px solid var(--remax-blue); background: var(--gray);
  display: flex; align-items: center; justify-content: center;
}
.bizcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.bizcard__monogram { color: #fff; font-weight: 800; font-size: 2rem; letter-spacing: .04em; }
.bizcard__brand { flex: 1; min-width: 0; }
.bizcard__logo { height: 46px; width: auto; display: block; margin-bottom: .45rem; }
.bizcard__addr { margin: 0; font-size: .78rem; font-weight: 700; color: var(--gray-soft); letter-spacing: .01em; }
.bizcard__id { background: var(--gray); color: #fff; padding: .9rem 1.5rem; }
.bizcard__id h2 { color: #fff; margin: 0; font-size: clamp(1.5rem, 5vw, 2rem); text-transform: uppercase; letter-spacing: .02em; }
.bizcard__role { margin: .15rem 0 0; font-weight: 700; text-transform: uppercase; font-size: .76rem; letter-spacing: .07em; color: #d6d6d8; }
.bizcard__contacts { list-style: none; margin: 0; padding: 1.1rem 1.5rem; display: grid; gap: .55rem; }
.bizcard__contacts li { display: flex; align-items: baseline; gap: .7rem; font-weight: 700; }
.bizcard__k { flex: 0 0 52px; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--remax-red); }
.bizcard__contacts a { color: var(--gray); text-decoration: none; word-break: break-word; }
.bizcard__contacts a:hover { color: var(--remax-blue); }
.bizcard__quote { margin: 0; padding: 1.1rem 1.5rem; background: var(--remax-blue); color: #fff; font-style: italic; line-height: 1.5; }
.bizcard__quote cite { display: block; margin-top: .5rem; font-style: normal; font-weight: 800; }
.bizcard__actions { display: flex; gap: .6rem; flex-wrap: wrap; padding: 1.1rem 1.5rem .5rem; }
.bizcard__foot { margin: 0; padding: 0 1.5rem 1.3rem; font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-soft); }

/* ---------- referral quote band (business-card back) ---------- */
.quote-band {
  position: relative; background: var(--remax-blue); color: #fff; text-align: center;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1rem, 6vw, 4rem);
}
.quote-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 11px;
  background: linear-gradient(110deg, var(--remax-red) 0 47%, #fff 47% 53%, var(--remax-blue) 53% 100%); }
.quote-band__text { max-width: 760px; margin: 0 auto; font-size: clamp(1.15rem, 2.6vw, 1.6rem); font-weight: 700; font-style: italic; line-height: 1.4; }
.quote-band__cite { margin: 1rem 0 0; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: .9rem; }

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

/* DXX trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: .1rem 0; }
.trust-badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; color: var(--gray-soft);
  background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: var(--radius); padding: .3rem .65rem; cursor: help;
}
.trust-badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #1a7f37;
  animation: trust-pulse 2.4s ease-in-out infinite;
}
@keyframes trust-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(26,127,55,.5); } 50% { box-shadow: 0 0 0 4px rgba(26,127,55,0); } }
@media (prefers-reduced-motion: reduce) {
  .trust-badge__dot, .modal__backdrop, .modal__dialog { animation: none; }
}

/* ---------- DXX Threat-ID secured bar ---------- */
.dxx-secured-bar {
  background: #1b1b1e; color: #cfd2d6; text-align: center; padding: .6rem 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.dxx-secured {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .76rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.dxx-secured strong { color: #fff; font-weight: 800; }
.dxx-secured__shield { color: #4ea1ff; flex: 0 0 auto; }
.dxx-secured__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #1a7f37;
  animation: trust-pulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .dxx-secured__dot { animation: none; } }

/* ---------- footer ---------- */
.site-foot {
  position: relative; text-align: center; padding: 2.8rem 1rem 2.5rem; background: var(--gray); color: #fff;
}
.site-foot::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 11px; }
.site-foot a { color: #fff; }
.site-foot p { margin: .3rem 0; }
.site-foot .muted { color: #c9c9ca; }

@media (max-width: 640px) {
  .head-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .review { transition: none; }
}
