/* =========================================================
   HAPPINESS PROGRAM
   FINAL CLEAN RESPONSIVE CSS
========================================================= */

:root {
    --ink: #24302f;
    --dark: #202a28;
    --muted: #687371;

    --cream: #fffaf2;
    --paper: #ffffff;
    --soft: #f6eee2;

    --orange: #ef7c22;
    --orange-dark: #d96517;
    --orange-light: #f5a623;

    --line: rgba(36, 48, 47, 0.12);

    --shadow: 0 24px 70px rgba(49, 37, 20, 0.12);
    --soft-shadow: 0 12px 40px rgba(49, 37, 20, 0.08);

    --radius: 30px;
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;

    font-family: "DM Sans", sans-serif;

    color: var(--ink);
    background: var(--cream);

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
}

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


/* =========================================================
   TOP STRIP
========================================================= */

.top-strip {
    background: var(--dark);
    color: #fff;

    font-size: 13px;
}

.top-strip-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-strip a {
    font-weight: 700;
}

.top-strip a:hover {
    color: var(--orange-light);
}


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

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    background: rgba(255, 250, 242, 0.94);

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

    border-bottom: 1px solid rgba(36, 48, 47, 0.08);
}

.nav-wrap {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 30px;
}

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

    flex-shrink: 0;
}

.brand img {
    width: 170px;
    height: auto;

    display: block;
}

.desktop-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 25px;

    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    color: var(--ink);
    opacity: 0.78;

    transition: 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--orange);
    opacity: 1;
}

.nav-cta {
    flex-shrink: 0;

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

    padding: 12px 22px;

    border-radius: 999px;

    background: var(--orange);
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(239, 124, 34, 0.25);
}

.menu-toggle {
    display: none;

    margin-left: auto;

    border: 0;
    background: transparent;

    color: var(--ink);

    font-size: 27px;
    line-height: 1;
}


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

.mobile-menu {
    display: none;

    padding: 12px 20px 22px;

    background: rgba(255, 250, 242, 0.98);

    border-top: 1px solid var(--line);
}

.mobile-menu.open {
    display: grid;
}

.mobile-menu a {
    padding: 13px 0;

    border-bottom: 1px solid var(--line);

    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--orange);
}


/* =========================================================
   COMMON
========================================================= */

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.18em;
}

.section-label {
    margin-bottom: 24px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;

    line-height: 1.08;

    margin: 0;
}

h2 {
    letter-spacing: -0.03em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(239, 124, 34, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.55);

    border: 1px solid var(--line);
}

.btn-ghost:hover {
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            #fff1d2 0,
            #ffe9be 19%,
            transparent 40%
        ),
        linear-gradient(
            125deg,
            #fffaf2 0%,
            #fff7ea 55%,
            #ffe9c9 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    right: -180px;
    top: 10px;

    border: 1px solid rgba(239, 124, 34, 0.13);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(239, 124, 34, 0.035),
        0 0 0 180px rgba(239, 124, 34, 0.025);
}

.hero-rays {
    position: absolute;
    inset: 0;

    background:
        repeating-conic-gradient(
            from 15deg at 78% 45%,
            transparent 0 10deg,
            rgba(239, 124, 34, 0.025) 10.5deg 11deg
        );

    animation: heroSpin 55s linear infinite;
}

.hero-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.orb-one {
    width: 180px;
    height: 180px;

    top: 8%;
    right: 8%;

    background: rgba(255, 194, 87, 0.13);

    filter: blur(5px);
}

.orb-two {
    width: 120px;
    height: 120px;

    left: 48%;
    bottom: 4%;

    background: rgba(239, 124, 34, 0.08);
}

.orb-three {
    width: 70px;
    height: 70px;

    left: 12%;
    top: 30%;

    background: rgba(245, 166, 35, 0.08);
}

.hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(0, 0.97fr);

    gap: 45px;

    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 5;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(48px, 6vw, 78px);

    letter-spacing: -0.045em;
}

.hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-text {
    max-width: 610px;

    margin: 25px 0;

    color: var(--muted);

    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-trust {
    margin-top: 23px;

    color: #7c8581;

    font-size: 12px;
}

.hero-trust span {
    color: var(--orange);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 600px;

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

    z-index: 5;
}

.hero-image-wrap {
    position: relative;

    width: min(560px, 100%);
    height: 570px;

    overflow: hidden;

    border-radius: 280px 280px 35px 35px;

    background: #f5e4c8;

    box-shadow:
        0 30px 70px rgba(40, 35, 30, 0.18);

    z-index: 6;
}

.hero-real-image {
    position: absolute;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    display: block !important;

    object-fit: cover !important;

    object-position: center center !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 7;

    border: 0;
    outline: 0;

    transition: transform 0.8s ease;
}

.hero-image-wrap:hover .hero-real-image {
    transform: scale(1.035);
}

.hero-image-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -70px;

    border-radius: 50%;

    background: rgba(244, 123, 32, 0.16);

    filter: blur(55px);

    z-index: 2;
    pointer-events: none;
}


/* =========================================================
   FLOATING HERO CARDS
========================================================= */

.floating-card {
    position: absolute;

    z-index: 30;

    display: flex;
    flex-direction: column;

    padding: 16px 20px;

    min-width: 145px;

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

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

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 18px;

    box-shadow: var(--shadow);

    animation: floatingCard 4s ease-in-out infinite;
}

.floating-card strong {
    color: var(--orange);

    font-size: 28px;

    line-height: 1;
}

.floating-card small {
    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;
}

.card-top {
    right: -5px;
    top: 95px;
}

.card-bottom {
    left: -5px;
    bottom: 75px;

    animation-delay: 1.2s;
}




.scroll-cue {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    color: #8c938f;

    font-size: 10px;

    letter-spacing: 0.25em;

    z-index: 5;
}

.scroll-cue span {
    margin-left: 7px;

    color: var(--orange);

    font-size: 16px;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.intro {
    background: #fff;

    position: relative;

    overflow: hidden;
}

.about-layout {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   ABOUT IMAGE AREA
========================================================= */

.about-image-wrap {
    position: relative;

    width: 100%;
    min-width: 0;

    height: 570px;
}

.about-main-image {
    position: absolute;

    left: 0;
    top: 0;

    width: 78%;
    height: 520px;

    overflow: hidden;

    border-radius:
        190px
        190px
        30px
        30px;

    z-index: 1;

    box-shadow:
        0 25px 60px rgba(49, 37, 20, 0.12);
}

.about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 1;
    visibility: visible;

    transition: transform 0.7s ease;
}

.about-main-image:hover img {
    transform: scale(1.04);
}


/* SMALL ABOUT IMAGE */

.about-small-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 250px;

    overflow: hidden;

    border: 10px solid #fff;

    border-radius: 30px;

    z-index: 3;

    box-shadow:
        0 18px 45px rgba(49, 37, 20, 0.14);
}

.about-small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 1;
    visibility: visible;

    transition: transform 0.7s ease;
}

.about-small-image:hover img {
    transform: scale(1.05);
}


/* ABOUT BADGE */

.about-image-badge {
    position: absolute;

    left: 48%;
    top: 50%;

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

    width: 135px;
    height: 135px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: var(--orange);

    color: #fff;

    z-index: 5;

    box-shadow:
        0 20px 45px rgba(244, 123, 32, 0.3);
}

.about-image-badge span {
    font-size: 18px;

    margin-bottom: 4px;
}

.about-image-badge strong {
    font-family: "Playfair Display", serif;

    font-size: 23px;
}

.about-image-badge small {
    margin-top: 3px;

    font-size: 10px;

    opacity: 0.9;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.intro-copy {
    position: relative;

    z-index: 5;
}

.intro-copy h2 {
    max-width: 760px;

    font-size: clamp(42px, 5vw, 66px);

    letter-spacing: -0.04em;
}

.intro-copy h2 em {
    color: var(--orange);

    font-style: normal;
}

.intro-copy p {
    max-width: 760px;

    margin: 24px 0 0;

    color: var(--muted);

    font-size: 17px;
}

.intro-copy .muted {
    color: #8d9691;
}

.about-btn {
    margin-top: 28px;
}


/* =========================================================
   RESEARCH
========================================================= */

.research {
    position: relative;

    display: block;

    width: 100%;

    background: var(--soft);

    overflow: hidden;
}

.research .container {
    position: relative;

    width: min(1160px, calc(100% - 40px));

    margin: 0 auto;
}

.center-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.center-heading h2 {
    font-size: clamp(42px, 5vw, 64px);

    letter-spacing: -0.04em;
}

.center-heading p {
    max-width: 700px;

    margin: 22px auto 0;

    color: var(--muted);

    font-size: 16px;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.stat-card {
    min-height: 245px;

    padding: 30px 25px;

    background: #fff;

    border-radius: 25px;

    box-shadow:
        0 10px 35px rgba(49, 37, 20, 0.05);

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

.stat-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 28px;
}

.stat-value {
    margin: 22px 0 10px;

    font-family: "Playfair Display", serif;

    color: var(--orange);

    font-size: 52px;

    line-height: 1;
}

.stat-title {
    font-size: 17px;

    font-weight: 700;
}

.stat-caption {
    margin-top: 7px;

    color: #929b97;

    font-size: 11px;
}

.footnote {
    margin: 25px 0 0;

    color: #7b827e;

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   HAPPINESS BANNER
========================================================= */

.happiness-banner-section {
    padding: 90px 0;

    background: #fff;
}

.happiness-banner {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    border-radius: 35px;

    box-shadow: var(--shadow);
}

.happiness-banner::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 28, 26, 0.65),
            rgba(20, 28, 26, 0.15),
            transparent
        );

    z-index: 1;
}

