:root {
    --hm-gold: #F4B400;
    --hm-gold-dark: #B7791F;
    --hm-black: #0B0B0B;
    --hm-navy: #070B14;
    --hm-ink: #111111;
    --hm-muted: #4B5563;
    --hm-cream: #FFF4CF;
    --hm-soft: #F7F9FF;
    --hm-white: #FFFFFF;
    --hm-border: rgba(17, 17, 17, .12);
    --hm-shadow: 0 24px 70px rgba(17, 17, 17, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.hm-body {
    margin: 0;
    color: var(--hm-ink);
    background: var(--hm-white);
    font-family: "Work Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hm-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hm-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(0,0,0,.08);
    backdrop-filter: blur(14px);
}

body.admin-bar .hm-site-header { top: 32px; }

.hm-site-header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.hm-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hm-black);
    font-weight: 950;
    letter-spacing: -.04em;
    text-decoration: none;
}

.hm-brand__mark { color: var(--hm-gold); }

.hm-nav,
.hm-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hm-nav a,
.hm-header-actions a {
    color: var(--hm-black);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.hm-header-cta,
.hm-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
}

.hm-header-cta,
.hm-pill--gold {
    background: var(--hm-gold);
    color: var(--hm-black);
}

.hm-pill--dark {
    background: var(--hm-black);
    color: var(--hm-white);
}

.hm-pill--light {
    background: var(--hm-white);
    color: var(--hm-black);
    border: 1px solid rgba(0,0,0,.1);
}

.hm-original-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 96px 0 170px;
    background:
        linear-gradient(rgba(244,180,0,.9), rgba(244,180,0,.9)),
        var(--hm-honeycomb);
    background-size: auto, 380px;
    color: var(--hm-black);
}

.hm-original-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
    align-items: center;
    gap: 48px;
}

