/* ==========================================================================
   Pakistan Bikers - site-wide design system

   Loaded on every page via layouts/header.blade.php and scoped to the
   `pb-site` class on <body>. Anything reused across more than one page lives
   here; home-modern.css keeps only what is specific to the homepage.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@100..125,400..800&family=IBM+Plex+Mono:wght@500&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

.pb-site {
    --pine: #16321a;
    --green: #2b602c;
    --lift: #3f8b41;
    --haze: #e7ece6;
    --snow: #f7faf6;
    --ink: #131a15;
    --moss: #5c6b5e;
    --line: #cdd6cb;

    --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    --body: 'IBM Plex Sans', 'Barlow', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;
}

/* --------------------------------------------------------------------------
   Masthead logo

   The markup carries an inline width:50%, which resolves against whatever
   column it lands in - roughly a 380px-tall logo once the row stacks. Height
   drives the size here instead, so it is correct on every page and breakpoint.
   -------------------------------------------------------------------------- */

.pb-site .nav-logo img,
.pb-site .inner-logo img,
.pb-site .footer-logo img {
    width: auto !important;
    height: auto;
    max-height: 74px;
    max-width: 210px;
    object-fit: contain;
}

.pb-site .footer-logo img { max-height: 58px; }

@media (max-width: 991px) {
    .pb-site .nav-logo img,
    .pb-site .inner-logo img { max-height: 54px; max-width: 150px; }
}

@media (max-width: 767px) {
    .pb-site .nav-logo img,
    .pb-site .inner-logo img { max-height: 46px; max-width: 128px; }
}

/* --------------------------------------------------------------------------
   Section heads, shared by the inner pages
   -------------------------------------------------------------------------- */

.pb-site .page-head {
    margin-bottom: clamp(20px, 2.4vw, 34px);
}

.pb-site .page-head h1,
.pb-site .page-head h2 {
    font-family: var(--display);
    font-variation-settings: 'wdth' 112, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.75rem, 2.5vw, 2.7rem);
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 12px;
}

.pb-site .page-head h1::before,
.pb-site .page-head h2::before {
    content: '';
    display: block;
    width: 34px;
    height: 2px;
    background: var(--lift);
    margin-bottom: 14px;
}

.pb-site .page-head p {
    max-width: 70ch;
    color: var(--moss);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Grid used by the tours listing
   -------------------------------------------------------------------------- */

.pb-site .tour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1100px) {
    .pb-site .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .pb-site .tour-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
}

/* --------------------------------------------------------------------------
   Tour cards

   Titles use the same readable, sentence-case treatment as the blog headings:
   these are place names people scan, not slogans.
   -------------------------------------------------------------------------- */

.pb-site .tour-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pb-site .tour-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(19, 26, 21, .05);
    transition: transform .36s cubic-bezier(.22, .68, .28, 1),
                box-shadow .36s ease,
                border-color .36s ease;
}

.pb-site .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(19, 26, 21, .14);
    border-color: #b4c4b3;
}

.pb-site .tour-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--haze);
}

.pb-site .tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.pb-site .tour-card:hover .tour-media img {
    transform: scale(1.06);
}

.pb-site .tour-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 14, 9, .62) 0%, rgba(8, 14, 9, .12) 34%, transparent 62%);
}

.pb-site .tour-duration,
.pb-site .tour-flag {
    position: absolute;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 6px 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pb-site .tour-duration {
    left: 12px;
    bottom: 12px;
    background: rgba(9, 15, 10, .72);
    color: #fff;
    backdrop-filter: blur(4px);
}

.pb-site .tour-flag {
    right: 12px;
    top: 12px;
    background: var(--lift);
    color: #fff;
}

.pb-site .tour-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.pb-site .tour-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin: 0 0 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--moss);
}

.pb-site .tour-chip {
    background: #e7f0e6;
    color: #1f4a20;
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
}

.pb-site .tour-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 100, 'wght' 600;
    font-weight: 600;
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    line-height: 1.26;
    letter-spacing: -.014em;
    text-transform: none;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-site .tour-title a {
    color: var(--ink);
    transition: color .25s ease;
}

.pb-site .tour-title a:hover {
    color: var(--green);
}

/* Price and CTA sit on the card's bottom edge so a row of cards lines up */
.pb-site .tour-foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pb-site .tour-price {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.pb-site .tour-price-label,
.pb-site .tour-price-unit {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--moss);
}

