/* ============================================================================
   Destinito for Hosts — marketing design system
   Self-contained; reuses Destinito brand palette (navy #003366 / orange #FF7F0E).
   Used by _LayoutHosts.cshtml and all /hosts/* pages.
   ============================================================================ */

:root {
    --h-navy: #003366;
    --h-navy-dark: #002244;
    --h-orange: #FF7F0E;
    --h-ink: #1a2233;
    --h-muted: #55607a;
    --h-line: #e5e9f0;
    --h-tint: #f5f8fc;
    --h-white: #ffffff;
    --h-wrap: 1160px;
    --h-radius: 14px;
    --h-shadow: 0 10px 30px rgba(0, 32, 68, .08);
}

.hosts * { box-sizing: border-box; }
.hosts {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--h-ink);
    line-height: 1.6;
}
.hosts h1, .hosts h2, .hosts h3, .hosts h4 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.2;
    color: var(--h-ink);
    margin: 0 0 .5rem;
}
.hosts p { margin: 0 0 1rem; }
.hosts a { color: var(--h-navy); text-decoration: none; }

.h-wrap { max-width: var(--h-wrap); margin: 0 auto; padding: 0 1.25rem; }
.h-section { padding: 4rem 0; }
.h-section--tint { background: var(--h-tint); }
.h-section--navy { background: var(--h-navy); color: #eaf0f8; }
.h-section--navy h1, .h-section--navy h2, .h-section--navy h3 { color: #fff; }
.h-section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.h-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 700; color: var(--h-orange); margin: 0 0 .6rem; }
.h-lead { font-size: 1.12rem; color: var(--h-muted); }
.h-section--navy .h-lead { color: #b9c7db; }

/* Buttons */
.h-btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .98rem; padding: .8rem 1.4rem; border-radius: 8px; border: 1.5px solid transparent; cursor: pointer; transition: filter .15s, background .15s, color .15s; }
.h-btn--primary { background: var(--h-orange); color: #fff; }
.h-btn--primary:hover { filter: brightness(1.06); color: #fff; }
.h-btn--ghost { background: transparent; color: var(--h-navy); border-color: var(--h-navy); }
.h-btn--ghost:hover { background: var(--h-navy); color: #fff; }
.h-section--navy .h-btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.h-section--navy .h-btn--ghost:hover { background: #fff; color: var(--h-navy); }
.h-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.h-cta-row--center { justify-content: center; }

/* Hero */
.h-hero { background: linear-gradient(160deg, #f5f8fc 0%, #eaf1fa 100%); padding: 4.5rem 0; }
.h-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.h-hero h1 { font-size: 2.7rem; }
.h-hero .h-lead { font-size: 1.2rem; margin: 1rem 0 1.6rem; }
.h-hero-note { font-size: .88rem; color: var(--h-muted); margin-top: 1rem; }
.h-hero-visual { background: var(--h-white); border: 1px solid var(--h-line); border-radius: var(--h-radius); box-shadow: var(--h-shadow); padding: 1.5rem; min-height: 300px; display: flex; flex-direction: column; gap: .8rem; }
.h-hero-visual .h-phone { border: 2px solid var(--h-navy); border-radius: 20px; padding: 1rem; background: #fff; }

/* Grids & cards */
.h-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.h-grid--2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.h-card { background: var(--h-white); border: 1px solid var(--h-line); border-radius: var(--h-radius); padding: 1.5rem; }
.h-card--link { transition: box-shadow .15s, transform .15s; }
.h-card--link:hover { box-shadow: var(--h-shadow); transform: translateY(-2px); }
.h-ico { width: 46px; height: 46px; border-radius: 10px; background: rgba(0,51,102,.07); color: var(--h-navy); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: .9rem; }
.h-card h3 { font-size: 1.12rem; }
.h-card p { font-size: .93rem; color: var(--h-muted); margin: 0; }

/* Status badges */
.h-badge { display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .2rem .5rem; border-radius: 5px; margin-left: .5rem; vertical-align: middle; }
.h-badge--available { background: #e6f6ec; color: #1a7f43; }
.h-badge--setup { background: #fff2e0; color: #b5650a; }
.h-badge--limited { background: #eef1f6; color: #55607a; }
.h-badge--beta { background: #e9e6fb; color: #5b45c7; }
.h-badge--soon { background: #f3f4f7; color: #8894a8; }

/* Steps */
.h-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.4rem; counter-reset: step; }
.h-step { position: relative; padding-top: .5rem; }
.h-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--h-orange); color: #fff; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: .8rem; }
.h-step h3 { font-size: 1.05rem; }
.h-step p { font-size: .92rem; color: var(--h-muted); margin: 0; }

/* Feature list rows */
.h-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.h-features li { display: flex; gap: .8rem; align-items: flex-start; }
.h-features i { color: var(--h-navy); margin-top: .25rem; }
.h-features strong { display: inline; }

/* Audience chips */
.h-audience { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.h-audience span { background: var(--h-white); border: 1px solid var(--h-line); border-radius: 999px; padding: .5rem 1rem; font-size: .9rem; color: var(--h-ink); }

/* Disclosure / notes */
.h-note { font-size: .85rem; color: var(--h-muted); background: var(--h-tint); border-left: 3px solid var(--h-orange); padding: .8rem 1rem; border-radius: 0 8px 8px 0; }
.h-disclaimer { font-size: .82rem; color: var(--h-muted); }

/* Pricing */
.h-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; align-items: stretch; }
.h-plan { background: #fff; border: 1px solid var(--h-line); border-radius: var(--h-radius); padding: 1.6rem; display: flex; flex-direction: column; }
.h-plan--featured { border-color: var(--h-orange); box-shadow: var(--h-shadow); }
.h-plan-price { font-size: 2rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin: .4rem 0; }
.h-plan-price small { font-size: .9rem; font-weight: 500; color: var(--h-muted); }
.h-plan ul { list-style: none; margin: 1rem 0; padding: 0; display: grid; gap: .55rem; font-size: .9rem; }
.h-plan ul li::before { content: "\2713"; color: #1a7f43; font-weight: 700; margin-right: .5rem; }
.h-plan .h-btn { margin-top: auto; justify-content: center; }

/* FAQ accordion */
.h-faq { max-width: 780px; margin: 0 auto; }
.h-faq-item { border-bottom: 1px solid var(--h-line); }
.h-faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.1rem 0; font-size: 1.02rem; font-weight: 600; color: var(--h-ink); cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; font-family: 'Plus Jakarta Sans', sans-serif; }
.h-faq-q i { transition: transform .2s; color: var(--h-navy); }
.h-faq-item.open .h-faq-q i { transform: rotate(180deg); }
.h-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.h-faq-item.open .h-faq-a { max-height: 500px; }
.h-faq-a p { padding: 0 0 1.1rem; color: var(--h-muted); font-size: .95rem; margin: 0; }

/* Lead form */
.h-form { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--h-line); border-radius: var(--h-radius); padding: 1.8rem; }
.h-field { margin-bottom: 1rem; }
.h-field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .35rem; }
.h-field input, .h-field select, .h-field textarea { width: 100%; padding: .7rem .8rem; border: 1px solid var(--h-line); border-radius: 8px; font-size: .95rem; font-family: inherit; }
.h-field input:focus, .h-field select:focus, .h-field textarea:focus { outline: 2px solid rgba(0,51,102,.25); border-color: var(--h-navy); }
.h-field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.h-field-error { color: #c0392b; font-size: .82rem; margin-top: .3rem; display: none; }
.h-field.invalid .h-field-error { display: block; }
.h-field.invalid input, .h-field.invalid select, .h-field.invalid textarea { border-color: #c0392b; }
.h-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--h-muted); }
.h-consent input { width: auto; margin-top: .25rem; }
.h-form-status { display: none; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; font-size: .92rem; }
.h-form-status--ok { display: block; background: #e6f6ec; color: #1a7f43; }
.h-form-status--err { display: block; background: #fdecea; color: #c0392b; }

/* Breadcrumbs */
.h-crumbs { font-size: .82rem; color: var(--h-muted); padding: 1rem 0 0; }
.h-crumbs a { color: var(--h-muted); }
.h-crumbs a:hover { color: var(--h-navy); }

/* Guest-guide phone mockup — replicates the live guest guide (teal
   "modern-minimal" template) as a screenshot stand-in. Self-contained. */
.hp-phone { width: 300px; max-width: 100%; margin: 0 auto; background: #10202f; border-radius: 36px; padding: 9px; box-shadow: 0 26px 64px rgba(0,32,68,.30); }
.gg-screen { --gg: #0891b2; height: 560px; background: #f4f6f8; border-radius: 28px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.gg-head { display: flex; align-items: center; gap: 6px; padding: 9px 11px; background: #fff; border-bottom: 1px solid #eef1f4; }
.gg-title { font-size: .72rem; font-weight: 700; color: #1a2233; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.gg-acts { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.gg-cir { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .52rem; color: #fff; }
.gg-cir.o { background: #FF7F0E; } .gg-cir.n { background: #003366; } .gg-cir.t { background: #0891b2; }
.gg-cir.bars { background: none; color: #55607a; font-size: .72rem; width: 15px; }
.gg-scroll { flex: 1; overflow: hidden; }
/* Real property photo fills the hero. */
.gg-hero { height: 120px; position: relative; overflow: hidden; background: #c9d4dd; }
.gg-hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

/* Hero preview combo: QR + phone side by side (product proof) */
.h-preview-combo { display:flex; gap:1.1rem; align-items:center; justify-content:center; }
.h-qr { text-align:center; flex-shrink:0; }
.h-qr img { width:118px; height:118px; border:1px solid var(--h-line); border-radius:12px; padding:7px; background:#fff; box-shadow:var(--h-shadow); display:block; }
.h-qr span { display:block; margin-top:.45rem; font-size:.78rem; font-weight:600; color:var(--h-navy); }
@media (max-width: 520px) { .h-preview-combo { flex-direction: column; } }
.gg-hdots { position:absolute; bottom:7px; left:0; right:0; display:flex; justify-content:center; gap:4px; }
.gg-hdots i { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.55); }
.gg-hdots i.on { background:#fff; }
.gg-pills { display:flex; gap:5px; padding:9px 10px 5px; flex-wrap:wrap; background:#fff; }
.gg-pill { font-size:.56rem; font-weight:600; padding:.28rem .5rem; border-radius:999px; border:1px solid #e2e7ec; color:#55607a; display:flex; align-items:center; gap:3px; }
.gg-pill.on { background:var(--gg); border-color:var(--gg); color:#fff; }
.gg-body { padding:12px 12px 0; }
.gg-propname { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:.9rem; color:#12303f; text-align:center; margin:.15rem 0 .7rem; line-height:1.25; }
.gg-qa { display:grid; grid-template-columns:1fr 1fr 1fr; gap:6px; margin-bottom:10px; }
.gg-qa-item { background:#fff; border:1px solid #e7ecf0; border-radius:11px; padding:.55rem .15rem; display:flex; flex-direction:column; align-items:center; gap:4px; }
.gg-qa-item i { color:var(--gg); font-size:.95rem; }
.gg-qa-item span { font-size:.5rem; font-weight:600; color:#33414f; }
.gg-wcard { background:#fff; border:1px solid #e7ecf0; border-radius:12px; padding:.7rem .75rem; }
.gg-wcard h5 { font-family:'Plus Jakarta Sans',sans-serif; font-size:.72rem; margin:0 0 .25rem; color:#12303f; }
.gg-wcard p { font-size:.6rem; color:#66717d; margin:0; line-height:1.45; }
.gg-concierge { position:absolute; right:10px; bottom:44px; background:var(--gg); color:#fff; border-radius:999px; padding:.35rem .6rem; font-size:.56rem; font-weight:600; display:flex; align-items:center; gap:5px; box-shadow:0 6px 16px rgba(8,145,178,.4); }
.gg-nav { display:flex; background:#fff; border-top:1px solid #eef1f4; }
.gg-nav a { flex:1; display:flex; flex-direction:column; align-items:center; gap:2px; padding:7px 0 8px; font-size:.5rem; color:#8a94a3; text-decoration:none; }
.gg-nav a i { font-size:.85rem; }
.gg-nav a.on { color:var(--gg); }
/* Variant screens (wifi, ai) so each marketing section shows a different guide screen */
.gg-pghead { display:flex; align-items:center; gap:8px; padding:13px 12px 7px; font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; font-size:.85rem; color:#12303f; }
.gg-pgicon { width:28px; height:28px; border-radius:8px; background:linear-gradient(135deg,var(--gg),#066a83); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.72rem; }
.gg-wifi2 { background:#fff; border:1px solid #e7ecf0; border-radius:14px; margin:2px 12px 0; padding:14px 12px; text-align:center; }
.gg-wifi2 img { width:100px; height:100px; display:block; margin:0 auto 6px; }
.gg-wifi2 .cap { font-size:.55rem; color:#8a94a3; margin:0 0 10px; }
.gg-field2 { display:flex; align-items:center; justify-content:space-between; gap:8px; background:#f4f6f8; border-radius:9px; padding:.45rem .6rem; margin-top:7px; text-align:left; }
.gg-field2 small { display:block; font-size:.46rem; letter-spacing:.05em; color:#8a94a3; text-transform:uppercase; }
.gg-field2 b { font-size:.68rem; color:#12303f; }
.gg-field2 i { color:var(--gg); font-size:.7rem; }
.gg-chatarea { padding:11px 12px; display:flex; flex-direction:column; gap:7px; }
.gg-msg { max-width:82%; padding:.45rem .6rem; border-radius:12px; font-size:.6rem; line-height:1.4; }
.gg-msg.q { align-self:flex-end; background:var(--gg); color:#fff; border-bottom-right-radius:3px; }
.gg-msg.a { align-self:flex-start; background:#fff; border:1px solid #e7ecf0; color:#33414f; border-bottom-left-radius:3px; }
.gg-chips2 { display:flex; gap:5px; flex-wrap:wrap; margin-top:4px; }
.gg-chips2 span { font-size:.52rem; border:1px solid #d7e6ea; color:var(--gg); border-radius:999px; padding:.2rem .5rem; }
.gg-inputbar { display:flex; align-items:center; gap:6px; padding:8px 10px; }
.gg-inputbar .ib { flex:1; background:#fff; border:1px solid #e2e7ec; border-radius:999px; padding:.42rem .65rem; font-size:.56rem; color:#8a94a3; }
.gg-inputbar .sb { width:24px; height:24px; border-radius:50%; background:var(--gg); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.58rem; flex-shrink:0; }

/* Split feature rows (icon panel + text) */
.h-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.h-split--rev .h-split-media { order: 2; }
.h-featurelist { display: grid; gap: 1rem; }
.h-featurerow { display: flex; gap: .8rem; align-items: flex-start; }
.h-featurerow .h-ico { flex: 0 0 auto; margin-bottom: 0; width: 40px; height: 40px; font-size: 1.05rem; }
.h-featurerow h3 { font-size: 1rem; margin: 0 0 .15rem; }
.h-featurerow p { font-size: .9rem; color: var(--h-muted); margin: 0; }
@media (max-width: 820px) { .h-split { grid-template-columns: 1fr; gap: 1.6rem; } .h-split--rev .h-split-media { order: 0; } }

/* Printed-vs-digital comparison */
.h-compare { border: 1px solid var(--h-line); border-radius: var(--h-radius); overflow: hidden; background: #fff; box-shadow: var(--h-shadow); }
.h-compare-head, .h-compare-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.h-compare-head { background: var(--h-tint); }
.h-compare-head > div { padding: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: .5rem; }
.h-compare-head .paper { color: var(--h-muted); }
.h-compare-head .digital { color: var(--h-navy); background: rgba(255,127,14,.06); }
.h-compare-row > div { padding: .95rem 1rem; border-top: 1px solid var(--h-line); font-size: .92rem; }
.h-compare-aspect { font-weight: 600; color: var(--h-ink); }
.h-compare-cell { display: flex; gap: .55rem; align-items: flex-start; color: var(--h-muted); }
.h-compare-cell i { margin-top: .18rem; flex-shrink: 0; }
.h-compare-cell.paper i { color: #c0392b; }
.h-compare-cell.digital { color: var(--h-ink); background: rgba(255,127,14,.04); }
.h-compare-cell.digital i { color: #1a7f43; }
.h-compare-lbl { display: none; }
@media (max-width: 720px) {
    .h-compare-head { display: none; }
    .h-compare-row { grid-template-columns: 1fr; }
    .h-compare-aspect { background: var(--h-tint); font-family: 'Plus Jakarta Sans', sans-serif; }
    .h-compare-row > div { border-top: 1px solid var(--h-line); }
    .h-compare-lbl { display: inline-block; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; margin-right: .4rem; }
    .h-compare-cell.paper .h-compare-lbl { color: var(--h-muted); }
    .h-compare-cell.digital .h-compare-lbl { color: var(--h-navy); }
}

/* Header / footer chrome */
.hosts-header { position: sticky; top: 0; z-index: 100; background: var(--h-navy); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.hosts-header-inner { max-width: var(--h-wrap); margin: 0 auto; display: flex; align-items: center; gap: 1.25rem; padding: .6rem 1.25rem; }
/* Higher specificity than `.hosts a` (0,1,1) so the wordmark stays white on navy. */
.hosts .hosts-wordmark { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: 1.2rem; letter-spacing: .01em; white-space: nowrap; font-family: 'Plus Jakarta Sans', sans-serif; }
.hosts .hosts-wordmark b { color: var(--h-orange); font-weight: 700; }
.hosts-footer .hosts-wordmark { font-size: 1.05rem; }
.hosts-nav { display: flex; align-items: center; gap: 1rem; margin-left: auto; flex-wrap: wrap; }
.hosts-nav a { color: #dbe4f0; font-size: .9rem; font-weight: 500; }
.hosts-nav a:hover { color: #fff; }
.hosts-nav a.hosts-cta { background: var(--h-orange); color: #fff; padding: .5rem .95rem; border-radius: 6px; font-weight: 600; }
.hosts-nav a.hosts-cta:hover { color: #fff; filter: brightness(1.06); }
.hosts-dd { position: relative; }
.hosts-dd > span { color: #dbe4f0; font-size: .9rem; font-weight: 500; cursor: default; }
.hosts-dd-menu { position: absolute; top: 100%; left: 0; background: #fff; border-radius: 10px; box-shadow: var(--h-shadow); padding: .5rem; min-width: 210px; display: none; }
.hosts-dd:hover .hosts-dd-menu { display: block; }
.hosts-dd-menu a { display: block; color: var(--h-ink); padding: .5rem .7rem; border-radius: 6px; font-size: .9rem; }
.hosts-dd-menu a:hover { background: var(--h-tint); color: var(--h-navy); }
.hosts-mobile-toggle { display: none; background: none; border: 0; color: #fff; font-size: 1.3rem; cursor: pointer; margin-left: auto; }
.hosts-mobile-nav { display: none; flex-direction: column; background: var(--h-navy-dark); }
.hosts-mobile-nav.open { display: flex; }
.hosts-mobile-nav a { color: #dbe4f0; padding: .8rem 1.25rem; border-top: 1px solid rgba(255,255,255,.08); }

.hosts-footer { background: var(--h-navy-dark); color: #cdd7e6; margin-top: 0; }
.hosts-footer-grid { max-width: var(--h-wrap); margin: 0 auto; padding: 2.5rem 1.25rem 1rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; }
.hosts-footer-col h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 .7rem; }
.hosts-footer-col { display: flex; flex-direction: column; gap: .5rem; }
.hosts-footer a { color: #cdd7e6; font-size: .88rem; }
.hosts-footer a:hover { color: #fff; }
.hosts-footer-brand p { font-size: .85rem; color: #9fb0c9; max-width: 260px; }
.hosts-footer-bottom { max-width: var(--h-wrap); margin: 0 auto; padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; color: #9fb0c9; }

@media (max-width: 900px) {
    .h-hero-grid { grid-template-columns: 1fr; }
    .h-hero h1 { font-size: 2.1rem; }
    .hosts-nav { display: none; }
    .hosts-mobile-toggle { display: block; }
    .hosts-footer-grid { grid-template-columns: 1fr 1fr; }
    .h-field--row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .hosts-footer-grid { grid-template-columns: 1fr; }
}
