/* ============================================================
   MAMW — Homepage  (mobile-first · editorial · dark hero)
   Fonts: Bricolage Grotesque (head) + Inter (body)
   ============================================================ */

.hp-body {
    background: #fff;
}

/* ─── Shared buttons ────────────────────────────────────── */
.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: .01em;
    white-space: nowrap;
}

.hp-btn-primary:hover {
    background: var(--gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 134, 11, .4);
}

.hp-btn-primary--lg {
    font-size: 1rem;
    padding: 18px 36px;
}

.hp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 500;
    padding: 12px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: color .2s, border-color .2s, gap .2s;
    letter-spacing: .02em;
    white-space: nowrap;
}

.hp-btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    gap: 14px;
}

.hp-btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1.5px solid var(--navy);
    transition: color .2s, border-color .2s, gap .2s;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hp-btn-ghost-dark:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 14px;
}

.hp-btn-ghost-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .6);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, .22);
    transition: color .2s, border-color .2s, gap .2s;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hp-btn-ghost-nav:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
    gap: 14px;
}

.hp-btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: .01em;
    white-space: nowrap;
}

.hp-btn-navy:hover {
    background: #0d1626;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .3);
}

.hp-section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hp-section-tag--light {
    color: rgba(255, 255, 255, .38);
}


/* ════════════════════════════════════════════════════════════
   01 — HERO
════════════════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    background: #f9f7f4;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 56px;
}

@media (min-width: 900px) {
    .hp-hero {
        padding-bottom: 80px;
    }
}

/* Decorative arcs SVG */
.hp-hero-arcs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Fine dot grid texture */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(184, 134, 11, .22) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
}

/* Gold glow pools */
.hp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 100% 100%,
            rgba(184, 134, 11, .20) 0%,
            rgba(184, 134, 11, .05) 55%,
            transparent 70%),
        radial-gradient(ellipse 40% 30% at 0% 0%,
            rgba(184, 134, 11, .13) 0%,
            transparent 60%);
}

/* Content wrapper */
.hp-hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1300px;
}

@media (min-width: 600px) {
    .hp-hero-inner {
        padding: 0 36px;
    }
}

@media (min-width: 900px) {
    .hp-hero-inner {
        padding: 0 64px;
        flex-direction: row;
        align-items: stretch;
        text-align: left;
        gap: 48px;
    }
}

/* Left text column */
.hp-hero-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .hp-hero-text {
        flex: 1.1;
        justify-content: flex-end;
        align-items: flex-start;
        text-align: left;
    }
}

/* Mobile-only photo: shown between CTA and paragraph on mobile */
.hp-hero-photo-mobile {
    display: block;
    width: 100%;
    max-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0 0;
}

.hp-hero-photo-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    display: block;
}

@media (min-width: 900px) {
    .hp-hero-photo-mobile {
        display: none;
    }
}

/* Desktop right photo panel */
.hp-hero-photo {
    display: none;
}

@media (min-width: 900px) {
    .hp-hero-photo {
        display: block;
        position: relative;
        flex: 0 0 38%;
        min-height: 480px;
        border-radius: 12px;
        overflow: hidden;
        align-self: center;
        margin-bottom: 20px;
    }
}

.hp-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    display: block;
}

.hp-hero-top {
    display: none;
}

/* Kicker */
.hp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .32);
}

.hp-kicker-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: kpulse 2.4s ease infinite;
    flex-shrink: 0;
}

@keyframes kpulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.5);
    }
}

/* Headline */
.hp-headline {
    font-family: var(--font-head);
    font-size: clamp(2.47rem, 5.6vw, 5.88rem);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.04em;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 600px) {
    .hp-headline {
        margin-bottom: 12px;
    }
}

@media (min-width: 900px) {
    .hp-headline {
        margin-bottom: 16px;
    }
}

.hp-hl-row {
    display: block;
}

/* No offset — all lines left-aligned (centered on mobile via parent) */