.pb-site .tour-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.pb-site .tour-price-value {
    font-family: var(--display);
    font-variation-settings: 'wdth' 104, 'wght' 700;
    font-weight: 700;
    font-size: 1.42rem;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
}

.pb-site .tour-price-value.is-sale { color: var(--green); }

.pb-site .tour-price-was {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--moss);
    opacity: .85;
}

.pb-site .tour-cta {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding-bottom: 2px;
}

.pb-site .tour-cta span {
    transition: transform .3s ease;
}

.pb-site .tour-card:hover .tour-cta span {
    transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   Inner page shell
   -------------------------------------------------------------------------- */

.pb-site .pb-page {
    background: var(--snow);
    padding-top: clamp(34px, 3.6vw, 62px);
    padding-bottom: clamp(38px, 4vw, 74px);
    font-family: var(--body);
}

.pb-site .pb-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--moss);
    padding: 38px 0;
    margin: 0;
}

.pb-site .pb-pagination {
    margin-top: clamp(28px, 3vw, 46px);
}

.pb-site .pb-pagination .page-link {
    font-family: var(--mono);
    font-size: 12px;
    border-radius: 8px !important;
    border-color: var(--line);
    color: var(--ink);
    margin: 0 3px;
}

.pb-site .pb-pagination .page-item.active .page-link {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.pb-site .pb-pagination .page-item.disabled .page-link {
    opacity: .5;
}

/* ==========================================================================
   Road journal - listing
   ========================================================================== */

.pb-site .journal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: clamp(20px, 2.4vw, 30px);
    border-bottom: 1px solid var(--line);
}

.pb-site .journal-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.pb-site .journal-cat {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--moss);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 6px 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.pb-site .journal-cat span {
    font-size: 9.5px;
    opacity: .7;
}

.pb-site .journal-cat:hover {
    border-color: var(--green);
    color: var(--green);
}

.pb-site .journal-cat.is-active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.pb-site .journal-search {
    position: relative;
    flex: 0 1 280px;
}

.pb-site .journal-search input {
    width: 100%;
    font-family: var(--body);
    font-size: 13.5px;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    color: var(--ink);
}

.pb-site .journal-search input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(43, 96, 44, .12);
}

.pb-site .journal-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 13px;
}

.pb-site .journal-result {
    font-size: 13.5px;
    color: var(--moss);
    margin: -8px 0 20px;
}

/* --- Lead article --- */

.pb-site .journal-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    min-height: 320px;
    transition: transform .34s cubic-bezier(.22,.68,.28,1), box-shadow .34s ease, border-color .34s ease;
}

.pb-site .journal-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(19,26,21,.13);
    border-color: #b4c4b3;
}

.pb-site .journal-feature-media { display: block; overflow: hidden; background: var(--haze); }

.pb-site .journal-feature-media img,
.pb-site .journal-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.pb-site .journal-feature:hover .journal-feature-media img,
.pb-site .journal-card:hover .journal-card-media img { transform: scale(1.05); }

.pb-site .journal-feature-body {
    padding: clamp(18px, 1.8vw, 30px);
    display: flex;
    flex-direction: column;
}

.pb-site .journal-feature-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 100, 'wght' 600;
    font-weight: 600;
    font-size: clamp(1.3rem, 1.8vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -.016em;
    margin: 0 0 12px;
}

.pb-site .journal-feature-title a { color: var(--ink); transition: color .25s ease; }
.pb-site .journal-feature-title a:hover { color: var(--green); }

.pb-site .journal-feature-excerpt {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--moss);
    margin: 0 0 16px;
}

/* --- Grid --- */

.pb-site .journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pb-site .journal-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .34s cubic-bezier(.22,.68,.28,1), box-shadow .34s ease, border-color .34s ease;
}

.pb-site .journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(19,26,21,.12);
    border-color: #b4c4b3;
}

.pb-site .journal-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--haze);
}

.pb-site .journal-card-body {
    padding: 15px 17px 17px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.pb-site .journal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--moss);
}

.pb-site .journal-chip {
    background: #e7f0e6;
    color: #1f4a20;
    border-radius: 20px;
    padding: 3px 9px;
    transition: background .22s ease;
}

