/* =========================================================
   ROOT
========================================================= */

:root {

    --navy: #170F13;
    --dark: #211218;
    --dark-2: #2A141D;

    --berry: #C42F68;
    --berry-dark: #9E2451;

    --gold: #D8B34A;
    --gold-light: #E7CA75;

    --cream: #FAF6F1;
    --cream-2: #F4EDE6;

    --blush: #F3E0E2;
    --sage: #DCE8E1;

    --white: #FFFFFF;

    --text: #241E1E;
    --muted: #756A69;
    --muted-light: #C8BFC0;

    --line: rgba(36, 30, 30, 0.12);

    --shadow:
        0 20px 60px rgba(30, 15, 20, 0.10);

    --radius: 22px;

}





/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

section {
    position: relative;
    overflow: hidden;
}

.section-dark {
    color: var(--white);
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(196,47,104,.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #120D10 0%,
            #211219 50%,
            #170D12 100%
        );
}

.section-cream {
    background: var(--cream);
}

.section-blush {
    background:
        linear-gradient(
            180deg,
            #F4E6E6 0%,
            #F3DFE2 100%
        );
}

.section-sage {
    background:
        linear-gradient(
            180deg,
            #E3EEE8 0%,
            #DCE8E1 100%
        );
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
.brand,
.footer-brand h3 {
    font-family:
        "Playfair Display",
        Georgia,
        serif;
}

h1,
h2 {
    font-weight: 600;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .24em;

    color: var(--berry);
}

.gold-eyebrow {
    color: var(--gold-light);
}

.gold-eyebrow span {
    display: inline-block;

    width: 28px;
    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background: currentColor;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    position: relative;
    z-index: 100;

    background: var(--berry);

    color: var(--white);

    height: 38px;

}

.top-bar-inner {

    width: min(1180px, calc(100% - 48px));
    height: 100%;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .14em;

}

.top-bar-inner a {

    padding: 7px 15px;

    background: var(--white);
    color: var(--berry);

    letter-spacing: .08em;

    transition: .3s ease;

}

.top-bar-inner a:hover {
    transform: translateY(-2px);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;
    top: 0;

    z-index: 90;

    background:
        rgba(250,246,241,.94);

    border-bottom: 1px solid rgba(0,0,0,.06);

    backdrop-filter: blur(14px);
}

.nav-container {

    width: min(1180px, calc(100% - 48px));

    min-height: 76px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.brand {

    font-size: 25px;
    font-weight: 600;

    color: var(--text);

}

.brand em {
    color: var(--berry);
}


.desktop-nav {

    display: flex;
    align-items: center;

    gap: 31px;

}

.desktop-nav > a:not(.nav-button) {

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;

    transition: .3s ease;

}

.desktop-nav > a:not(.nav-button):hover {
    color: var(--berry);
}


.nav-button {

    padding: 14px 24px;

    color: white !important;
    background: var(--berry);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;

    transition: .3s ease;

}

.nav-button:hover {
    background: var(--berry-dark);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {

    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: var(--text);

    transition: .3s ease;

}


.mobile-menu {

    display: none;

    padding: 15px 24px 25px;

    background: var(--cream);

    border-top: 1px solid var(--line);

}

.mobile-menu a {

    display: block;

    padding: 13px 0;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .1em;

    border-bottom: 1px solid var(--line);

}

.mobile-menu-button {

    margin-top: 15px;

    padding: 15px !important;

    text-align: center;

    color: white !important;

    background: var(--berry);

    border: 0 !important;

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    min-height: calc(100svh - 114px);

    display: flex;
    align-items: center;

    padding: 80px 0 70px;

}

.hero-container {

    min-height: 680px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, .95fr);

    gap: 60px;

    align-items: center;

}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-content h1 {

    max-width: 730px;

    margin-bottom: 28px;

    font-size: clamp(52px, 5.3vw, 82px);

    line-height: .96;

    letter-spacing: -.045em;

}

.hero-content h1 span {
    color: var(--white);
}

.hero-content h1 em {

    display: block;

    color: var(--berry);

    font-style: italic;

}


.hero-description {

    max-width: 650px;

    margin-bottom: 18px;

    color: #D2C8CA;

    font-size: 18px;

    line-height: 1.75;

}

.hero-description strong {
    color: white;
}


.hero-support {

    max-width: 630px;

    margin-bottom: 35px;

    color: #AAA0A3;

    font-size: 15px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;
    align-items: center;

    gap: 28px;

    margin-bottom: 52px;

}


.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .13em;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}

.btn:hover {

    transform: translateY(-4px);

}


.btn-primary {

    color: white;

    background: var(--berry);

    box-shadow:
        0 12px 35px rgba(196,47,104,.24);

}

.btn-primary:hover {

    background: #D53670;

    box-shadow:
        0 16px 45px rgba(196,47,104,.35);

}


.text-button {

    color: var(--berry);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .15em;

    transition: .3s ease;

}

.text-button span {
    margin-left: 8px;
}

.text-button:hover {
    color: var(--gold-light);
}


.hero-stats {

    display: flex;

    gap: 0;

}


.stat {

    min-width: 145px;

    padding-right: 25px;
    margin-right: 25px;

    border-right:
        1px solid rgba(255,255,255,.16);

}

.stat:last-child {
    border-right: 0;
}


.stat strong {

    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 28px;

}


.stat span {

    color: #9F9497;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {

    position: relative;

    height: 650px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

}


.hero-image-wrap {

    position: relative;

    width: min(100%, 560px);

    height: 100%;

    overflow: hidden;

}


.hero-image-wrap img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    filter: saturate(.92);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);

}


