/* ==========================================================
   LITTLE HERO — AMARU PAGE
   File: assets/css/amaru-page.css
========================================================== */

.amaru-hero-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f4ead8;
}

.amaru-modern-hero {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 790px;
    padding: 5.5rem 0 10.5rem;

    overflow: hidden;
    isolation: isolate;
}

/* ==========================================================
   FULL-WIDTH FAMILY ILLUSTRATION
========================================================== */

.amaru-hero-media {
    position: absolute;
    inset: 0;
    z-index: -4;

    overflow: hidden;
}

.amaru-hero-background {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.01);

    filter:
        saturate(1.04) contrast(1.01) brightness(1.02);
}

/* ==========================================================
   WARM EDITORIAL LIGHT

   Creates a soft cream reading area on the left without
   darkening the family or covering the tropical atmosphere.
========================================================== */

.amaru-hero-light {
    background:
        linear-gradient(90deg,
            rgba(255, 249, 237, 0.98) 0%,
            rgba(255, 248, 233, 0.94) 20%,
            rgba(255, 246, 228, 0.76) 34%,
            rgba(255, 244, 224, 0.34) 45%,
            rgba(255, 243, 220, 0.08) 55%,
            transparent 66%);
}

/* ==========================================================
   NATURAL SUN GLOW

   Supports the existing sunlight rather than covering it.
========================================================== */

.amaru-hero-sun-glow {
    position: absolute;
    inset: 0;
    z-index: -2;

    pointer-events: none;

    background:
        radial-gradient(circle at 15% 18%,
            rgba(255, 236, 190, 0.46) 0%,
            rgba(255, 229, 170, 0.18) 27%,
            transparent 53%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 52%,
            rgba(80, 57, 34, 0.08) 100%);
}

/* ==========================================================
   CONTENT POSITIONING
========================================================== */

.amaru-modern-hero .container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.amaru-modern-hero-copy {
    position: relative;
    z-index: 3;

    width: min(100%, 650px);
    max-width: 650px;
}

/* ==========================================================
   VALUES STRIP POSITIONING
========================================================== */

.amaru-values-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6.25rem;
    z-index: 4;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);

    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.25rem);

    padding: 1.35rem clamp(1.25rem, 3vw, 2.25rem);

    border: 1px solid rgba(111, 81, 47, 0.12);
    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(255, 253, 247, 0.96) 0%,
            rgba(255, 247, 232, 0.94) 100%);

    box-shadow:
        0 22px 52px rgba(76, 54, 31, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ==========================================================
   SCROLL CUE POSITIONING
========================================================== */

.amaru-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    z-index: 5;

    transform: translateX(-50%);
}

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

@media (max-width: 1199px) {

    .amaru-modern-hero {
        min-height: 740px;
    }

    .amaru-modern-hero-copy {
        width: min(100%, 590px);
        max-width: 590px;
    }

    .amaru-hero-background {
        object-position: 57% center;
    }
}

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

@media (max-width: 991px) {

    .amaru-modern-hero {
        min-height: 830px;
        padding: 4.75rem 0 10rem;
        align-items: flex-start;
    }

    .amaru-hero-background {
        object-position: 67% center;
        transform: scale(1.02);
    }

    .amaru-hero-light {
        background:
            linear-gradient(180deg,
                rgba(255, 249, 238, 0.98) 0%,
                rgba(255, 248, 234, 0.93) 34%,
                rgba(255, 245, 226, 0.62) 57%,
                rgba(255, 243, 220, 0.12) 76%,
                transparent 100%);
    }

    .amaru-modern-hero-copy {
        width: min(100%, 650px);
        max-width: 650px;
        margin-inline: auto;

        text-align: center;
    }

    .amaru-values-strip {
        bottom: -7.5rem;

        grid-template-columns: 1fr;
        gap: 0;

        width: min(100%, 680px);
        margin-inline: auto;

        padding: 0.55rem 1.4rem;
    }

    .amaru-scroll-cue {
        display: none;
    }
}

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

@media (max-width: 575px) {

    .amaru-modern-hero {
        min-height: 780px;
        padding: 3.75rem 0 11rem;
    }

    .amaru-hero-background {
        object-position: 70% center;
        transform: scale(1.035);

        filter:
            saturate(1.02) contrast(1) brightness(1.03);
    }

    .amaru-hero-light {
        background:
            linear-gradient(180deg,
                rgba(255, 250, 241, 0.99) 0%,
                rgba(255, 248, 235, 0.96) 38%,
                rgba(255, 245, 226, 0.72) 59%,
                rgba(255, 243, 220, 0.2) 78%,
                transparent 100%);
    }

    .amaru-hero-sun-glow {
        background:
            radial-gradient(circle at 18% 13%,
                rgba(255, 235, 189, 0.36) 0%,
                transparent 48%);
    }

    .amaru-values-strip {
        bottom: -8.9rem;

        width: calc(100% - 1rem);
        padding: 0.45rem 1rem;

        border-radius: 20px;
    }
}

