/* ==========================================================================
   Given Style — interior pages
   About Us · Custom Patches · Contact Us · Blogs
   Extends css/style.css; never overrides homepage-only rules.
   ========================================================================== */

:root {
    --gs-navy: #132C74;
    --gs-navy-deep: #0A1745;
    --gs-navy-ink: #060E2B;
    --gs-rust: #B66119;
    --gs-rust-lit: #E28B35;
    --gs-ink: #14181F;
    --gs-slate: #5B6478;
    --gs-line: #E3E6EE;
    --gs-cream: #FBF8F3;
    --gs-sand: #F3EDE3;

    --gs-r-sm: 10px;
    --gs-r-md: 18px;
    --gs-r-lg: 28px;

    --gs-shadow: 0 18px 44px rgba(10, 23, 69, .10);
    --gs-shadow-lg: 0 30px 70px rgba(10, 23, 69, .18);

    --gs-sp-1: 8px;
    --gs-sp-2: 16px;
    --gs-sp-3: 24px;
    --gs-sp-4: 40px;
    --gs-sp-5: 64px;
    --gs-sp-6: 96px;
}

/* ---------- base helpers ---------- */

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--gs-navy);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--gs-r-sm) 0;
    font-size: 15px;
}
.skip-link:focus {
    left: 0;
    color: #fff;
}

/* style.css positions the header absolutely with z-index:auto. The interior
   page heroes are position:relative and come later in the DOM, so without an
   explicit stacking order they paint straight over the nav. */
header { z-index: 20; }

/* No overflow guard on <main>: pairing overflow-x:clip with overflow-y:visible
   computes the y axis to `auto`, which makes <main> a scroll container — the
   window stops scrolling and the sticky sidebars lose the viewport as their
   scrollport. Horizontal reveals are instead gated to >=992px in pages.js, where
   their offsets stay inside the container gutters. */

/* ---------- Custom Patches dropdown ----------
   The parent label stays a real link to the overview page; a separate caret
   button opens the menu, so keyboard and touch users can reach both. */
/* position:relative + data-bs-display="static" on the caret keep Popper out of
   it, so the click-opened and hover-opened menus land in the same place. */
.nav-has-menu { position: relative; display: flex; align-items: center; gap: 2px; }
.nav-caret {
    background: none;
    border: 0;
    padding: 4px;
    line-height: 0;
    color: var(--gs-navy);
    cursor: pointer;
    border-radius: 6px;
    transition: transform .25s ease, background-color .25s ease;
}
.nav-caret svg { width: 16px; height: 16px; }
.nav-caret:hover { background: rgba(19, 44, 116, .08); }
.nav-caret[aria-expanded="true"] { transform: rotate(180deg); }

.patch-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    border-radius: 16px;
    padding: 10px;
    margin-top: 18px;
    min-width: 268px;
    box-shadow: var(--gs-shadow-lg);
}
.patch-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--gs-ink);
    min-height: 44px;
    display: flex;
    align-items: center;
    white-space: normal;
    transition: background-color .2s ease, color .2s ease;
}
.patch-menu .dropdown-item:hover,
.patch-menu .dropdown-item:focus {
    background: var(--gs-cream);
    color: var(--gs-navy);
}
.patch-menu .dropdown-item.active {
    background: var(--gs-navy);
    color: #fff;
}
.patch-menu .dropdown-item--all {
    font-weight: 500;
    color: var(--gs-rust);
}
.patch-menu .dropdown-divider { margin: 8px 6px; border-color: var(--gs-line); }

/* Desktop: open on hover as well as click.
   The menu is offset 18px below the nav item. Hover propagates by DOM ancestry,
   so the menu itself keeps the parent lit — but the 18px of empty space in
   between belongs to neither, and the pointer crossing it drops the hover and
   closes the menu. The ::before pad spans that gap so the trip down is
   continuous. It only exists while the menu is rendered, so it never blocks
   clicks on the closed state. */
@media (min-width: 992px) {
    .nav-has-menu:hover .patch-menu,
    .nav-has-menu:focus-within .patch-menu { display: block; }
    .patch-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -20px;
        height: 20px;
    }
}

@media (max-width: 991.98px) {
    .nav-has-menu { flex-wrap: wrap; }
    .nav-has-menu .nav-link { flex: 1; }
    .nav-caret { min-width: 44px; min-height: 44px; display: grid; place-items: center; }
    .patch-menu {
        position: static !important;
        transform: none !important;
        left: auto;
        width: 100%;
        margin: 0 0 10px;
        box-shadow: none;
        background: var(--gs-cream);
        padding: 6px;
    }
    .patch-menu .dropdown-item { font-size: 14.5px; }
}

/* Bootstrap underlines every <a> by default. The interior pages style their own
   link affordances (hover colour, borders, arrows), so opt these out — scoped so
   the homepage's existing link treatment is untouched. */
.pg-hero a,
.pg-cta a,
.pg-crumbs a,
.ab-tile,
.ab-pledge a,
.cp-pillars a,
.cp-spec a,
.cp-finish a,
.cp-industries a,
.cp-process a,
.cp-quote a,
.ct-channels a,
.ct-place a,
.bl-archive a,
.pt-specband a,
.pt-explain a,
.pt-uses a,
.pt-compare a { text-decoration: none; }

.pg-crumbs a:hover,
.ct-chan > a:hover { text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--gs-rust-lit);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.btn-ghost:hover,
.btn-ghost:focus {
    background: #fff;
    border-color: #fff;
    color: var(--gs-navy);
}
.btn-ghost svg { width: 18px; height: 18px; }

/* Shared page primitives ---------------------------------------------------- */

.pg-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gs-rust-lit);
    margin-bottom: 18px;
}
.pg-eyebrow--dark { color: var(--gs-rust); }

.pg-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.12;
    font-weight: 500;
    margin-bottom: 24px;
}
.pg-title em {
    font-style: italic;
    color: var(--gs-rust-lit);
}

.pg-lede {
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.75;
    max-width: 60ch;
    margin-bottom: 32px;
}

.pg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero shell — the homepage banner treatment (patch-collage artwork with its
   curved bottom edge baked in), scaled down for interior pages. Cover-sizing
   anchored to the bottom keeps that curve on the section's bottom edge while
   the artwork holds its own aspect ratio instead of being stretched. */
