/* =========================================================
   HEROINE WEBSALTY THEME
   Full clean main.css
========================================================= */

:root {
    --h-dark: #1d1921;
    --h-dark-2: #2b2530;
    --h-text: #625a68;
    --h-muted: #918896;
    --h-soft: #f8f4f8;
    --h-soft-2: #fbf9fb;
    --h-purple: #d996e8;
    --h-purple-dark: #b96bd0;
    --h-purple-light: #f4def9;
    --h-border: #eee8f0;
    --h-white: #ffffff;
    --h-shadow: 0 24px 70px rgba(29, 25, 33, 0.09);
    --h-shadow-soft: 0 14px 44px rgba(29, 25, 33, 0.07);
    --h-radius: 0px;
    --h-container: 1180px;
}

/* =========================================================
   RESET / BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--h-text);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

a {
    color: inherit;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--h-dark);
    margin-top: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

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

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--h-border);
}

.heroine-header-inner {
    width: min(var(--h-container), calc(100% - 40px));
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img,
.custom-logo {
    width: 66px;
    height: 66px;
    max-height: 66px;
    object-fit: contain;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-navigation ul,
.primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 31px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation li {
    margin: 0;
    padding: 0;
}

.main-navigation a {
    display: inline-flex;
    align-items: center;
    color: var(--h-dark);
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.current-menu-item > a {
    color: var(--h-purple);
}

/* Mobile menu button */

.heroine-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--h-border);
    background: #ffffff;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
}

.heroine-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--h-dark);
    display: block;
    transition: 0.2s ease;
}

.heroine-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.heroine-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.heroine-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   GLOBAL LAYOUT
========================================================= */

.site-main {
    background: #ffffff;
}

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

.heroine-section {
    padding: 104px 0;
}

.heroine-soft {
    background: var(--h-soft-2);
}

.heroine-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--h-purple);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.heroine-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 15px 28px;
    border: 1px solid var(--h-purple);
    background: var(--h-purple);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(217, 150, 232, 0.28);
    transition: all 0.22s ease;
    cursor: pointer;
}

.heroine-btn:hover {
    background: var(--h-purple-dark);
    border-color: var(--h-purple-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.heroine-btn-light {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--h-dark) !important;
    box-shadow: none;
}

.heroine-btn-light:hover {
    background: var(--h-dark);
    border-color: var(--h-dark);
    color: #ffffff !important;
}

.heroine-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* =========================================================
   FRONT PAGE HERO
========================================================= */

.heroine-home {
    background: #ffffff;
}

.heroine-hero {
    width: min(1320px, calc(100% - 48px));
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    min-height: 610px;
    background: var(--h-soft);
    overflow: hidden;
}

.heroine-hero-image {
    min-height: 610px;
    overflow: hidden;
    background: #eee;
}

.heroine-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.heroine-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 76px 70px;
}

