@import url('https://branding-fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Prata&display=swap');

@font-face {
    font-family: 'Garet';
    src: url('../branding-fonts/garet/Garet-Regular.woff2') format('woff2');
    font-weight: 300;
    font-style: Regular;
}

@font-face {
    font-family: 'Garet';
    src: url('../branding-fonts/garet/Garet-Bold.woff2') format('woff2');
    font-weight: 850;
    font-style: Bold;
}

@font-face {
    font-family: 'Brittney Signature';
    font-style: normal;
    font-weight: normal;
    src: local('Brittney Signature'), url('../branding-fonts/brittany-signature/BrittanySignature.ttf') format('woff');
}

:root {
    --text-color: #fff;
    --primary-color: #A30933;
    --container-width: 1390px;
    --body-bg: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garet', sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
}

.container {
    max-width: var(--container-width) !important;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.container-large {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.text-signature {
    color: rgba(166, 49, 81, 1);
    font-family: 'Brittney Signature';
    font-weight: 400;
    text-shadow: 2px 4px 7.5px rgba(246, 0, 67, 1);
}

header {
    position: relative;
    z-index: 1;
    padding: 7px 24px;
    background-color: #000;
}

header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 188px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Prata';
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    padding: 6px;
    border-radius: 31px;
    border: 0.5px solid transparent;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color: #D63763;
    background: rgba(255, 14, 80, 0.12);
    border-style: solid;
    border-width: 0px 0.5px 0.5px 0px;
    border-color: rgba(214, 55, 99, 0.3);
    backdrop-filter: blur(30px);
}


.primary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Garet';
    font-weight: 300;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
    text-transform: capitalize;
    background: linear-gradient(90deg, #181818 0%, #111111 52.67%, #1D1D1D 100%);
    border: 1.29px solid rgba(208, 61, 101, 0.41);
    padding: 18px 22.92px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: #D03D65;
    border-color: #D03D65;
    box-shadow:
        0 0 18px rgba(208, 61, 101, 0.75),
        0 0 45px rgba(208, 61, 101, 0.6);
    color: #fff !important;
}

/* subtle glossy highlight (like figma) */
.primary-btn::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15),
            transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.primary-btn:hover::before {
    opacity: 1;
}

/* Hero section */
.hero-section {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 732px;
    position: relative;
    padding: 0 24px;
}

.hero-section .hero-inner {
    display: flex;
    align-items: center;
}

.hero-section .hero-content {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.hero-section .hero-content h1 {
    font-family: Prata;
    font-weight: 400;
    font-style: Regular;
    font-size: 56px;
    line-height: 86px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    max-width: 725px;

}

.hero-section .hero-content h1 span {
    color: rgba(166, 49, 81, 1);
    font-family: 'Brittney Signature';
    font-weight: 400;
    text-shadow: 2px 4px 7.5px rgba(246, 0, 67, 1);
}


.hero-section .hero-content>p:first-of-type {
    margin-top: 20px;
    font-family: Garet;
    font-weight: 300;
    font-style: Book;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 9%;
    text-transform: uppercase;
    max-width: 725px;
}

.hero-section .hero-content>p:last-of-type {
    max-width: 807px;
    margin: 20px 0 30px 0;
    font-family: Garet;
    font-weight: 300;
    font-style: Book;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;

}

.hero-section .hero-content .primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    font-family: Garet;
    font-weight: 300;
    font-style: Book;
    font-size: 23.27px;
    leading-trim: NONE;
    line-height: 38.78px;
    letter-spacing: -3%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;

}

.hero-section .hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
}


.hero-section .hero-image img {
    width: 695px;
}