.pb-site .journal-chip:hover { background: #d6e7d5; color: #1f4a20; }
.pb-site .journal-chip.is-solid { background: var(--green); color: #fff; }

.pb-site .journal-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 100, 'wght' 600;
    font-weight: 600;
    font-size: 1.08rem;
    line-height: 1.28;
    letter-spacing: -.012em;
    margin: 0 0 9px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-site .journal-title a { color: var(--ink); transition: color .25s ease; }
.pb-site .journal-title a:hover { color: var(--green); }

.pb-site .journal-excerpt {
    font-size: 13px;
    line-height: 1.65;
    color: var(--moss);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-site .journal-card-foot {
    margin: auto 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--moss);
}

.pb-site .journal-more { color: var(--green); white-space: nowrap; }
.pb-site .journal-more span { display: inline-block; transition: transform .3s ease; }
.pb-site .journal-card:hover .journal-more span,
.pb-site .journal-feature:hover .journal-more span { transform: translateX(4px); }

@media (max-width: 1100px) {
    .pb-site .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pb-site .journal-feature { grid-template-columns: minmax(0, 1fr); min-height: 0; }
    .pb-site .journal-feature-media { aspect-ratio: 16 / 9; }
}

@media (max-width: 700px) {
    .pb-site .journal-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
    .pb-site .journal-search { flex: 1 1 100%; }
}

/* ==========================================================================
   Article - the reading page

   Measure is the whole job here: about 68 characters, generous leading, and
   prose styles that cover whatever HTML the editor produces.
   ========================================================================== */

.pb-site .article-head {
    max-width: 46rem;
    margin: 0 auto clamp(20px, 2.4vw, 32px);
    text-align: center;
}

.pb-site .article-crumbs {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--moss);
    margin: 0 0 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pb-site .article-crumbs a { color: var(--green); }

.pb-site .article-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 102, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.9rem);
    line-height: 1.14;
    letter-spacing: -.022em;
    color: var(--ink);
    margin: 0 0 16px;
}

.pb-site .article-byline {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--moss);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
}

.pb-site .article-hero {
    margin: 0 0 clamp(26px, 3vw, 44px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.pb-site .article-hero img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.pb-site .article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(26px, 3vw, 52px);
    align-items: start;
}

/* --- Prose: styles the editor output, not fixed classes --- */

.pb-site .prose {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.78;
    color: #33403a;
    max-width: 68ch;
}

.pb-site .prose > *:first-child { margin-top: 0; }

.pb-site .prose p { margin: 0 0 1.15em; }

.pb-site .prose h1,
.pb-site .prose h2,
.pb-site .prose h3,
.pb-site .prose h4 {
    font-family: var(--display);
    font-variation-settings: 'wdth' 100, 'wght' 600;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.014em;
    margin: 1.9em 0 .6em;
}

.pb-site .prose h1, .pb-site .prose h2 { font-size: 1.5rem; }
.pb-site .prose h3 { font-size: 1.24rem; }
.pb-site .prose h4 { font-size: 1.08rem; }

.pb-site .prose a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pb-site .prose strong { color: var(--ink); font-weight: 600; }

.pb-site .prose ul,
.pb-site .prose ol { margin: 0 0 1.15em; padding-left: 1.3em; }
.pb-site .prose li { margin-bottom: .5em; }
.pb-site .prose li::marker { color: var(--lift); }

.pb-site .prose blockquote {
    margin: 1.6em 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--lift);
    color: var(--ink);
    font-size: 1.06rem;
    line-height: 1.65;
}

.pb-site .prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin: 1.5em 0;
}

.pb-site .prose figure { margin: 1.5em 0; }

.pb-site .prose figcaption {
    font-size: 12.5px;
    color: var(--moss);
    text-align: center;
    margin-top: 8px;
}

.pb-site .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 14px;
}

.pb-site .prose th,
.pb-site .prose td {
    border: 1px solid var(--line);
    padding: 9px 12px;
    text-align: left;
}

.pb-site .prose th { background: var(--haze); font-weight: 600; }

.pb-site .prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }

/* --- Sidebar --- */

.pb-site .article-aside {
    position: sticky;
    top: 160px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pb-site .aside-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.pb-site .aside-title {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--moss);
    margin: 0 0 14px;
}

.pb-site .aside-cats { list-style: none; margin: 0; padding: 0; }

.pb-site .aside-cats a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transition: color .22s ease;
}

.pb-site .aside-cats li:last-child a { border-bottom: 0; }
.pb-site .aside-cats a:hover,
.pb-site .aside-cats a.is-active { color: var(--green); }
.pb-site .aside-cats a span { font-family: var(--mono); font-size: 11px; color: var(--moss); }

.pb-site .aside-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pb-site .aside-posts a {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
}