.hp-hl-fill {
    color: var(--navy);
}

.hp-hl-fill em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 35, 50, .35);
}

/* Tagline */
.hp-hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(.85rem, 1.6vw, 1.05rem);
    font-weight: 400;
    color: rgba(26, 35, 50, .45);
    font-style: italic;
    margin: 0 0 28px;
    padding-bottom: 0;
    letter-spacing: .01em;
}

@media (max-width: 899px) {
    .hp-hero-tagline {
        padding-bottom: 10px;
    }
}

@media (min-width: 900px) {
    .hp-hero-tagline {
        margin-bottom: 40px;
        padding-bottom: 10px;
    }
}

/* See Our Work — mobile shows in bottom, desktop shows in CTA row */
.hp-sow-mobile {
    display: inline-flex;
    margin-top: 16px;
}

.hp-sow-desktop {
    display: none;
}

@media (min-width: 900px) {
    .hp-sow-mobile {
        display: none;
    }

    .hp-sow-desktop {
        display: inline-flex;
    }
}

/* Hero bottom — paragraph */
.hp-hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    border-top: none;
    margin-top: 0;
    width: 100%;
}

@media (min-width: 900px) {
    .hp-hero-bottom {
        align-items: flex-start;
        align-self: auto;
    }
}

/* CTA wrapper */
.hp-hero-cta-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

@media (min-width: 900px) {
    .hp-hero-cta-wrap {
        justify-content: flex-start;
    }
}

.hp-hero-sub {
    font-size: clamp(.88rem, 1.5vw, 1rem);
    color: rgba(26, 35, 50, .55);
    line-height: 1.72;
    margin: 0;
    font-weight: 400;
    max-width: 480px;
}

@media (max-width: 899px) {
    .hp-hero-sub {
        padding-top: 10px;
    }
}

@media (min-width: 900px) {
    .hp-hero-sub {
        padding-top: 10px;
    }
}

.hp-hero-sub em {
    font-style: italic;
    color: var(--navy);
}

.hp-hero-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .hp-hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }
}


/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════ */
.hp-marquee {
    background: var(--gold);
    overflow: hidden;
}

.hp-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 28s linear infinite;
    padding: 12px 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hp-marquee-track span {
    white-space: nowrap;
    padding: 0 20px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .52);
}

.hp-marquee-track b {
    color: rgba(0, 0, 0, .28);
    font-size: .48rem;
    padding: 0 4px;
    font-weight: 400;
}


/* ════════════════════════════════════════════════════════════
   02 — WHO WE ARE
════════════════════════════════════════════════════════════ */
.hp-who {
    background: #fff;
    padding: 80px 20px;
}

@media (min-width: 600px) {
    .hp-who {
        padding: 80px 36px;
    }
}

@media (min-width: 900px) {
    .hp-who {
        padding: 100px 64px;
    }
}

.hp-who-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 860px) {
    .hp-who-inner {
        grid-template-columns: 1.4fr 1fr;
        align-items: center;
        gap: 80px;
    }
}

.hp-who-hed {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--navy);
    margin: 0 0 20px;
}

.hp-who-hed em {
    font-style: normal;
    color: var(--gold);
}

.hp-who-text p {
    font-size: clamp(.88rem, 1.4vw, 1rem);
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 14px;
}

.hp-who-text a {
    color: var(--gold);
    text-decoration: underline;
}

.hp-who-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hp-who-stat {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.hp-who-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
    margin-bottom: 4px;
}

.hp-who-stat span {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   03 — WHAT'S INCLUDED
════════════════════════════════════════════════════════════ */
.hp-includes {
    background: var(--navy);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 600px) {
    .hp-includes {
        padding: 80px 36px;
    }
}

@media (min-width: 900px) {
    .hp-includes {
        padding: 100px 64px;
    }
}

/* Concentric circles — radiating from bottom-right */
.hp-includes::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, .15);
    box-shadow:
        0 0 0 80px rgba(184, 134, 11, .07),
        0 0 0 160px rgba(184, 134, 11, .055),
        0 0 0 240px rgba(184, 134, 11, .04),
        0 0 0 320px rgba(184, 134, 11, .03),
        0 0 0 400px rgba(184, 134, 11, .02);
    pointer-events: none;
    z-index: 0;
}

