:root {
    --hen-coral: #ff575a;
    --hen-pink: #f33768;
    --hen-blue: #65cce8;
    --hen-cream: #ffd99d;
    --hen-cream-soft: #fff4e1;
    --hen-mint: #b6ead7;
    --hen-ink: #24141b;
    --hen-muted: #6f5f66;
    --hen-line: #f1d8d4;
    --hen-white: #fffdf9;
    --hen-shadow: 0 18px 48px rgba(125, 67, 76, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
    color: var(--hen-ink);
    background:
        linear-gradient(90deg, rgba(101, 204, 232, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 87, 90, 0.05) 1px, transparent 1px),
        var(--hen-white);
    background-size: 34px 34px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--hen-pink);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

a:hover,
a:focus {
    color: var(--hen-coral);
}

h1,
h2,
h3 {
    margin: 0 0 0.45em;
    color: var(--hen-ink);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(2rem, 4.2vw, 3.55rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
    margin: 0 0 1.2em;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--hen-white);
    background: var(--hen-ink);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 249, 0.92);
    border-bottom: 1px solid rgba(255, 87, 90, 0.16);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 8px 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-link__logo {
    width: min(170px, 44vw);
    max-height: 56px;
    object-fit: contain;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav__list li {
    position: relative;
}

.primary-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--hen-ink);
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
}

.primary-nav__list .menu-item-has-children > a::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 7px;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.primary-nav__list a:hover,
.primary-nav__list a:focus,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current-menu-ancestor > a {
    color: var(--hen-pink);
    background: rgba(255, 217, 157, 0.42);
}

.primary-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 70;
    display: grid;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(255, 87, 90, 0.16);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--hen-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-nav__list .sub-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
}

.primary-nav__list .menu-item-has-children:hover > .sub-menu,
.primary-nav__list .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-nav__list .sub-menu a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 38px;
    border-radius: 12px;
    white-space: nowrap;
}

.primary-nav__list .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--hen-cream-soft);
    cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--hen-ink);
}

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

.container.narrow {
    width: min(880px, calc(100% - 40px));
}

.site-main {
    flex: 1 0 auto;
    overflow: hidden;
}

.hennetie-hero {
    min-height: auto;
    padding: clamp(18px, 3vw, 38px) 0 clamp(20px, 3vw, 38px);
    background:
        radial-gradient(circle at 82% 18%, rgba(101, 204, 232, 0.28), transparent 28%),
        radial-gradient(circle at 64% 76%, rgba(255, 217, 157, 0.46), transparent 28%),
        linear-gradient(135deg, #fffdf9 0%, #fff7ef 48%, #fff3f7 100%);
}

.hennetie-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
    align-items: center;
    gap: clamp(20px, 3.8vw, 44px);
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hennetie-hero__copy {
    position: relative;
    z-index: 2;
}

.hennetie-hero__copy::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 10%;
    width: 128px;
    height: 38px;
    border-top: 8px solid var(--hen-blue);
    border-radius: 50%;
    transform: rotate(-10deg);
    opacity: 0.85;
}

.hennetie-hero h1 {
    margin-top: 8px;
}

.hero-lead {
    max-width: 640px;
    color: #463139;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--hen-pink);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(243, 55, 104, 0.18);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--hen-coral), var(--hen-pink));
}

.button--primary:hover,
.button--primary:focus {
    color: #fff;
    transform: translateY(-1px);
}

.button--soft {
    color: var(--hen-ink);
    background: var(--hen-cream);
    border-color: rgba(36, 20, 27, 0.08);
    box-shadow: 0 12px 22px rgba(255, 217, 157, 0.38);
}

.section {
    padding: clamp(18px, 3vw, 36px) 0;
    background: var(--hen-white);
}

.section:nth-of-type(odd) {
    background: #fff8f0;
}

.section-head {
    max-width: 760px;
    margin: 0 0 18px;
}