.pb-site .aside-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.pb-site .aside-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pb-site .aside-post-title {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--ink);
    transition: color .22s ease;
}

.pb-site .aside-posts a:hover .aside-post-title { color: var(--green); }

.pb-site .aside-post-body time {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    color: var(--moss);
    display: block;
    margin-top: 4px;
}

.pb-site .aside-cta { background: var(--pine); border-color: var(--pine); }
.pb-site .aside-cta .aside-title { color: #9fc79d; }
.pb-site .aside-cta p { color: #c2d3c1; font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; }

.pb-site .aside-btn {
    display: block;
    text-align: center;
    background: var(--lift);
    color: #fff;
    border-radius: 8px;
    padding: 11px 16px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .24s ease;
}

.pb-site .aside-btn:hover { background: #4c9c4e; color: #fff; }

/* --- Prev / next --- */

.pb-site .article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: clamp(30px, 3.4vw, 54px);
    padding-top: clamp(22px, 2.4vw, 34px);
    border-top: 1px solid var(--line);
}

.pb-site .article-nav-link {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .26s ease, transform .26s ease, box-shadow .26s ease;
}

.pb-site .article-nav-link:hover {
    border-color: #b4c4b3;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(19, 26, 21, .1);
}

.pb-site .article-nav-link.is-next { text-align: right; }

.pb-site .article-nav-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--green);
}

.pb-site .article-nav-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--ink);
}

@media (max-width: 991px) {
    .pb-site .article-shell { grid-template-columns: minmax(0, 1fr); }
    .pb-site .article-aside { position: static; }
    .pb-site .prose { max-width: none; }
}

@media (max-width: 640px) {
    .pb-site .article-nav { grid-template-columns: minmax(0, 1fr); }
    .pb-site .article-nav-link.is-next { text-align: left; }
}

/* ==========================================================================
   FAQ page
   ========================================================================== */

.pb-site .faq-search {
    position: relative;
    max-width: 420px;
    margin-bottom: 18px;
}

.pb-site .faq-search input {
    width: 100%;
    font-family: var(--body);
    font-size: 14px;
    padding: 11px 44px 11px 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    color: var(--ink);
}

.pb-site .faq-search input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(43, 96, 44, .12);
}

.pb-site .faq-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.pb-site .faq-result {
    font-size: 13.5px;
    color: var(--moss);
    margin: 0 0 20px;
}

.pb-site .faq-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: clamp(24px, 3vw, 48px);
    align-items: start;
}

/* --- Jump list --- */

.pb-site .faq-nav {
    position: sticky;
    top: 160px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.pb-site .faq-nav-title {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--moss);
    margin: 0 0 12px;
}

.pb-site .faq-nav ul { list-style: none; margin: 0; padding: 0; }

.pb-site .faq-nav a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transition: color .22s ease;
}

.pb-site .faq-nav li:last-child a { border-bottom: 0; }
.pb-site .faq-nav a:hover { color: var(--green); }

.pb-site .faq-nav a span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--moss);
}

/* --- Groups --- */

.pb-site .faq-groups {
    display: flex;
    flex-direction: column;
    gap: clamp(26px, 3vw, 42px);
}

.pb-site .faq-group {
    scroll-margin-top: 170px;
}

.pb-site .faq-group-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 104, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.15rem, 1.5vw, 1.45rem);
    letter-spacing: -.018em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pb-site .faq-group-title span {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--moss);
    text-transform: none;
}

.pb-site .faq-page .accordion-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px !important;
    margin-bottom: 9px;
    overflow: hidden;
}

/* style.css targets this at .accordion-item.faq-accordion .accordion-header
   .accordion-button (0,4,0) with a dark navy fill, so these rules have to match
   that depth to win. */
.pb-site .faq-page .accordion-item.faq-accordion .accordion-header .accordion-button {
    background: #fff;
    color: var(--ink);
    border-radius: 12px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    padding: 15px 18px;
    box-shadow: none;
    border: 0;
}

.pb-site .faq-page .accordion-item.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
    background: var(--haze);
    color: var(--green);
    border-radius: 12px 12px 0 0;
}

.pb-site .faq-page .accordion-item.faq-accordion .accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(43, 96, 44, .12);
    z-index: 2;
}

/* The legacy rule swaps in a white chevron for the dark bar; on a light bar it
   has to be the default dark one again. */
.pb-site .faq-page .accordion-item.faq-accordion .accordion-header .accordion-button::after {
    width: 15px;
    height: 15px;
    background-size: 15px;
    filter: none;
}