/* ==========================================================
   AMARU PREMIUM EDITORIAL HERO
   SECTION 2 — COPY + PHILOSOPHY + BUTTONS
========================================================== */

/* ==========================================================
   EYEBROW
========================================================== */

.amaru-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;

    margin-bottom: 1.35rem;
    padding: 0.58rem 1rem;

    border: 1px solid rgba(93, 73, 48, 0.13);
    border-radius: 999px;

    background: rgba(255, 252, 244, 0.8);
    color: #315f69;

    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    box-shadow:
        0 12px 28px rgba(88, 64, 38, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amaru-eyebrow i {
    color: #db9141;
    font-size: 0.9rem;
}

/* ==========================================================
   MAIN HEADLINE
========================================================== */

.amaru-modern-hero-copy h1 {
    max-width: 9.5ch;

    margin: 0 0 1.25rem;

    color: #173b4d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.65rem, 6.7vw, 6.75rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.055em;

    text-wrap: balance;

    text-shadow:
        0 3px 18px rgba(255, 255, 255, 0.62);
}

.amaru-modern-hero-copy h1 span {
    display: block;
    color: #bc5c65;
}

/* ==========================================================
   CORE PHILOSOPHY
========================================================== */

.amaru-hero-philosophy {
    position: relative;

    max-width: 34rem;

    margin: 0 0 1.35rem;
    padding-left: 1.15rem;

    color: #315e66;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.18rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.5;
}

.amaru-hero-philosophy::before {
    content: "";

    position: absolute;
    top: 0.18rem;
    bottom: 0.18rem;
    left: 0;

    width: 3px;
    border-radius: 999px;

    background:
        linear-gradient(180deg,
            #e5a04e 0%,
            #c96a70 100%);
}

/* ==========================================================
   SUPPORTING DESCRIPTION
========================================================== */

.amaru-hero-description {
    max-width: 38rem;
    margin-bottom: 1.5rem;

    color: #2f3f4c;
    /* Darker, richer blue-gray */

    font-size: 1.06rem;
    line-height: 1.8;

    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.65);
}

/* ==========================================================
   BUTTON GROUP
========================================================== */

.amaru-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 0;
}

/* Shared button foundation */

.amaru-primary-btn,
.amaru-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.68rem;

    min-height: 56px;
    padding: 0.92rem 1.4rem;

    border-radius: 999px;

    font-size: 0.94rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease;
}

/* Primary action */

.amaru-primary-btn {

    position: relative;
    overflow: hidden;
    isolation: isolate;

    border: 1px solid #a91f2d;

    background:
        linear-gradient(180deg,
            #ef6c77 0%,
            #df4b58 42%,
            #c62f3d 72%,
            #a91f2d 100%);

    color: #ffffff;

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .45),
        inset 0 -3px 0 rgba(102, 18, 24, .20),
        0 14px 30px rgba(189, 54, 64, .30);

}

.amaru-primary-btn::before {

    content: "";

    position: absolute;

    top: 3px;
    left: 8%;
    right: 8%;

    height: 46%;

    border-radius: 999px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .55),
            rgba(255, 255, 255, 0));

    pointer-events: none;

}

.amaru-primary-btn:hover,
.amaru-primary-btn:focus-visible {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, .50),
        inset 0 -3px 0 rgba(102, 18, 24, .24),
        0 20px 40px rgba(189, 54, 64, .38);

}

/* Secondary action */