.pg-hero {
    position: relative;
    isolation: isolate;
    padding: 210px 0 130px;
    background-color: var(--gs-cream);
    background-image: url('../img/home-banner-bg.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.pg-crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 34px;
}
.pg-crumbs a { color: rgba(255, 255, 255, .8); }
.pg-crumbs a:hover { color: var(--gs-rust-lit); }
.pg-crumbs span[aria-hidden] { opacity: .4; }

/* Hero fact strip */
.pg-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 64px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.pg-strip li {
    padding: 22px 26px;
    color: rgba(255, 255, 255, .7);
    font-size: 14.5px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}
.pg-strip li:last-child { border-right: 0; }
.pg-strip strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

/* Shared CTA band — always the last section before the footer.
   style.css pulls .footer up by -300px so its curved artwork arcs into whatever
   sits above it; on the homepage section.instagram is transparent and raised
   with z-index:1 so the curve reads *behind* the content instead of painting
   over it. This reproduces that: transparent section, raised stacking context,
   opaque card floating on the curve. */
.pg-cta {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: var(--gs-sp-6) 0 60px;
}
main > section:last-child { position: relative; z-index: 1; }

.pg-cta__inner {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 48px;
    align-items: center;
    background:
        radial-gradient(90% 140% at 12% 0%, #1B3A93 0%, transparent 62%),
        linear-gradient(120deg, var(--gs-navy-deep), var(--gs-navy-ink));
    border-radius: var(--gs-r-lg);
    padding: 52px 56px;
    box-shadow: var(--gs-shadow-lg);
}
.pg-cta__text h2 {
    color: #fff;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.15;
    margin-bottom: 16px;
}
.pg-cta__text p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.75;
    margin: 0;
    max-width: 56ch;
}
.pg-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */

.pg-hero--about { padding-bottom: 170px; }

/* Image cluster */
.ab-stack {
    position: relative;
    padding: 20px 0 40px 30px;
}
.ab-stack__main {
    margin: 0;
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    box-shadow: var(--gs-shadow-lg);
    transform: rotate(-2deg);
    border: 6px solid rgba(255, 255, 255, .1);
}
.ab-stack__main img {
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.ab-stack__chip {
    position: absolute;
    margin: 0;
    width: 128px;
    height: 128px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: var(--gs-shadow-lg);
}
.ab-stack__chip img { width: 100%; height: 100%; object-fit: cover; }
.ab-stack__chip--a { left: -34px; top: 68px; transform: rotate(-8deg); }
.ab-stack__chip--b { right: -18px; bottom: 10px; transform: rotate(7deg); }

.ab-stack__tag {
    position: absolute;
    left: 8px;
    bottom: 62px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gs-rust);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: var(--gs-shadow);
}
.ab-stack__tag svg { width: 16px; height: 16px; }

/* Ledger */
.ab-ledger-wrap {
    background: var(--gs-cream);
    padding-bottom: var(--gs-sp-6);
    /* .pg-hero is a positioned stacking context, so a static section that tucks
       under it with a negative margin would be painted over by the banner
       artwork. Raise it. */
    position: relative;
    z-index: 1;
}
.ab-ledger {
    display: grid;
    grid-template-columns: .9fr 2.4fr;
    gap: 0;
    background: #fff;
    border-radius: var(--gs-r-lg);
    box-shadow: var(--gs-shadow-lg);
    margin-top: -80px;
    overflow: hidden;
}
.ab-ledger__lead {
    background: var(--gs-navy);
    padding: 40px 36px;
    display: flex;
    align-items: center;
}
.ab-ledger__lead p {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 25px;
    line-height: 1.3;
    margin: 0;
}
.ab-ledger__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
}
.ab-fact {
    padding: 40px 26px;
    border-right: 1px solid var(--gs-line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ab-fact:last-child { border-right: 0; }
.ab-fact dt {
    /* two-line labels must not push their number out of alignment */
    min-height: 2.6em;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gs-slate);
    font-weight: 500;
    margin-bottom: 10px;
}
.ab-fact dd {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--gs-navy);
    margin: 0;
    line-height: 1;
}

/* Creed */
.ab-creed {
    background: var(--gs-cream);
    padding-bottom: var(--gs-sp-6);
}
.ab-creed__side { position: sticky; top: 40px; }
.ab-creed__side h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
    color: var(--gs-ink);
    margin-bottom: 28px;
}
.ab-facts { margin: 0; border-top: 1px solid var(--gs-line); }
.ab-facts li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gs-line);
    color: var(--gs-ink);
    font-size: 15px;
    font-weight: 500;
}
.ab-facts li span {
    color: var(--gs-slate);
    font-weight: 400;
}

.ab-creed__body p {
    color: #3C4353;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 24px;
}
.ab-creed__body .has-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    line-height: .82;
    font-weight: 700;
    color: var(--gs-navy);
    padding: 6px 14px 0 0;
}
.ab-quote {
    margin: 34px 0;
    padding: 4px 0 4px 28px;
    border-left: 4px solid var(--gs-rust);
}
.ab-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 25px !important;
    line-height: 1.45 !important;
    color: var(--gs-navy) !important;
    margin: 0 !important;
}

/* Section head shared by About + Custom Patches */
.ab-make__head,
.cp-spec__head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: end;
    margin-bottom: var(--gs-sp-4);
}
.ab-make__head h2,
.cp-spec__head h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    color: var(--gs-ink);
    margin: 0;
}
.ab-make__head > p,
.cp-spec__head > p {
    color: var(--gs-slate);
    line-height: 1.8;
    margin: 0;
    padding-bottom: 6px;
}

/* Bento */
.ab-make { padding: var(--gs-sp-6) 0; background: #fff; }
.ab-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 18px;
}
.ab-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gs-r-md);
    background: var(--gs-navy-ink);
    color: #fff;
    isolation: isolate;
}
.ab-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .5s ease;
}
.ab-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6, 14, 43, .12) 30%, rgba(6, 14, 43, .88) 100%);
}
.ab-tile:hover img,
.ab-tile:focus-visible img { transform: scale(1.06); }

.ab-tile--xl { grid-column: span 2; grid-row: span 2; }
.ab-tile--tall { grid-row: span 2; }
.ab-tile--wide { grid-column: span 2; }

.ab-tile__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
}
.ab-tile__body h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 6px;
}
.ab-tile--xl .ab-tile__body h3 { font-size: 34px; }
.ab-tile__body p {
    color: rgba(255, 255, 255, .8);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}
.ab-tile__go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gs-rust-lit);
}
.ab-tile__go svg { width: 18px; height: 18px; transition: transform .25s ease; }
.ab-tile:hover .ab-tile__go svg { transform: translateX(5px); }

.ab-make__note {
    margin: 30px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--gs-line);
    color: var(--gs-slate);
    font-size: 15.5px;
    line-height: 1.8;
    max-width: 78ch;
}