.hero-image-wrap:hover img {
    transform: scale(1.025);
}


.hero-image-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(20,10,14,.85) 100%
        );

}


.hero-caption {

    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 28px;

    display: flex;
    flex-direction: column;

    gap: 5px;

}


.hero-caption strong {

    color: white;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 28px;

}

.hero-caption strong em {
    color: var(--gold);
}

.hero-caption span {

    max-width: 390px;

    color: #C5BBBD;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;

    line-height: 1.6;

}


/* =========================================================
   HERO GLOW
========================================================= */

.hero-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    animation: floatGlow 8s ease-in-out infinite;

}

.hero-glow-one {

    top: 5%;
    right: 10%;

    background:
        rgba(196,47,104,.15);

}

.hero-glow-two {

    left: 5%;
    bottom: 5%;

    background:
        rgba(216,179,74,.06);

    animation-delay: -3s;

}


@keyframes floatGlow {

    0%,
    100% {
        transform: translate3d(0,0,0);
    }

    50% {
        transform: translate3d(25px,-20px,0);
    }

}


.hero-bottom-line {

    position: absolute;

    bottom: 22px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    color: #8F8588;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .25em;

}

.hero-bottom-line i {

    width: 1px;
    height: 30px;

    background:
        linear-gradient(
            var(--berry),
            transparent
        );

    animation: scrollLine 2s ease-in-out infinite;

}


@keyframes scrollLine {

    0% {
        transform: scaleY(.3);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        transform: scaleY(.3);
        transform-origin: bottom;
    }

}


/* =========================================================
   STORY
========================================================= */

.story-section {

    padding: 120px 0;

}


.story-grid {

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    gap: 90px;

    align-items: center;

}


.story-image {

    position: relative;

}


.image-frame {

    position: relative;

    overflow: hidden;

    aspect-ratio: 4 / 5;

    box-shadow: var(--shadow);

}


.image-frame img {

    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;

}


.image-frame:hover img {
    transform: scale(1.035);
}


.image-label {

    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 13px 16px;

    background: rgba(23,15,19,.86);

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .15em;

    line-height: 1.6;

}


.story-content h2 {

    max-width: 650px;

    margin-bottom: 28px;

    font-size: clamp(40px, 4.1vw, 64px);

    line-height: 1.04;

    letter-spacing: -.035em;

}


.story-content h2 em {
    color: var(--berry);
    font-style: italic;
}


.story-content p {

    max-width: 610px;

    margin-bottom: 19px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;

}


.story-highlight {

    max-width: 620px;

    margin: 30px 0;

    padding: 25px 30px;

    border-left: 3px solid var(--berry);

    background: white;

    color: var(--text);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 22px;

    line-height: 1.45;

    box-shadow:
        0 15px 45px rgba(30,15,20,.06);

}


.story-highlight span {

    color: var(--berry);

    font-size: 50px;

    line-height: 0;

}


.inline-link {

    display: inline-flex;

    gap: 10px;

    margin-top: 15px;

    color: var(--berry);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .15em;

    transition: .3s ease;

}