.pb-site .faq-page .accordion-body {
    padding: 4px 18px 18px;
    font-size: 14.5px;
    line-height: 1.72;
    color: #46554a;
}

.pb-site .faq-page .accordion-body p:last-child { margin-bottom: 0; }

@media (max-width: 991px) {
    .pb-site .faq-shell { grid-template-columns: minmax(0, 1fr); }
    .pb-site .faq-nav { position: static; }
    .pb-site .faq-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }
    .pb-site .faq-nav a {
        border-bottom: 0;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 12.5px;
    }
}

/* ==========================================================================
   Page blocks - admin-managed body sections
   ========================================================================== */

.pb-site .pb-block {
    padding-block: clamp(34px, 3.6vw, 62px);
    font-family: var(--body);
}

.pb-site .pb-block:nth-child(odd) { background: var(--snow); }
.pb-site .pb-block:nth-child(even) { background: var(--haze); }

.pb-site .pb-block-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.1vw, 2.1rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 16px;
}

.pb-site .pb-block-inner { max-width: 74ch; }

.pb-site .pb-block-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--green);
    border-radius: 8px;
    padding: 12px 22px;
    transition: background .24s ease, transform .24s ease;
}

.pb-site .pb-block-btn:hover {
    background: var(--lift);
    color: #fff;
    transform: translateY(-2px);
}

.pb-site .pb-block-btn span { transition: transform .28s ease; }
.pb-site .pb-block-btn:hover span { transform: translateX(4px); }

/* --- Image + text --- */

.pb-site .pb-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(22px, 3vw, 52px);
    align-items: center;
}

.pb-site .pb-block-split.is-flipped .pb-split-media { order: 2; }

.pb-site .pb-split-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.pb-site .pb-split-media img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* --- Call to action --- */

.pb-site .pb-block-cta { background: var(--pine) !important; }

.pb-site .pb-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(18px, 3vw, 44px);
    flex-wrap: wrap;
}

.pb-site .pb-cta-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
}

.pb-site .pb-cta-body { color: #c2d3c1; font-size: 14.5px; line-height: 1.7; max-width: 62ch; }
.pb-site .pb-cta-body p:last-child { margin-bottom: 0; }

.pb-site .pb-cta-btn {
    flex: none;
    background: var(--lift);
    color: #fff;
    border-radius: 8px;
    padding: 14px 26px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .24s ease, transform .24s ease;
}

.pb-site .pb-cta-btn:hover { background: #4c9c4e; color: #fff; transform: translateY(-2px); }

/* --- Gallery --- */

.pb-site .pb-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.pb-site .pb-gallery-item {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.pb-site .pb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.pb-site .pb-gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 991px) {
    .pb-site .pb-split { grid-template-columns: minmax(0, 1fr); }
    .pb-site .pb-block-split.is-flipped .pb-split-media { order: 0; }
    .pb-site .pb-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .pb-site .pb-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pb-site .pb-cta-btn { width: 100%; text-align: center; }
}

/* --------------------------------------------------------------------------
   FAQ block on other pages

   Same light accordion as the FAQ page. The old dark treatment came from
   .faq-wrapper in home-modern.css plus style.css targeting the button at
   (0,4,0); this block uses its own wrapper so neither applies.
   -------------------------------------------------------------------------- */

.pb-site .pb-block-faq {
    background: var(--snow);
}

.pb-site .pb-block-faq .page-head {
    margin-bottom: clamp(18px, 2vw, 26px);
}

/* Centred column: the block sits mid-page rather than hugging the left edge. */
.pb-site .pb-block-faq .page-head,
.pb-site .faq-block-list {
    max-width: 900px;
    margin-inline: auto;
}

.pb-site .pb-block-faq .page-head h2 {
    max-width: none;
}

.pb-site .faq-block-more {
    margin: 18px 0 0;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pb-site .faq-block-more a {
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.pb-site .faq-block-more a span {
    transition: transform .28s ease;
}

.pb-site .faq-block-more a:hover span {
    transform: translateX(4px);
}

/* ==========================================================================
   Footer

   Deep pine to close the page, with the closing call to action raised onto the
   seam so the footer reads as a destination rather than an afterthought.
   ========================================================================== */

.pb-site .pb-footer {
    background: #0f2412;
    color: #c2d3c1;
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
}

/* --- Closing call to action --- */

.pb-site .pb-footer-cta {
    background: var(--pine);
    border-bottom: 1px solid rgba(247, 250, 246, .08);
}

.pb-site .pb-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 46px);
    flex-wrap: wrap;
    padding-block: clamp(28px, 3.2vw, 48px);
}

.pb-site .pb-footer-kicker {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8fbb8d;
    margin: 0 0 8px;
}

.pb-site .pb-footer-cta-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -.022em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.pb-site .pb-footer-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pb-site .pb-footer-btn {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 8px;
    background: var(--lift);
    color: #fff;
    border: 1px solid var(--lift);
    white-space: nowrap;
    transition: background .24s ease, border-color .24s ease, transform .24s ease;
}

.pb-site .pb-footer-btn:hover {
    background: #4c9c4e;
    border-color: #4c9c4e;
    color: #fff;
    transform: translateY(-2px);
}

.pb-site .pb-footer-btn.is-quiet {
    background: transparent;
    border-color: rgba(247, 250, 246, .3);
    color: #e4ede3;
}

.pb-site .pb-footer-btn.is-quiet:hover {
    background: rgba(247, 250, 246, .08);
    border-color: #e4ede3;
    color: #fff;
}

/* --- Main --- */

.pb-site .pb-footer-main {
    padding-block: clamp(34px, 4vw, 62px);
}

.pb-site .pb-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 48px);
}