/* Rail */
.ab-rail {
    padding: var(--gs-sp-6) 0;
    background:
        radial-gradient(80% 120% at 80% 0%, #1B3A93 0%, transparent 60%),
        linear-gradient(160deg, var(--gs-navy-deep), var(--gs-navy-ink));
}
.ab-rail .section-heading h2 { color: #fff; }
.ab-rail .section-heading h2 span { color: var(--gs-rust-lit); }

.ab-rail__list {
    position: relative;
    max-width: 900px;
    margin: var(--gs-sp-4) auto 0;
    padding: 0 0 0 78px;
    list-style: none;
    counter-reset: none;
}
.ab-rail__list::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(255, 255, 255, .14);
}
.ab-rail__list::after {
    /* Progress line. GSAP drives --rail-progress on scroll; defaults to a
       fully drawn line so no-JS and reduced-motion still look intentional. */
    content: "";
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--gs-rust-lit), var(--gs-rust));
    transform-origin: top center;
    transform: scaleY(var(--rail-progress, 1));
}
.ab-step {
    position: relative;
    margin-bottom: 26px;
}
.ab-step:last-child { margin-bottom: 0; }
.ab-step__marker {
    position: absolute;
    left: -78px;
    top: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gs-navy-ink);
    border: 2px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
}
.ab-step__marker span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gs-rust-lit);
}
.ab-step__card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--gs-r-md);
    padding: 26px 30px;
    transition: background-color .3s ease, border-color .3s ease;
}
.ab-step__card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .2);
}
.ab-step__card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}
.ab-step__card p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    margin: 0;
    font-size: 15.5px;
}
.ab-rail__foot {
    text-align: center;
    margin: var(--gs-sp-4) 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
}

/* Tickets */
.ab-pledge { padding: var(--gs-sp-6) 0; background: var(--gs-cream); }
.ab-tickets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.ab-ticket {
    position: relative;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-r-md);
    padding: 34px 34px 32px;
    /* notched corner */
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ab-ticket:hover {
    transform: translateY(-4px);
    box-shadow: var(--gs-shadow);
}
.ab-ticket__no {
    position: absolute;
    right: 26px;
    bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    line-height: 1;
    color: var(--gs-sand);
    pointer-events: none;
}
.ab-ticket__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gs-navy);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.ab-ticket__icon svg { width: 26px; height: 26px; }
.ab-ticket h3 {
    font-size: 22px;
    line-height: 1.3;
    color: var(--gs-ink);
    margin-bottom: 12px;
    position: relative;
}
.ab-ticket p {
    color: var(--gs-slate);
    line-height: 1.8;
    font-size: 15.5px;
    margin: 0;
    position: relative;
    max-width: 46ch;
}

.ab-clients { padding-top: var(--gs-sp-6); }

/* ==========================================================================
   CUSTOM PATCHES
   ========================================================================== */

/* Hero fan */
.cp-fan {
    position: relative;
    height: 430px;
}
.cp-fan img {
    position: absolute;
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 22px;
    border: 6px solid rgba(255, 255, 255, .12);
    background: #fff;
    box-shadow: var(--gs-shadow-lg);
}
.cp-fan__a { left: 0; top: 24px; transform: rotate(-9deg); }
.cp-fan__b { right: 24px; top: 0; transform: rotate(6deg); width: 235px; height: 235px; }
.cp-fan__c { left: 92px; bottom: 34px; transform: rotate(3deg); }
.cp-fan__price {
    position: absolute;
    right: 0;
    bottom: 26px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--gs-shadow-lg);
    text-align: left;
}
.cp-fan__price span {
    display: block;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gs-slate);
}
.cp-fan__price strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--gs-navy);
    line-height: 1.1;
}
.cp-fan__price strong small { font-size: 16px; font-weight: 500; }
.cp-fan__price em {
    font-style: normal;
    font-size: 12.5px;
    color: var(--gs-slate);
}

/* Stair-step pillars */
.cp-pillars { padding: var(--gs-sp-6) 0; background: #fff; }
.cp-pillars__head { max-width: 760px; margin-bottom: var(--gs-sp-4); }
.cp-pillars__head h2 {
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.18;
    color: var(--gs-ink);
    margin: 0;
}
.cp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.cp-pillar {
    background: var(--gs-cream);
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-r-md);
    padding: 32px 30px;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.cp-steps .cp-pillar:nth-child(2) { margin-top: 44px; }
.cp-steps .cp-pillar:nth-child(3) { margin-top: 88px; }
.cp-pillar:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow);
}
.cp-pillar__idx {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gs-rust);
    border-bottom: 2px solid var(--gs-rust);
    padding-bottom: 4px;
    margin-bottom: 22px;
}
.cp-pillar h3 { font-size: 24px; color: var(--gs-ink); margin-bottom: 12px; }
.cp-pillar p { color: var(--gs-slate); line-height: 1.8; font-size: 15.5px; margin: 0; }

/* Spec sheet selector */
.cp-spec { padding: var(--gs-sp-6) 0; background: var(--gs-cream); }
.cp-spec__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}
.cp-rail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 28px;
}
.cp-rail__btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 14px;
    padding: 10px 14px;
    cursor: pointer;
    min-height: 68px;
    transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}
.cp-rail__btn:hover { border-color: #C3CBE0; transform: translateX(3px); }
.cp-rail__btn.active {
    background: var(--gs-navy);
    border-color: var(--gs-navy);
}
.cp-rail__thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    background: var(--gs-sand);
}
.cp-rail__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cp-rail__label {
    flex: 1;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--gs-ink);
    line-height: 1.35;
}
.cp-rail__btn.active .cp-rail__label { color: #fff; }
.cp-rail__chev { width: 20px; height: 20px; color: var(--gs-slate); flex: 0 0 auto; }
.cp-rail__btn.active .cp-rail__chev { color: var(--gs-rust-lit); }

.cp-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 0;
    background: #fff;
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    box-shadow: var(--gs-shadow);
}
.cp-panel__media { margin: 0; background: var(--gs-sand); }
.cp-panel__media img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}
.cp-panel__body { padding: 38px 40px; }
.cp-panel__body h3 { font-size: 30px; color: var(--gs-ink); margin-bottom: 6px; }
.cp-panel__tag {
    color: var(--gs-rust);
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 16px;
}
.cp-panel__body > p {
    color: var(--gs-slate);
    line-height: 1.8;
    font-size: 15.5px;
}
.cp-panel__body h4 {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gs-ink);
    margin: 24px 0 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.cp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}
.cp-chips li {
    background: var(--gs-cream);
    border: 1px solid var(--gs-line);
    border-radius: 50px;
    padding: 7px 15px;
    font-size: 13.5px;
    color: var(--gs-ink);
}
.cp-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0 0 26px;
    border-top: 1px solid var(--gs-line);
}
.cp-specs > div {
    padding: 14px 0;
    border-bottom: 1px solid var(--gs-line);
    padding-right: 18px;
}
.cp-specs dt {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gs-slate);
    font-weight: 500;
    margin-bottom: 4px;
}
.cp-specs dd { margin: 0; font-size: 15px; color: var(--gs-ink); font-weight: 500; }