.inline-link:hover {
    gap: 16px;
    color: var(--berry-dark);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;

}

.section-heading h2 {

    margin-bottom: 22px;

    font-size: clamp(40px, 4.5vw, 66px);

    line-height: 1.04;

    letter-spacing: -.035em;

}


.section-heading h2 em {

    color: var(--berry);

    font-style: italic;

}


.section-heading p {

    max-width: 690px;

    margin: 0 auto 12px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

}


.section-heading.light p {
    color: var(--muted-light);
}

.section-heading.light h2 {
    color: white;
}


/* =========================================================
   WHO I HELP
========================================================= */

.who-section {

    padding: 120px 0;

}


.situation-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.situation-card {

    position: relative;

    min-height: 440px;

    padding: 38px 34px;

    background:
        rgba(255,255,255,.7);

    border: 1px solid rgba(196,47,104,.10);

    box-shadow:
        0 15px 50px rgba(60,25,35,.06);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}


.situation-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 65px rgba(60,25,35,.12);

}


.card-number {

    color: rgba(196,47,104,.28);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 52px;

    line-height: 1;

}


.card-icon {

    width: 48px;
    height: 48px;

    margin: 30px 0 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--berry);

    background: rgba(196,47,104,.08);

    font-size: 22px;

}


.situation-card h3 {

    max-width: 300px;

    margin-bottom: 18px;

    font-size: 25px;

    line-height: 1.15;

}


.situation-card p {

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

}


.situation-card a {

    position: absolute;

    left: 34px;
    bottom: 32px;

    color: var(--berry);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .15em;

}


.center-cta {

    margin-top: 55px;

    display: flex;
    justify-content: center;

}


.btn-outline {

    color: var(--berry);

    background: transparent;

    border-color: var(--berry);

}


.btn-outline:hover {

    color: white;

    background: var(--berry);

}


/* =========================================================
   CONSULTATION
========================================================= */

.consultation-section {

    padding: 120px 0;

}


.consultation-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, .85fr);

    gap: 80px;

    align-items: start;

}


.consultation-process {

    display: grid;

    gap: 0;

}


.process-item {

    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 25px;

    padding: 28px 0;

    border-bottom:
        1px solid rgba(255,255,255,.10);

}


.process-number {

    color: var(--gold);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 30px;

}


.process-item h3 {

    margin-bottom: 9px;

    color: white;

    font-size: 23px;

}


.process-item p {

    max-width: 570px;

    color: var(--muted-light);

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   OFFER CARD
========================================================= */

.offer-card {

    position: sticky;
    top: 120px;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            #2A2021,
            #1C1719
        );

    border:
        1px solid rgba(216,179,74,.32);

    box-shadow:
        0 25px 70px rgba(0,0,0,.30);

}


.offer-label {

    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .16em;

}


.offer-duration {

    color: #918587;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;

}


.offer-price {

    margin: 30px 0 20px;

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 68px;

}


.offer-note {

    margin-bottom: 25px;

    color: #BDB1B4;

    font-size: 13px;

    line-height: 1.75;

}


.offer-card ul {

    display: grid;

    gap: 14px;

    margin: 0 0 30px;

    padding: 0;

    list-style: none;

}


.offer-card li {

    position: relative;

    padding-left: 22px;

    color: #D7CDCF;

    font-size: 13px;

    line-height: 1.5;

}


.offer-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--gold);

    font-weight: 800;

}


.offer-button {
    width: 100%;
}


.offer-card small {

    display: block;

    margin-top: 16px;

    text-align: center;

    color: #837679;

    font-size: 9px;

    letter-spacing: .06em;

}


/* =========================================================
   WHY NOTHING WORKED
========================================================= */

.reason-section {

    padding: 120px 0;

}


.reason-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

    align-items: center;

}


.reason-visual {

    position: relative;

    min-height: 550px;

    display: flex;
    align-items: center;

}


.quote-card {

    position: relative;

    width: 100%;

    padding: 55px 45px;

    background:
        linear-gradient(
            145deg,
            var(--berry),
            #8E2148
        );

    color: white;

    box-shadow:
        25px 25px 0 rgba(196,47,104,.12);

    transform: rotate(-2deg);

}


.quote-card span {

    display: block;

    margin-bottom: 30px;

    color: #F6DDE7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .2em;

}