.pb-site .pb-footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.pb-site .pb-footer-logo img {
    width: auto !important;
    height: auto;
    max-height: 74px;
    max-width: 190px;
    object-fit: contain;
}

.pb-site .pb-footer-about {
    margin: 0 0 20px;
    max-width: 42ch;
    color: #b3c6b2;
}

.pb-site .pb-footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 9px;
}

.pb-site .pb-footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(247, 250, 246, .22);
    color: #d5e3d4;
    font-size: 14px;
    transition: background .24s ease, border-color .24s ease, color .24s ease, transform .24s ease;
}

.pb-site .pb-footer-social a:hover {
    background: var(--lift);
    border-color: var(--lift);
    color: #fff;
    transform: translateY(-2px);
}

/* Column headings share the mono label used across the site */
.pb-site .pb-footer-title {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #8fbb8d;
    margin: 0 0 16px;
}

.pb-site .pb-footer-links,
.pb-site .pb-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pb-site .pb-footer-links a {
    color: #c2d3c1;
    position: relative;
    transition: color .22s ease, padding-left .22s ease;
}

.pb-site .pb-footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--lift);
    transform: translateY(-50%);
    transition: width .24s ease;
}

.pb-site .pb-footer-links a:hover {
    color: #fff;
    padding-left: 16px;
}

.pb-site .pb-footer-links a:hover::before { width: 10px; }

.pb-site .pb-footer-contact li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.pb-site .pb-footer-contact i {
    color: var(--lift);
    font-size: 14px;
    line-height: 1.6;
}

.pb-site .pb-footer-contact a {
    color: #c2d3c1;
    transition: color .22s ease;
}

.pb-site .pb-footer-contact a:hover { color: #fff; }

.pb-site .pb-footer-partner {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    transition: transform .24s ease;
}

.pb-site .pb-footer-partner:hover { transform: translateY(-2px); }

.pb-site .pb-footer-partner img {
    max-width: 160px;
    height: auto;
    display: block;
}

/* --- Bottom bar --- */

.pb-site .pb-footer-bar {
    border-top: 1px solid rgba(247, 250, 246, .08);
}

.pb-site .pb-footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-block: 20px;
}

.pb-site .pb-footer-copy {
    margin: 0;
    font-size: 13px;
    color: #93a892;
}

.pb-site .pb-footer-copy a {
    color: #c2d3c1;
    transition: color .22s ease;
}

.pb-site .pb-footer-copy a:hover { color: #fff; }

.pb-site .pb-footer-policy {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pb-site .pb-footer-policy a {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #93a892;
    transition: color .22s ease;
}

.pb-site .pb-footer-policy a:hover { color: #fff; }

@media (max-width: 991px) {
    .pb-site .pb-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .pb-site .pb-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .pb-site .pb-footer-grid { grid-template-columns: minmax(0, 1fr); }

    .pb-site .pb-footer-cta-inner { flex-direction: column; align-items: flex-start; }
    .pb-site .pb-footer-cta-actions { width: 100%; }
    .pb-site .pb-footer-btn { flex: 1 1 auto; text-align: center; }

    .pb-site .pb-footer-bar-inner { flex-direction: column; align-items: flex-start; }
}