.amaru-secondary-btn {
    border: 1px solid rgba(42, 81, 87, 0.18);

    background: rgba(255, 252, 244, 0.78);
    color: #315c64;

    box-shadow:
        0 14px 30px rgba(81, 57, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.amaru-secondary-btn:hover,
.amaru-secondary-btn:focus-visible {
    border-color: rgba(42, 81, 87, 0.3);

    background: rgba(255, 255, 255, 0.94);
    color: #234c54;

    transform: translateY(-3px);

    box-shadow:
        0 20px 38px rgba(81, 57, 32, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

/* Icons */

.amaru-primary-btn i,
.amaru-secondary-btn i {
    font-size: 0.92rem;
}

/* Keyboard focus */

.amaru-primary-btn:focus-visible,
.amaru-secondary-btn:focus-visible {
    outline: 3px solid rgba(49, 95, 105, 0.4);
    outline-offset: 4px;
}

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

@media (max-width: 1199px) {

    .amaru-modern-hero-copy h1 {
        font-size: clamp(3.35rem, 6vw, 5.8rem);
    }

    .amaru-hero-description {
        max-width: 34rem;
    }
}

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

@media (max-width: 991px) {

    .amaru-eyebrow {
        margin-inline: auto;
    }

    .amaru-modern-hero-copy h1 {
        max-width: 10ch;
        margin-inline: auto;
    }

    .amaru-hero-philosophy {
        max-width: 31rem;

        margin-right: auto;
        margin-left: auto;
        padding-left: 0;

        text-align: center;
    }

    .amaru-hero-philosophy::before {
        display: none;
    }

    .amaru-hero-description {
        max-width: 36rem;
        margin-right: auto;
        margin-left: auto;
    }

    .amaru-hero-actions {
        justify-content: center;
    }
}

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

@media (max-width: 575px) {

    .amaru-eyebrow {
        margin-bottom: 1.1rem;
        padding: 0.5rem 0.78rem;

        font-size: 0.66rem;
        letter-spacing: 0.09em;
    }

    .amaru-modern-hero-copy h1 {
        max-width: 100%;

        margin-bottom: 1.05rem;

        font-size: clamp(2.75rem, 13.5vw, 3.75rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .amaru-hero-philosophy {
        margin-bottom: 1.1rem;

        font-size: 1.08rem;
        line-height: 1.45;
    }

    .amaru-hero-description {
        margin-bottom: 1.7rem;

        font-size: 0.98rem;
        line-height: 1.68;
    }

    .amaru-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .amaru-primary-btn,
    .amaru-secondary-btn {
        width: 100%;
        min-height: 55px;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .amaru-primary-btn,
    .amaru-secondary-btn {
        transition: none;
    }
}

/* ==========================================================
   AMARU PREMIUM EDITORIAL HERO
   SECTION 3 — VALUES STRIP + SCROLL CUE
========================================================== */

/* ==========================================================
   VALUE ITEMS
========================================================== */

.amaru-value-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;

    min-width: 0;
}

.amaru-value-icon {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(255, 227, 180, 0.95) 0%,
            rgba(245, 194, 130, 0.9) 100%);

    color: #8e5c2d;

    box-shadow:
        0 10px 24px rgba(118, 78, 38, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.amaru-value-icon i {
    font-size: 1rem;
}

.amaru-value-item>div {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;

    min-width: 0;
}

.amaru-value-item strong {
    color: #214a55;

    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.2;
}

.amaru-value-item>div>span {
    color: #687375;

    font-size: 0.8rem;
    line-height: 1.4;
}

/* ==========================================================
   VALUE DIVIDERS
========================================================== */

.amaru-value-divider {
    width: 1px;
    height: 48px;

    background:
        linear-gradient(180deg,
            transparent 0%,
            rgba(112, 86, 54, 0.18) 22%,
            rgba(112, 86, 54, 0.18) 78%,
            transparent 100%);
}

/* ==========================================================
   VALUES STRIP HOVER POLISH
========================================================== */

.amaru-values-strip {
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.amaru-values-strip:hover {
    transform: translateY(-4px);

    border-color: rgba(111, 81, 47, 0.18);

    box-shadow:
        0 28px 62px rgba(76, 54, 31, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

/* ==========================================================
   SCROLL CUE
========================================================== */

.amaru-scroll-cue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;

    padding: 0.65rem 0.95rem;

    border-radius: 999px;

    background: rgba(255, 251, 241, 0.76);
    color: #315f69;

    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-decoration: none;

    box-shadow:
        0 10px 24px rgba(76, 54, 31, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.amaru-scroll-cue:hover,
.amaru-scroll-cue:focus-visible {
    color: #234d56;
    background: rgba(255, 255, 255, 0.94);

    transform: translate(-50%, -3px);

    box-shadow:
        0 16px 30px rgba(76, 54, 31, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.amaru-scroll-cue:focus-visible {
    outline: 3px solid rgba(49, 95, 105, 0.38);
    outline-offset: 4px;
}

.amaru-scroll-cue i {
    font-size: 0.72rem;

    animation: amaru-scroll-bounce 1.9s ease-in-out infinite;
}

@keyframes amaru-scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

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

@media (max-width: 991px) {

    .amaru-value-item {
        padding: 1rem 0;
    }

    .amaru-value-item+.amaru-value-divider {
        width: 100%;
        height: 1px;

        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(112, 86, 54, 0.16) 18%,
                rgba(112, 86, 54, 0.16) 82%,
                transparent 100%);
    }

    .amaru-value-icon {
        width: 44px;
        height: 44px;
    }

    .amaru-value-item strong {
        font-size: 0.92rem;
    }

    .amaru-value-item>div>span {
        font-size: 0.81rem;
    }
}

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

@media (max-width: 575px) {

    .amaru-value-item {
        gap: 0.8rem;
        padding: 0.9rem 0;
    }

    .amaru-value-icon {
        width: 40px;
        height: 40px;
    }

    .amaru-value-icon i {
        font-size: 0.9rem;
    }

    .amaru-value-item strong {
        font-size: 0.86rem;
    }

    .amaru-value-item>div>span {
        font-size: 0.76rem;
        line-height: 1.35;
    }
}

/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .amaru-values-strip,
    .amaru-scroll-cue {
        transition: none;
    }

    .amaru-scroll-cue i {
        animation: none;
    }
}

/* ==========================================================
   AMARU HERO — IMAGE POSITION CORRECTION
========================================================== */

.amaru-hero-background {
    object-position: right center;
}

/* ==========================================================
   AMARU HERO — REMOVE LEGACY WIDTH CONSTRAINTS
========================================================== */

body.amaru-page .amaru-hero-shell {
    position: relative;
    width: 100%;
    max-width: none;
    overflow: hidden;
}

body.amaru-page .amaru-modern-hero {
    position: relative;
    width: 100%;
    max-width: none;
    overflow: hidden;
}

body.amaru-page .amaru-hero-media {
    position: absolute;
    inset: 0;
    z-index: -4;

    display: block;
    width: 100%;
    max-width: none;
    height: 100%;

    margin: 0;
    padding: 0;
    overflow: hidden;
}

body.amaru-page .amaru-hero-background {
    display: block;

    width: 100%;
    max-width: none;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: right center;
}

/* ==========================================================
   AMARU HERO — SHOW FULL VALUES PANEL INSIDE HERO
========================================================== */

.amaru-modern-hero {
    min-height: 900px;
    padding-bottom: 3rem;
}

.amaru-values-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    margin-top: 2.25rem;
}

.amaru-scroll-cue {
    display: none;
}

/* ==========================================================
   THE HEART OF AMARU
   COMPACT EDITORIAL BRIDGE SECTION
========================================================== */

.amaru-heart-section {
    position: relative;
    padding: 4.25rem 0 4.75rem;
    background: #ffffff;
    overflow: hidden;
}

/* ==========================================================
   SECTION INTRODUCTION
========================================================== */

.amaru-heart-heading {
    max-width: 760px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.amaru-heart-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;

    margin-bottom: 0.9rem;
    padding: 0.48rem 0.9rem;

    border: 1px solid rgba(41, 91, 99, 0.13);
    border-radius: 999px;

    background: rgba(250, 246, 237, 0.86);
    color: #315f69;

    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;

    box-shadow:
        0 9px 22px rgba(69, 50, 30, 0.06);
}

.amaru-heart-eyebrow i {
    color: #d99645;
    font-size: 0.82rem;
}

.amaru-heart-heading h2 {
    margin: 0 0 0.7rem;

    color: #173b4d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.amaru-heart-heading>p {
    max-width: 630px;
    margin: 0 auto;

    color: #687476;

    font-size: 1rem;
    line-height: 1.65;
}

/* ==========================================================
   COLORED EDITORIAL CONTAINER
========================================================== */

.amaru-heart-editorial {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(260px, 0.78fr) minmax(0, 1.22fr);

    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);

    padding: clamp(1.6rem, 3vw, 2.6rem);

    border: 1px solid rgba(116, 84, 48, 0.11);
    border-radius: 28px;

    background:
        radial-gradient(circle at 10% 12%,
            rgba(255, 222, 168, 0.2),
            transparent 35%),
        linear-gradient(135deg,
            #fffaf1 0%,
            #f9f2e6 52%,
            #eef7f4 100%);

    box-shadow:
        0 24px 58px rgba(73, 52, 29, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    overflow: hidden;
}

.amaru-heart-editorial::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -90px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(73, 162, 164, 0.12) 0%,
            transparent 70%);

    pointer-events: none;
}

/* ==========================================================
   EDITORIAL PORTRAIT
========================================================== */

.amaru-heart-portrait {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 360px;
    margin: 0;

    padding: 9px;

    border-radius: 23px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 20px 42px rgba(62, 45, 27, 0.14),
        0 7px 18px rgba(62, 45, 27, 0.07);

    transform: rotate(-0.6deg);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.amaru-heart-portrait:hover {
    transform: rotate(0deg) translateY(-4px);

    box-shadow:
        0 27px 54px rgba(62, 45, 27, 0.17),
        0 10px 23px rgba(62, 45, 27, 0.08);
}

.amaru-heart-portrait img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;

    border-radius: 16px;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(1.02) contrast(1.01);
}

/* ==========================================================
   EDITORIAL COPY
========================================================== */

.amaru-heart-copy {
    position: relative;
    z-index: 2;
}

.amaru-heart-kicker {
    display: block;

    margin-bottom: 0.6rem;

    color: #bc5c65;

    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.amaru-heart-copy h3 {
    max-width: 19ch;
    margin: 0 0 1rem;

    color: #173b4d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.amaru-heart-copy p {
    max-width: 62ch;
    margin: 0 0 0.8rem;

    color: #58676a;

    font-size: 0.96rem;
    line-height: 1.7;
}

.amaru-heart-copy p:last-of-type {
    margin-bottom: 1.35rem;
}

/* ==========================================================
   VALUE CHIPS
========================================================== */

.amaru-heart-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.amaru-heart-value {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;

    padding: 0.58rem 0.85rem;

    border: 1px solid rgba(48, 91, 98, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.72);
    color: #315f69;

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;

    box-shadow:
        0 8px 18px rgba(73, 52, 29, 0.06);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.amaru-heart-value:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 12px 24px rgba(73, 52, 29, 0.09);
}

.amaru-heart-value i {
    color: #d78a48;
    font-size: 0.78rem;
}

.amaru-heart-value:nth-child(3) i {
    color: #cf6173;
}

.amaru-heart-value:nth-child(4) i {
    color: #557d69;
}

/* ==========================================================
   WIDE CLOSING ILLUSTRATION
   Remains outside the colored editorial container
========================================================== */

.amaru-heart-panorama {
    position: relative;

    width: min(100%, 1040px);
    margin: 2.1rem auto 0;

    padding: 8px;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 21px 48px rgba(54, 42, 27, 0.12),
        0 7px 17px rgba(54, 42, 27, 0.05);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.amaru-heart-panorama:hover {
    transform: translateY(-4px);

    box-shadow:
        0 28px 58px rgba(54, 42, 27, 0.15),
        0 10px 21px rgba(54, 42, 27, 0.06);
}

.amaru-heart-panorama img {
    display: block;

    width: 100%;
    height: clamp(210px, 24vw, 290px);

    border-radius: 17px;

    object-fit: cover;
    object-position: center 56%;

    filter:
        saturate(1.03) contrast(1.01);
}

/* ==========================================================
   BOOK SECTION SCROLL POSITION
========================================================== */

#amaru-books {
    scroll-margin-top: 110px;
}

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

@media (max-width: 991px) {

    .amaru-heart-section {
        padding: 3.75rem 0 4.25rem;
    }

    .amaru-heart-editorial {
        grid-template-columns: 1fr;
        gap: 1.75rem;

        max-width: 760px;
        margin-inline: auto;

        text-align: center;
    }

    .amaru-heart-portrait {
        width: min(100%, 340px);
        margin-inline: auto;
    }

    .amaru-heart-copy h3,
    .amaru-heart-copy p {
        margin-right: auto;
        margin-left: auto;
    }

    .amaru-heart-values {
        justify-content: center;
    }

    .amaru-heart-panorama {
        width: min(100%, 860px);
        margin-top: 1.8rem;
    }
}

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

@media (max-width: 575px) {

    .amaru-heart-section {
        padding: 3rem 0 3.5rem;
    }

    .amaru-heart-heading {
        margin-bottom: 1.6rem;
    }

    .amaru-heart-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.085em;
    }

    .amaru-heart-heading h2 {
        font-size: 2rem;
    }

    .amaru-heart-heading>p {
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .amaru-heart-editorial {
        gap: 1.45rem;

        padding: 1.2rem;
        border-radius: 22px;
    }

    .amaru-heart-portrait {
        padding: 7px;
        border-radius: 19px;
    }

    .amaru-heart-portrait img {
        border-radius: 13px;
    }

    .amaru-heart-kicker {
        font-size: 0.67rem;
        letter-spacing: 0.075em;
    }

    .amaru-heart-copy h3 {
        font-size: 1.65rem;
    }

    .amaru-heart-copy p {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .amaru-heart-values {
        gap: 0.5rem;
    }

    .amaru-heart-value {
        padding: 0.53rem 0.7rem;
        font-size: 0.72rem;
    }

    .amaru-heart-panorama {
        margin-top: 1.45rem;
        padding: 6px;

        border-radius: 19px;
    }

    .amaru-heart-panorama img {
        height: 205px;
        border-radius: 14px;
        object-position: 57% center;
    }
}

/* ==========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .amaru-heart-portrait,
    .amaru-heart-value,
    .amaru-heart-panorama {
        transition: none;
    }

    .amaru-heart-portrait:hover,
    .amaru-heart-value:hover,
    .amaru-heart-panorama:hover {
        transform: none;
    }
}

/* ==========================================================
   AMARU BOOK CARDS
   PREMIUM BOOK METADATA
========================================================== */

.amaru-book-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;

    width: 100%;
    margin: 0.9rem 0 1.15rem;
}

/* Individual metadata badges */

.amaru-book-meta>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;

    min-height: 34px;
    padding: 0.48rem 0.72rem;

    border: 1px solid rgba(28, 72, 87, 0.11);
    border-radius: 999px;

    background: rgba(248, 252, 251, 0.92);
    color: #315f69;

    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;

    box-shadow:
        0 7px 16px rgba(40, 67, 71, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.amaru-book-meta>span:hover {
    transform: translateY(-2px);

    border-color: rgba(28, 72, 87, 0.18);

    box-shadow:
        0 11px 22px rgba(40, 67, 71, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

/* Metadata icons */

.amaru-book-meta i {
    flex: 0 0 auto;

    color: #d78a48;
    font-size: 0.78rem;
}

/* Spanish-only notice */

.amaru-book-meta>span:first-child {
    border-color: rgba(193, 80, 103, 0.14);

    background:
        linear-gradient(135deg,
            rgba(255, 242, 244, 0.96) 0%,
            rgba(255, 249, 244, 0.96) 100%);

    color: #a74459;
}

.amaru-book-meta>span:first-child i {
    color: #c3556b;
}

/* Book number */

.amaru-book-meta>span:nth-child(2) {
    background: rgba(247, 251, 253, 0.94);
}

/* Page count */

.amaru-book-meta>span:nth-child(3) {
    background: rgba(255, 249, 237, 0.94);
}

/* ==========================================================
   CARD CONTENT SPACING
========================================================== */

.amaru-card-content h3 {
    margin-bottom: 0;
}

.amaru-card-content>p {
    margin-top: 0;
}

/* Keeps actions aligned toward the bottom of cards */

.amaru-modern-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amaru-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.amaru-card-content>p {
    flex-grow: 1;
}

.amaru-card-actions {
    margin-top: auto;
}

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

@media (max-width: 991px) {

    .amaru-book-meta {
        gap: 0.48rem;
    }

    .amaru-book-meta>span {
        padding: 0.46rem 0.65rem;
        font-size: 0.72rem;
    }
}

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

@media (max-width: 575px) {

    .amaru-book-meta {
        flex-direction: column;
        align-items: stretch;

        gap: 0.48rem;
        margin: 0.85rem 0 1rem;
    }

    .amaru-book-meta>span {
        width: 100%;
        min-height: 36px;

        padding: 0.52rem 0.7rem;

        border-radius: 12px;
        font-size: 0.74rem;
    }
}

/* ==========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .amaru-book-meta>span {
        transition: none;
    }

    .amaru-book-meta>span:hover {
        transform: none;
    }
}

/* ==========================================================
   AMARU CLOSING MISSION INVITATION
========================================================== */

.amaru-mission-invitation {
    position: relative;
    padding: 4.75rem 0 5.25rem;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fffaf2 52%,
            #f7efe3 100%);
    overflow: hidden;
}

.amaru-mission-invitation::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(229, 160, 91, 0.15) 0%,
            rgba(229, 160, 91, 0.04) 48%,
            transparent 72%);

    pointer-events: none;
}

.amaru-mission-invitation::after {
    content: "";
    position: absolute;
    bottom: -170px;
    left: -140px;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(74, 157, 165, 0.12) 0%,
            rgba(74, 157, 165, 0.03) 48%,
            transparent 72%);

    pointer-events: none;
}

/* ==========================================================
   MAIN EDITORIAL CARD
========================================================== */

.amaru-mission-card {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr) minmax(360px, 0.92fr);

    align-items: stretch;
    gap: clamp(2rem, 4.5vw, 4.5rem);

    padding: clamp(1.25rem, 2.5vw, 2rem);

    border: 1px solid rgba(103, 76, 45, 0.12);
    border-radius: 30px;

    background:
        linear-gradient(135deg,
            rgba(255, 253, 247, 0.98) 0%,
            rgba(255, 248, 235, 0.96) 55%,
            rgba(239, 248, 246, 0.95) 100%);

    box-shadow:
        0 28px 68px rgba(71, 49, 27, 0.13),
        0 10px 24px rgba(71, 49, 27, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    overflow: hidden;
}

/* ==========================================================
   EDITORIAL IMAGE
========================================================== */

.amaru-mission-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;

    border-radius: 23px;

    background: #f4eadc;

    box-shadow:
        0 18px 42px rgba(54, 42, 27, 0.14);
}

.amaru-mission-media::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 58%,
            rgba(54, 38, 22, 0.12) 100%);

    pointer-events: none;
}

.amaru-mission-media img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 470px;

    object-fit: cover;
    object-position: 86% center;

    filter:
        saturate(1.03) contrast(1.01) brightness(1.02);

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.amaru-mission-card:hover .amaru-mission-media img {
    transform: scale(1.025);

    filter:
        saturate(1.05) contrast(1.02) brightness(1.03);
}

/* ==========================================================
   MISSION COPY
========================================================== */

.amaru-mission-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(1.4rem, 2.5vw, 2.4rem) clamp(0.5rem, 1.5vw, 1.25rem);
}

.amaru-mission-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.55rem;

    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;

    border: 1px solid rgba(188, 92, 101, 0.13);
    border-radius: 999px;

    background: rgba(255, 245, 244, 0.88);
    color: #a94d5d;

    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;

    box-shadow:
        0 9px 22px rgba(88, 58, 36, 0.06);
}

.amaru-mission-eyebrow i {
    color: #c95e70;
    font-size: 0.8rem;
}

.amaru-mission-copy h2 {
    max-width: 16ch;

    margin: 0 0 1rem;

    color: #173b4d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.amaru-mission-lead {
    max-width: 48ch;

    margin: 0 0 1rem;

    color: #315f69;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.55;
}

.amaru-mission-copy>p:not(.amaru-mission-lead):not(.amaru-mission-note) {
    max-width: 60ch;
    margin: 0 0 0.85rem;

    color: #5b696b;

    font-size: 0.96rem;
    line-height: 1.72;
}

/* ==========================================================
   ACTION BUTTONS
========================================================== */

.amaru-mission-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;

    margin-top: 1.25rem;
}

.amaru-mission-primary-btn,
.amaru-mission-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    min-height: 56px;
    padding: 0.92rem 1.35rem;

    border-radius: 999px;

    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease;
}

.amaru-mission-primary-btn {
    border: 1px solid rgba(155, 53, 76, 0.14);

    background:
        linear-gradient(135deg,
            #ef7782 0%,
            #cf5569 100%);

    color: #ffffff;

    box-shadow:
        0 17px 34px rgba(190, 74, 96, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.amaru-mission-primary-btn:hover,
.amaru-mission-primary-btn:focus-visible {
    color: #ffffff;
    transform: translateY(-3px);

    box-shadow:
        0 23px 43px rgba(190, 74, 96, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.amaru-mission-secondary-btn {
    border: 1px solid rgba(47, 91, 98, 0.18);

    background: rgba(255, 255, 255, 0.76);
    color: #315f69;

    box-shadow:
        0 13px 28px rgba(74, 55, 34, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.amaru-mission-secondary-btn:hover,
.amaru-mission-secondary-btn:focus-visible {
    border-color: rgba(47, 91, 98, 0.28);

    background: rgba(255, 255, 255, 0.96);
    color: #244e56;

    transform: translateY(-3px);

    box-shadow:
        0 19px 36px rgba(74, 55, 34, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.amaru-mission-primary-btn:focus-visible,
.amaru-mission-secondary-btn:focus-visible {
    outline: 3px solid rgba(49, 95, 105, 0.38);
    outline-offset: 4px;
}

/* ==========================================================
   SUPPORT NOTE
========================================================== */

.amaru-mission-note {
    position: relative;

    max-width: 54ch;

    margin: 1.2rem 0 0;
    padding-left: 1rem;

    color: #6d7473;

    font-size: 0.82rem;
    line-height: 1.55;
}

.amaru-mission-note::before {
    content: "";

    position: absolute;
    top: 0.15rem;
    bottom: 0.15rem;
    left: 0;

    width: 3px;
    border-radius: 999px;

    background:
        linear-gradient(180deg,
            #e0a050 0%,
            #c85d70 100%);
}

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

@media (max-width: 991px) {

    .amaru-mission-invitation {
        padding: 4rem 0 4.5rem;
    }

    .amaru-mission-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;

        max-width: 820px;
        margin-inline: auto;
    }

    .amaru-mission-media img {
        min-height: 380px;
        max-height: 460px;
    }

    .amaru-mission-copy {
        align-items: center;

        padding: 1.4rem 1rem 1.8rem;

        text-align: center;
    }

    .amaru-mission-eyebrow {
        align-self: center;
    }

    .amaru-mission-copy h2,
    .amaru-mission-lead,
    .amaru-mission-copy>p,
    .amaru-mission-note {
        margin-right: auto;
        margin-left: auto;
    }

    .amaru-mission-actions {
        justify-content: center;
    }

    .amaru-mission-note {
        padding-left: 0;
    }

    .amaru-mission-note::before {
        display: none;
    }
}

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

@media (max-width: 575px) {

    .amaru-mission-invitation {
        padding: 3.25rem 0 3.75rem;
    }

    .amaru-mission-card {
        padding: 0.75rem;

        border-radius: 23px;
    }

    .amaru-mission-media {
        border-radius: 18px;
    }

    .amaru-mission-media img {
        min-height: 270px;
        max-height: 320px;

        object-position: 61% center;
    }

    .amaru-mission-copy {
        padding: 1.25rem 0.75rem 1.5rem;
    }

    .amaru-mission-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.085em;
    }

    .amaru-mission-copy h2 {
        font-size: 2rem;
    }

    .amaru-mission-lead {
        font-size: 1rem;
    }

    .amaru-mission-copy>p:not(.amaru-mission-lead):not(.amaru-mission-note) {
        font-size: 0.92rem;
        line-height: 1.64;
    }

    .amaru-mission-actions {
        flex-direction: column;
        align-items: stretch;

        gap: 0.75rem;
    }

    .amaru-mission-primary-btn,
    .amaru-mission-secondary-btn {
        width: 100%;
        min-height: 55px;
    }

    .amaru-mission-note {
        font-size: 0.78rem;
    }
}

/* ==========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .amaru-mission-media img,
    .amaru-mission-primary-btn,
    .amaru-mission-secondary-btn {
        transition: none;
    }

    .amaru-mission-card:hover .amaru-mission-media img,
    .amaru-mission-primary-btn:hover,
    .amaru-mission-secondary-btn:hover {
        transform: none;
    }
}

/* ==========================================================
   AMARU HERO — CLEAN TABLET / MOBILE STACK
   Image first, content second, values third
========================================================== */

@media (max-width: 991px) {

    body.amaru-page .amaru-modern-hero {
        display: block;
        min-height: 0;
        padding: 0 0 3.5rem;
        background: #fffaf1;
        overflow: visible;
    }

    /* Image becomes a normal block at the top */
    body.amaru-page .amaru-hero-media {
        position: relative;
        inset: auto;
        z-index: 1;

        width: 100%;
        height: 520px;

        overflow: hidden;
    }

    body.amaru-page .amaru-hero-background {
        display: block;
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: 67% center;

        transform: none;
    }

    /* Remove all desktop light layers */
    body.amaru-page .amaru-hero-light,
    body.amaru-page .amaru-hero-sun-glow {
        display: none;
    }

    /* Content moves fully below the image */
    body.amaru-page .amaru-modern-hero .container {
        position: relative;
        z-index: 2;

        width: 100%;
        margin: 0;
        padding-top: 2.75rem;
    }

    body.amaru-page .amaru-modern-hero-copy {
        position: relative;
        z-index: 2;

        width: min(100%, 680px);
        max-width: 680px;

        margin: 0 auto;
        padding: 0 1.25rem;

        text-align: center;
    }

    body.amaru-page .amaru-eyebrow {
        margin-right: auto;
        margin-left: auto;
    }

    body.amaru-page .amaru-modern-hero-copy h1 {
        max-width: 11ch;
        margin-right: auto;
        margin-left: auto;

        color: #173b4d;
        text-shadow: none;
    }

    body.amaru-page .amaru-modern-hero-copy h1 span {
        color: #bc5c65;
    }

    body.amaru-page .amaru-hero-philosophy {
        max-width: 34rem;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;

        text-align: center;
    }

    body.amaru-page .amaru-hero-philosophy::before {
        display: none;
    }


    body.amaru-page .amaru-hero-description {
        max-width: 38rem;
        margin-right: auto;
        margin-left: auto;
    }

    body.amaru-page .amaru-hero-actions {
        justify-content: center;
    }

    /* Values become part of normal page flow */
    body.amaru-page .amaru-values-strip {
        position: relative;
        inset: auto;

        display: grid;
        grid-template-columns: 1fr;

        width: min(calc(100% - 2rem), 680px);

        margin: 2.4rem auto 0;
        padding: 0.5rem 1.3rem;

        transform: none;
    }

    body.amaru-page .amaru-value-item {
        padding: 1rem 0;
        text-align: left;
    }

    body.amaru-page .amaru-value-divider {
        width: 100%;
        height: 1px;

        background:
            linear-gradient(90deg,
                transparent 0%,
                rgba(112, 86, 54, 0.16) 18%,
                rgba(112, 86, 54, 0.16) 82%,
                transparent 100%);
    }

    body.amaru-page .amaru-scroll-cue {
        display: none;
    }

    /* Image becomes a normal block at the top */
    body.amaru-page .amaru-hero-media {
        position: relative;
        inset: auto;
        z-index: 1;

        width: 100%;
        height: 520px;

        overflow: hidden;
        border-radius: 0;
    }

    body.amaru-page .amaru-hero-background {
        display: block;
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: 67% center;

        transform: none;
        border-radius: 0;
    }
}

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

@media (max-width: 575px) {

    body.amaru-page .amaru-hero-media {
        height: 390px;
    }

    body.amaru-page .amaru-hero-background {
        object-position: 64% center;
    }

    body.amaru-page .amaru-modern-hero .container {
        padding-top: 2rem;
    }

    body.amaru-page .amaru-modern-hero-copy {
        padding: 0 1rem;
    }

    body.amaru-page .amaru-modern-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.7rem, 13vw, 3.6rem);
        line-height: 0.98;
    }

    body.amaru-page .amaru-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.amaru-page .amaru-primary-btn,
    body.amaru-page .amaru-secondary-btn {
        width: 100%;
    }

    body.amaru-page .amaru-values-strip {
        width: calc(100% - 1.5rem);
        margin-top: 2rem;
    }
}

body.amaru-page .amaru-modern-hero-copy p.amaru-hero-description {
    color: #24425b !important;
}