.section--crafts .section-head,
.section--projects .section-head,
.section--tips .section-head {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head p:not(.eyebrow) {
    color: var(--hen-muted);
}

.section--intro {
    position: relative;
    border-top: 1px solid rgba(255, 87, 90, 0.12);
    text-align: center;
}

.section--blog-intro,
.builder-free-text,
.hennetie-builder-page > .section:first-child .rich-content,
.page-content > .section:first-child .rich-content {
    text-align: center;
}

.section--blog-intro h1 {
    max-width: none;
    font-size: clamp(2rem, 4.2vw, 3.55rem);
}

.section--blog-intro p:not(.eyebrow),
.builder-free-text p:not(.eyebrow),
.hennetie-builder-page > .section:first-child .rich-content p,
.page-content > .section:first-child .rich-content p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.builder-free-text h2 {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.section--intro .narrow {
    position: relative;
}

.section--intro .narrow::after {
    content: "";
    position: absolute;
    right: 4%;
    bottom: -26px;
    width: 148px;
    height: 26px;
    background-image: radial-gradient(var(--hen-blue) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.48;
}

.split-block,
.builder-split__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(20px, 3.6vw, 42px);
}

.split-block__copy p,
.builder-split__grid p,
.rich-content p {
    color: #443139;
}

.image-frame {
    position: relative;
    min-height: 280px;
    border-radius: 26px;
    isolation: isolate;
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 20px -18px -18px 18px;
    z-index: -2;
    border: 7px solid rgba(36, 20, 27, 0.2);
    border-radius: 28px;
    transform: rotate(-4deg);
}

.image-frame::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: -34px;
    width: 170px;
    height: 46px;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 87, 90, 0.28) 1.7px, transparent 1.7px);
    background-size: 13px 13px;
}

.image-frame img,
.yarn-placeholder {
    width: 100%;
    min-height: 280px;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--hen-shadow);
}

.image-frame--hero {
    min-height: clamp(240px, 30vw, 360px);
}

.image-frame--hero img,
.image-frame--hero .yarn-placeholder {
    min-height: clamp(240px, 30vw, 360px);
}

.yarn-placeholder {
    position: relative;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at 27% 53%, transparent 0 42px, rgba(101, 204, 232, 0.75) 43px 47px, transparent 48px),
        radial-gradient(circle at 31% 49%, #c9f1fb 0 88px, transparent 89px),
        radial-gradient(circle at 55% 45%, transparent 0 54px, rgba(243, 55, 104, 0.82) 55px 60px, transparent 61px),
        radial-gradient(circle at 55% 43%, #ff9bb4 0 116px, transparent 117px),
        radial-gradient(circle at 74% 55%, transparent 0 44px, rgba(250, 179, 101, 0.78) 45px 50px, transparent 51px),
        radial-gradient(circle at 75% 53%, #ffe0a7 0 94px, transparent 95px),
        linear-gradient(135deg, #fff7ed, #ffeef4 48%, #effbff);
}

.yarn-placeholder::before,
.yarn-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.yarn-placeholder::before {
    left: 12%;
    right: 9%;
    top: 18%;
    height: 58%;
    background:
        repeating-linear-gradient(14deg, transparent 0 18px, rgba(255, 255, 255, 0.44) 19px 24px),
        repeating-linear-gradient(76deg, transparent 0 28px, rgba(36, 20, 27, 0.08) 29px 33px);
    mix-blend-mode: soft-light;
}

.yarn-placeholder::after {
    right: 11%;
    top: 13%;
    width: 36%;
    height: 22%;
    border-top: 8px solid #f4bd7a;
    transform: rotate(15deg);
}

.yarn-placeholder--large::after {
    right: 7%;
    width: 42%;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.craft-card,
.note-card,
.post-card {
    position: relative;
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(255, 87, 90, 0.16);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(125, 67, 76, 0.09);
}

.craft-card {
    overflow: hidden;
}

.craft-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: rgba(255, 217, 157, 0.48);
}

.craft-card__mark {
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--hen-white) 0 32%, transparent 33%), var(--hen-blue);
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.55);
}