.heroine-hero h1 {
    max-width: 650px;
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: clamp(44px, 5.6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.heroine-hero p {
    max-width: 560px;
    margin: 0;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.82;
}

/* =========================================================
   SPLIT SECTIONS
========================================================= */

.heroine-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 74px;
    align-items: center;
}

.heroine-split-reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.heroine-text h2 {
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-text p {
    margin: 0 0 18px;
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.85;
}

.heroine-photo-card {
    overflow: hidden;
    background: var(--h-soft);
    box-shadow: var(--h-shadow);
}

.heroine-photo-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.heroine-photo-portrait img {
    height: 600px;
    object-position: center;
}

/* =========================================================
   VALUES SECTION
========================================================= */

.heroine-values {
    padding: 76px 0;
    background: var(--h-dark);
    color: #ffffff;
}

.heroine-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.heroine-value-card {
    padding: 34px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.heroine-value-card span {
    display: block;
    margin-bottom: 24px;
    color: var(--h-purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
}

.heroine-value-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

/* Compatibility with previous class names */

.heroine-support-strip {
    padding: 76px 0;
    background: var(--h-dark);
    color: #ffffff;
}

.heroine-support-grid {
    width: min(var(--h-container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.heroine-support-grid > div {
    padding: 34px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.heroine-number {
    display: block;
    margin-bottom: 24px;
    color: var(--h-purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24em;
}

.heroine-support-grid h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-support-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.heroine-section-head,
.heroine-section-heading {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.heroine-section-head h2,
.heroine-section-heading h2 {
    margin: 0 0 16px;
    color: var(--h-dark);
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-section-head p,
.heroine-section-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.75;
}

/* =========================================================
   POST GRID
========================================================= */

.heroine-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.heroine-post-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 22px 64px rgba(29, 25, 33, 0.08);
    transition: all 0.22s ease;
}

.heroine-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 82px rgba(29, 25, 33, 0.12);
}

.heroine-post-image,
.heroine-post-thumb {
    display: block;
    overflow: hidden;
    background: #eee;
    text-decoration: none;
}

.heroine-post-image img,
.heroine-post-thumb img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.heroine-post-card:hover .heroine-post-image img,
.heroine-post-card:hover .heroine-post-thumb img {
    transform: scale(1.04);
}

.heroine-post-content,
.heroine-post-body {
    padding: 30px;
}

.heroine-post-content > span,
.heroine-post-date {
    display: block;
    margin-bottom: 14px;
    color: #b6adbb;
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.heroine-post-content h3,
.heroine-post-body h3 {
    margin: 0 0 14px;
    color: var(--h-dark);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-post-content h3 a,
.heroine-post-body h3 a {
    color: var(--h-dark);
    text-decoration: none;
}

.heroine-post-content h3 a:hover,
.heroine-post-body h3 a:hover {
    color: var(--h-purple-dark);
}

.heroine-post-content p,
.heroine-post-body p {
    margin: 0 0 20px;
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.7;
}

.heroine-read-more {
    color: var(--h-purple);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.heroine-read-more:hover {
    color: var(--h-purple-dark);
}

/* =========================================================
   PAGE / ARCHIVE / SINGLE
========================================================= */

.heroine-page-header,
.heroine-archive-header,
.heroine-single-header {
    padding: 86px 0 42px;
    text-align: center;
    background: #ffffff;
}

.heroine-page-header h1,
.heroine-archive-header h1,
.heroine-single-header h1 {
    max-width: 900px;
    margin: 0 auto;
    color: var(--h-dark);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.heroine-content {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0 94px;
}

.heroine-content p {
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.86;
    margin-bottom: 20px;
}

.heroine-content h2 {
    margin: 42px 0 18px;
    color: var(--h-dark);
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-content h3 {
    margin: 34px 0 14px;
    color: var(--h-dark);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 850;
}

.heroine-content a {
    color: var(--h-purple-dark);
    font-weight: 700;
}

.heroine-single-featured {
    width: min(980px, calc(100% - 40px));
    margin: 18px auto 22px;
    overflow: hidden;
    box-shadow: var(--h-shadow-soft);
}

.heroine-single-featured img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

.heroine-pagination {
    margin-top: 46px;
    text-align: center;
}

.heroine-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.heroine-pagination a,
.heroine-pagination span {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--h-border);
    color: var(--h-dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.heroine-pagination .current,
.heroine-pagination a:hover {
    background: var(--h-purple);
    border-color: var(--h-purple);
    color: #ffffff;
}

/* =========================================================
   DEFAULT WP CONTENT
========================================================= */

.alignwide {
    width: min(1100px, calc(100vw - 40px));
    margin-left: calc((860px - min(1100px, calc(100vw - 40px))) / 2);
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.wp-block-image img {
    height: auto;
}

.wp-block-quote {
    margin: 36px 0;
    padding: 26px 30px;
    border-left: 4px solid var(--h-purple);
    background: var(--h-soft);
}

.wp-block-quote p {
    font-size: 20px;
    line-height: 1.65;
    color: var(--h-dark);
}

.wp-block-button__link {
    background: var(--h-purple);
    color: #ffffff !important;
    border-radius: 999px;
    padding: 15px 28px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
}

/* =========================================================
   FORMS
========================================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--h-border);
    background: #ffffff;
    color: var(--h-dark);
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--h-purple);
    box-shadow: 0 0 0 4px rgba(217, 150, 232, 0.18);
}

button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 15px 28px;
    border: 1px solid var(--h-purple);
    background: var(--h-purple);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--h-border);
}

.heroine-footer-cta {
    padding: 78px 0;
    background: var(--h-soft);
}

.heroine-footer-cta-inner {
    width: min(var(--h-container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.heroine-footer-cta h2 {
    max-width: 520px;
    margin: 0 0 12px;
    color: var(--h-dark);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-footer-cta p {
    max-width: 560px;
    margin: 0 0 22px;
    color: var(--h-text);
    font-size: 16px;
    line-height: 1.75;
}

.heroine-footer-bottom {
    width: min(var(--h-container), calc(100% - 40px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--h-muted);
    font-size: 13px;
    text-align: center;
}

.heroine-footer-bottom a {
    color: var(--h-purple);
    text-decoration: none;
    font-weight: 700;
}

/* =========================================================
   404 / EMPTY
========================================================= */

.error404 .heroine-content,
.search-no-results .heroine-content {
    text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .main-navigation ul,
    .primary-menu {
        gap: 22px;
    }

    .heroine-hero-content {
        padding: 62px 52px;
    }

    .heroine-split,
    .heroine-split-reverse {
        gap: 54px;
    }
}

@media (max-width: 1024px) {
    body.admin-bar .site-header {
        top: 32px;
    }

    .heroine-header-inner {
        min-height: 78px;
    }

    .heroine-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .heroine-hero-image,
    .heroine-hero-image img {
        min-height: 470px;
    }

    .heroine-hero-content {
        padding: 58px 44px;
    }

    .heroine-split,
    .heroine-split-reverse {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .heroine-values-grid,
    .heroine-post-grid,
    .heroine-support-grid {
        grid-template-columns: 1fr 1fr;
    }

    .heroine-photo-portrait img {
        height: 500px;
    }

    .heroine-footer-cta-inner {
        grid-template-columns: 1fr;
    }
}

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

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
    :root {
        --h-container: 100%;
    }

    .site-header {
        position: relative;
    }

    body.admin-bar .site-header {
        top: 0;
    }

    .heroine-header-inner {
        width: calc(100% - 28px);
        min-height: 74px;
        padding: 12px 0;
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }

    .site-logo img,
    .custom-logo {
        width: 60px;
        height: 60px;
        max-height: 60px;
    }

    .heroine-menu-toggle {
        display: inline-flex;
    }

    .main-navigation {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        width: 100%;
        background: #ffffff;
        border: 1px solid var(--h-border);
        box-shadow: 0 18px 50px rgba(29, 25, 33, 0.08);
        padding: 18px;
        z-index: 100;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul,
    .primary-menu {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .main-navigation a {
        font-size: 11px;
        letter-spacing: 0.14em;
        white-space: nowrap;
    }

    .heroine-container {
        width: calc(100% - 28px);
    }

    .heroine-section {
        padding: 68px 0;
    }

    .heroine-hero {
        width: calc(100% - 24px);
        margin-top: 16px;
        grid-template-columns: 1fr;
    }

    .heroine-hero-image,
    .heroine-hero-image img {
        min-height: 320px;
    }

    .heroine-hero-image img {
        object-position: center center;
    }

    .heroine-hero-content {
        padding: 38px 26px 44px;
    }

    .heroine-hero h1 {
        font-size: 39px;
        line-height: 1.02;
        letter-spacing: -0.052em;
    }

    .heroine-hero p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .heroine-actions {
        flex-direction: column;
        gap: 12px;
    }

    .heroine-btn {
        width: 100%;
        min-height: 48px;
    }

    .heroine-text h2,
    .heroine-section-head h2,
    .heroine-section-heading h2,
    .heroine-footer-cta h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .heroine-text p,
    .heroine-section-head p,
    .heroine-section-heading p,
    .heroine-footer-cta p,
    .heroine-content p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-photo-card img,
    .heroine-photo-portrait img {
        height: 330px;
    }

    .heroine-values,
    .heroine-support-strip {
        padding: 64px 0;
    }

    .heroine-values-grid,
    .heroine-post-grid,
    .heroine-support-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .heroine-value-card,
    .heroine-support-grid > div,
    .heroine-post-content,
    .heroine-post-body {
        padding: 26px;
    }

    .heroine-post-image img,
    .heroine-post-thumb img {
        height: 225px;
    }

    .heroine-page-header,
    .heroine-archive-header,
    .heroine-single-header {
        padding: 58px 0 28px;
    }

    .heroine-page-header h1,
    .heroine-archive-header h1,
    .heroine-single-header h1 {
        font-size: 38px;
        line-height: 1.06;
    }

    .heroine-content {
        width: calc(100% - 28px);
        padding: 28px 0 72px;
    }

    .heroine-content h2 {
        font-size: 28px;
    }

    .heroine-content h3 {
        font-size: 23px;
    }

    .heroine-single-featured {
        width: calc(100% - 28px);
    }

    .heroine-footer-cta {
        padding: 62px 0;
    }

    .heroine-footer-cta-inner {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .heroine-footer-bottom {
        width: calc(100% - 28px);
        flex-direction: column;
        gap: 5px;
        padding: 22px 0;
        text-align: center;
        font-size: 12px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .heroine-hero h1 {
        font-size: 34px;
    }

    .heroine-text h2,
    .heroine-section-head h2,
    .heroine-section-heading h2,
    .heroine-footer-cta h2 {
        font-size: 29px;
    }

    .heroine-hero-content {
        padding: 34px 22px 38px;
    }

    .heroine-photo-card img,
    .heroine-photo-portrait img {
        height: 290px;
    }
}
/* =========================================================
   JS STATES / REVEAL
========================================================= */

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(29, 25, 33, 0.07);
}

.heroine-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.heroine-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.heroine-user-is-tabbing a:focus,
.heroine-user-is-tabbing button:focus,
.heroine-user-is-tabbing input:focus,
.heroine-user-is-tabbing textarea:focus,
.heroine-user-is-tabbing select:focus {
    outline: 3px solid rgba(217, 150, 232, 0.45);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .heroine-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}
/* =========================================================
   HEROINE FOOTER FINAL DESIGN
========================================================= */

.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--h-border);
    margin-top: 0;
}

/* CTA footer block */
.heroine-footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #fbf7fc 0%, #f5edf7 100%);
    border-top: 1px solid var(--h-border);
}

.heroine-footer-cta-inner {
    width: min(var(--h-container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

.heroine-footer-cta-content h2 {
    max-width: 620px;
    margin: 0 0 14px;
    color: var(--h-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-footer-cta-content p {
    max-width: 620px;
    margin: 0;
    color: var(--h-text);
    font-size: 16px;
    line-height: 1.75;
}

.heroine-footer-cta-action {
    display: flex;
    justify-content: flex-end;
}

/* Main footer */
.heroine-footer-main {
    background: #ffffff;
    padding: 76px 0;
    border-top: 1px solid rgba(238, 232, 240, 0.9);
}

.heroine-footer-main-inner {
    width: min(var(--h-container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 1fr;
    gap: 72px;
    align-items: flex-start;
}

.heroine-footer-brand {
    max-width: 460px;
}

.heroine-footer-brand .site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    text-decoration: none;
}

.heroine-footer-brand .site-logo img,
.footer-logo img,
.footer-logo .custom-logo {
    width: 76px;
    height: 76px;
    max-height: 76px;
    object-fit: contain;
    display: block;
}

.heroine-footer-brand p {
    margin: 0;
    color: var(--h-text);
    font-size: 15.5px;
    line-height: 1.8;
    max-width: 430px;
}

.heroine-footer-links h3,
.heroine-footer-contact h3 {
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.heroine-footer-links ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.heroine-footer-links li {
    list-style: none !important;
    margin: 0 0 13px !important;
    padding: 0 !important;
}

.heroine-footer-links a,
.heroine-footer-link {
    color: var(--h-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.heroine-footer-links a:hover,
.heroine-footer-link:hover {
    color: var(--h-purple-dark);
}

.heroine-footer-contact p {
    max-width: 360px;
    margin: 0 0 20px;
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.8;
}

.heroine-footer-link {
    display: inline-flex;
    color: var(--h-purple-dark);
    font-weight: 850;
    letter-spacing: 0.03em;
}

/* Bottom copyright */
.heroine-footer-bottom {
    width: 100%;
    min-height: 72px;
    padding: 22px 20px;
    background: #ffffff;
    border-top: 1px solid var(--h-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--h-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.heroine-footer-bottom a {
    color: var(--h-purple-dark);
    text-decoration: none;
    font-weight: 800;
}

.heroine-footer-bottom a:hover {
    text-decoration: underline;
}

.heroine-footer-separator {
    color: #d8cedd;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .heroine-footer-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .heroine-footer-cta-action {
        justify-content: flex-start;
    }

    .heroine-footer-main-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .heroine-footer-brand {
        grid-column: 1 / -1;
        max-width: 640px;
    }
}

@media (max-width: 760px) {
    .heroine-footer-cta {
        padding: 62px 0;
    }

    .heroine-footer-cta-inner,
    .heroine-footer-main-inner {
        width: calc(100% - 28px);
    }

    .heroine-footer-cta-content h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .heroine-footer-cta-content p {
        font-size: 15.5px;
    }

    .heroine-footer-cta-action,
    .heroine-footer-cta-action .heroine-btn {
        width: 100%;
    }

    .heroine-footer-main {
        padding: 56px 0;
    }

    .heroine-footer-main-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .heroine-footer-brand .site-logo img,
    .footer-logo img,
    .footer-logo .custom-logo {
        width: 68px;
        height: 68px;
        max-height: 68px;
    }

    .heroine-footer-bottom {
        flex-direction: column;
        gap: 5px;
        padding: 24px 16px;
        font-size: 12px;
    }

    .heroine-footer-separator {
        display: none;
    }
}
/* =========================================================
   404 PAGE FINAL DESIGN
========================================================= */

.heroine-error-page {
    background: #ffffff;
}

.heroine-404 {
    padding: 92px 0 100px;
    background:
        radial-gradient(circle at 12% 18%, rgba(217, 150, 232, 0.18), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    overflow: hidden;
}

.heroine-404-inner {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.heroine-404-content h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.heroine-404-content p {
    max-width: 620px;
    margin: 0 0 18px;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.82;
}

.heroine-404-visual {
    position: relative;
}

.heroine-404-image {
    overflow: hidden;
    background: var(--h-soft);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.12);
}

.heroine-404-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.heroine-404-card {
    position: absolute;
    left: -34px;
    bottom: 34px;
    width: min(320px, calc(100% - 30px));
    padding: 26px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(29, 25, 33, 0.14);
    border: 1px solid var(--h-border);
}

.heroine-404-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--h-purple);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.heroine-404-card strong {
    display: block;
    color: var(--h-dark);
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.heroine-404-links {
    padding: 96px 0;
    background: #ffffff;
}

.heroine-404-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.heroine-404-link-card {
    display: block;
    min-height: 250px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--h-border);
    box-shadow: 0 18px 54px rgba(29, 25, 33, 0.06);
    text-decoration: none;
    transition: all 0.22s ease;
}

.heroine-404-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 82px rgba(29, 25, 33, 0.11);
    border-color: rgba(217, 150, 232, 0.55);
}

.heroine-404-link-card span {
    display: block;
    margin-bottom: 34px;
    color: var(--h-purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.heroine-404-link-card h3 {
    margin: 0 0 14px;
    color: var(--h-dark);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-404-link-card p {
    margin: 0;
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.7;
}

/* 404 responsive */
@media (max-width: 1024px) {
    .heroine-404-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .heroine-404-image img {
        height: 460px;
    }

    .heroine-404-card {
        left: 28px;
    }

    .heroine-404-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .heroine-404 {
        padding: 64px 0 72px;
    }

    .heroine-404-inner {
        gap: 38px;
    }

    .heroine-404-content h1 {
        font-size: 42px;
        line-height: 1.04;
    }

    .heroine-404-content p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-404-image img {
        height: 320px;
    }

    .heroine-404-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .heroine-404-card strong {
        font-size: 18px;
    }

    .heroine-404-links {
        padding: 68px 0;
    }

    .heroine-404-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .heroine-404-link-card {
        min-height: auto;
        padding: 26px;
    }

    .heroine-404-link-card span {
        margin-bottom: 20px;
    }
}
/* =========================================================
   ABOUT PAGE FINAL DESIGN
========================================================= */

.heroine-about-page {
    background: #ffffff;
}

.heroine-about-hero {
    padding: 72px 0 92px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    overflow: hidden;
}

.heroine-about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.heroine-about-hero-content h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: clamp(46px, 5.8vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.heroine-about-hero-content p {
    max-width: 650px;
    margin: 0;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.82;
}

.heroine-about-hero-image {
    overflow: hidden;
    background: var(--h-soft);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.11);
}

.heroine-about-hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.heroine-about-statement {
    padding: 100px 0;
    background: var(--h-dark);
    color: #ffffff;
}

.heroine-about-statement-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.heroine-about-statement h2 {
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.heroine-about-statement p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.8;
}

.heroine-about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.heroine-about-card {
    min-height: 300px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--h-border);
    box-shadow: 0 18px 54px rgba(29, 25, 33, 0.06);
    transition: all 0.22s ease;
}

.heroine-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 82px rgba(29, 25, 33, 0.1);
    border-color: rgba(217, 150, 232, 0.55);
}

.heroine-about-card span {
    display: block;
    margin-bottom: 34px;
    color: var(--h-purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.heroine-about-card h3 {
    margin: 0 0 14px;
    color: var(--h-dark);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-about-card p {
    margin: 0;
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.72;
}

.heroine-about-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.heroine-about-list li {
    position: relative;
    margin: 0 0 14px;
    padding-left: 30px;
    color: var(--h-dark);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 750;
}

.heroine-about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 12px;
    height: 12px;
    background: var(--h-purple);
    border-radius: 999px;
    transform: translateY(-50%);
}

.heroine-about-cta {
    padding: 88px 0;
    background: linear-gradient(135deg, #fbf7fc 0%, #f4ecf7 100%);
    border-top: 1px solid var(--h-border);
}

.heroine-about-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.heroine-about-cta h2 {
    max-width: 640px;
    margin: 0 0 14px;
    color: var(--h-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-about-cta p {
    max-width: 640px;
    margin: 0;
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .heroine-about-hero-inner {
        gap: 54px;
    }

    .heroine-about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .heroine-about-hero-inner {
        grid-template-columns: 1fr;
    }

    .heroine-about-hero-image img {
        height: 480px;
    }

    .heroine-about-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 760px) {
    .heroine-about-hero {
        padding: 58px 0 68px;
    }

    .heroine-about-hero-content h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .heroine-about-hero-content p,
    .heroine-about-statement p,
    .heroine-about-cta p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-about-hero-image img {
        height: 330px;
    }

    .heroine-about-statement {
        padding: 70px 0;
    }

    .heroine-about-statement h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .heroine-about-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .heroine-about-card {
        min-height: auto;
        padding: 26px;
    }

    .heroine-about-card span {
        margin-bottom: 22px;
    }

    .heroine-about-cta {
        padding: 66px 0;
    }

    .heroine-about-cta h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .heroine-about-cta .heroine-btn {
        width: 100%;
    }
}
/* =========================================================
   CONTACT PAGE FINAL DESIGN
========================================================= */

.heroine-contact-page {
    background: #ffffff;
}

.heroine-contact-hero {
    padding: 72px 0 92px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    overflow: hidden;
}

.heroine-contact-hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.heroine-contact-hero-content h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: clamp(46px, 5.8vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.heroine-contact-hero-content p {
    max-width: 650px;
    margin: 0;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.82;
}

.heroine-contact-hero-image {
    overflow: hidden;
    background: var(--h-soft);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.11);
}

.heroine-contact-hero-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.heroine-contact-main {
    background: #ffffff;
}

.heroine-contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 72px;
    align-items: flex-start;
}

.heroine-contact-info h2 {
    margin: 0 0 22px;
    color: var(--h-dark);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-contact-info > p {
    max-width: 600px;
    margin: 0;
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.85;
}

.heroine-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
}

.heroine-contact-card {
    padding: 26px;
    background: var(--h-soft-2);
    border: 1px solid var(--h-border);
}

.heroine-contact-card span {
    display: block;
    margin-bottom: 16px;
    color: var(--h-purple);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.heroine-contact-card h3 {
    margin: 0 0 10px;
    color: var(--h-dark);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-contact-card p {
    margin: 0;
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.72;
}

.heroine-contact-form-card {
    padding: 44px;
    background: #ffffff;
    border: 1px solid var(--h-border);
    box-shadow: 0 28px 90px rgba(29, 25, 33, 0.1);
}

.heroine-contact-form-card h2 {
    margin: 0 0 30px;
    color: var(--h-dark);
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

/* Contact Form 7 styling */
.heroine-contact-form .wpcf7 {
    margin: 0;
}

.heroine-contact-form .wpcf7-form {
    display: grid;
    gap: 18px;
}

.heroine-contact-form p {
    margin: 0;
}

.heroine-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--h-dark);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.heroine-contact-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
}

.heroine-contact-form input[type="text"],
.heroine-contact-form input[type="email"],
.heroine-contact-form input[type="tel"],
.heroine-contact-form input[type="url"],
.heroine-contact-form textarea,
.heroine-contact-form select {
    width: 100%;
    min-height: 54px;
    padding: 15px 17px;
    border: 1px solid var(--h-border);
    background: #fbf9fb;
    color: var(--h-dark);
    font-size: 15px;
    line-height: 1.4;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.heroine-contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.heroine-contact-form input:focus,
.heroine-contact-form textarea:focus,
.heroine-contact-form select:focus {
    border-color: var(--h-purple);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(217, 150, 232, 0.16);
}

.heroine-contact-form input[type="submit"],
.heroine-contact-form .wpcf7-submit {
    display: inline-flex;
    width: auto;
    min-width: 190px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 1px solid var(--h-purple);
    background: var(--h-purple);
    color: #ffffff;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(217, 150, 232, 0.28);
    transition: all 0.22s ease;
}

.heroine-contact-form input[type="submit"]:hover,
.heroine-contact-form .wpcf7-submit:hover {
    background: var(--h-purple-dark);
    border-color: var(--h-purple-dark);
    transform: translateY(-2px);
}

.heroine-contact-form .wpcf7-spinner {
    margin-left: 12px;
}

.heroine-contact-form .wpcf7-not-valid-tip {
    margin-top: 7px;
    color: #b3261e;
    font-size: 13px;
}

.heroine-contact-form .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 14px 16px !important;
    border: 1px solid var(--h-border) !important;
    color: var(--h-dark);
    background: var(--h-soft);
    font-size: 14px;
    line-height: 1.6;
}

.heroine-contact-note {
    padding: 86px 0;
    background: var(--h-dark);
    color: #ffffff;
}

.heroine-contact-note-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.heroine-contact-note h2 {
    max-width: 660px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-contact-note p {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.8;
}

/* Contact responsive */
@media (max-width: 1024px) {
    .heroine-contact-hero-inner,
    .heroine-contact-grid,
    .heroine-contact-note-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .heroine-contact-hero-image img {
        height: 460px;
    }
}

@media (max-width: 760px) {
    .heroine-contact-hero {
        padding: 58px 0 68px;
    }

    .heroine-contact-hero-content h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .heroine-contact-hero-content p,
    .heroine-contact-info > p,
    .heroine-contact-note p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-contact-hero-image img {
        height: 320px;
    }

    .heroine-contact-grid {
        gap: 38px;
    }

    .heroine-contact-info h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .heroine-contact-form-card {
        padding: 28px;
    }

    .heroine-contact-form-card h2 {
        font-size: 30px;
    }

    .heroine-contact-form input[type="submit"],
    .heroine-contact-form .wpcf7-submit {
        width: 100%;
    }

    .heroine-contact-note {
        padding: 68px 0;
    }

    .heroine-contact-note h2 {
        font-size: 32px;
        line-height: 1.08;
    }
}
/* =========================================================
   TEAM PAGE FINAL DESIGN
========================================================= */

.heroine-team-page {
    background: #ffffff;
}

.heroine-team-hero {
    padding: 72px 0 92px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    overflow: hidden;
}

.heroine-team-hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.heroine-team-hero-content h1 {
    max-width: 780px;
    margin: 0 0 24px;
    color: var(--h-dark);
    font-size: clamp(46px, 5.8vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.heroine-team-hero-content p {
    max-width: 650px;
    margin: 0;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.82;
}

.heroine-team-hero-image {
    overflow: hidden;
    background: var(--h-soft);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.11);
}

.heroine-team-hero-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Team cards */

.heroine-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.heroine-team-card {
    background: #ffffff;
    border: 1px solid var(--h-border);
    box-shadow: 0 22px 70px rgba(29, 25, 33, 0.08);
    overflow: hidden;
    transition: all 0.22s ease;
}

.heroine-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.12);
    border-color: rgba(217, 150, 232, 0.55);
}

.heroine-team-photo {
    background: var(--h-soft);
    overflow: hidden;
}

.heroine-team-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.heroine-team-card:hover .heroine-team-photo img {
    transform: scale(1.035);
}

.heroine-team-content {
    padding: 34px;
}

.heroine-team-role {
    display: block;
    margin-bottom: 16px;
    color: var(--h-purple);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.heroine-team-content h3 {
    margin: 0 0 18px;
    color: var(--h-dark);
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-team-content p {
    margin: 0 0 16px;
    color: var(--h-text);
    font-size: 15.5px;
    line-height: 1.78;
}

.heroine-team-content p:last-child {
    margin-bottom: 0;
}

/* Values */

.heroine-team-values {
    padding: 96px 0;
    background: var(--h-dark);
    color: #ffffff;
}

.heroine-team-values-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 76px;
    align-items: start;
}

.heroine-team-values h2 {
    max-width: 680px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.heroine-team-values-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.heroine-team-values-list > div {
    padding: 28px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.12);
}

.heroine-team-values-list span {
    display: block;
    margin-bottom: 18px;
    color: var(--h-purple);
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.heroine-team-values-list h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-team-values-list p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.75;
}

/* Team responsive */

@media (max-width: 1024px) {
    .heroine-team-hero-inner,
    .heroine-team-values-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .heroine-team-hero-image img {
        height: 460px;
    }

    .heroine-team-photo img {
        height: 460px;
    }
}

@media (max-width: 860px) {
    .heroine-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .heroine-team-hero {
        padding: 58px 0 68px;
    }

    .heroine-team-hero-content h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .heroine-team-hero-content p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-team-hero-image img {
        height: 320px;
    }

    .heroine-team-photo img {
        height: 380px;
    }

    .heroine-team-content {
        padding: 28px;
    }

    .heroine-team-content h3 {
        font-size: 32px;
    }

    .heroine-team-values {
        padding: 70px 0;
    }

    .heroine-team-values h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .heroine-team-values-list > div {
        padding: 26px;
    }
}

@media (max-width: 420px) {
    .heroine-team-photo img {
        height: 330px;
    }
}
/* =========================================================
   BLOG ARCHIVE + SINGLE FINAL DESIGN
========================================================= */

/* Archive hero */

.heroine-blog-archive {
    background: #ffffff;
}

.heroine-blog-hero {
    padding: 84px 0 78px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    border-bottom: 1px solid var(--h-border);
}

.heroine-blog-hero-inner {
    max-width: 860px;
    text-align: center;
}

.heroine-blog-hero h1 {
    margin: 0 0 20px;
    color: var(--h-dark);
    font-size: clamp(46px, 5.8vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.heroine-blog-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.82;
}

/* Archive layout */

.heroine-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 54px;
    align-items: start;
}

.heroine-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.heroine-blog-card {
    background: #ffffff;
    border: 1px solid var(--h-border);
    box-shadow: 0 22px 64px rgba(29, 25, 33, 0.07);
    overflow: hidden;
    transition: all 0.22s ease;
}

.heroine-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.11);
    border-color: rgba(217, 150, 232, 0.55);
}

.heroine-blog-card-image {
    display: block;
    background: var(--h-soft);
    overflow: hidden;
    text-decoration: none;
}

.heroine-blog-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.heroine-blog-card:hover .heroine-blog-card-image img {
    transform: scale(1.04);
}

.heroine-blog-card-content {
    padding: 30px;
}

.heroine-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    color: #b6adbb;
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.heroine-blog-meta a {
    color: var(--h-purple-dark);
    text-decoration: none;
}

.heroine-blog-card-content h2 {
    margin: 0 0 16px;
    color: var(--h-dark);
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.heroine-blog-card-content h2 a {
    color: var(--h-dark);
    text-decoration: none;
}

.heroine-blog-card-content h2 a:hover {
    color: var(--h-purple-dark);
}

.heroine-blog-card-content p {
    margin: 0 0 22px;
    color: var(--h-text);
    font-size: 15.5px;
    line-height: 1.75;
}

/* Sidebar */

.heroine-blog-sidebar,
.heroine-single-sidebar {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 22px;
}

.heroine-sidebar-box {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--h-border);
    box-shadow: 0 18px 54px rgba(29, 25, 33, 0.06);
}

.heroine-sidebar-soft {
    background:
        radial-gradient(circle at 20% 10%, rgba(217, 150, 232, 0.18), transparent 36%),
        var(--h-soft);
}

.heroine-sidebar-box h3 {
    margin: 0 0 18px;
    color: var(--h-dark);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.heroine-sidebar-box p {
    margin: 0 0 22px;
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.75;
}

.heroine-sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.heroine-sidebar-box li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--h-border);
    color: var(--h-text);
    font-size: 15px;
    line-height: 1.45;
}

.heroine-sidebar-box li:last-child {
    border-bottom: 0;
}

.heroine-sidebar-box li a {
    color: var(--h-dark);
    text-decoration: none;
    font-weight: 800;
}

.heroine-sidebar-box li a:hover {
    color: var(--h-purple-dark);
}

.heroine-sidebar-box strong {
    color: var(--h-dark);
}

/* Empty state */

.heroine-empty-state {
    max-width: 720px;
    margin: 0 auto;
    padding: 70px 34px;
    background: var(--h-soft);
    text-align: center;
    border: 1px solid var(--h-border);
}

.heroine-empty-state h2 {
    margin: 0 0 16px;
    color: var(--h-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.heroine-empty-state p {
    max-width: 520px;
    margin: 0 auto 26px;
    color: var(--h-text);
    font-size: 16px;
    line-height: 1.75;
}

/* Single hero */

.heroine-single-page {
    background: #ffffff;
}

.heroine-single-hero {
    padding: 72px 0 88px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    border-bottom: 1px solid var(--h-border);
}

.heroine-single-hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.heroine-single-hero-content h1 {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--h-dark);
    font-size: clamp(44px, 5.6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.heroine-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--h-muted);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.heroine-single-meta a {
    color: var(--h-purple-dark);
    text-decoration: none;
}

.heroine-single-hero-image {
    overflow: hidden;
    background: var(--h-soft);
    box-shadow: 0 30px 90px rgba(29, 25, 33, 0.11);
}

.heroine-single-hero-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Single body */

.heroine-single-body-section {
    padding: 88px 0 100px;
    background: #ffffff;
}

.heroine-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 64px;
    align-items: start;
}

.heroine-article-content {
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.9;
}

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

.heroine-article-content p {
    margin: 0 0 24px;
    color: var(--h-text);
    font-size: 18px;
    line-height: 1.9;
}

.heroine-article-content h2 {
    margin: 48px 0 18px;
    color: var(--h-dark);
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.heroine-article-content h3 {
    margin: 38px 0 16px;
    color: var(--h-dark);
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.035em;
    font-weight: 850;
}

.heroine-article-content ul,
.heroine-article-content ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.heroine-article-content li {
    margin-bottom: 10px;
}

.heroine-article-content a {
    color: var(--h-purple-dark);
    font-weight: 800;
}

.heroine-article-content blockquote {
    margin: 42px 0;
    padding: 30px 34px;
    background: var(--h-soft);
    border-left: 4px solid var(--h-purple);
}

.heroine-article-content blockquote p {
    color: var(--h-dark);
    font-size: 22px;
    line-height: 1.6;
}

.heroine-article-content img {
    width: 100%;
    height: auto;
    margin: 34px 0;
    box-shadow: 0 18px 54px rgba(29, 25, 33, 0.08);
}

.heroine-page-links {
    margin-top: 34px;
}

/* Pagination */

.heroine-pagination {
    margin-top: 54px;
    text-align: center;
}

.heroine-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.heroine-pagination a,
.heroine-pagination span {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--h-border);
    background: #ffffff;
    color: var(--h-dark);
    text-decoration: none;
    font-weight: 850;
    font-size: 13px;
}

.heroine-pagination .current,
.heroine-pagination a:hover {
    background: var(--h-purple);
    border-color: var(--h-purple);
    color: #ffffff;
}

/* Blog responsive */

@media (max-width: 1100px) {
    .heroine-blog-layout,
    .heroine-single-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 42px;
    }

    .heroine-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .heroine-single-hero-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .heroine-single-hero-image img {
        height: 460px;
    }
}

@media (max-width: 900px) {
    .heroine-blog-layout,
    .heroine-single-layout {
        grid-template-columns: 1fr;
    }

    .heroine-blog-sidebar,
    .heroine-single-sidebar {
        position: static;
    }

    .heroine-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .heroine-blog-hero {
        padding: 58px 0 62px;
    }

    .heroine-blog-hero h1,
    .heroine-single-hero-content h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .heroine-blog-hero p {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .heroine-blog-card-image img {
        height: 230px;
    }

    .heroine-blog-card-content {
        padding: 26px;
    }

    .heroine-blog-card-content h2 {
        font-size: 25px;
    }

    .heroine-sidebar-box {
        padding: 26px;
    }

    .heroine-single-hero {
        padding: 58px 0 68px;
    }

    .heroine-single-hero-inner {
        gap: 36px;
    }

    .heroine-single-hero-image img {
        height: 320px;
    }

    .heroine-single-body-section {
        padding: 66px 0 74px;
    }

    .heroine-single-layout {
        gap: 42px;
    }

    .heroine-article-content,
    .heroine-article-content p {
        font-size: 16.5px;
        line-height: 1.82;
    }

    .heroine-article-content h2 {
        font-size: 29px;
    }

    .heroine-article-content h3 {
        font-size: 24px;
    }

    .heroine-article-content blockquote {
        padding: 24px;
    }

    .heroine-article-content blockquote p {
        font-size: 19px;
    }
}
/* =========================================================
   PRIVACY POLICY / LEGAL PAGE FIX
========================================================= */

body.privacy-policy,
body.page-slug-politika-privatnosti {
    background: #ffffff;
}

/* Page header */
body.privacy-policy .heroine-page-header,
body.page-slug-politika-privatnosti .heroine-page-header {
    padding: 82px 0 34px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    border-bottom: 1px solid var(--h-border);
}

body.privacy-policy .heroine-page-header h1,
body.page-slug-politika-privatnosti .heroine-page-header h1 {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    text-align: center;
}

/* Main legal content container */
body.privacy-policy .heroine-content,
body.page-slug-politika-privatnosti .heroine-content {
    width: min(860px, calc(100% - 40px)) !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    padding: 70px 0 100px !important;
}

/* Gutenberg content inside */
body.privacy-policy .heroine-content > *,
body.page-slug-politika-privatnosti .heroine-content > * {
    max-width: 100%;
}

/* Paragraphs */
body.privacy-policy .heroine-content p,
body.page-slug-politika-privatnosti .heroine-content p {
    margin: 0 0 22px;
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.9;
}

/* Headings */
body.privacy-policy .heroine-content h2,
body.page-slug-politika-privatnosti .heroine-content h2 {
    margin: 48px 0 18px;
    color: var(--h-dark);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    font-weight: 900;
}

body.privacy-policy .heroine-content h3,
body.page-slug-politika-privatnosti .heroine-content h3 {
    margin: 34px 0 14px;
    color: var(--h-dark);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 850;
}

/* Lists */
body.privacy-policy .heroine-content ul,
body.page-slug-politika-privatnosti .heroine-content ul,
body.privacy-policy .heroine-content ol,
body.page-slug-politika-privatnosti .heroine-content ol {
    margin: 0 0 28px;
    padding-left: 24px;
    color: var(--h-text);
}

body.privacy-policy .heroine-content li,
body.page-slug-politika-privatnosti .heroine-content li {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.8;
}

/* Links */
body.privacy-policy .heroine-content a,
body.page-slug-politika-privatnosti .heroine-content a {
    color: var(--h-purple-dark);
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Strong text */
body.privacy-policy .heroine-content strong,
body.page-slug-politika-privatnosti .heroine-content strong {
    color: var(--h-dark);
    font-weight: 850;
}

/* Optional nice intro paragraph */
body.privacy-policy .heroine-content > p:first-of-type,
body.page-slug-politika-privatnosti .heroine-content > p:first-of-type {
    padding: 28px 32px;
    margin-bottom: 34px;
    background: var(--h-soft);
    border: 1px solid var(--h-border);
    color: var(--h-dark);
    font-size: 18px;
    line-height: 1.8;
}

/* Remove strange full width blocks if Gutenberg adds them */
body.privacy-policy .alignfull,
body.page-slug-politika-privatnosti .alignfull,
body.privacy-policy .alignwide,
body.page-slug-politika-privatnosti .alignwide {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Mobile */
@media (max-width: 760px) {
    body.privacy-policy .heroine-page-header,
    body.page-slug-politika-privatnosti .heroine-page-header {
        padding: 58px 0 28px;
    }

    body.privacy-policy .heroine-page-header h1,
    body.page-slug-politika-privatnosti .heroine-page-header h1 {
        font-size: 38px;
    }

    body.privacy-policy .heroine-content,
    body.page-slug-politika-privatnosti .heroine-content {
        width: calc(100% - 28px) !important;
        padding: 48px 0 72px !important;
    }

    body.privacy-policy .heroine-content p,
    body.page-slug-politika-privatnosti .heroine-content p,
    body.privacy-policy .heroine-content li,
    body.page-slug-politika-privatnosti .heroine-content li {
        font-size: 15.5px;
        line-height: 1.78;
    }

    body.privacy-policy .heroine-content h2,
    body.page-slug-politika-privatnosti .heroine-content h2 {
        margin-top: 38px;
        font-size: 27px;
    }

    body.privacy-policy .heroine-content > p:first-of-type,
    body.page-slug-politika-privatnosti .heroine-content > p:first-of-type {
        padding: 22px;
        font-size: 16px;
    }
}
/* =========================================================
   DEFAULT PAGE / PRIVACY PAGE HARD FIX
========================================================= */

.heroine-default-page {
    background: #ffffff;
}

.heroine-page-header {
    padding: 82px 0 38px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 150, 232, 0.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbf7fc 100%);
    border-bottom: 1px solid var(--h-border);
    text-align: center;
}

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

.heroine-page-header h1 {
    max-width: 860px;
    margin: 0 auto;
    color: var(--h-dark);
    font-size: clamp(38px, 4.8vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.heroine-page-body {
    width: 100%;
    padding: 70px 0 100px;
    background: #ffffff;
}

.heroine-page-content {
    width: min(860px, calc(100% - 40px));
    max-width: 860px;
    margin: 0 auto;
    color: var(--h-text);
}

.heroine-page-content > * {
    max-width: 100%;
}

.heroine-page-content p {
    margin: 0 0 22px;
    color: var(--h-text);
    font-size: 17px;
    line-height: 1.9;
}

.heroine-page-content h2 {
    margin: 48px 0 18px;
    color: var(--h-dark);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.heroine-page-content h3 {
    margin: 34px 0 14px;
    color: var(--h-dark);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 850;
}

.heroine-page-content ul,
.heroine-page-content ol {
    margin: 0 0 28px;
    padding-left: 24px;
    color: var(--h-text);
}

.heroine-page-content li {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.8;
}

.heroine-page-content a {
    color: var(--h-purple-dark);
    font-weight: 800;
    text-underline-offset: 3px;
}

.heroine-page-content strong {
    color: var(--h-dark);
    font-weight: 850;
}

.heroine-page-content > p:first-of-type {
    padding: 28px 32px;
    margin-bottom: 34px;
    background: var(--h-soft);
    border: 1px solid var(--h-border);
    color: var(--h-dark);
    font-size: 18px;
    line-height: 1.8;
}

/* force Gutenberg wide/full blocks to stay inside legal/default pages */
.heroine-page-content .alignfull,
.heroine-page-content .alignwide,
.heroine-page-content .wp-block-group,
.heroine-page-content .wp-block-columns,
.heroine-page-content .wp-block-cover {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (max-width: 760px) {
    .heroine-page-header {
        padding: 58px 0 28px;
    }

    .heroine-page-header .heroine-container,
    .heroine-page-content {
        width: calc(100% - 28px);
    }

    .heroine-page-header h1 {
        font-size: 38px;
    }

    .heroine-page-body {
        padding: 48px 0 72px;
    }

    .heroine-page-content p,
    .heroine-page-content li {
        font-size: 15.5px;
        line-height: 1.78;
    }

    .heroine-page-content h2 {
        margin-top: 38px;
        font-size: 27px;
    }

    .heroine-page-content > p:first-of-type {
        padding: 22px;
        font-size: 16px;
    }
}
/* =========================================================
   FOOTER CONTACT + MOBILE CALL BUTTON
========================================================= */

.heroine-footer-contact-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 20px;
}

.heroine-footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--h-dark);
    text-decoration: none;
    font-size: 15.5px;
    line-height: 1.4;
    font-weight: 800;
    transition: color 0.2s ease;
}

.heroine-footer-contact-item:hover {
    color: var(--h-purple-dark);
}

.heroine-footer-contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--h-soft);
    border: 1px solid var(--h-border);
    color: var(--h-purple-dark);
    border-radius: 999px;
}

.heroine-mobile-call {
    display: none;
}

/* Mobile floating call button */
@media (max-width: 760px) {
    .heroine-mobile-call {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 9999;
        width: 58px;
        height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--h-purple);
        color: #ffffff;
        border-radius: 999px;
        text-decoration: none;
        box-shadow: 0 18px 45px rgba(217, 150, 232, 0.42);
        border: 1px solid rgba(255,255,255,0.45);
    }

    .heroine-mobile-call::before {
        content: "";
        position: absolute;
        inset: -7px;
        border-radius: 999px;
        border: 1px solid rgba(217, 150, 232, 0.38);
        animation: heroineCallPulse 1.9s ease-out infinite;
    }

    .heroine-mobile-call svg {
        position: relative;
        z-index: 2;
    }

    .heroine-mobile-call:hover,
    .heroine-mobile-call:focus {
        background: var(--h-purple-dark);
        color: #ffffff;
    }

    body {
        padding-bottom: 74px;
    }
}

@keyframes heroineCallPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}