/* ── Guest house / B&B page (HOT-1677) ── */

.gh-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f3f7fb 0%, #e8f0f8 100%);
}

.gh-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #3a6d8c;
    margin-bottom: 0.9rem;
}

.gh-hero__heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    color: #1a1a2e;
    max-width: 20ch;
    margin: 0 0 1.1rem;
}

.gh-hero__lede {
    font-size: 1.2rem;
    line-height: 1.65;
    color: #33445c;
    max-width: 60ch;
    margin: 0 0 1.8rem;
}

.gh-section {
    padding: 3.5rem 0;
}

.gh-section--tinted {
    background: #f8fafc;
}

.gh-section h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    max-width: 24ch;
}

.gh-lede {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 65ch;
    margin: 0 0 2rem;
}

/* Running text stays near 65 characters so it reads as prose, not as a column
   of marketing lines. */
.gh-prose p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a5568;
    max-width: 65ch;
    margin: 0 0 1.1rem;
}

.gh-subheading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 2.5rem 0 0.9rem;
}

.gh-note {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 65ch;
    margin: 0.9rem 0 1.75rem;
}

/* ── CTAs ── a. prefix and explicit link-state colors: the theme styles bare
   `a`, and without this the solid button loses its white label. */
a.gh-cta {
    display: inline-block;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.7rem 1.75rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.gh-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

a.gh-cta--solid,
a.gh-cta--solid:link,
a.gh-cta--solid:visited {
    background: #3a6d8c;
    color: #fff;
    border: 2px solid #3a6d8c;
}

a.gh-cta--solid:hover,
a.gh-cta--solid:focus {
    background: #2f5972;
    border-color: #2f5972;
    color: #fff;
    text-decoration: none;
}

a.gh-cta--ghost,
a.gh-cta--ghost:link,
a.gh-cta--ghost:visited {
    background: transparent;
    color: #3a6d8c;
    border: 2px solid #3a6d8c;
}

a.gh-cta--ghost:hover,
a.gh-cta--ghost:focus {
    background: #3a6d8c;
    color: #fff;
    text-decoration: none;
}

.gh-trust {
    font-size: 0.92rem;
    color: #6b7280;
    margin: 0;
}

/* ── Plans ── */
.gh-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gh-plan {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 12px;
    padding: 1.5rem;
}

.gh-plan--featured {
    border-color: #3a6d8c;
    border-width: 2px;
    box-shadow: 0 8px 26px rgba(58, 109, 140, 0.12);
}

.gh-plan__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.3rem;
}

.gh-plan__price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #3a6d8c;
    margin: 0 0 0.75rem;
    line-height: 1.1;
}

.gh-plan__suffix {
    font-size: 0.92rem;
    font-weight: 500;
    color: #6b7280;
    margin-left: 0.4rem;
}

.gh-plan__detail {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
    margin: 0;
}

/* ── Tables ── wide content scrolls in its own container so the page body
   never scrolls sideways on a phone. */
.gh-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gh-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 10px;
}

.gh-table th,
.gh-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    text-align: left;
    vertical-align: top;
    color: #4a5568;
    line-height: 1.6;
}

.gh-table thead th {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.gh-table tbody th {
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
}

.gh-table tr:last-child th,
.gh-table tr:last-child td {
    border-bottom: none;
}

.gh-table__num {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #1a1a2e;
}

.gh-table__mine {
    background: rgba(58, 109, 140, 0.06);
    color: #1a1a2e;
}

.gh-table--compare {
    min-width: 620px;
}

/* ── Channels ── */
.gh-channels {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.gh-channels__item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #3a6d8c;
}

/* ── Steps ── numbered because the content genuinely is a sequence. */
.gh-steps {
    list-style: none;
    counter-reset: gh-step;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gh-steps__item {
    counter-increment: gh-step;
    padding-top: 3.2rem;
    position: relative;
}

.gh-steps__item::before {
    content: counter(gh-step);
    position: absolute;
    top: 0;
    left: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #3a6d8c;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-steps__item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.4rem;
}

.gh-steps__item p {
    color: #4a5568;
    line-height: 1.65;
    margin: 0;
}

/* ── FAQ ── */
.gh-faq {
    margin: 0;
    max-width: 70ch;
}

.gh-faq__q {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.6rem 0 0.4rem;
}

.gh-faq__a {
    margin: 0;
    color: #4a5568;
    line-height: 1.75;
}

.gh-final {
    text-align: center;
}

.gh-final .gh-lede,
.gh-final h2 {
    margin-left: auto;
    margin-right: auto;
}

.gh-final .gh-ctas {
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .gh-plans,
    .gh-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .gh-hero__heading {
        font-size: 1.85rem;
    }

    .gh-hero__lede {
        font-size: 1.05rem;
    }

    .gh-section h2 {
        font-size: 1.45rem;
    }

    a.gh-cta {
        display: block;
        width: 100%;
        text-align: center;
    }
}