.happiness-banner img {
    width: 100%;
    height: 100%;

    min-height: 440px;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}

.happiness-banner:hover img {
    transform: scale(1.035);
}

.happiness-banner-content {
    position: absolute;

    left: 60px;
    top: 50%;

    transform: translateY(-50%);

    max-width: 560px;

    color: #fff;

    z-index: 3;
}

.happiness-banner-content h2 {
    margin-bottom: 28px;

    font-size: clamp(42px, 5vw, 66px);
}


/* =========================================================
   PRACTICE SECTIONS
========================================================= */

.practice {
    background: var(--cream);
}

.practice-alt {
    background: var(--dark);

    color: #fff;
}

.practice-grid {
    display: grid;

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

    gap: 90px;

    align-items: center;
}

.practice-grid.reverse {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
}


/* =========================================================
   PRACTICE IMAGE
========================================================= */

.practice-photo {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;

    border-radius: 36px;

    background: #eee;

    box-shadow: var(--shadow);
}

.practice-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 1;
    visibility: visible;

    transition: transform 0.8s ease;
}

.practice-photo:hover img {
    transform: scale(1.04);
}

.practice-photo-overlay {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 22px 24px;

    border-radius: 20px;

    background: rgba(31, 42, 39, 0.84);

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

    color: #fff;

    display: flex;
    flex-direction: column;

    z-index: 5;
}

.practice-photo-overlay span {
    color: var(--orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.practice-photo-overlay strong {
    margin-top: 5px;

    font-family: "Playfair Display", serif;

    font-size: 28px;
}

.practice-photo-overlay small {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;
}


/* =========================================================
   PRACTICE CONTENT
========================================================= */

.practice-copy h2 {
    font-size: clamp(42px, 5vw, 64px);

    letter-spacing: -0.04em;
}

.practice-copy p {
    margin-top: 22px;

    color: var(--muted);

    font-size: 17px;
}

.practice-alt .practice-copy p {
    color: #b9c1bd;
}

.quote {
    margin: 26px 0;

    padding: 13px 18px;

    border-left: 2px solid var(--orange);

    color: #59625e;

    font-family: "Playfair Display", serif;

    font-size: 18px;
}

.practice-alt .quote {
    color: #d6dcda;
}

.video-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 10px;

    color: var(--orange);

    font-weight: 700;
}

.play {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    color: #fff;

    font-size: 12px;
}


/* =========================================================
   EXPERIENCE CTA
========================================================= */

.experience {
    background: #fff;
}

.experience-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 50px 55px;

    border-radius: 32px;

    background:
        linear-gradient(
            115deg,
            var(--orange),
            var(--orange-light)
        );

    color: #fff;

    box-shadow: var(--shadow);
}

.experience-box h2 {
    font-size: 48px;
}

.experience-box p {
    margin: 10px 0 0;

    opacity: 0.88;
}

.btn-light {
    flex-shrink: 0;

    background: #fff;

    color: var(--orange-dark);
}

.btn-light:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--soft);
}

.contact-grid {
    display: grid;

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

    gap: 70px;

    align-items: center;
}

.contact h2 {
    font-size: clamp(42px, 5vw, 64px);
}

.contact p {
    max-width: 600px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 17px;
}

.phone-card {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 26px 28px;

    background: #fff;

    border-radius: 25px;

    box-shadow:
        0 15px 45px rgba(49, 37, 20, 0.08);

    transition: 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-5px);
}

.phone-card > span {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff0dd;

    font-size: 22px;
}

.phone-card small {
    display: block;

    color: #929995;

    font-size: 10px;

    letter-spacing: 0.15em;
}