.quote-card strong {

    display: block;

    font-size: clamp(45px, 5vw, 70px);

    line-height: .98;

}


.quote-card em {

    display: block;

    margin-top: 10px;

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(40px, 4.5vw, 62px);

}


.reason-content h2 {

    margin-bottom: 30px;

    font-size: clamp(42px, 4.5vw, 65px);

    line-height: 1.03;

}


.reason-content h2 em {

    color: var(--berry);

    font-style: italic;

}


.reason-content p {

    max-width: 620px;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;

}


.reason-highlight {

    margin: 30px 0;

    padding: 28px;

    background: var(--cream-2);

    border-left: 3px solid var(--berry);

    color: var(--text);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 19px;

    line-height: 1.5;

}


.reason-content .strong-text {

    color: var(--text);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

}


.final-line {

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;

}


/* =========================================================
   METHOD
========================================================= */

.method-section {

    padding: 120px 0;

}


.method-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

}


.method-card {

    position: relative;

    padding: 20px 30px 35px;

    border-right:
        1px solid rgba(36,30,30,.12);

}


.method-card:last-child {
    border-right: 0;
}


.method-number {

    display: block;

    margin-bottom: 35px;

    color: rgba(196,47,104,.18);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 58px;

    line-height: 1;

}


.method-card h3 {

    margin-bottom: 15px;

    font-size: 24px;

}


.method-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   GUARANTEE
========================================================= */

.guarantee-section {

    padding: 120px 0;

}


.guarantee-container {

    max-width: 1050px;

}


.guarantee-badge {

    width: 150px;
    height: 150px;

    margin: 0 auto 45px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--berry);

    color: white;

    text-align: center;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    box-shadow:
        0 20px 45px rgba(196,47,104,.25);

    animation:
        softPulse 4s ease-in-out infinite;

}


.guarantee-badge span {

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 28px;

}


@keyframes softPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }

}


.guarantee-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.guarantee-content h2 {

    margin-bottom: 30px;

    font-size: clamp(42px, 4.7vw, 67px);

    line-height: 1.03;

}


.guarantee-content h2 em {

    color: var(--berry);

    font-style: italic;

}


.guarantee-content p {

    max-width: 700px;

    margin: 0 auto 18px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

}


.guarantee-bold {

    color: var(--text) !important;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 22px !important;

}


.trust-points {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 60px;

}


.trust-point {

    padding: 30px;

    background:
        rgba(255,255,255,.7);

    border:
        1px solid rgba(196,47,104,.10);

}


.trust-point > span {

    display: block;

    margin-bottom: 18px;

    color: var(--berry);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 32px;

}


.trust-point p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {

    position: relative;

    padding: 125px 0;

    color: white;

    background:

        radial-gradient(
            circle at 25% 20%,
            rgba(196,47,104,.9),
            transparent 35%
        ),

        linear-gradient(
            120deg,
            #B52B60 0%,
            #461B2A 52%,
            #170F13 100%
        );

}


.final-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(216,179,74,.10);

    filter: blur(80px);

}


.final-container {

    position: relative;
    z-index: 2;

}


.final-content {

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.final-content h2 {

    margin-bottom: 30px;

    color: white;

    font-size: clamp(44px, 5.5vw, 78px);

    line-height: .98;

    letter-spacing: -.04em;

}


.final-content h2 em {

    color: var(--gold-light);

    font-style: italic;

}


.final-content > p {

    max-width: 680px;

    margin: 0 auto 18px;

    color: #E8DDE0;

    font-size: 15px;

    line-height: 1.8;

}


.final-short {

    color: white !important;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 23px !important;

}


.final-emphasis {

    color: var(--gold-light) !important;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px !important;

}


.final-offer {

    max-width: 620px;

    margin: 40px auto 25px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    text-align: left;

    border:
        1px solid rgba(255,255,255,.22);

    background:
        rgba(20,10,14,.22);

    backdrop-filter: blur(10px);

}


.final-price {

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 58px;

}


.final-offer-text {

    display: flex;
    flex-direction: column;

    gap: 8px;

}


.final-offer-text strong {

    color: white;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 19px;

}


.final-offer-text span {

    color: #CDBEC2;

    font-size: 10px;

    line-height: 1.5;

}


.btn-light {

    color: var(--berry);

    background: white;

    box-shadow:
        0 15px 40px rgba(0,0,0,.18);

}


.btn-light:hover {

    background: var(--gold-light);

    color: var(--dark);

}


.final-note {

    display: block;

    margin-top: 16px;

    color: #D0C0C5;

    font-size: 11px;

    letter-spacing: .08em;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding: 75px 0 25px;

    color: #B9AFB1;

    background: #171416;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        .8fr
        .8fr
        1fr;

    gap: 55px;

    padding-bottom: 55px;

}


.footer-brand h3 {

    margin-bottom: 15px;

    color: white;

    font-size: 28px;

}


.footer-brand h3 em {
    color: var(--berry);
}


.footer-brand p {

    max-width: 300px;

    color: #81787A;

    font-size: 12px;

    line-height: 1.7;

}


.footer-column {

    display: flex;
    flex-direction: column;

    gap: 12px;

}


.footer-column h4 {

    margin-bottom: 10px;

    color: var(--gold);

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .17em;

}


.footer-column a,
.footer-column span {

    color: #8D8486;

    font-size: 11px;

    transition: .3s ease;

}


.footer-column a:hover {
    color: white;
}


.footer-bottom {

    padding-top: 20px;

    display: flex;
    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,.08);

    color: #71686A;

    font-size: 9px;

}