/* Second set radiating from top-left */
.hp-includes::after {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, .08);
    box-shadow:
        0 0 0 80px rgba(184, 134, 11, .04),
        0 0 0 160px rgba(184, 134, 11, .025),
        0 0 0 240px rgba(184, 134, 11, .015);
    pointer-events: none;
    z-index: 0;
}

.hp-includes-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hp-includes-header .hp-btn-ghost-dark {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.hp-includes-header .hp-btn-ghost-dark:hover {
    color: var(--gold-light);
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hp-includes-header {
    margin-bottom: 48px;
}

.hp-includes-header .hp-section-tag {
    color: var(--gold-light);
    opacity: .7;
}

.hp-includes-hed {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 12px;
}

.hp-includes-sub {
    font-size: clamp(.88rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 520px;
}

.hp-includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 600px) {
    .hp-includes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .hp-includes-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hp-inc-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 28px 24px;
    transition: background .2s;
}

.hp-inc-card:hover {
    background: rgba(255, 255, 255, .07);
}

.hp-inc-icon {
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, .18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold-light);
    font-size: .95rem;
}

.hp-inc-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.hp-inc-card p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   04 — PORTFOLIO
════════════════════════════════════════════════════════════ */
.hp-work {
    background: var(--off-white);
    padding: 80px 20px;
}

@media (min-width: 600px) {
    .hp-work {
        padding: 80px 36px;
    }
}

@media (min-width: 900px) {
    .hp-work {
        padding: 100px 64px;
    }
}

.hp-work-header {
    max-width: 1300px;
    margin: 0 auto 40px;
}

.hp-work-hed {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--navy);
    margin: 0 0 10px;
}

.hp-work-hed em {
    font-style: normal;
    color: var(--gold);
}

.hp-work-sub {
    font-size: .95rem;
    color: var(--gray-600);
    margin: 0;
}

.hp-work-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .hp-work-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .hp-work-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hp-work-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .22s, box-shadow .22s;
}

.hp-work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hp-wc-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.hp-wc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.hp-work-card:hover .hp-wc-img img {
    transform: scale(1.04);
}

.hp-wc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent);
    padding: 12px 14px;
}

.hp-wc-chrome {
    display: flex;
    gap: 5px;
}

.hp-wc-chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
}

.hp-wc-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hp-wc-info strong {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
}

.hp-wc-info span {
    font-size: .78rem;
    color: var(--gray-400);
}

.hp-wc-info span a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.hp-wc-info span a:hover {
    color: var(--gold-light);
}

.hp-work-more {
    max-width: 1300px;
    margin: 32px auto 0;
    display: flex;
    justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   05 — HOW IT WORKS
════════════════════════════════════════════════════════════ */
.hp-process {
    background: var(--navy);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 600px) {
    .hp-process {
        padding: 80px 36px;
    }
}

@media (min-width: 900px) {
    .hp-process {
        padding: 100px 64px;
    }
}

/* Muted martial arts photo behind the dark navy */
.hp-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bg-process.jpg') center center / cover no-repeat;
    opacity: .08;
    pointer-events: none;
    z-index: 0;
}

.hp-process-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hp-process-left {
    text-align: center;
}

@media (min-width: 900px) {
    .hp-process-left {
        text-align: left;
    }
}

@media (min-width: 860px) {
    .hp-process-inner {
        grid-template-columns: 1fr 1.4fr;
        align-items: start;
        gap: 80px;
    }
}

.hp-process-hed {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 12px;
}

.hp-process-hed em {
    font-style: normal;
    color: var(--gold-light);
}