.cp-panel__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--gs-line);
    padding-top: 22px;
}
.cp-panel__price { font-size: 14.5px; color: var(--gs-slate); }
.cp-panel__price strong {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--gs-navy);
}
.cp-panel__price em { display: block; font-style: normal; font-size: 12.5px; }

/* Backing + border */
.cp-finish { padding: var(--gs-sp-6) 0; background: #fff; }
.cp-finish__block h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--gs-ink);
    margin-bottom: 12px;
}
.cp-finish__lede {
    color: var(--gs-slate);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 54ch;
}
.cp-backs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.cp-back {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--gs-cream);
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-r-md);
    padding: 20px;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.cp-back:hover { border-color: var(--gs-navy); box-shadow: var(--gs-shadow); }
.cp-back img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    flex: 0 0 auto;
    background: #fff;
}
.cp-back h3 { font-size: 19px; color: var(--gs-ink); margin-bottom: 6px; }
.cp-back p { font-size: 14px; line-height: 1.7; color: var(--gs-slate); margin: 0; }

.cp-finish__block--border {
    background: var(--gs-navy);
    border-radius: var(--gs-r-lg);
    padding: 38px 34px;
    height: 100%;
}
.cp-finish__block--border h2 { color: #fff; }
.cp-finish__block--border .cp-finish__lede { color: rgba(255, 255, 255, .72); }
.cp-borders { margin: 0; padding-left: 0; list-style: none; }
.cp-borders li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.cp-borders li img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    flex: 0 0 auto;
}
.cp-borders h3 { font-size: 18px; color: #fff; margin-bottom: 5px; }
.cp-borders p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .7); margin: 0; }

/* Industries collage */
.cp-industries {
    padding: var(--gs-sp-6) 0;
    background:
        radial-gradient(70% 110% at 20% 0%, #1B3A93 0%, transparent 60%),
        linear-gradient(150deg, var(--gs-navy-deep), var(--gs-navy-ink));
}
.cp-industries .section-heading h2 { color: #fff; }
.cp-industries .section-heading h2 span { color: var(--gs-rust-lit); }
.cp-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 236px;
    gap: 18px;
    margin-top: var(--gs-sp-4);
}
.cp-ind {
    position: relative;
    overflow: hidden;
    border-radius: var(--gs-r-md);
    isolation: isolate;
}
.cp-ind--lead { grid-column: span 1; grid-row: span 2; }
.cp-ind img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .55s ease;
}
.cp-ind::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6, 14, 43, .1) 25%, rgba(6, 14, 43, .9) 100%);
}
.cp-ind:hover img { transform: scale(1.05); }
.cp-ind__body { position: absolute; inset: auto 0 0 0; padding: 24px; }
.cp-ind__body h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.cp-ind__body p {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 42ch;
}

/* 3-step flow */
.cp-process { padding: var(--gs-sp-6) 0; background: var(--gs-cream); }
.cp-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.cp-flow__item {
    position: relative;
    background: #fff;
    border-radius: var(--gs-r-md);
    padding: 46px 30px 32px;
    border: 1px solid var(--gs-line);
    overflow: hidden;
}
.cp-flow__num {
    position: absolute;
    right: -8px;
    top: -26px;
    font-family: 'Playfair Display', serif;
    font-size: 130px;
    font-weight: 700;
    line-height: 1;
    color: var(--gs-sand);
    pointer-events: none;
}
.cp-flow__item h3 { font-size: 23px; color: var(--gs-ink); margin-bottom: 12px; position: relative; }
.cp-flow__item p { color: var(--gs-slate); line-height: 1.8; font-size: 15.5px; margin: 0; position: relative; }

/* Quote band */
.cp-quote {
    padding: var(--gs-sp-6) 0;
    background:
        radial-gradient(90% 130% at 85% 10%, #1B3A93 0%, transparent 60%),
        linear-gradient(150deg, var(--gs-navy-deep), var(--gs-navy-ink));
}
.cp-quote__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 52px;
    align-items: start;
}
.cp-quote__aside h2 {
    color: #fff;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.18;
    margin-bottom: 16px;
}
.cp-quote__aside > p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.8;
    margin-bottom: 28px;
}
.cp-quote__list { margin: 0; }
.cp-quote__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .86);
    font-size: 15.5px;
}
.cp-quote__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 15px;
    height: 9px;
    border-left: 2px solid var(--gs-rust-lit);
    border-bottom: 2px solid var(--gs-rust-lit);
    transform: rotate(-45deg);
}

/* Forms (shared by Custom Patches + Contact) */
.cp-form,
.ct-form {
    background: #fff;
    border-radius: var(--gs-r-lg);
    padding: 34px 34px 32px;
    box-shadow: var(--gs-shadow-lg);
}
.cp-form__row,
.ct-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cp-field { margin-bottom: 16px; }
.cp-field label,
.ct-uplabel {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gs-ink);
    margin-bottom: 7px;
}
.cp-field label span { color: var(--gs-rust); }
.cp-field input,
.cp-field select,
.cp-field textarea {
    width: 100%;
    border: 1px solid var(--gs-line);
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 15px;
    color: var(--gs-ink);
    background: #FCFCFD;
    min-height: 48px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.cp-field textarea { resize: vertical; min-height: 96px; }
.cp-field input::placeholder,
.cp-field textarea::placeholder { color: #A2AABC; }
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
    border-color: var(--gs-navy);
    box-shadow: 0 0 0 3px rgba(19, 44, 116, .12);
    outline: none;
    background: #fff;
}
.cp-hint {
    display: block;
    margin-top: 7px;
    font-size: 12.5px;
    color: var(--gs-slate);
    line-height: 1.6;
}
.cp-form__submit,
.ct-form__submit {
    width: 100%;
    margin-top: 8px;
    min-height: 52px;
    font-weight: 500;
}

/* ==========================================================================
   PATCH DETAIL PAGES
   ========================================================================== */

.pg-hero--patch { padding-bottom: 160px; }

/* Hero artwork */
.pt-hero-art { position: relative; padding: 10px 0 30px 20px; }
.pt-hero-art__main {
    margin: 0;
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .16);
    box-shadow: var(--gs-shadow-lg);
    transform: rotate(-2deg);
    background: #fff;
}
.pt-hero-art__main img { display: block; width: 100%; height: 360px; object-fit: cover; }
.pt-hero-art__chip {
    position: absolute;
    left: -30px;
    bottom: 46px;
    margin: 0;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    background: #fff;
    box-shadow: var(--gs-shadow-lg);
    transform: rotate(-7deg);
}
.pt-hero-art__chip img { width: 100%; height: 100%; object-fit: cover; }
.pt-hero-art__price {
    position: absolute;
    right: -6px;
    bottom: 0;
    background: #fff;
    border-radius: 18px;
    padding: 16px 20px;
    box-shadow: var(--gs-shadow-lg);
}
.pt-hero-art__price span {
    display: block;
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gs-slate);
}
.pt-hero-art__price strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--gs-navy);
    line-height: 1.1;
}
.pt-hero-art__price strong small { font-size: 15px; font-weight: 500; }
.pt-hero-art__price em { font-style: normal; font-size: 12px; color: var(--gs-slate); }