.footer-bottom div {

    display: flex;

    gap: 20px;

}


.footer-bottom a:hover {
    color: white;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 200;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background: #20C863;

    box-shadow:
        0 12px 35px rgba(32,200,99,.35);

    font-size: 27px;

    transition: .3s ease;

}


.whatsapp-button:hover {

    transform:
        translateY(-5px)
        scale(1.04);

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);

}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}


.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .22s;
}

.delay-3 {
    transition-delay: .32s;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 18px;
    }

    .hero-container {

        grid-template-columns:
            1fr 0.8fr;

        gap: 35px;

    }

    .hero-content h1 {
        font-size: clamp(48px, 6vw, 68px);
    }

    .hero-visual {
        height: 600px;
    }

    .story-grid,
    .reason-grid {
        gap: 50px;
    }

    .consultation-layout {
        gap: 45px;
    }

    .method-card {
        padding-inline: 20px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 34px, 600px);
    }


    /* TOP BAR */

    .top-bar {
        height: 36px;
    }

    .top-bar-inner {
        width: calc(100% - 24px);
        gap: 10px;

        font-size: 8px;
        letter-spacing: .08em;
    }

    .top-bar-inner a {
        padding: 6px 9px;
    }


    /* NAV */

    .nav-container {
        min-height: 68px;
        width: calc(100% - 34px);
    }

    .brand {
        font-size: 21px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.open {
        display: block;
    }


    /* HERO */

    .hero-section {

        min-height: auto;

        padding:
            55px 0
            70px;

    }

    .hero-container {

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 35px;

    }

    .hero-content {
        width: 100%;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: .17em;
        margin-bottom: 18px;
    }

    .hero-content h1 {

        font-size:
            clamp(43px, 12vw, 62px);

        line-height: .98;

        letter-spacing: -.04em;

        margin-bottom: 23px;

    }

    .hero-description {

        font-size: 15px;

        line-height: 1.7;

    }

    .hero-support {

        font-size: 13px;

        line-height: 1.7;

    }

    .hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        margin-bottom: 38px;

    }

    .btn {

        width: 100%;

        min-height: 54px;

        padding-inline: 18px;

        font-size: 10px;

    }

    .hero-stats {

        width: 100%;

        justify-content: space-between;

    }

    .stat {

        min-width: 0;

        flex: 1;

        padding-right: 12px;
        margin-right: 12px;

    }

    .stat strong {
        font-size: 23px;
    }

    .stat span {
        font-size: 7px;
        line-height: 1.5;
    }

    .hero-visual {

        width: 100%;

        height:
            min(560px, 125vw);

    }

    .hero-image-wrap {
        width: 100%;
    }

    .hero-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .hero-caption strong {
        font-size: 23px;
    }

    .hero-caption span {
        font-size: 8px;
    }

    .hero-bottom-line {
        display: none;
    }

    /* =========================================
   MOBILE — REMOVE HERO PHOTO COMPLETELY
   ========================================= */