.mobile-menu-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: none;
    color: #fff;
    background: linear-gradient(90deg, #181818 0%, #111111 52.67%, #1D1D1D 100%);
    border: 1.29px solid rgba(208, 61, 101, 0.41);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 1221px) {

    header .header-nav,
    header .primary-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Offcanvas Menu Styles */
.offcanvas {
    background-color: #000;
    color: var(--text-color);
}

/* #mobileMenu {
    display: none;
} */

.offcanvas-body {
    padding: 20px;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border: 0;
}

.offcanvas-title {
    font-family: 'Prata', serif;
    font-size: 18px;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Garet', sans-serif;
    font-size: 16px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:not(.mobile-cta):hover {
    color: #D63763;
}

.mobile-nav .mobile-cta {
    display: inline-flex !important;
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 1024px) {
    header .logo img {
        width: 150px;
    }

    #mobileMenu {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: 600px;
        padding: 0 20px;
    }

    .hero-section .hero-content {
        padding-top: 60px;
    }

    .hero-section .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-section .hero-content>p:first-of-type {
        font-size: 16px;
        margin-top: 15px;
    }

    .hero-section .hero-content>p:last-of-type {
        font-size: 16px;
        margin: 15px 0 25px 0;
        margin-left: 0;
    }

    .hero-section .hero-content .primary-btn {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
        padding: 15px 20px;
        line-height: 1.5;
    }

    .hero-section .hero-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-section .hero-image img {
        width: 500px;
    }

    .hero-section .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


.brand-logos {
    background-color: #121212;
    /* height: 154px; */
    overflow: hidden;
    display: block;
    padding: 20px 0;
}

.brand-logos-inner {
    width: 100%;
}

.brand-logos-inner .slick-slide {
    margin: 0 40px;
    height: auto;
    display: flex;
    align-items: center;
}

.brand-logos-inner img {
    width: 186px;
}

@media (max-width: 768px) {
    .brand-logos-inner img {
        width: 150px;
    }
}


/* Personal Branding Section */
.personal-branding-section {
    padding: 100px 24px;
}

.branding-card {
    display: flex;
    gap: 60px;
    background-color: rgba(28, 28, 28, 1);
    border-radius: 28px;
    padding: 50px;
}

.branding-image {
    flex: 0 0 42%;
    border-radius: 22px;
    overflow: hidden;
}

.branding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.branding-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.branding-content h2 {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 48.1px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 20px;
    max-width: 620px;
}

.branding-content h2 span {
    font-size: 56px;
    margin-left: 6px;
}

.branding-subtitle {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: capitalize;

    margin-bottom: 24px;
    max-width: 620px;
}

.branding-points {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
}


.branding-points li {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 26.01px;
    letter-spacing: 0%;

    padding-left: 30px;
    position: relative;
}

.branding-points li::before {
    content: '◉';
    color: rgba(246, 0, 67, 1);
    position: absolute;
    left: 0;
}

.branding-description {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;

    margin-bottom: 18px;
    max-width: 650px;
}

.branding-description strong {
    font-weight: 850;
}

.branding-content .primary-btn {
    margin-top: 20px;
    width: fit-content;
    padding-left: 32px;
    padding-right: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
    .branding-card {
        flex-direction: column;
        padding: 30px;
    }

    .branding-image {
        width: 100%;
        max-height: 420px;
    }

    .branding-content h2 {
        font-size: 34px;
    }

    .branding-content h2 span {
        font-size: 46px;
    }
}


/* brand translation */
.brand-translation-section {
    height: 982px;
    display: flex;
    align-items: center;
    padding: 100px 24px 0;
    position: relative;
    overflow: hidden;
}

.brand-translation-section .container-large::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(12%, 12%);
    width: 990px;
    height: 990px;
    background: rgba(86, 23, 40, 1);
    filter: blur(330.3999938964844px);
    border-radius: 50%;
}

.brand-translation-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}



.brand-translation-content h2 {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 63px;
    line-height: 1.25;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 45px;
}

.brand-translation-content h2 span {
    font-size: 72px;
    margin-left: 4px;
}

.brand-translation-content .lead {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;

    margin-bottom: 45px;
}