.hm-kicker {
    margin: 0 0 18px;
    color: var(--hm-gold-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hm-kicker--dark { color: rgba(0,0,0,.65); }

.hm-original-hero h1,
.hm-section h2,
.hm-final-band h2 {
    margin: 0;
    color: var(--hm-black);
    font-size: clamp(50px, 6vw, 92px);
    line-height: .88;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

.hm-original-hero__copy p:not(.hm-kicker) {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(0,0,0,.72);
    font-size: 18px;
    line-height: 1.6;
}

.hm-original-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hm-hero-collage {
    position: relative;
    min-height: 480px;
}

.hm-hero-collage__img {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: 0 28px 65px rgba(0,0,0,.20);
}

.hm-hero-collage__img--one {
    left: 0;
    top: 60px;
    width: 230px;
    height: 300px;
    transform: rotate(-9deg);
}

.hm-hero-collage__img--two {
    left: 175px;
    top: 180px;
    width: 350px;
    height: 260px;
    border-radius: 50%;
}

.hm-hero-collage__img--three {
    right: 0;
    top: 75px;
    width: 300px;
    height: 300px;
    transform: rotate(7deg);
}

.hm-hero-qr {
    position: absolute;
    left: 250px;
    top: 18px;
    display: grid;
    place-items: center;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: var(--hm-black);
    color: var(--hm-white);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.hm-hero-qr span {
    display: block;
    font-size: 30px;
    font-weight: 950;
}

.hm-hero-qr strong {
    display: block;
    margin-top: -34px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hm-wave {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -1px;
    height: 120px;
    background: var(--hm-soft);
    clip-path: polygon(0 62%, 20% 80%, 42% 62%, 60% 82%, 78% 64%, 100% 78%, 100% 100%, 0 100%);
}

.hm-section {
    padding: 112px 0;
}

.hm-section--white { background: var(--hm-soft); }
.hm-section--split { background: var(--hm-white); }
.hm-section--cream { background: #FFF8E5; }
.hm-section--pricing { background: #FFF8E5; }
.hm-section--faq { background: var(--hm-white); }

.hm-centered {
    text-align: center;
}

.hm-centered h2 {
    max-width: 780px;
    margin: 0 auto;
}

.hm-section-lead {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--hm-muted);
    font-size: 17px;
    line-height: 1.65;
}

.hm-icon-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 52px;
}

.hm-icon-row article {
    text-align: center;
}

.hm-icon-row span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 18px;
    color: var(--hm-gold);
    border: 1px solid rgba(244,180,0,.3);
    border-radius: 50%;
}

.hm-icon-row h3,
.hm-feature-grid-original h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.hm-icon-row p,
.hm-feature-grid-original p,
.hm-copy-panel p,
.hm-faq-list p {
    margin: 0;
    color: var(--hm-muted);
    line-height: 1.65;
}

.hm-image-copy {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: center;
}

.hm-image-copy--reverse {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.hm-image-frame {
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--hm-shadow);
}

.hm-image-frame img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hm-image-frame--wide img { height: 430px; }
.hm-image-frame--portrait img { height: 620px; }

.hm-copy-panel h2 {
    font-size: clamp(42px, 4.4vw, 70px);
}

.hm-copy-panel p {
    max-width: 560px;
    margin: 22px 0;
    font-size: 17px;
}

.hm-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.hm-feature-cards article {
    padding: 20px;
    border: 1px solid rgba(244,180,0,.28);
    border-radius: 4px;
    background: rgba(255,255,255,.78);
}

.hm-feature-cards strong,
.hm-feature-cards span {
    display: block;
}

.hm-feature-cards strong {
    margin-bottom: 6px;
    font-size: 14px;
    text-transform: uppercase;
}

.hm-feature-cards span {
    color: var(--hm-muted);
    font-size: 13px;
}

.hm-section--gold {
    background: var(--hm-gold);
    color: var(--hm-black);
    overflow: hidden;
}

.hm-section--gold h2 {
    max-width: 760px;
    color: var(--hm-white);
    text-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.hm-feature-grid-original {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 820px;
    margin: 56px auto 0;
}

.hm-feature-grid-original article {
    min-height: 220px;
    padding: 32px 24px;
    background: var(--hm-white);
    text-align: center;
}

.hm-feature-grid-original span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--hm-gold);
    color: var(--hm-white);
    font-size: 28px;
}

.hm-pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.hm-pricing-row article {
    padding: 34px;
    background: var(--hm-white);
    border: 1px solid rgba(0,0,0,.1);
    text-align: left;
    transform: rotate(-3deg);
}

.hm-pricing-row article:nth-child(2) {
    transform: rotate(0deg) translateY(-14px);
}

.hm-pricing-row article:nth-child(3) {
    transform: rotate(3deg);
}

.hm-pricing-row h3 {
    margin: 10px 0;
    font-size: 54px;
    letter-spacing: -.06em;
}

.hm-plan-name {
    color: var(--hm-gold-dark);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hm-check-list {
    padding: 0;
    margin: 26px 0;
    list-style: none;
}

.hm-check-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    font-weight: 800;
}

.hm-faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.hm-faq-list details {
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 22px 0;
}

.hm-faq-list summary {
    cursor: pointer;
    font-weight: 950;
    font-size: 18px;
}

.hm-final-band {
    padding: 110px 0;
    background: var(--hm-white);
}

.hm-site-footer {
    padding: 70px 0 34px;
    background: var(--hm-navy);
    color: var(--hm-white);
}

.hm-site-footer .hm-brand__text,
.hm-site-footer .hm-brand {
    color: var(--hm-white);
}

.hm-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr;
    gap: 60px;
}

.hm-site-footer p,
.hm-site-footer a {
    color: rgba(255,255,255,.72);
}

.hm-site-footer a {
    display: block;
    margin: 12px 0;
    text-decoration: none;
}

.hm-site-footer h3 {
    margin: 0 0 18px;
    color: var(--hm-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hm-footer-form {
    display: flex;
    max-width: 360px;
    margin-top: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.hm-footer-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 14px;
    background: transparent;
    color: var(--hm-white);
}

.hm-footer-form button {
    border: 0;
    padding: 0 18px;
    background: var(--hm-gold);
    color: var(--hm-black);
    font-weight: 950;
}

.hm-footer-bottom {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 980px) {
    .hm-nav { display: none; }

    .hm-original-hero__inner,
    .hm-image-copy,
    .hm-image-copy--reverse,
    .hm-faq-grid {
        grid-template-columns: 1fr;
    }

    .hm-icon-row,
    .hm-feature-grid-original,
    .hm-pricing-row,
    .hm-footer-grid {
        grid-template-columns: 1fr;
    }

    .hm-hero-collage {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    body.admin-bar .hm-site-header { top: 46px; }

    .hm-container {
        width: min(100% - 28px, 1180px);
    }

    .hm-header-actions a:first-child {
        display: none;
    }

    .hm-original-hero {
        min-height: auto;
        padding: 64px 0 130px;
    }

    .hm-original-hero h1,
    .hm-section h2,
    .hm-final-band h2 {
        font-size: 44px;
    }

    .hm-hero-collage__img--one {
        width: 150px;
        height: 210px;
    }

    .hm-hero-collage__img--two {
        left: 95px;
        width: 220px;
        height: 180px;
    }

    .hm-hero-collage__img--three {
        width: 170px;
        height: 190px;
    }

    .hm-hero-qr {
        left: 150px;
        width: 92px;
        height: 92px;
    }

    .hm-section {
        padding: 76px 0;
    }

    .hm-feature-cards {
        grid-template-columns: 1fr;
    }

    .hm-image-frame img,
    .hm-image-frame--wide img,
    .hm-image-frame--portrait img {
        height: 360px;
    }
}

/* =========================================================
   HiveMoments original-style polish pass 1
   ========================================================= */

.hm-original-home {
    overflow: hidden;
}

/* Header: make it feel more intentional and less WordPress-default */
.hm-site-header__inner {
    min-height: 74px;
}

.hm-brand {
    font-size: 16px;
}

.hm-nav {
    gap: 30px;
}

.hm-nav a,
.hm-header-actions a {
    font-size: 13px;
    letter-spacing: -0.02em;
}

.hm-header-cta {
    min-height: 38px;
    padding-inline: 18px;
}

/* Hero: closer to the original — big, graphic, energetic */
.hm-original-hero {
    min-height: 820px;
    padding: 92px 0 210px;
    background-size: auto, 310px;
}

.hm-original-hero__inner {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 34px;
    align-items: start;
}

.hm-original-hero__copy {
    padding-top: 34px;
}

.hm-original-hero h1 {
    max-width: 720px;
    font-size: clamp(58px, 7.3vw, 112px);
    line-height: 0.84;
    letter-spacing: -0.078em;
}

.hm-original-hero__copy p:not(.hm-kicker) {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.5;
}

.hm-original-hero__actions {
    margin-top: 26px;
}

.hm-pill {
    min-height: 38px;
    padding: 0 20px;
    font-size: 12px;
    letter-spacing: -0.01em;
}

/* Collage: larger, wider, more like the original sweep */
.hm-hero-collage {
    min-height: 570px;
    margin-top: 36px;
}

.hm-hero-collage__img {
    border: 8px solid rgba(255,255,255,0.72);
}

.hm-hero-collage__img--one {
    left: -6px;
    top: 124px;
    width: 260px;
    height: 330px;
    transform: rotate(-10deg);
}

.hm-hero-collage__img--two {
    left: 150px;
    top: 246px;
    width: 390px;
    height: 286px;
    border-radius: 999px;
    z-index: 3;
}

.hm-hero-collage__img--three {
    right: -20px;
    top: 154px;
    width: 355px;
    height: 315px;
    transform: rotate(8deg);
}

.hm-hero-qr {
    left: 222px;
    top: 60px;
    width: 118px;
    height: 118px;
    z-index: 5;
}

.hm-wave {
    height: 150px;
    clip-path: polygon(0 48%, 18% 66%, 40% 48%, 58% 68%, 78% 50%, 100% 66%, 100% 100%, 0 100%);
}

/* Sections: stronger landing page rhythm */
.hm-section {
    padding: 124px 0;
}

.hm-section--white {
    background: #F7F9FF;
}

.hm-centered {
    max-width: 1040px;
}

.hm-centered h2 {
    max-width: 790px;
    font-size: clamp(46px, 5.2vw, 82px);
    line-height: 0.88;
}

.hm-section-lead {
    max-width: 590px;
    margin-top: 24px;
}

.hm-icon-row {
    margin-top: 64px;
}

.hm-icon-row article {
    padding-inline: 12px;
}

.hm-icon-row h3 {
    min-height: 42px;
}

/* Image/copy sections: reduce blankness, increase editorial feel */
.hm-image-copy {
    gap: 84px;
}

.hm-image-frame img {
    height: 600px;
}

.hm-image-frame--wide img {
    height: 455px;
}

.hm-image-frame--portrait img {
    height: 640px;
}

.hm-copy-panel h2 {
    max-width: 560px;
    font-size: clamp(46px, 4.8vw, 76px);
    line-height: 0.88;
}

.hm-copy-panel p {
    margin-top: 26px;
}

/* Feature cards: closer to original square card grid */
.hm-section--gold {
    padding: 132px 0;
    position: relative;
}

.hm-section--gold::after {
    content: "EVENT GALLERIES • GUEST PHOTOS • QR SHARING";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(0,0,0,0.13);
    font-size: clamp(48px, 8vw, 118px);
    font-weight: 950;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.hm-section--gold .hm-centered h2 {
    max-width: 700px;
}

.hm-feature-grid-original {
    gap: 10px;
    max-width: 740px;
}

.hm-feature-grid-original article {
    min-height: 236px;
    padding: 34px 24px;
}

.hm-feature-grid-original span {
    width: 78px;
    height: 78px;
}

/* Pricing: match original skewed card personality, less generic SaaS */
.hm-section--pricing {
    padding-top: 122px;
}

.hm-pricing-row {
    max-width: 760px;
    margin-inline: auto;
}

.hm-pricing-row article {
    min-height: 285px;
    box-shadow: 0 18px 46px rgba(17,17,17,.08);
}

.hm-pricing-row h3 {
    font-size: 58px;
}

/* FAQ and final share band */
.hm-faq-grid h2 {
    font-size: clamp(46px, 5vw, 78px);
    line-height: .88;
}

.hm-final-band {
    padding: 126px 0;
}

/* Footer: stronger and less empty */
.hm-site-footer {
    padding-top: 82px;
}

.hm-footer-grid {
    align-items: start;
}

.hm-footer-form {
    max-width: 390px;
}

.hm-footer-bottom {
    font-size: 13px;
}

/* Desktop-only refinement */
@media (min-width: 1180px) {
    .hm-original-hero__inner {
        width: min(1220px, calc(100% - 40px));
    }
}

/* Tablet */
@media (max-width: 980px) {
    .hm-original-hero {
        min-height: auto;
        padding-bottom: 160px;
    }

    .hm-original-hero__copy {
        padding-top: 0;
    }

    .hm-hero-collage {
        margin-top: 10px;
    }

    .hm-image-copy {
        gap: 44px;
    }
}

/* Mobile: keep the brand, avoid broken collage */
@media (max-width: 640px) {
    .hm-original-hero {
        padding: 56px 0 118px;
    }

    .hm-original-hero h1 {
        font-size: 44px;
        max-width: 360px;
    }

    .hm-original-hero__copy p:not(.hm-kicker) {
        font-size: 15px;
    }

    .hm-hero-collage {
        min-height: 330px;
    }

    .hm-hero-collage__img {
        border-width: 5px;
    }

    .hm-hero-collage__img--one {
        left: 0;
        top: 60px;
        width: 135px;
        height: 185px;
    }

    .hm-hero-collage__img--two {
        left: 82px;
        top: 122px;
        width: 205px;
        height: 155px;
    }

    .hm-hero-collage__img--three {
        right: 0;
        top: 70px;
        width: 150px;
        height: 170px;
    }

    .hm-hero-qr {
        left: 50%;
        top: 14px;
        width: 84px;
        height: 84px;
        transform: translateX(-50%);
    }

    .hm-section {
        padding: 78px 0;
    }

    .hm-centered h2,
    .hm-copy-panel h2,
    .hm-faq-grid h2 {
        font-size: 38px;
        line-height: .92;
    }

    .hm-feature-grid-original article {
        min-height: auto;
    }

    .hm-pricing-row article,
    .hm-pricing-row article:nth-child(2),
    .hm-pricing-row article:nth-child(3) {
        transform: none;
    }
}

/* =========================================================
   HiveMoments original-style polish pass 2
   Hero + section rhythm
   ========================================================= */

/* Header closer to original: compact, clean, high contrast */
.hm-site-header {
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.hm-site-header__inner {
    min-height: 62px;
}

.hm-brand {
    font-size: 15px;
}

.hm-nav a,
.hm-header-actions a {
    font-size: 12px;
    font-weight: 900;
}

.hm-header-cta {
    min-height: 34px;
    padding-inline: 17px;
}

/* HERO: use original-like poster composition */
.hm-original-hero {
    min-height: 790px;
    padding: 72px 0 190px;
    background-size: auto, 260px;
}

.hm-original-hero__inner {
    position: relative;
    display: block;
    width: min(1220px, calc(100% - 40px));
    min-height: 560px;
}

.hm-original-hero__copy {
    position: relative;
    z-index: 5;
    width: min(720px, 58vw);
    padding-top: 22px;
}

.hm-original-hero h1 {
    max-width: 760px;
    font-size: clamp(58px, 6.85vw, 104px);
    line-height: .84;
    letter-spacing: -.08em;
}

.hm-original-hero__copy p:not(.hm-kicker) {
    max-width: 560px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
}

.hm-original-hero__actions {
    margin-top: 24px;
}

/* Collage becomes a lower sweeping strip instead of a small side cluster */
.hm-hero-collage {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -36px;
    min-height: 300px;
    margin: 0;
    pointer-events: none;
}

.hm-hero-collage__img {
    border: 7px solid rgba(255,255,255,.68);
    box-shadow: 0 26px 58px rgba(0,0,0,.22);
}

.hm-hero-collage__img--one {
    left: 8px;
    top: 58px;
    width: 220px;
    height: 285px;
    transform: rotate(-10deg);
    z-index: 1;
}

.hm-hero-collage__img--two {
    left: 255px;
    top: 88px;
    width: 430px;
    height: 270px;
    border-radius: 999px;
    transform: rotate(2deg);
    z-index: 3;
}

.hm-hero-collage__img--three {
    right: 40px;
    top: 42px;
    width: 410px;
    height: 310px;
    transform: rotate(7deg);
    z-index: 2;
}

.hm-hero-qr {
    left: 185px;
    top: 14px;
    width: 92px;
    height: 92px;
    z-index: 6;
}

.hm-hero-qr span {
    font-size: 23px;
}

.hm-hero-qr strong {
    display: none;
}

/* Original-style torn/wave transition */
.hm-wave {
    height: 135px;
    clip-path: polygon(0 58%, 12% 70%, 26% 54%, 43% 70%, 58% 56%, 72% 72%, 88% 55%, 100% 68%, 100% 100%, 0 100%);
}

/* Section rhythm: original has tighter copy blocks and stronger centered lockups */
.hm-section {
    padding: 104px 0;
}

.hm-centered h2 {
    max-width: 700px;
    font-size: clamp(42px, 4.9vw, 72px);
    line-height: .88;
}

.hm-section-lead {
    max-width: 600px;
    font-size: 15px;
}

/* How-it-works: reduce tiny-icon feel, make the row breathe like original */
.hm-icon-row {
    max-width: 900px;
    margin: 56px auto 0;
    gap: 28px;
}

.hm-icon-row span {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    background: rgba(244,180,0,.08);
    border-color: rgba(244,180,0,.42);
    font-size: 18px;
}

.hm-icon-row h3 {
    min-height: auto;
    font-size: 17px;
}

.hm-icon-row p {
    font-size: 13px;
}

/* Split sections: closer to original editorial landing page */
.hm-image-copy {
    width: min(1060px, calc(100% - 40px));
    gap: 62px;
}

.hm-image-frame {
    box-shadow: 0 20px 58px rgba(17,17,17,.14);
}

.hm-image-frame img {
    height: 520px;
}

.hm-copy-panel h2 {
    max-width: 520px;
    font-size: clamp(40px, 4.15vw, 62px);
    line-height: .9;
}

.hm-copy-panel p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.62;
}

/* Make feature cards less sparse */
.hm-feature-cards {
    max-width: 520px;
    gap: 10px;
}

.hm-feature-cards article {
    padding: 17px 18px;
}

.hm-feature-cards strong {
    font-size: 12px;
}

.hm-feature-cards span {
    font-size: 12px;
}

/* Gold feature block: stronger original-style density */
.hm-section--gold {
    padding: 112px 0 128px;
}

.hm-section--gold .hm-centered h2 {
    max-width: 620px;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: .9;
}

.hm-feature-grid-original {
    max-width: 780px;
    gap: 12px;
    margin-top: 48px;
}

.hm-feature-grid-original article {
    min-height: 205px;
    padding: 26px 22px;
}

.hm-feature-grid-original span {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
}

.hm-feature-grid-original h3 {
    font-size: 17px;
}

.hm-feature-grid-original p {
    font-size: 13px;
}

/* Pricing: cleaner cards and more deliberate hierarchy */
.hm-section--pricing {
    padding: 106px 0;
}

.hm-pricing-row {
    max-width: 830px;
    gap: 18px;
}

.hm-pricing-row article {
    min-height: 300px;
    padding: 32px;
}

.hm-pricing-row h3 {
    font-size: 52px;
}

.hm-pricing-row p:not(.hm-plan-name) {
    font-size: 14px;
    line-height: 1.55;
}

/* FAQ and footer spacing */
.hm-faq-grid {
    width: min(1040px, calc(100% - 40px));
}

.hm-site-footer {
    padding-top: 74px;
}

@media (min-width: 1280px) {
    .hm-original-hero__inner {
        width: min(1260px, calc(100% - 48px));
    }
}

@media (max-width: 980px) {
    .hm-original-hero__inner {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hm-original-hero__copy {
        width: 100%;
    }

    .hm-hero-collage {
        position: relative;
        bottom: auto;
        min-height: 420px;
        margin-top: 24px;
    }

    .hm-image-copy {
        width: min(100% - 40px, 1060px);
    }
}

@media (max-width: 640px) {
    .hm-original-hero {
        padding-top: 46px;
    }

    .hm-original-hero h1 {
        font-size: 42px;
        max-width: 340px;
    }

    .hm-hero-collage {
        min-height: 330px;
    }

    .hm-hero-collage__img--one {
        left: 0;
        top: 72px;
        width: 128px;
        height: 170px;
    }

    .hm-hero-collage__img--two {
        left: 70px;
        top: 126px;
        width: 220px;
        height: 150px;
    }

    .hm-hero-collage__img--three {
        right: 0;
        top: 68px;
        width: 150px;
        height: 168px;
    }

    .hm-hero-qr {
        left: 48%;
        top: 22px;
        width: 78px;
        height: 78px;
    }
}