/* Spec band */
.pt-specband {
    background: var(--gs-cream);
    padding: 0 0 var(--gs-sp-6);
    /* raised above the banner for the same reason as .ab-ledger-wrap */
    position: relative;
    z-index: 1;
}
.pt-specband__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: center;
    gap: 0;
    margin: -60px 0 0;
    background: #fff;
    border-radius: var(--gs-r-lg);
    box-shadow: var(--gs-shadow-lg);
    overflow: hidden;
}
.pt-specband__grid > div { padding: 28px 24px; border-right: 1px solid var(--gs-line); }
.pt-specband__grid > div:last-child { border-right: 0; }
.pt-specband dt {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gs-slate);
    font-weight: 500;
    margin-bottom: 6px;
}
.pt-specband dd {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--gs-navy);
    line-height: 1.25;
}
.pt-specband__cta { background: var(--gs-cream); }

/* How it is made */
.pt-explain { background: var(--gs-cream); padding-bottom: var(--gs-sp-6); }
.pt-explain__media {
    position: relative;
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    box-shadow: var(--gs-shadow);
}
.pt-explain__media img { display: block; width: 100%; height: 430px; object-fit: cover; }
.pt-explain__badge {
    position: absolute;
    left: 22px;
    top: 22px;
    background: var(--gs-rust);
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
}
.pt-explain h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--gs-ink);
    margin-bottom: 18px;
}
.pt-explain p {
    color: #3C4353;
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 18px;
}
.pt-honest {
    margin-top: 26px;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-left: 4px solid var(--gs-rust);
    border-radius: 0 var(--gs-r-md) var(--gs-r-md) 0;
    padding: 22px 26px;
}
.pt-honest h3 {
    font-size: 18px;
    color: var(--gs-navy);
    margin-bottom: 8px;
}
.pt-honest h3 em { font-style: italic; }
.pt-honest p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--gs-slate); }

/* Features */
.pt-features { background: #fff; padding: var(--gs-sp-6) 0; }
.pt-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pt-feature {
    position: relative;
    border-top: 3px solid var(--gs-navy);
    padding: 26px 0 0;
}
.pt-feature__no {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gs-rust);
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.pt-feature h3 { font-size: 20px; color: var(--gs-ink); margin-bottom: 10px; }
.pt-feature p { color: var(--gs-slate); font-size: 15px; line-height: 1.75; margin: 0; }

/* Process track */
.pt-process {
    padding: var(--gs-sp-6) 0;
    background:
        radial-gradient(70% 110% at 80% 0%, #1B3A93 0%, transparent 60%),
        linear-gradient(150deg, var(--gs-navy-deep), var(--gs-navy-ink));
}
.pt-process .section-heading h2 { color: #fff; }
.pt-process .section-heading h2 span { color: var(--gs-rust-lit); }
.pt-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: var(--gs-sp-4) 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}
.pt-track li {
    position: relative;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--gs-r-md);
    padding: 30px 26px 26px;
}
.pt-track li::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255, 255, 255, .3);
    border-right: 2px solid rgba(255, 255, 255, .3);
    transform: translateY(-50%) rotate(45deg);
}
.pt-track li:last-child::after { display: none; }
.pt-track__num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gs-rust-lit);
    line-height: 1;
    margin-bottom: 14px;
}
.pt-track h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.pt-track p { color: rgba(255, 255, 255, .72); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* Use cases */
.pt-uses { background: var(--gs-cream); padding: var(--gs-sp-6) 0; }
.pt-uses__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 52px;
    align-items: center;
}
.pt-uses__intro h2 {
    font-size: clamp(26px, 3vw, 38px);
    color: var(--gs-ink);
    margin-bottom: 16px;
}
.pt-uses__intro p { color: var(--gs-slate); line-height: 1.8; margin-bottom: 26px; }
.pt-uses__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
}
.pt-uses__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    color: var(--gs-ink);
    transition: border-color .25s ease, transform .25s ease;
}
.pt-uses__list li:hover { border-color: var(--gs-navy); transform: translateX(3px); }
.pt-uses__list svg { width: 20px; height: 20px; color: var(--gs-rust); flex: 0 0 auto; }

/* Cross-links */
.pt-compare { background: #fff; padding: var(--gs-sp-6) 0; }
.pt-compare__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pt-alt {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gs-cream);
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-r-md);
    padding: 14px 18px 14px 14px;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pt-alt:hover {
    border-color: var(--gs-navy);
    transform: translateY(-3px);
    box-shadow: var(--gs-shadow);
}
.pt-alt__img {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
}
.pt-alt__img img { width: 100%; height: 100%; object-fit: cover; }
.pt-alt__body { flex: 1; min-width: 0; }
.pt-alt__body strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gs-ink);
    margin-bottom: 3px;
}
.pt-alt__body em {
    font-style: normal;
    font-size: 12.5px;
    color: var(--gs-slate);
}
.pt-alt > svg { width: 20px; height: 20px; color: var(--gs-rust); flex: 0 0 auto; transition: transform .25s ease; }
.pt-alt:hover > svg { transform: translateX(4px); }

/* ==========================================================================
   CONTACT
   ========================================================================== */

.pg-hero--contact { padding-bottom: 150px; }

.ct-intro { padding-top: 6px; }
.ct-lines { margin: 0 0 34px; }
.ct-lines li {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.ct-lines li:first-child { border-top: 1px solid rgba(255, 255, 255, .14); }
.ct-lines__ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    display: grid;
    place-items: center;
    color: var(--gs-rust-lit);
    flex: 0 0 auto;
}
.ct-lines__ico svg { width: 22px; height: 22px; }
.ct-lines__txt small {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 3px;
}
.ct-lines__txt a,
.ct-lines__txt > span {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}
.ct-lines__txt a:hover { color: var(--gs-rust-lit); }