.brand-translation-points {
    list-style: none;
    margin-bottom: 45px;
    padding: 0;
}


.brand-translation-points li:not(:last-child) {
    margin-bottom: 16px;
}

.brand-translation-points li {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 26.01px;
    letter-spacing: 0%;

    padding-left: 26px;
    position: relative;
}

.brand-translation-points li::before {
    content: '◉';
    font-size: 16px;
    color: rgba(246, 0, 67, 1);
    position: absolute;
    left: 0;
}

.brand-translation-content .closing {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    opacity: 0.95;
}

.brand-translation-content .closing strong {
    font-weight: 850;
}

/* Image */
.brand-translation-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 576px) {

    .brand-translation-section .container-large::before {
        width: 550px;
        height: 550px;
    }

    .brand-translation-content h2 {
        font-size: 30px;
    }

    .brand-translation-content h2 span {
        font-size: 40px;
    }

    .brand-translation-content .lead {
        font-size: 18px;
    }

    .brand-translation-points li {
        font-size: 18px;
    }

    .brand-translation-content .closing {
        font-size: 15px;
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .brand-translation-section {
        height: auto;
    }

    .brand-translation-section .container-large {
        flex-direction: column;
    }

    .brand-translation-section .container-large::before {
        width: 750px;
        height: 750px;
        top: unset;
        bottom: 0;
    }

    .brand-translation-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-translation-image {
        position: relative;
        justify-content: center;
    }

    .brand-translation-image img {
        width: 360px
    }

    .brand-translation-content h2 {
        font-size: 40px;
    }

    .brand-translation-content h2 span {
        font-size: 52px;
    }
}

.authority-section {
    background: #000;
    padding: 100px 24px;
    text-align: center;
}

.authority-header {
    margin: 0 auto 80px;
}

.authority-label {
    display: block;
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 41.96px;
    letter-spacing: -3%;
    text-transform: capitalize;
    text-align: center;
    color: #aaa;
    margin-bottom: 20px;
}

.authority-header h2 {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 48px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

}

/* .authority-script {
    margin-left: 10px;
} */

.authority-subtitle {
    margin-top: 25px;
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #cfcfcf;
}

/* Cards */

.authority-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.authority-card-wrap {
    position: relative;
    background: linear-gradient(180deg, #1C1C1C 0%, #A63151 100%);
    padding: 1px;
    border-radius: 8px;
}

.authority-card {
    width: 100%;
    height: 100%;
    padding: 45px 30px;
    border-radius: 8px;
    background: #000;
    backdrop-filter: blur(18px);
    transition: all 0.35s ease;
}


.authority-icon {
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authority-card h3 {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -3%;
    text-align: center;
    text-transform: capitalize;
}

/* Bottom Text */

.authority-footer-text {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #d0d0d0;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .authority-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .authority-header h2 {
        font-size: 40px;
    }

    .authority-subtitle {
        font-size: 18px;
    }

    .authority-card h3 {
        font-size: 18px;
    }

    .authority-footer-text {
        font-size: 18px;
    }
}


/* Work led */

.work-led-section {
    padding: 100px 24px;
   position: relative;
   overflow: hidden;
}
.work-led-section *{
    z-index: 1;
}

.work-led-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(120px)

}

.work-led-card {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.work-led-image {
    flex: 0 0 42%;
    border-radius: 22px;
    overflow: hidden;
}

.work-led-image img {
    width: 100%;
    display: block;
}

.work-led-content {
    display: flex;
    flex-direction: column;
}

.work-led-content h2 {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 68px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;

    margin-bottom: 20px;
    max-width: 620px;
}

.work-led-content h2 span {
    font-size: 56px;
    margin-left: 6px;
}

.work-led-subtitle {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 24px;
    max-width: 620px;
}

.work-led-subtitle strong {
    font-weight: 850;
}

.work-led-points {
    list-style: none;
    margin-bottom: 28px;
    max-width: 594px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    border-radius: 4px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(29.700000762939453px)
}


.work-led-points li {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 26.01px;
    letter-spacing: 0%;

    padding-left: 30px;
    position: relative;
}

.work-led-points li::before {
    content: '◉';
    color: rgba(246, 0, 67, 1);
    position: absolute;
    left: 0;
}

.work-led-description {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;

    margin-bottom: 18px;
    max-width: 650px;
}

.work-led-description strong {
    font-weight: 850;
}

.work-led-content .primary-btn {
    margin-top: 20px;
    width: fit-content;
    padding-left: 32px;
    padding-right: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
    .work-led-card {
        flex-direction: column-reverse;
    }

    .work-led-image {
       align-self: center;
    }
     .work-led-image img {
        width: 500px;
        max-width: 100%;
    }

    .work-led-content h2 {
        font-size: 34px;
    }

    .work-led-content h2 span {
        font-size: 46px;
    }
}


/* Begin the Work Section */
.begin-work-section {
    height: 1992px;
    background-image: url('../images/begin-the-work.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 24px 0;
}

.begin-work-heading {
    text-align: center;
    margin-bottom: 90px;
}

.begin-work-heading h2 {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 56px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;

    margin-bottom: 20px;
}

.begin-work-heading p {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;

    line-height: 1.6;
}

.begin-work-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: stretch;
    max-width: fit-content;
    margin: 0 auto;
}

.work-card:first-child {
    max-width: 447px;
}

.work-card:last-child {
    max-width: 464px;
}

.work-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    border-top: 2px solid rgba(166, 49, 81, 1);
    border-radius: 8px;
    padding: 40px 18.5px;
    height: 100%;
}

.work-card.featured {
    border-top: 8px solid rgba(208, 61, 101, 0.5);
    position: relative;
    overflow: hidden;
}

.work-card.featured * {
    z-index: 2;
}

.work-card.featured::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100px;
    width: 425px;
    height: 425px;
    border-radius: 50%;
    background-color: rgba(246, 0, 67, 0.4);
    filter: blur(158.39999389648438px);
}