.hp-process-sub {
    font-size: .92rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

.hp-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hp-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hp-step-n {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .08em;
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 24px;
}

.hp-step strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hp-step p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   06 — TESTIMONIALS
   Hidden until real quotes are ready — remove the display:none to re-enable
════════════════════════════════════════════════════════════ */
.hp-quotes {
    display: none;
}

.hp-quotes--active {
    background: var(--navy);
    padding: 80px 20px;
}

@media (min-width: 600px) {
    .hp-quotes {
        padding: 80px 36px;
    }
}

@media (min-width: 900px) {
    .hp-quotes {
        padding: 100px 64px;
    }
}

.hp-quotes-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.hp-quotes-hed {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0 0 40px;
}

.hp-quote-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .hp-quote-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .hp-quote-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.hp-quote--sm {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-quote-stars {
    color: var(--gold-light);
    font-size: .8rem;
    letter-spacing: 2px;
}

.hp-quote--sm p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

.hp-quote--sm footer {
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
    font-style: normal;
    letter-spacing: .02em;
}

/* ════════════════════════════════════════════════════════════
   07 — FAQ
════════════════════════════════════════════════════════════ */
.hp-faq {
    background: var(--off-white);
    padding: 80px 20px;
}

@media (min-width: 600px) {
    .hp-faq {
        padding: 80px 36px;
    }
}

@media (min-width: 900px) {
    .hp-faq {
        padding: 100px 64px;
    }
}

.hp-faq-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 860px) {
    .hp-faq-inner {
        grid-template-columns: 1fr 1.8fr;
        align-items: start;
        gap: 80px;
    }
}

.hp-faq-hed {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--navy);
    margin: 0 0 20px;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 40px 20px 15px;
    text-align: left;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    transition: color .2s;
}

.accordion-trigger:hover {
    color: var(--gold);
}

.accordion-icon {
    color: var(--gold);
    font-size: .8rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.accordion-panel.open {
    max-height: 300px;
    padding-top: 8px;
    padding-bottom: 16px;
}

.accordion-panel p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   08 — FINAL CTA
════════════════════════════════════════════════════════════ */
.hp-cta {
    background: var(--gold);
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 600px) {
    .hp-cta {
        padding: 0 36px;
    }
}

@media (min-width: 900px) {
    .hp-cta {
        padding: 0 64px;
    }
}

/* Hero-style dot grid */
.hp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(0, 0, 0, .18) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
}

/* Hero-style arc SVG overlay */
.hp-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 100% 100%,
            rgba(0, 0, 0, .08) 0%,
            transparent 65%),
        radial-gradient(ellipse 40% 30% at 0% 0%,
            rgba(0, 0, 0, .06) 0%,
            transparent 60%);
}

.hp-cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 600px) {
    .hp-cta-inner {
        padding: 80px 0;
    }
}

@media (min-width: 900px) {
    .hp-cta-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        padding: 100px 0;
    }
}

.hp-cta-hed {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 6.5vw, 6rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.04em;
    color: rgba(0, 0, 0, .68);
    margin: 0;
    text-align: center;
}

@media (min-width: 900px) {
    .hp-cta-hed {
        text-align: left;
    }
}

.hp-cta-dark {
    color: rgba(0, 0, 0, .88);
}

.hp-cta-right>p {
    font-size: .97rem;
    color: rgba(0, 0, 0, .5);
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: center;
}

@media (min-width: 900px) {
    .hp-cta-right>p {
        text-align: left;
    }
}

.hp-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 900px) {
    .hp-cta-right {
        align-items: flex-start;
    }
}

.hp-cta-small {
    margin-top: 12px;
    font-size: .7rem;
    color: rgba(0, 0, 0, .36);
    letter-spacing: .05em;
    margin-bottom: 0 !important;
}

.hp-btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
}

.hp-btn-navy:hover {
    background: var(--navy-mid);
    color: #fff;
}