.ct-score {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ct-score__stars { display: flex; gap: 3px; color: #FFC24A; }
.ct-score__stars svg { width: 20px; height: 20px; }
.ct-score__stars .is-muted { color: rgba(255, 255, 255, .25); }
.ct-score p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 14px; }
.ct-score strong { color: #fff; }

.ct-card__head { margin-bottom: 4px; }
.ct-card {
    background: #fff;
    border-radius: var(--gs-r-lg);
    padding: 34px;
    box-shadow: var(--gs-shadow-lg);
}
.ct-card .ct-form { padding: 0; box-shadow: none; border-radius: 0; }
.ct-card__head h2 { font-size: 28px; color: var(--gs-ink); margin-bottom: 8px; }
.ct-card__head p { color: var(--gs-slate); font-size: 15px; margin-bottom: 24px; }

.ct-drop {
    border: 2px dashed #C9D0E2;
    border-radius: 14px;
    background: #FBFCFE;
    transition: border-color .25s ease, background-color .25s ease;
}
.ct-drop:hover { border-color: var(--gs-navy); background: #F6F8FE; }
.ct-drop input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.ct-drop label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    font-size: 14.5px;
    color: var(--gs-slate);
    min-height: 64px;
}
.ct-drop label strong { color: var(--gs-navy); }
.ct-drop svg { width: 26px; height: 26px; color: var(--gs-navy); flex: 0 0 auto; }
.ct-drop input[type="file"]:focus-visible + label {
    outline: 3px solid var(--gs-rust-lit);
    outline-offset: 3px;
    border-radius: 12px;
}

.ct-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--gs-slate);
    margin: 4px 0 18px;
    cursor: pointer;
}
.ct-consent input {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    accent-color: var(--gs-navy);
    flex: 0 0 auto;
}

/* Channels */
.ct-channels { padding: var(--gs-sp-6) 0 0; background: var(--gs-cream); }
.ct-channels__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ct-chan {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-r-md);
    padding: 28px 26px;
    border-top: 3px solid var(--gs-navy);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ct-chan:hover { transform: translateY(-4px); box-shadow: var(--gs-shadow); }
.ct-chan--visit { border-top-color: var(--gs-rust); }
.ct-chan h3 { font-size: 20px; color: var(--gs-ink); margin-bottom: 10px; }
.ct-chan p { color: var(--gs-slate); font-size: 14.5px; line-height: 1.7; margin-bottom: 16px; }
.ct-chan > a {
    display: inline-block;
    color: var(--gs-navy);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 2px solid rgba(19, 44, 116, .25);
    padding-bottom: 2px;
    transition: border-color .25s ease, color .25s ease;
}
.ct-chan > a:hover { color: var(--gs-rust); border-color: var(--gs-rust); }
.ct-chan__meta {
    display: block;
    margin-top: 14px;
    font-size: 12.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gs-slate);
}

/* Map + promise */
.ct-place { padding: var(--gs-sp-6) 0; background: var(--gs-cream); }
.ct-place__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
}
.ct-place__map {
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    box-shadow: var(--gs-shadow);
    min-height: 420px;
    background: var(--gs-sand);
}
.ct-place__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.ct-place__panel {
    background: #fff;
    border-radius: var(--gs-r-lg);
    padding: 40px 38px;
    box-shadow: var(--gs-shadow);
}
.ct-place__panel h2 { font-size: 32px; color: var(--gs-ink); margin-bottom: 26px; }
.ct-timeline { margin: 0 0 28px; padding-left: 0; list-style: none; }
.ct-timeline li {
    position: relative;
    padding: 0 0 22px 30px;
    border-left: 2px solid var(--gs-line);
    margin-left: 6px;
}
.ct-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.ct-timeline li::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gs-rust);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--gs-rust);
}
.ct-timeline strong {
    display: block;
    color: var(--gs-ink);
    font-size: 15.5px;
    margin-bottom: 5px;
}
.ct-timeline span { color: var(--gs-slate); font-size: 14.5px; line-height: 1.75; }

.ct-faq, .cp-faq { background: #fff; }

/* ==========================================================================
   BLOGS
   ========================================================================== */

/* Listing page — the banner carries only the masthead, so it stays short. */
.pg-hero--blog { padding-bottom: 130px; }
.bl-masthead {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: end;
}
.bl-masthead .pg-lede { margin-bottom: 6px; }

/* Featured strip now sits below the banner on cream. */
.bl-featured { padding: var(--gs-sp-5) 0 0; background: var(--gs-cream); }
.bl-feature {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 20px;
}
.bl-feature__lead {
    display: block;
    background: var(--gs-navy-deep);
    border: 1px solid var(--gs-navy-deep);
    border-radius: var(--gs-r-lg);
    overflow: hidden;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.bl-feature__lead:hover {
    border-color: var(--gs-navy);
    transform: translateY(-3px);
    box-shadow: var(--gs-shadow-lg);
}
.bl-feature__lead figure { margin: 0; overflow: hidden; }
.bl-feature__lead img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.bl-feature__lead:hover img { transform: scale(1.04); }
.bl-feature__body { padding: 28px 30px 32px; }
.bl-feature__body h2 {
    color: #fff;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.25;
    margin: 14px 0 12px;
}
.bl-feature__body p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    font-size: 15.5px;
    margin-bottom: 16px;
}

.bl-tag {
    display: inline-block;
    background: var(--gs-rust);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 50px;
}
.bl-tag--sm { font-size: 11px; padding: 5px 11px; }

.bl-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}
.bl-meta i { font-style: normal; opacity: .55; }