.craft-card--2 .craft-card__mark {
    background: radial-gradient(circle, var(--hen-white) 0 32%, transparent 33%), var(--hen-pink);
}

.craft-card--3 .craft-card__mark {
    background: radial-gradient(circle, var(--hen-white) 0 32%, transparent 33%), var(--hen-cream);
}

.craft-card p,
.note-card p,
.post-card p {
    color: var(--hen-muted);
}

.craft-card a,
.text-link {
    font-weight: 900;
}

.project-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    overflow: hidden;
    border: 1px solid rgba(101, 204, 232, 0.35);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(50, 108, 122, 0.1);
}

.project-card__image {
    aspect-ratio: 4 / 3;
    background: var(--hen-cream-soft);
}

.project-card__image img,
.project-card__image span {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__image span {
    display: block;
    background:
        radial-gradient(circle at 26% 40%, #bfeef8 0 58px, transparent 59px),
        radial-gradient(circle at 52% 54%, #ff9bb4 0 78px, transparent 79px),
        radial-gradient(circle at 76% 42%, #ffe0a7 0 62px, transparent 63px),
        linear-gradient(135deg, #fff7ee, #fff0f5);
}

.project-card__body {
    padding: 24px;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.note-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 225, 0.82)),
        #fff;
}

.note-card::before {
    content: "";
    display: block;
    width: 56px;
    height: 8px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hen-coral), var(--hen-blue), var(--hen-cream));
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    max-width: 1080px;
    margin: 0 auto;
}

.faq-list details {
    min-height: 70px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 87, 90, 0.18);
    border-radius: 18px;
    background: #fff;
}

.faq-list summary {
    color: var(--hen-ink);
    font-weight: 900;
    cursor: pointer;
}

.faq-list p {
    margin: 14px 0 0;
    color: var(--hen-muted);
}

.section.section--cta {
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 217, 157, 0.32), transparent 24%),
        radial-gradient(circle at 80% 75%, rgba(101, 204, 232, 0.28), transparent 26%),
        linear-gradient(135deg, #44212b 0%, #7b263f 48%, #f33768 100%);
}

.section.section--cta h2,
.section.section--cta p,
.section.section--cta .eyebrow {
    color: #fff;
}

.section.section--cta .button-row {
    justify-content: center;
}

.page-hero,
.page-builder-hero {
    padding: 16px 0;
    background:
        linear-gradient(90deg, #fff9f1 0%, #fffdf9 62%, rgba(101, 204, 232, 0.18) 100%);
    border-bottom: 1px solid rgba(255, 87, 90, 0.12);
}

.page-hero h1,
.page-builder-hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    margin-bottom: 0.16em;
}

.page-hero p:not(.eyebrow),
.page-builder-hero p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.page-builder-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
}

.page-builder-hero h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
}

.page-builder-hero .image-frame--hero {
    display: none;
}

.page-builder-hero .image-frame--hero img,
.page-builder-hero .image-frame--hero .yarn-placeholder {
    min-height: 0;
}

.builder-split--reverse .builder-split__grid .image-frame {
    order: 2;
}

.rich-content {
    font-size: 1.08rem;
}

.rich-content > *:first-child {
    margin-top: 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 380px));
    gap: 22px;
    justify-content: center;
}

.post-card {
    overflow: hidden;
    padding: 0;
}

.post-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__body {
    padding: 24px;
}

.post-card h2 {
    font-size: 1.45rem;
}

.post-card h2 a {
    color: var(--hen-ink);
    text-decoration: none;
}

.pagination {
    grid-column: 1 / -1;
}

.site-footer {
    flex-shrink: 0;
    padding: 18px 0;
    text-align: center;
    color: #fff;
    background: #08272a;
}

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

.site-footer__line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.4;
}

