/* Shared multi-page layout for Florida Before You Buy. */
:root {
  --mp-navy: #0a2038;
  --mp-ink: #172a40;
  --mp-teal: #2f6b65;
  --mp-orange: #bc6b3c;
  --mp-sand: #f7f3eb;
  --mp-paper: #fffdf9;
  --mp-line: #e4dccc;
  --mp-text: #4e5d6e;
  --mp-radius: 16px;
  --mp-shadow: 0 18px 45px rgba(15, 44, 74, .10);
}

.mp-page { min-height: 100vh; background: var(--mp-sand); color: var(--mp-text); }
.mp-wrap { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.mp-section { padding: clamp(3.75rem, 7vw, 6.5rem) 0; }
.mp-section-alt { background: #f1eadd; }
.mp-section-dark { background: var(--mp-navy); color: #d9e4ec; }
.mp-section-dark h2, .mp-section-dark h3 { color: #fff; }
.mp-kicker { display: block; margin-bottom: .7rem; color: var(--mp-orange); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.mp-title { max-width: 850px; font-size: clamp(2.45rem, 5.5vw, 4.6rem); line-height: 1.02; }
.mp-title em { color: var(--mp-teal); font-weight: inherit; }
.mp-lede { max-width: 780px; margin-top: 1.25rem; font-size: clamp(1.04rem, 1.7vw, 1.22rem); }
.mp-section-head { max-width: 800px; margin-bottom: 2rem; }
.mp-section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.mp-section-head p { margin-top: .8rem; font-size: 1.05rem; }

.mp-header { position: sticky; top: 0; z-index: 120; background: rgba(247, 243, 235, .96); border-bottom: 1px solid var(--mp-line); backdrop-filter: blur(14px); }
.mp-header-inner { min-height: 82px; display: flex; align-items: center; gap: 1.25rem; }
.mp-brand { display: block; width: clamp(205px, 24vw, 285px); flex: 0 0 auto; }
.mp-brand img { width: 100%; height: auto; }
.mp-nav { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.mp-nav a { color: var(--mp-ink); font-size: .84rem; font-weight: 700; white-space: nowrap; }
.mp-nav a:hover, .mp-nav a[aria-current="page"] { color: var(--mp-teal); }
.mp-nav .mp-nav-cta { padding: .78rem 1rem; border-radius: 7px; background: var(--mp-orange); color: #fff; }
.mp-nav .mp-nav-cta:hover, .mp-nav .mp-nav-cta[aria-current="page"] { background: #a05327; color: #fff; }
.mp-menu-button { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--mp-line); border-radius: 9px; background: var(--mp-paper); color: var(--mp-navy); }
.mp-menu-button span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mp-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mp-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mp-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mp-hero { position: relative; overflow: hidden; padding: clamp(4.25rem, 9vw, 8rem) 0; background: radial-gradient(circle at 82% 15%, rgba(47,107,101,.18), transparent 32%), linear-gradient(135deg, #fffdf9, #f1eadd); }
.mp-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -150px; bottom: -250px; border: 65px solid rgba(188,107,60,.10); border-radius: 50%; }
.mp-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.mp-hero-card { padding: 1.5rem; border: 1px solid rgba(47,107,101,.18); border-radius: 22px; background: rgba(255,253,249,.82); box-shadow: var(--mp-shadow); }
.mp-hero-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; }
.mp-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.75rem; }
.mp-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .85rem 1.25rem; border: 1px solid transparent; border-radius: 7px; font-weight: 800; line-height: 1.15; text-align: center; }
.mp-btn-primary { background: var(--mp-orange); color: #fff; box-shadow: 0 9px 22px rgba(188,107,60,.22); }
.mp-btn-primary:hover { background: #a05327; color: #fff; }
.mp-btn-secondary { border-color: #c9bfae; background: transparent; color: var(--mp-ink); }
.mp-btn-secondary:hover { border-color: var(--mp-teal); color: var(--mp-teal); }

.mp-grid { display: grid; gap: 1.25rem; }
.mp-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mp-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mp-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mp-card { display: flex; flex-direction: column; padding: 1.55rem; border: 1px solid var(--mp-line); border-radius: var(--mp-radius); background: var(--mp-paper); box-shadow: 0 3px 16px rgba(15,44,74,.05); }
.mp-card h3 { font-size: 1.45rem; }
.mp-card p { margin-top: .65rem; }
.mp-card .mp-btn { align-self: flex-start; margin-top: auto; padding-top: .75rem; }
.mp-card-link { transition: transform .2s ease, box-shadow .2s ease; }
.mp-card-link:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow); }
.mp-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1rem; border-radius: 50%; background: #e9f1ef; color: var(--mp-teal); font-weight: 800; }
.mp-list { display: grid; gap: .55rem; margin: 1rem 0 0; padding-left: 1.2rem; }
.mp-list li::marker { color: var(--mp-orange); }

.mp-package { position: relative; }
.mp-package-featured { border: 2px solid var(--mp-orange); }
.mp-badge { align-self: flex-start; margin-bottom: .9rem; padding: .3rem .55rem; border-radius: 999px; background: #f7ece2; color: #8b451f; font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.mp-price { margin-top: .75rem; color: var(--mp-navy); font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.mp-price-note { font-size: .82rem; color: #6f7b88; }
.mp-disclaimer { margin-top: 1.25rem; padding: 1rem 1.15rem; border-left: 4px solid var(--mp-orange); background: #fff8f1; color: #5d6671; font-size: .9rem; }
.mp-core-message { padding: clamp(2rem, 5vw, 3.5rem); border-radius: 22px; background: var(--mp-navy); color: #fff; text-align: center; }
.mp-core-message p { max-width: 860px; margin-inline: auto; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.6rem); line-height: 1.22; }

.mp-profile { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.mp-profile-photo { position: sticky; top: 112px; }
.mp-profile-photo img { width: 100%; max-height: 660px; object-fit: cover; object-position: center top; border-radius: 22px; box-shadow: var(--mp-shadow); }
.mp-credentials { margin: .75rem 0 1.4rem; color: var(--mp-teal); font-weight: 700; }
.mp-profile-copy p + p { margin-top: 1rem; }
.mp-quote { margin-top: 1.5rem; padding: 1.1rem 1.25rem; border-left: 4px solid var(--mp-orange); font-family: var(--serif); font-size: 1.3rem; color: var(--mp-ink); }

.mp-map { width: 100%; min-height: 470px; border: 1px solid var(--mp-line); border-radius: var(--mp-radius); overflow: hidden; box-shadow: var(--mp-shadow); }
.mp-map-note { margin-top: .85rem; font-size: .88rem; }
.mp-area-card { min-height: 250px; }
.mp-area-card small { margin-top: auto; padding-top: 1rem; color: var(--mp-teal); font-weight: 800; }

.mp-form { max-width: 860px; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--mp-line); border-radius: 20px; background: var(--mp-paper); box-shadow: var(--mp-shadow); }
.mp-progress { margin-bottom: 1.5rem; }
.mp-progress-label { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; color: var(--mp-ink); font-weight: 800; }
.mp-progress-track { height: 8px; overflow: hidden; border-radius: 999px; background: #e8e0d2; }
.mp-progress-bar { width: 33.333%; height: 100%; border-radius: inherit; background: var(--mp-teal); transition: width .25s ease; }
.mp-step[hidden] { display: none; }
.mp-step h2 { margin-bottom: 1.25rem; }
.mp-fields { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.mp-field { display: grid; gap: .4rem; }
.mp-field-full { grid-column: 1 / -1; }
.mp-field label, .mp-field legend { color: var(--mp-ink); font-weight: 800; }
.mp-field input, .mp-field select, .mp-field textarea { width: 100%; min-height: 48px; padding: .78rem .85rem; border: 1px solid #cfc7ba; border-radius: 7px; background: #fff; color: var(--mp-ink); font: inherit; }
.mp-field textarea { min-height: 110px; resize: vertical; }
.mp-field input:focus, .mp-field select:focus, .mp-field textarea:focus { border-color: var(--mp-teal); outline: 3px solid rgba(47,107,101,.16); }
.mp-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .65rem; }
.mp-choice { position: relative; }
.mp-choice input { position: absolute; opacity: 0; }
.mp-choice label { display: flex; min-height: 52px; align-items: center; justify-content: center; padding: .7rem; border: 1px solid #cfc7ba; border-radius: 9px; background: #fff; color: var(--mp-ink); font-weight: 700; text-align: center; cursor: pointer; }
.mp-choice input:checked + label { border-color: var(--mp-teal); background: #e9f1ef; color: #173f3b; }
.mp-choice input:focus-visible + label { outline: 3px solid var(--mp-teal); outline-offset: 2px; }
.mp-error { min-height: 1.25em; color: #9c2d20; font-size: .82rem; }
.mp-field [aria-invalid="true"] { border-color: #b33225; }
.mp-form-actions { display: flex; justify-content: space-between; gap: .8rem; margin-top: 1.5rem; }
.mp-status { margin-top: 1rem; font-weight: 700; }
.mp-status.is-error { color: #9c2d20; }
.mp-status.is-success { color: #1f665d; }

.mp-faq { display: grid; gap: .75rem; }
.mp-faq-item { border: 1px solid var(--mp-line); border-radius: 12px; background: var(--mp-paper); }
.mp-faq-question { width: 100%; padding: 1rem 1.15rem; border: 0; background: transparent; color: var(--mp-ink); font-weight: 800; text-align: left; }
.mp-faq-answer { padding: 0 1.15rem 1rem; }

.mp-footer { padding: 3.5rem 0 6rem; background: var(--mp-navy); color: #cbd8e3; }
.mp-footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; }
.mp-footer-logo { width: min(320px, 100%); margin-bottom: 1rem; filter: brightness(0) invert(1); }
.mp-footer h2 { color: #fff; font-size: 1rem; font-family: var(--sans); }
.mp-footer a:hover { color: #fff; text-decoration: underline; }
.mp-footer-links { display: grid; gap: .45rem; margin-top: .75rem; }
.mp-footer-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .82rem; }
.mp-footer-legal p + p { margin-top: .65rem; }
.mp-mobile-cta { display: none; }
.mp-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 105; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #18745b; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.2); font-weight: 900; }

@media (max-width: 1280px) {
  .mp-nav { position: fixed; inset: 82px 0 auto; display: none; max-height: calc(100vh - 82px); overflow-y: auto; padding: 1rem 24px 2rem; background: var(--mp-paper); border-bottom: 1px solid var(--mp-line); box-shadow: var(--mp-shadow); }
  .mp-nav.is-open { display: grid; }
  .mp-nav a { min-height: 48px; display: flex; align-items: center; padding: .65rem .25rem; border-bottom: 1px solid var(--mp-line); font-size: 1rem; }
  .mp-nav .mp-nav-cta { justify-content: center; border: 0; }
  .mp-menu-button { display: block; }
  .mp-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mp-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .mp-wrap { width: min(100% - 32px, 1160px); }
  .mp-header-inner { min-height: 74px; }
  .mp-brand { width: 215px; }
  .mp-nav { inset: 74px 0 auto; max-height: calc(100vh - 74px); }
  .mp-hero { padding: 3.5rem 0; }
  .mp-hero-grid, .mp-profile, .mp-grid-2, .mp-grid-3, .mp-grid-4 { grid-template-columns: 1fr; }
  .mp-hero-card { order: -1; max-width: 380px; }
  .mp-profile-photo { position: static; }
  .mp-profile-photo img { max-height: 520px; }
  .mp-map { min-height: 390px; }
  .mp-fields, .mp-choice-grid { grid-template-columns: 1fr; }
  .mp-footer-grid { grid-template-columns: 1fr; }
  .mp-hero-grid > * { min-width: 0; }
  .mp-title, .mp-title em { overflow-wrap: anywhere; word-break: normal; }
  .mp-footer { padding-bottom: 7rem; }
  .mp-mobile-cta { position: fixed; inset: auto 0 0; z-index: 110; display: block; padding: .7rem 16px; border-top: 1px solid var(--mp-line); background: rgba(255,253,249,.97); }
  .mp-mobile-cta .mp-btn { width: 100%; }
  .mp-whatsapp { right: 16px; bottom: 82px; width: 44px; height: 44px; font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .mp-card-link, .mp-progress-bar, .mp-menu-button span,
  .ls-exp, .ls-aud, .ls-chip, .ls-preview-btn { transition: none; }
  .ls-beta-flag { animation: none; }
}

/* ============================================================
   Small button size + Florida LiveSeat / Partner Network beta pages
   + shared beta-preview notice modal.
   ============================================================ */
.mp-btn-sm { min-height: 42px; padding: .55rem .95rem; font-size: .86rem; }

.ls-kicker { color: #8b451f; }
.ls-hero {
  background: radial-gradient(circle at 82% 12%, rgba(47,107,101,.20), transparent 34%),
              linear-gradient(135deg, #0e2135, #16324a);
  color: #d7e4ee;
}
.ls-hero::after { border-color: rgba(240,180,106,.12); }
.ls-hero .mp-title, .ls-hero .mp-title em { color: #fff; }
.ls-hero .mp-title em { color: #f0b46a; }
.ls-hero .mp-lede { color: #c3d3e0; }
.ls-hero .ls-kicker { color: #f0b46a; }
.ls-tagline { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: #f0b46a; margin: .5rem 0 1rem; }
.ls-hero-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.ls-hero .mp-btn-secondary { border-color: rgba(255,255,255,.42); color: #f1e7db; }
.ls-hero .mp-btn-secondary:hover { border-color: #f0b46a; color: #fff; }
.ls-experience-chips { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.ls-chip {
  padding: .65rem .9rem; border: 1px solid rgba(240,180,106,.4); border-radius: 12px;
  background: rgba(240,180,106,.08); color: #f4d4a8; font-weight: 800; text-align: center;
  transition: transform .2s ease, background .2s ease;
}
.ls-chip:hover { transform: translateX(3px); background: rgba(240,180,106,.16); }
.ls-hero-note { color: #b9c9d6; font-size: .9rem; }

.ls-beta-banner { background: #8b451f; color: #fff; }
.ls-beta-banner .mp-wrap { padding: .9rem 24px; font-size: .95rem; width: min(1160px, calc(100% - 48px)); }
.ls-beta-banner strong { color: #ffe6cf; }

.ls-exp { border-top: 3px solid var(--mp-orange); transition: transform .2s ease, box-shadow .2s ease; }
.ls-exp:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow); }
.ls-exp-badge { display: inline-block; margin-bottom: .5rem; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--mp-teal); }
.ls-exp .mp-badge { margin-top: auto; }
.ls-clarify { border-left-color: var(--mp-teal); }

.ls-aud { transition: transform .2s ease, box-shadow .2s ease; }
.ls-aud:hover { transform: translateY(-3px); box-shadow: var(--mp-shadow); }

.ls-status-grid .ls-status-now { border: 2px solid var(--mp-teal); }
.ls-status-grid .ls-status-dev { border: 1px dashed #c2b09a; background: #fbf6ef; }
.ls-status-tag { display: inline-block; align-self: flex-start; margin-bottom: .6rem; padding: .3rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.ls-status-tag-now { background: #e0efe9; color: #1f665d; }
.ls-status-tag-dev { background: #f2e6dc; color: #8b451f; }
.ls-fineprint { margin-top: .8rem; font-size: .85rem; color: #6f7b88; }
.ls-preview-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.ls-preview-btn {
  padding: .5rem .8rem; border: 1px dashed #c2b09a; border-radius: 8px;
  background: #fff; color: #8b451f; font-size: .82rem; font-weight: 700;
  transition: background .2s ease;
}
.ls-preview-btn:hover { background: #faf2e9; }
.ls-phase .mp-icon { background: #f2e6dc; color: #8b451f; }

/* beta-preview notice modal (created by multipage.js) */
.beta-modal[hidden] { display: none; }
.beta-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 1.5rem; }
.beta-modal-backdrop { position: absolute; inset: 0; background: rgba(10,32,56,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.beta-modal-card {
  position: relative; width: min(460px, 100%); padding: 1.75rem;
  border-radius: 18px; background: var(--mp-paper); box-shadow: 0 30px 70px rgba(10,32,56,.35);
}
.beta-modal-tag { display: inline-block; margin-bottom: .6rem; padding: .3rem .6rem; border-radius: 999px; background: #f7ece2; color: #8b451f; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.beta-modal-card h2 { margin-bottom: .55rem; }
.beta-modal-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
body.beta-modal-open { overflow: hidden; }

/* Conversion paths: investor, seller, Realtor, and local-business network */
.mp-trust-line { margin-top: 1rem; color: #536675; font-size: .9rem; font-weight: 700; }
.mp-card-number { display: inline-grid; width: 2.2rem; height: 2.2rem; margin-bottom: .9rem; place-items: center; border-radius: 50%; background: #e8f4f2; color: var(--mp-teal); font-size: .78rem; font-weight: 800; }
.mp-path-grid .mp-card { min-height: 100%; }
.mp-path-card .mp-list { margin-bottom: 1.15rem; }
.mp-text-action { align-self: flex-start; margin-top: auto; padding: .35rem 0; border: 0; background: transparent; color: var(--mp-orange); font: inherit; font-weight: 800; text-align: left; cursor: pointer; }
.mp-text-action:hover { color: #8b451f; }
.mp-text-action:focus-visible { outline: 3px solid var(--mp-teal); outline-offset: 3px; border-radius: 4px; }
.mp-split-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(1.5rem, 5vw, 4.5rem); }
.mp-split-layout > .mp-form { width: 100%; max-width: none; }
.mp-callout { margin-top: 1.5rem; padding: 1rem 1.1rem; border-left: 4px solid var(--mp-orange); border-radius: 0 12px 12px 0; background: #fff9f2; }
.mp-callout p { margin-top: .3rem; }
.mp-form-note { margin-top: 1rem; color: #687783; font-size: .84rem; }
.mp-choice-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mp-field fieldset, fieldset.mp-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.mp-field legend { margin-bottom: .55rem; color: var(--mp-ink); font-weight: 800; }
.mp-consent { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: .75rem; font-weight: 600 !important; line-height: 1.5; }
.mp-consent input { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin-top: .18rem; accent-color: var(--mp-teal); }
.mp-process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.mp-process li { padding: 1.25rem; border: 1px solid var(--mp-line); border-radius: 16px; background: var(--mp-paper); }
.mp-process li > span { display: grid; width: 2.25rem; height: 2.25rem; margin-bottom: .8rem; place-items: center; border-radius: 50%; background: var(--mp-navy); color: white; font-weight: 800; }
.mp-process h3 { margin-bottom: .4rem; }
.mp-network-hero { display: flex; min-height: 320px; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(2rem, 6vw, 4rem); background: linear-gradient(145deg, #0b3851, #116d72); color: white; }
.mp-network-hero h2, .mp-network-hero p { color: white; }
.mp-network-hero a { margin-top: 1rem; color: #ffe1b7; font-weight: 800; }
.mp-network-count { font-family: var(--serif); font-size: clamp(4rem, 8vw, 6.5rem); font-weight: 700; line-height: .9; }
.mp-directory-tools { display: grid; gap: 1rem; margin: 1.5rem 0 1rem; }
.mp-search { display: grid; gap: .45rem; max-width: 620px; color: var(--mp-ink); font-weight: 800; }
.mp-search input { width: 100%; min-height: 48px; padding: .75rem 1rem; border: 1px solid #bac7cc; border-radius: 12px; background: white; color: var(--mp-ink); font: inherit; }
.mp-search input:focus { outline: 3px solid rgba(31,112,109,.22); border-color: var(--mp-teal); }
.mp-filter-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.mp-filter-chips button { padding: .58rem .82rem; border: 1px solid #c9d2d2; border-radius: 999px; background: white; color: var(--mp-ink); font: inherit; font-size: .84rem; font-weight: 800; cursor: pointer; }
.mp-filter-chips button:hover, .mp-filter-chips button.is-active { border-color: var(--mp-teal); background: var(--mp-teal); color: white; }
.mp-filter-chips button:focus-visible { outline: 3px solid var(--mp-orange); outline-offset: 2px; }
.mp-directory-status { min-height: 1.4em; margin-bottom: .8rem; color: #5d6e78; font-weight: 700; }
.mp-directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.mp-directory-card { display: flex; min-height: 220px; flex-direction: column; padding: 1.2rem; border: 1px solid var(--mp-line); border-radius: 16px; background: var(--mp-paper); box-shadow: 0 10px 28px rgba(11,56,81,.06); }
.mp-directory-card[hidden] { display: none; }
.mp-directory-card > span { align-self: flex-start; margin-bottom: .75rem; padding: .28rem .5rem; border-radius: 999px; background: #e8f4f2; color: var(--mp-teal); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.mp-directory-card h3 { margin-bottom: .45rem; }
.mp-directory-card p { font-size: .9rem; }
.mp-directory-card button { align-self: flex-start; margin-top: auto; padding: .8rem 0 0; border: 0; background: transparent; color: var(--mp-orange); font: inherit; font-weight: 800; text-align: left; cursor: pointer; }
.mp-directory-card button:focus-visible { outline: 3px solid var(--mp-teal); outline-offset: 3px; }

@media (max-width: 980px) {
  .mp-split-layout { grid-template-columns: 1fr; }
  .mp-process, .mp-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .mp-choice-grid-compact, .mp-process, .mp-directory-grid { grid-template-columns: 1fr; }
  .mp-network-hero { order: 0; min-height: 240px; }
}

/* LiveSeat flagship experience */
.ls-flagship-hero { background: radial-gradient(circle at 80% 15%, rgba(20,122,125,.22), transparent 34%), linear-gradient(135deg, #fffdf9, #e8f2ef); }
.ls-photo-card { padding: .7rem; overflow: hidden; }
.ls-photo-card img { aspect-ratio: 3 / 2; }
.ls-photo-card figcaption { padding: .65rem .45rem .2rem; color: #5c6d78; font-size: .82rem; font-weight: 700; }
.ls-position { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.ls-position .mp-core-message { display: grid; gap: .75rem; text-align: center; }
.ls-position .mp-core-message > p { max-width: 900px; margin: 0 auto; }
.ls-position .mp-core-message > p em { color: var(--mp-teal); font-style: italic; }
.ls-position .mp-core-message small { display: block; max-width: 800px; margin: 0 auto; color: #526572; font-family: var(--sans); font-size: clamp(.95rem, 1.8vw, 1.15rem); font-weight: 500; line-height: 1.65; }
.ls-hero-position { margin: 1rem 0 .35rem; color: var(--mp-teal); font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 700; line-height: 1.25; }
.ls-process { margin-top: 1.5rem; }
.ls-safety { margin-top: 1.5rem; padding: 1.25rem 1.4rem; border: 1px solid #d2b995; border-left: 5px solid var(--mp-orange); border-radius: 14px; background: #fff9ee; }
.ls-safety p { margin-top: .35rem; }
.ls-checklist-preview { display: flex; flex-wrap: wrap; gap: .65rem; }
.ls-checklist-preview span { padding: .62rem .8rem; border: 1px solid #c7d8d4; border-radius: 999px; background: #f3faf8; color: #204f4d; font-size: .84rem; font-weight: 800; }
.ls-package-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.ls-premium-package { background: linear-gradient(145deg, #fffdf9, #f6eadc); }
.ls-audience-tabs { overflow: hidden; border: 1px solid var(--mp-line); border-radius: 18px; background: var(--mp-paper); box-shadow: var(--mp-shadow); }
.ls-tab-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-bottom: 1px solid var(--mp-line); }
.ls-tab-list button { min-height: 54px; padding: .8rem; border: 0; border-right: 1px solid var(--mp-line); background: #f7f3eb; color: var(--mp-ink); font: inherit; font-weight: 800; cursor: pointer; }
.ls-tab-list button:last-child { border-right: 0; }
.ls-tab-list button[aria-selected="true"] { background: var(--mp-teal); color: white; }
.ls-tab-list button:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--mp-orange); outline-offset: -3px; }
.ls-tab-panel { min-height: 250px; padding: clamp(1.5rem,4vw,2.5rem); }
.ls-tab-panel[hidden] { display: none; }
.ls-handoff { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.ls-handoff li { display: flex; align-items: center; gap: .5rem; color: var(--mp-navy); font-weight: 800; }
.ls-handoff li:not(:last-child)::after { content: "→"; color: var(--mp-orange); }
.ls-booking-form { max-width: none; }
.mp-optional { color: #6b7a83; font-size: .76rem; font-weight: 600; }
.mp-field-help { margin: -.15rem 0 .75rem; color: #667782; font-size: .84rem; }
.ls-tour-choices { grid-template-columns: repeat(4, minmax(0,1fr)); }
.ls-demo-placeholder { display: grid; min-height: 280px; margin-top: 1.25rem; place-content: center; gap: .5rem; padding: 2rem; border: 2px dashed #a9c0bc; border-radius: 18px; background: linear-gradient(145deg,#edf7f5,#fff9ee); color: var(--mp-teal); text-align: center; }
.ls-demo-placeholder span { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; }
.ls-demo-placeholder strong { color: #5d6f78; font-size: .86rem; }
.ls-testimonial-placeholder { margin-top: 1.25rem; padding: 1.5rem; border: 1px solid var(--mp-line); border-radius: 18px; background: white; }
.ls-testimonial-placeholder blockquote { color: var(--mp-ink); font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; }
.ls-testimonial-placeholder p { margin-top: 1rem; color: #667782; font-size: .82rem; font-weight: 800; }

@media (max-width: 900px) {
  .ls-tour-choices { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .ls-flagship-hero .mp-hero-card { order: 0; }
  .ls-package-grid, .ls-tour-choices { grid-template-columns: 1fr; }
  .ls-tab-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ls-tab-list button:nth-child(2) { border-right: 0; }
  .ls-tab-list button:nth-child(-n+2) { border-bottom: 1px solid var(--mp-line); }
  .ls-handoff { display: grid; }
  .ls-handoff li:not(:last-child)::after { content: "↓"; }
}