.card-icon {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 46px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;

    margin-bottom: 12px;
}

.work-card h3 {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    width: fit-content;
    padding: 17px 23px;
    border: 1.48px solid rgba(255, 255, 255, 0.55);
    border-radius: 60px;
    margin-bottom: 22px;
}

.card-subtitle {
    display: block;
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 32px;
}

.work-card strong {
    font-weight: 850;
}

.work-card p {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 32px;
}

.card-highlight {
    font-weight: 850 !important;
    margin-bottom: 32px;
}

.work-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
    max-width: 361px;
}

.work-card ul li {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;

    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.work-card ul li::before {
    content: '◉';
    color: rgba(246, 0, 67, 1);
    position: absolute;
    left: 0;
}

.divider {
    height: 1px;
    width: 175px;
    margin: 0 auto;
    background: rgba(166, 49, 81, 1);
    margin-bottom: 24px;
}

.ideal-for {
    display: flex;
    align-items: flex-start;
    font-family: 'Garet';
    font-weight: 850;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;

    margin-bottom: 24px;
}

.ideal-for strong {
    font-weight: 850;
}

.ideal-for img {
    margin-top: 5px;
    margin-right: 12px;
}

.card-price {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    background: rgba(255, 255, 255, 0.19);
    border: 1px solid rgba(255, 255, 255, 0.19);
    padding: 28px 4px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Prata';
    font-size: 18px;
    line-height: 160%;
    margin-top: auto;
}

.card-price span {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    opacity: 0.6;
    display: block;
}

.begin-work-cta {
    text-align: center;
    margin-top: 40px;
}

.begin-work-cta .primary-btn {
    background: rgba(163, 9, 51, 1);

}

.begin-work-cta p {
    margin-top: 16px;
    font-family: 'Garet';
    font-size: 18px;
    max-width: 800px;
    margin: 25px auto 0;
}

@media (max-width: 1024px) {
    .begin-work-section {
        height: auto;
    }

    .begin-work-heading h2 {
        font-size: 46px;
    }

    .begin-work-heading p {
        font-size: 18px;
    }

    .begin-work-cards {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .begin-work-cards .work-card {
        margin-bottom: 24px;
    }

    .begin-work-cards .work-card:first-child {
        margin-top: 0;
    }

    .begin-work-cards .work-card:last-child {
        margin-bottom: 0;
    }

    .begin-work-cta {
        margin-top: 60px;
    }

    .begin-work-cta .primary-btn {
        font-size: 16px;
    }

    .begin-work-cta p {
        font-size: 12px;
    }

}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 24px;
    background: #000;
}

.testimonials-container {
    max-width: 1920px;
    margin: 0 auto;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-heading .eyebrow {
    font-family: 'Garet';
    font-weight: 400;
    font-style: Regular;
    font-size: 22.38px;
    line-height: 41.96px;
    letter-spacing: -3%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;

    display: block;
    margin-bottom: 10px;
}

.testimonials-heading h2 {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 63px;
    line-height: 106.29px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;

}

.testimonials-slider {
    display: block;
    margin: 0 -20px;
    /* Offset the slide margins */
}

.testimonial-card {
    background: rgba(26, 26, 26, 1);
    border: 5.32px solid rgba(32, 32, 32, 0.93);
    border-radius: 20px;
    padding: 48px;
    min-height: 420px;
    position: relative;
    display: flex !important;
    flex-direction: column;
    /* margin: 0 20px;  Removed from here, applied to slick-slide instead */
}

.testimonial-card>img {
    width: 120px;
}

.testimonial-text {
    flex-grow: 1;
}

.testimonial-card p {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 27.59px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.testimonial-author img {
    width: 87px;
    height: 87px;
}

.testimonial-author strong {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 23px;
    line-height: 26.97px;
    letter-spacing: -2%;
    text-transform: capitalize;
}

.testimonials-cta {
    text-align: center;
    margin-top: 70px;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    height: inherit !important;
    margin: 0 40px; /* Creates the 80px gap */
    
}

.testimonials-slider {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .testimonials-slider {
        margin: 0;
    }

    .testimonial-card {
        width: 100%;
        padding: 24px;
    }

    .testimonial-card>img {
        width: 80px;
    }

    .testimonial-author img {
        width: 87px;
        height: 87px;
    }

    .testimonial-author strong {
        font-size: 18px;
    }

    .testimonial-text p {
        font-size: 14px;
    }

    .testimonial-text p:last-child {
        margin-bottom: 0;
    }

    .testimonial-author {
        margin-top: 20px;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .testimonial-author strong {
        font-size: 16px;
    }
}


/* Born Ready Section */
.born-ready-section {
    padding: 100px 24px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.born-ready-section *{
    z-index: 1;
}

.born-ready-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-12%, -12%);
    width: 433px;
    height: 433px;
    border-radius: 50%;
    background: rgba(140, 1, 39, 0.27);
    filter: blur(101.69999694824219px)

}

.born-ready-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.born-ready-content {
    max-width: 743px;
}

.born-ready-content h2 {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 68px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: capitalize;

    margin-bottom: 28px;
}


.born-ready-content .intro {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 160%;
    opacity: 0.85;
    margin-bottom: 22px;
}

.born-ready-content .points {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 18px;
    line-height: 160%;
    opacity: 0.75;
    margin-bottom: 36px;
}

.born-ready-content .primary-btn {
    margin-bottom: 22px;
}

.born-ready-content .note {
    font-family: 'Garet';
    font-size: 22px;
    opacity: 0.6;
}

.born-ready-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.born-ready-image img {
    display: block;
    max-width: 100%;
}

.born-ready-image .signature {
    font-family: 'Brittney Signature';
    font-size: 40px;
    color: #fff;
    text-shadow: 2px 4px 7.5px rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .born-ready-section {
        padding: 80px 24px;
    }

    .born-ready-inner {
        flex-direction: column;
        gap: 40px;
    }

    .born-ready-content {
        max-width: 100%;
    }

    .born-ready-image img {
        width: 400px;
    }
}





/* Footer */
.site-footer {
    background: radial-gradient(80% 120% at 50% 100%,
            rgba(163, 9, 51, 0.45) 0%,
            #000 70%);
    padding-top: 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 80px;
    padding: 0 24px 60px;
}

.footer-about img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-about p {
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 170%;
    color: #ddd;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    font-family: 'Poppins';
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #D63763;
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-family: 'poppins';
    font-size: 16px;
    color: #fff;
}

.footer-contact ul li img {
    margin-top: 3px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #D63763;
}

.footer-social {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social span {
    font-family: 'Poppins';
    font-size: 16px;
    margin-right: 5px;
}

.footer-social a img {
    /* width: 18px; */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-social a:hover img {
    opacity: 1;
}

.footer-bottom {
    background: rgba(38, 38, 38, 1);
    text-align: center;
    padding: 25px 20px;
}

.footer-bottom p {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile Responsive < 576px */
@media (max-width: 576px) {

    /* Global Section Padding Uniformity */
    .personal-branding-section,
    .authority-section,
    .work-led-section,
    .begin-work-section,
    .testimonials-section,
    .born-ready-section {
        padding: 60px 24px !important;
    }

    /* Standardizing Typography Scale */
    .hero-section .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .branding-content h2,
    .brand-translation-content h2,
    .authority-header h2,
    .work-led-content h2,
    .begin-work-heading h2,
    .testimonials-heading h2,
    .born-ready-content h2 {
        font-size: 30px !important;
        line-height: 1.3;
    }

    .branding-content h2 span,
    .brand-translation-content h2 span,
    .work-led-content h2 span {
        font-size: 36px !important;
    }

    p,
    .branding-description,
    .work-led-description,
    .testimonial-card p {
        font-size: 15px !important;
    }

    .hero-section .hero-content>p:first-of-type,
    .branding-subtitle,
    .brand-translation-content .lead,
    .authority-subtitle,
    .work-led-subtitle,
    .begin-work-heading p,
    .born-ready-content .intro {
        font-size: 16px !important;
        line-height: 1.5;
    }

    /* Hero Section Specifics */
    .hero-section {
        min-height: auto;
        padding-top: 60px !important;
        /* Keep top padding for header space */
    }

    .hero-section .hero-image img {
        width: 100%;
        max-width: 350px;
    }

    /* Brand Logos */
    .brand-logos-inner img {
        width: 100px;
    }

    /* Cards & Layouts spacing */
    .branding-card,
    .authority-card,
    .work-card,
    .testimonial-card {
        padding: 30px 20px !important;
    }
    .work-led-card{
        padding: 0;
    }

    .brand-translation-image img {
        width: 100%;
        max-width: 300px;
    }

    /* Authority */
    .authority-cards {
        gap: 20px;
    }

    .authority-header {
        margin-bottom: 40px;
    }

    /* Begin Work */
    .begin-work-section {
        padding-top: 60px !important;
    }

    .begin-work-cards {
        gap: 30px;
    }

    /* Testimonials Override */
    .testimonials-heading h2 {
        font-size: 32px !important;
    }

    .testimonial-card>img {
        width: 60px;
        /* Smaller icon */
    }

    /* Born Ready */
    .born-ready-image img {
        width: 100%;
        max-width: 300px;
    }

    .born-ready-image .signature {
        font-size: 30px;
    }

    /* Footer Alignment */
    .footer-inner {
        text-align: center;
        gap: 40px;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}