.phone-card strong {
    display: block;

    color: var(--orange);

    font-size: 27px;
}

.phone-card b {
    margin-left: auto;

    color: var(--orange);

    font-size: 25px;
}




/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {
    display: none;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: none;
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroSpin {

    to {
        transform: rotate(360deg);
    }

}

@keyframes floatingCard {

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

    50% {
        transform: translateY(-8px);
    }

}


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

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-image-wrap {
        width: 420px;
        height: 500px;
    }

    .about-layout {
        gap: 55px;
    }

    .practice-grid {
        gap: 55px;
    }

}


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

@media (max-width: 900px) {

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 85px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-trust {
        text-align: center;
    }

    .hero-visual {
        min-height: 520px;
        margin-top: 10px;
    }

   .hero-image-wrap {
    width: min(520px, 90vw);
    height: 520px;

    border-radius: 260px 260px 30px 30px;

    overflow: hidden;
}

.hero-real-image {
    width: 100% !important;
    height: 100% !important;

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

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

    .card-top {
        right: 0;
        top: 55px;
    }

    .card-bottom {
        left: 0;
        bottom: 55px;
    }


    /* ABOUT */

    .about-layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-image-wrap {
        max-width: 650px;

        margin: 0 auto;
    }


    /* RESEARCH */

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* PRACTICE */

    .practice-grid,
    .practice-grid.reverse {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .practice-copy {
        order: 2;
    }

    .practice-photo {
        order: 1;
    }


    /* CTA */

    .experience-box {
        flex-direction: column;

        align-items: flex-start;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


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

@media (max-width: 600px) {

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


    /* TOP BAR */

    .top-strip-inner {
        min-height: 34px;

        font-size: 11px;
    }


    /* NAV */

    .nav-wrap {
        min-height: 72px;
    }

    .brand img {
        width: 145px;
    }


    /* COMMON */

    .section {
        padding: 75px 0;
    }


    /* HERO */

    .hero {
        padding: 65px 0 85px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 440px;
        margin-top: 10px;
    }

    .hero-image-wrap {
        width: 88vw;
        max-width: 430px;
        height: 430px;

        border-radius: 215px 215px 25px 25px;
    }
    .hero-real-image {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

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

    opacity: 1 !important;
    visibility: visible !important;
}

    .card-top {
        right: 0;
        top: 35px;
    }

    .card-bottom {
        left: 0;
        bottom: 30px;
    }


    /* ABOUT */

    .about-layout {
        gap: 45px;
    }

    .about-image-wrap {
        height: 430px;

        min-height: 430px;
    }

    .about-main-image {
        width: 82%;
        height: 390px;

        border-radius:
            140px
            140px
            25px
            25px;
    }

    .about-small-image {
        width: 52%;
        height: 180px;

        border-width: 7px;

        border-radius: 22px;
    }

    .about-image-badge {
        width: 105px;
        height: 105px;
    }

    .about-image-badge strong {
        font-size: 18px;
    }

    .about-image-badge small {
        font-size: 9px;
    }

    .intro-copy h2 {
        font-size: 40px;
    }

    .intro-copy p {
        font-size: 16px;
    }


    /* RESEARCH */

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

    .center-heading {
        margin-bottom: 38px;
    }

    .center-heading h2 {
        font-size: 40px;
    }

    .center-heading p {
        font-size: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: auto;
    }


    /* BANNER */

    .happiness-banner-section {
        padding: 65px 0;
    }

    .happiness-banner {
        min-height: 480px;

        border-radius: 25px;
    }

    .happiness-banner img {
        min-height: 480px;
    }

    .happiness-banner::after {
        background:
            linear-gradient(
                180deg,
                rgba(20, 28, 26, 0.15),
                rgba(20, 28, 26, 0.72)
            );
    }

    .happiness-banner-content {
        left: 25px;
        right: 25px;

        top: auto;
        bottom: 35px;

        transform: none;
    }

    .happiness-banner-content h2 {
        font-size: 40px;
    }


    /* PRACTICE */

    .practice-grid {
        gap: 40px;
    }

    .practice-photo {
        height: 420px;

        border-radius: 25px;
    }

    .practice-photo-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 17px;
    }

    .practice-photo-overlay strong {
        font-size: 23px;
    }

    .practice-copy h2 {
        font-size: 40px;
    }

    .practice-copy p {
        font-size: 16px;
    }


    /* CTA */

    .experience-box {
        padding: 35px 25px;

        border-radius: 25px;
    }

    .experience-box h2 {
        font-size: 38px;
    }

    .experience-box .btn {
        width: 100%;
    }


    /* CONTACT */

    .contact h2 {
        font-size: 40px;
    }

    .phone-card {
        padding: 22px 18px;
    }

    .phone-card strong {
        font-size: 22px;
    }

    .phone-card b {
        font-size: 20px;
    }
}
/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;
    width: 100%;

    padding: 48px 0 22px;

    background:
        radial-gradient(
            circle at 0% 55%,
            rgba(239, 124, 34, 0.10) 0,
            rgba(239, 124, 34, 0.04) 22%,
            transparent 46%
        ),
        radial-gradient(
            circle at 100% 45%,
            rgba(239, 124, 34, 0.11) 0,
            rgba(239, 124, 34, 0.035) 25%,
            transparent 48%
        ),
        linear-gradient(
            135deg,
            #fffaf0 0%,
            #fff1d9 52%,
            #fff8eb 100%
        );

    color: var(--ink);

    border-top: 1px solid rgba(239, 124, 34, 0.12);

    overflow: hidden;
}


/* =========================================================
   FOOTER DECORATIVE RAYS
========================================================= */

.footer::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -270px;
    top: -155px;

    border-radius: 50%;

    background:
        repeating-conic-gradient(
            from 0deg,
            rgba(239, 124, 34, 0.055) 0deg 1deg,
            transparent 1deg 8deg
        );

    opacity: 0.75;

    pointer-events: none;
}


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

.footer-top {
    position: relative;

    z-index: 2;

    min-height: 90px;

    display: flex;

    align-items: center;

    gap: 48px;
}


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

.footer-brand {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    width: 250px;
}

.footer-brand img {
    display: block;

    width: 250px;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   FOOTER LINKS / TAGLINE
========================================================= */

.footer-links {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #34403d;

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;
}

.footer-dot {
    color: var(--orange);

    font-size: 18px;

    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   REGISTRATION
========================================================= */

.footer-registration {
    margin-left: auto;

    display: inline-flex;

    align-items: center;

    gap: 4px;

    color: var(--orange);

    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-registration:hover {
    color: var(--orange-dark);

    transform: translateX(3px);
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {
    position: relative;

    z-index: 2;

    width: min(1160px, calc(100% - 40px));

    height: 1px;

    margin: 25px auto 0;

    background: rgba(36, 48, 47, 0.14);
}


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

.copyright {
    position: relative;

    z-index: 2;

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 12px;

    color: #48534f;

    font-size: 14px;
}


/* =========================================================
   WEBSITE CREDIT
========================================================= */

.website-credit {
    display: flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;

    color: #56615d;
}

.website-credit::before {
    content: "";

    width: 1px;

    height: 38px;

    margin-right: 24px;

    background: rgba(36, 48, 47, 0.22);
}


/* =========================================================
   OPTIFLOW LINK
========================================================= */

.website-credit a {
    color: #1f2927;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.website-credit a:hover {
    color: var(--orange);

    transform: translateX(2px);
}


/* =========================================================
   EXTERNAL ICON
========================================================= */

.external-icon {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    font-size: 18px;

    line-height: 1;
}


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

@media (max-width: 900px) {

    .footer {
        padding: 42px 0 20px;
    }

    .footer-top {
        gap: 25px;
    }

    .footer-brand {
        width: 210px;
    }

    .footer-brand img {
        width: 210px;
    }

    .footer-links {
        font-size: 13px;

        gap: 7px;
    }

    .footer-registration {
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
    }

}


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

@media (max-width: 600px) {

    .footer {
        padding: 38px 0 22px;
    }

    .footer-top {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 17px;
    }

    .footer-brand {
        width: 190px;
    }

    .footer-brand img {
        width: 190px;
    }

    .footer-links {
        display: flex;

        flex-wrap: wrap;

        white-space: normal;

        line-height: 1.7;

        font-size: 13px;

        gap: 5px 8px;
    }

    .footer-registration {
        margin-left: 0;

        font-size: 14px;
    }

    .footer-divider {
        width: calc(100% - 28px);

        margin-top: 24px;
    }

    .copyright {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 17px;

        padding-top: 18px;

        font-size: 12px;
    }

    .website-credit {
        flex-wrap: wrap;

        white-space: normal;

        gap: 7px;

        font-size: 12px;
    }

    .website-credit::before {
        display: none;
    }

    .external-icon {
        font-size: 17px;
    }

}