.bl-feature__side { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.bl-mini {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 18px;
    align-items: center;
    background: var(--gs-navy-deep);
    border: 1px solid var(--gs-navy-deep);
    border-radius: var(--gs-r-md);
    padding: 16px;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.bl-mini:hover { border-color: var(--gs-navy); transform: translateX(4px); box-shadow: var(--gs-shadow); }
.bl-mini figure { margin: 0; border-radius: 12px; overflow: hidden; }
.bl-mini img { width: 100%; height: 112px; object-fit: cover; display: block; }
.bl-mini h3 {
    color: #fff;
    font-size: 19px;
    line-height: 1.32;
    margin: 10px 0 8px;
}

/* Archive */
.bl-archive { padding: var(--gs-sp-6) 0; background: var(--gs-cream); }
.bl-archive__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: var(--gs-sp-4);
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gs-line);
}
.bl-archive__bar h2 { font-size: 34px; color: var(--gs-ink); margin: 0; }
.bl-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-filter {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: 50px;
    padding: 9px 18px;
    font-size: 14px;
    color: var(--gs-slate);
    cursor: pointer;
    min-height: 44px;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.bl-filter:hover { border-color: var(--gs-navy); color: var(--gs-navy); }
.bl-filter.active {
    background: var(--gs-navy);
    border-color: var(--gs-navy);
    color: #fff;
}

.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bl-card {
    background: #fff;
    border: 1px solid var(--gs-line);
    border-radius: var(--gs-r-md);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bl-card:hover { transform: translateY(-5px); box-shadow: var(--gs-shadow); }
.bl-card > a { display: block; height: 100%; }
.bl-card__media { position: relative; margin: 0; overflow: hidden; }
.bl-card__media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.bl-card:hover .bl-card__media img { transform: scale(1.05); }
.bl-card__media .bl-tag { position: absolute; left: 16px; top: 16px; }
.bl-card__body { padding: 24px 24px 26px; }
.bl-card__body h3 {
    font-size: 21px;
    line-height: 1.32;
    color: var(--gs-ink);
    margin-bottom: 10px;
}
.bl-card__body p {
    color: var(--gs-slate);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.bl-card .bl-meta { color: var(--gs-slate); }

.bl-card--wide { grid-column: span 2; }
.bl-card--wide > a { display: grid; grid-template-columns: 1fr 1fr; }
.bl-card--wide .bl-card__media img { height: 100%; min-height: 280px; }
.bl-card--wide .bl-card__body { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.bl-card--wide .bl-card__body h3 { font-size: 26px; }

.bl-card[hidden] { display: none; }
.bl-empty {
    text-align: center;
    color: var(--gs-slate);
    padding: 50px 0 0;
    margin: 0;
}

.bl-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: var(--gs-sp-5);
}
.bl-pager a,
.bl-pager__cur {
    min-width: 46px;
    min-height: 46px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid var(--gs-line);
    background: #fff;
    color: var(--gs-ink);
    font-size: 15px;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.bl-pager a:hover { border-color: var(--gs-navy); color: var(--gs-navy); }
.bl-pager__cur { background: var(--gs-navy); border-color: var(--gs-navy); color: #fff; }
.bl-pager__next svg { width: 18px; height: 18px; }

.pg-cta--blog .pg-cta__inner { align-items: center; }
.bl-signup { display: flex; gap: 10px; flex-wrap: wrap; }
.bl-signup input {
    flex: 1 1 220px;
    min-height: 52px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 0 22px;
    font-size: 15px;
}
.bl-signup input::placeholder { color: rgba(255, 255, 255, .5); }
.bl-signup input:focus {
    outline: none;
    border-color: var(--gs-rust-lit);
    background: rgba(255, 255, 255, .14);
}
.bl-signup .btn { min-height: 52px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1199.98px) {
    .cp-spec__grid { grid-template-columns: 268px 1fr; }
    .ab-bento { grid-auto-rows: 168px; }
    .bl-mini { grid-template-columns: 110px 1fr; }
    .bl-mini img { height: 96px; }
}

@media (max-width: 991.98px) {
    :root { --gs-sp-6: 68px; --gs-sp-5: 48px; }

    .pg-hero { padding-top: 210px; padding-bottom: 64px; }
    .pg-lede { font-size: 16px; }

    .pg-strip { grid-template-columns: repeat(2, 1fr); }
    .pg-strip li:nth-child(2) { border-right: 0; }
    .pg-strip li:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }

    .pg-cta__inner { grid-template-columns: 1fr; gap: 30px; }
    .pg-cta__actions { justify-content: flex-start; }

    /* About */
    .ab-stack { padding: 30px 24px 40px 34px; }
    .ab-stack__main img { height: 340px; }
    .ab-ledger { grid-template-columns: 1fr; margin-top: -60px; }
    .ab-ledger__facts { grid-template-columns: repeat(2, 1fr); }
    .ab-fact:nth-child(2) { border-right: 0; }
    .ab-fact:nth-child(-n+2) { border-bottom: 1px solid var(--gs-line); }
    .ab-creed__side { position: static; margin-bottom: 8px; }
    .ab-make__head, .cp-spec__head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
    .ab-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
    .ab-tile--xl { grid-column: span 2; grid-row: span 2; }
    .ab-tile--tall { grid-row: span 1; }
    .ab-tile--wide { grid-column: span 2; }
    .ab-tickets { grid-template-columns: 1fr; }

    /* Custom patches */
    .cp-fan { height: 360px; margin-top: 20px; }
    .cp-fan img { width: 168px; height: 168px; }
    .cp-fan__b { width: 190px; height: 190px; }
    .cp-steps { grid-template-columns: 1fr; }
    .cp-steps .cp-pillar:nth-child(2),
    .cp-steps .cp-pillar:nth-child(3) { margin-top: 0; }
    .cp-spec__grid { grid-template-columns: 1fr; }
    .cp-rail {
        position: static;
        flex-direction: row;
        flex-wrap: nowrap; /* .nav brings wrap:wrap — it would stack the rail instead of scrolling it */
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }
    .cp-rail__btn { min-width: 210px; }
    .cp-rail__chev { display: none; }
    .cp-panel { grid-template-columns: 1fr; }
    .cp-panel__media img { min-height: 260px; max-height: 320px; }
    .cp-panel__body { padding: 28px 26px; }
    .cp-finish__block--border { margin-top: 30px; }
    .cp-collage { grid-template-columns: repeat(2, 1fr); }
    .cp-ind--lead { grid-row: span 1; grid-column: span 2; }
    .cp-flow { grid-template-columns: 1fr; }
    .cp-quote__grid { grid-template-columns: 1fr; gap: 34px; }

    /* Patch detail */
    .pt-hero-art { padding: 24px 20px 30px 30px; }
    .pt-hero-art__main img { height: 300px; }
    .pt-specband__grid { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
    .pt-specband__grid > div:nth-child(2n) { border-right: 0; }
    .pt-specband__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--gs-line); }
    .pt-specband__cta { grid-column: 1 / -1; border-top: 1px solid var(--gs-line); }
    .pt-specband__cta .btn { width: 100%; text-align: center; }
    .pt-explain__media img { height: 320px; }
    .pt-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
    .pt-track { grid-template-columns: repeat(2, 1fr); }
    .pt-track li::after { display: none; }
    .pt-uses__grid { grid-template-columns: 1fr; gap: 32px; }
    .pt-compare__grid { grid-template-columns: repeat(2, 1fr); }

    /* Contact */
    .ct-channels__grid { grid-template-columns: repeat(2, 1fr); }
    .ct-place__grid { grid-template-columns: 1fr; }
    .ct-place__map, .ct-place__map iframe { min-height: 300px; }

    /* Blog */
    .bl-masthead { grid-template-columns: 1fr; align-items: start; gap: 20px; }
    .bl-feature { grid-template-columns: 1fr; }
    .bl-feature__side { grid-template-rows: auto auto; }
    .bl-grid { grid-template-columns: repeat(2, 1fr); }
    .bl-card--wide { grid-column: span 2; }
}

@media (max-width: 767.98px) {
    :root { --gs-sp-6: 56px; --gs-sp-4: 32px; }

    .pg-hero { padding-top: 190px; }
    .pg-crumbs { margin-bottom: 24px; }
    .pg-actions .btn { width: 100%; justify-content: center; }

    .pg-strip { grid-template-columns: 1fr; }
    .pg-strip li { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
    .pg-strip li:last-child { border-bottom: 0; }

    /* About */
    .ab-stack__chip--a { left: -12px; width: 96px; height: 96px; }
    .ab-stack__chip--b { right: -6px; width: 96px; height: 96px; }
    .ab-ledger__facts { grid-template-columns: 1fr; }
    .ab-fact { border-right: 0; border-bottom: 1px solid var(--gs-line); }
    .ab-fact:last-child { border-bottom: 0; }
    .ab-creed__body .has-cap::first-letter { font-size: 58px; }
    .ab-quote p { font-size: 21px !important; }
    .ab-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .ab-tile--xl, .ab-tile--wide { grid-column: span 1; }
    .ab-tile--xl { grid-row: span 1; }
    .ab-tile--xl .ab-tile__body h3 { font-size: 26px; }
    .ab-rail__list { padding-left: 58px; }
    .ab-rail__list::before, .ab-rail__list::after { left: 18px; }
    .ab-step__marker { left: -58px; width: 40px; height: 40px; }
    .ab-step__marker span { font-size: 14px; }
    .ab-step__card { padding: 22px 20px; }
    .ab-ticket { padding: 26px 24px; }
    .ab-ticket__no { font-size: 52px; }

    /* Custom patches */
    .cp-fan { height: 300px; }
    .cp-fan img { width: 140px; height: 140px; }
    .cp-fan__b { width: 155px; height: 155px; right: 8px; }
    .cp-fan__c { left: 60px; bottom: 20px; }
    .cp-fan__price { right: 0; bottom: 0; padding: 14px 16px; }
    .cp-fan__price strong { font-size: 26px; }
    .cp-backs { grid-template-columns: 1fr; }
    .cp-specs { grid-template-columns: 1fr; }
    .cp-collage { grid-template-columns: 1fr; }
    .cp-ind--lead { grid-column: span 1; }
    .cp-form, .ct-form, .ct-card { padding: 24px 20px; }
    .cp-form__row, .ct-form__row { grid-template-columns: 1fr; gap: 0; }
    .cp-panel__foot { flex-direction: column; align-items: flex-start; }
    .cp-panel__foot .btn { width: 100%; text-align: center; }

    /* Patch detail */
    .pt-hero-art__chip { left: -10px; width: 100px; height: 100px; }
    .pt-hero-art__price { padding: 13px 15px; }
    .pt-hero-art__price strong { font-size: 24px; }
    .pt-specband__grid { grid-template-columns: 1fr; }
    .pt-specband__grid > div { border-right: 0; border-bottom: 1px solid var(--gs-line); }
    .pt-feature-grid { grid-template-columns: 1fr; }
    .pt-track { grid-template-columns: 1fr; }
    .pt-uses__list { grid-template-columns: 1fr; }
    .pt-compare__grid { grid-template-columns: 1fr; }

    /* Contact */
    .ct-channels__grid { grid-template-columns: 1fr; }
    .ct-place__panel { padding: 28px 22px; }
    .ct-place__panel h2 { font-size: 26px; }

    /* Blog */
    .bl-feature__lead img { height: 220px; }
    .bl-feature__body { padding: 22px 20px 26px; }
    .bl-mini { grid-template-columns: 1fr; }
    .bl-mini figure { display: none; }
    .bl-archive__bar { flex-direction: column; align-items: flex-start; }
    .bl-grid { grid-template-columns: 1fr; }
    .bl-card--wide { grid-column: span 1; }
    .bl-card--wide > a { grid-template-columns: 1fr; }
    .bl-card--wide .bl-card__media img { min-height: 0; height: 210px; }
    .bl-card--wide .bl-card__body { padding: 24px; }
    .bl-card--wide .bl-card__body h3 { font-size: 21px; }
    .bl-signup { width: 100%; }
    .bl-signup .btn { width: 100%; }
}

/* ==========================================================================
   SHARED HEADER — responsive rules
   style.css has none, so below ~992px the 150px absolute logo collides with the
   nav and the announcement bar. Lives here because every page (homepage
   included) loads pages.css through includes/header.php.
   ========================================================================== */

@media (max-width: 1199.98px) {
    a.navbar-brand img { height: 118px; }
    .navbar-nav li { margin: 0 9px; }
    a.nav-link { font-size: 15.5px; }
    .top-right .btn { padding: 10px 18px; font-size: 14px; }
}

@media (max-width: 991.98px) {
    header { padding: 14px 0; }

    .top-header ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 0;
        margin-bottom: 12px;
    }
    .top-header ul p {
        font-size: 12px;
        line-height: 16px;
        padding-right: 12px;
        margin-right: 12px;
    }

    nav.navbar {
        padding: 12px 18px;
        border-width: 2px;
        border-radius: 26px;
    }
    a.navbar-brand {
        position: static;
        margin-right: auto;
    }
    a.navbar-brand img { height: 62px; }

    .navbar-toggler {
        border: 1px solid var(--gs-navy);
        border-radius: 10px;
        padding: 6px 10px;
    }
    /* The nav carries neither .navbar-light nor .navbar-dark, so Bootstrap 5.0
       never assigns the toggler its background SVG and the button renders empty. */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23132C74' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    ul.navbar-nav {
        padding-left: 0;
        margin: 14px 0 0 !important;
        border-top: 1px solid var(--gs-line);
        padding-top: 10px;
    }
    .navbar-nav li { margin: 0; }
    a.nav-link {
        text-align: left;
        padding: 11px 2px !important;
        min-height: 44px;
        font-size: 16px;
    }
    a.nav-link:before { display: none; }
    a.nav-link.active { color: var(--gs-navy); }

    .top-right {
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--gs-line);
    }
    .top-right .btn { flex: 1; text-align: center; }
}

@media (max-width: 575.98px) {
    .top-header ul p {
        font-size: 11px;
        padding-right: 9px;
        margin-right: 9px;
    }
    a.navbar-brand img { height: 54px; }
    .top-right { flex-direction: column; }
    .top-right .btn { width: 100%; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .ab-tile img,
    .cp-ind img,
    .bl-card__media img,
    .bl-feature__lead img,
    .ab-tile__go svg {
        transition: none !important;
    }
    .ab-ticket:hover,
    .cp-pillar:hover,
    .ct-chan:hover,
    .bl-card:hover,
    .bl-mini:hover,
    .bl-feature__lead:hover,
    .cp-rail__btn:hover {
        transform: none;
    }
}