@media (max-width: 768px) {

    /* Hide the hero image */
    .hero-image,
    .hero-visual,
    .hero-photo,
    .hero-media {
        display: none !important;
    }

    /* IMPORTANT: remove the empty image area */
    .hero-image-wrapper,
    .hero-visual-wrapper,
    .hero-photo-wrapper,
    .hero-media-wrapper {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Hero itself should NOT reserve photo height */
    .hero,
    .hero-section {
        min-height: auto !important;
        height: auto !important;
    }

    /* Hero content should finish naturally */
    .hero-content {
        min-height: auto !important;
        height: auto !important;
    }
}

    /* COMMON SECTIONS */

    .story-section,
    .who-section,
    .consultation-section,
    .reason-section,
    .method-section,
    .guarantee-section {

        padding:
            80px 0;

    }


    .section-heading {

        margin-bottom: 45px;

    }

    .section-heading h2 {

        font-size:
            clamp(37px, 10vw, 54px);

    }


    .section-heading p {
        font-size: 14px;
    }


    /* STORY */

    .story-grid {

        display: flex;

        flex-direction: column;

        gap: 45px;

    }

    .story-image {
        width: 100%;
    }

    .story-content h2 {

        font-size:
            clamp(38px, 10vw, 53px);

    }

    .story-content p {
        font-size: 14px;
    }

    .story-highlight {
        font-size: 19px;
        padding: 20px;
    }


    /* WHO */

    .situation-grid {
        grid-template-columns: 1fr;
    }

    .situation-card {
        min-height: 390px;
        padding: 30px 27px;
    }

    .situation-card a {
        left: 27px;
        bottom: 27px;
    }


    /* CONSULTATION */

    .consultation-layout {

        display: flex;

        flex-direction: column;

        gap: 50px;

    }

    .process-item {

        grid-template-columns: 48px 1fr;

        gap: 15px;

    }

    .process-number {
        font-size: 25px;
    }

    .process-item h3 {
        font-size: 20px;
    }

    .process-item p {
        font-size: 13px;
    }

    .offer-card {

        position: relative;
        top: auto;

        width: 100%;

        padding: 30px 24px;

    }

    .offer-price {
        font-size: 60px;
    }


    /* REASON */

    .reason-grid {

        display: flex;

        flex-direction: column;

        gap: 45px;

    }

    .reason-visual {

        width: 100%;
        min-height: auto;

    }

    .quote-card {
        padding: 40px 30px;
    }


    /* METHOD */

    .method-grid {

        grid-template-columns: 1fr;

    }

    .method-card {

        padding:
            28px 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(36,30,30,.12);

    }

    .method-card:last-child {
        border-bottom: 0;
    }

    .method-number {
        margin-bottom: 20px;
        font-size: 50px;
    }


    /* GUARANTEE */

    .guarantee-badge {

        width: 125px;
        height: 125px;

    }

    .guarantee-content h2 {
        font-size:
            clamp(38px, 10vw, 54px);
    }

    .trust-points {

        grid-template-columns: 1fr;

        margin-top: 40px;

    }


    /* FINAL */

    .final-cta-section {
        padding: 90px 0;
    }

    .final-content h2 {

        font-size:
            clamp(41px, 11vw, 58px);

    }

    .final-offer {

        flex-direction: column;

        text-align: center;

        gap: 12px;

    }

    .final-offer-text {
        align-items: center;
    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 15px;

    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 13px;
    }


    /* WHATSAPP */

    .whatsapp-button {

        width: 53px;
        height: 53px;

        right: 16px;
        bottom: 16px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .container {
        width: calc(100% - 26px);
    }

    .top-bar-inner {
        font-size: 7px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-stats {
        gap: 5px;
    }

    .stat {
        padding-right: 7px;
        margin-right: 7px;
    }

    .stat strong {
        font-size: 20px;
    }

    .stat span {
        font-size: 6.5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}


/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */

.whatsapp-button {
    position: fixed;
    right: 28px;
    bottom: 28px;

    width: 58px;
    height: 58px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* WhatsApp logo */

.whatsapp-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;

    display: block;

    fill: #ffffff;
}

/* Hover */

.whatsapp-button:hover {
    transform: scale(1.1);

    box-shadow:
        0 12px 32px rgba(37, 211, 102, 0.45);
}

/* Soft pulse */

.whatsapp-button::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 50%;

    animation: whatsappPulse 2.2s ease-out infinite;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }

}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .whatsapp-button {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;
    }

    .whatsapp-icon {
        width: 27px;
        height: 27px;
    }

}