.site-footer__sep {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.site-footer__line a {
    color: #fff;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.site-footer__line a:hover,
.site-footer__line a:focus {
    color: var(--hen-cream);
}

.page-up {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--hen-coral), var(--hen-pink));
    box-shadow: 0 16px 34px rgba(243, 55, 104, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.page-up span {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.page-up.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.page-up:hover,
.page-up:focus {
    background: linear-gradient(135deg, var(--hen-pink), var(--hen-coral));
    outline: 3px solid rgba(101, 204, 232, 0.42);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .hennetie-hero__inner,
    .split-block,
    .builder-split__grid,
    .page-builder-hero__grid {
        grid-template-columns: 1fr;
    }

    .hennetie-hero__copy::before {
        right: 0;
    }

    .card-grid--three,
    .project-strip,
    .note-grid,
    .post-grid {
        grid-template-columns: 1fr 1fr;
    }

    .builder-split--reverse .builder-split__grid .image-frame {
        order: 0;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 16px;
    }

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

    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: absolute;
        right: 14px;
        top: calc(100% + 8px);
        display: none;
        width: min(320px, calc(100vw - 28px));
        padding: 12px;
        border: 1px solid rgba(255, 87, 90, 0.18);
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--hen-shadow);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list {
        display: grid;
        gap: 4px;
    }

    .primary-nav__list a {
        width: 100%;
        justify-content: flex-start;
    }

    .primary-nav__list .sub-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 2px 0 8px 12px;
        padding: 6px;
        border: 0;
        border-left: 2px solid rgba(255, 87, 90, 0.18);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .primary-nav__list .menu-item-has-children.is-submenu-open > .sub-menu {
        display: grid;
        opacity: 1;
        visibility: visible;
    }

    .primary-nav__list .menu-item-has-children.is-submenu-open > a::after {
        transform: rotate(180deg);
    }

    .primary-nav__list .sub-menu::before {
        display: none;
    }

    .primary-nav__list .sub-menu a {
        min-height: 34px;
        padding-left: 12px;
        white-space: normal;
    }

    .container,
    .container.narrow,
    .hennetie-hero__inner,
    .site-footer__inner {
        width: calc(100% - 28px);
    }

    .hennetie-hero {
        min-height: auto;
        padding-top: 28px;
    }

    .card-grid--three,
    .project-strip,
    .note-grid,
    .post-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .image-frame,
    .image-frame img,
    .yarn-placeholder {
        min-height: 230px;
    }

    .section {
        padding: 28px 0;
    }

    .page-hero,
    .page-builder-hero {
        padding: 22px 0 24px;
    }

    .page-builder-hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.55rem);
    }

    .page-builder-hero .image-frame--hero,
    .page-builder-hero .image-frame--hero img,
    .page-builder-hero .image-frame--hero .yarn-placeholder {
        min-height: 190px;
    }

    .page-up {
        right: 14px;
        bottom: 14px;
        width: 46px;
        height: 46px;
    }

    .site-footer__inner {
        display: grid;
    }
}

/* Final compactness/readability overrides for inner pages and default CTA blocks. */
.page-hero,
.page-builder-hero {
    min-height: auto !important;
    padding: 14px 0 !important;
}

.page-builder-hero__grid {
    grid-template-columns: 1fr !important;
}

.page-builder-hero .image-frame--hero {
    display: none !important;
}

.page-hero h1,
.page-builder-hero h1 {
    font-size: clamp(1.75rem, 3vw, 2.45rem) !important;
    line-height: 1.05 !important;
}

.section {
    padding-top: clamp(16px, 2.5vw, 30px) !important;
    padding-bottom: clamp(16px, 2.5vw, 30px) !important;
}

.section.section--cta,
.hennetie-builder-page .section.section--cta,
.hennetie-builder-page .section--cta {
    padding: clamp(24px, 3.4vw, 42px) 0 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #24141b 0%, #6f2038 58%, #f33768 100%) !important;
}

.section.section--cta *,
.hennetie-builder-page .section.section--cta *,
.hennetie-builder-page .section--cta * {
    color: #fff !important;
}

.section.section--cta .button,
.hennetie-builder-page .section--cta .button {
    color: #fff !important;
    background: linear-gradient(135deg, var(--hen-coral), var(--hen-pink)) !important;
}
