:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-blue: #2b6cb0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* blue radial blur orb center and at very top*/
.blue-blur {
    position: absolute;
    top: -275px;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(112, 217, 255, 0.5), transparent);
    border-radius: 50%;
    filter: blur(25px);
    z-index: -1;
}

/* Layout Structure */
.page-wrapper {
    width: 100%;
    max-width: 1250px;
    padding: 1.25rem 2.5rem;
    position: relative;
    margin: 0 auto;

}

.content-row {
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    position: relative;
    width: fit-content;
}

.side-pane {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.center-pane {
    flex-grow: 1;
    max-width: 1000px;
    position: relative;
    padding-top: 2.5rem;
    /* margin: 0 auto; */
}

/* Column Decoration */
.column-decoration {
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.left-pane .column-decoration {
    margin-top: 3.75rem;
}

.right-pane .column-decoration {
    margin-top: 25rem;
    /* Adjust alignment as needed */
}


.flame-icon {
    width: 62.5px;
    height: auto;
    margin-bottom: 0.625rem;
}

.greek-column {
    width: 100%;
    /* height: auto; */
    height: 650px;
    object-fit: cover;
    object-position: top;
}


.right-pane .greek-column {
    height: 350px;
}

.header-section {
    display: flex;
    align-items: flex-start;
}

.brand-group {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 0.625rem 1.875rem;
    position: relative;
    padding: 1.875rem;
    margin-bottom: 2.5rem;
    width: fit-content;
}

.border-line {
    position: absolute;
    background-color: black;
}

.top-border {
    top: 0;
    left: 10%;
    width: 80%;
    height: 2.5px;
}

.bottom-border {
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2.5px;
}

.left-border {
    left: 0;
    top: 10%;
    height: 80%;
    width: 2.5px;
}

.right-border {
    right: 0;
    top: 10%;
    height: 80%;
    width: 2.5px;
}

/* 4x4 Grid */
.grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 5px;
    width: 50px;
    height: 50px;
    margin-right: 0.625rem;
    margin-top: 0.625rem;
}

.grid-4x4 div {
    background-color: black;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Dots */
}

.brand-title {
    font-size: 2.25rem;
    line-height: 0.9;
    /* font-weight: 800; */
    letter-spacing: -0.625px;
    text-transform: uppercase;
    grid-column: 1;
    grid-row: 1;
}

.vertical-divider {
    width: 2.5px;
    height: 100px;
    background-color: black;
}

.brand-by {
    /* font-family: 'Helvetica Neue', sans-serif; */
    font-size: 1.5rem;
    /* font-weight: 700; */
    text-transform: uppercase;
    line-height: 1;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.cds-watermark {
    font-size: 4.375rem;
    color: #e5e7eb;
    /* Light grey */
    font-weight: 900;
    line-height: 0.8;
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    position: static;
    /* Override absolute positioning */
    bottom: auto;
    left: auto;
    z-index: auto;
    pointer-events: auto;
}

.brand-name {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    grid-column: 2;
    grid-row: 2;
    align-self: end;
}

.profile-group {
    text-align: center;
    position: relative;
    top: -12.5px;
    margin-left: 1rem;
}

.profile-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    object-position: top;
    margin: 0 auto 1rem;
}
.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-btn {
    background-color: #d1d5db;
    border: none;
    padding: 0.4em 1.6em;
    cursor: pointer;
    border-radius: 1.25rem;
    font-size: 1.75rem;
    text-wrap: nowrap;
    margin-bottom: .5rem;

}




.section-divider {
    border: 0;
    border-top: 2.5px solid black;
    margin: 1.875rem 0;
}


/* Creativity Section */
.copy-section {
    max-width: fit-content;
    margin: 0 auto;

    >div {
        font-size: 1.75rem;
        display: flex;
        align-items: center;
        gap: 0.625rem;
        margin-bottom: 2.5rem;
    }
}

.icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inline-icon {
    width: 56.25px;
    height: auto;
    position: relative;
    z-index: 2;
}

.blur-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
    width: 37.5px;
    height: 37.5px;
}

.blur-bg.pink {
    background-color: #ff69b4;
    left: -12.5px;
}

.blur-bg.blue {
    background-color: #66b9fd;
    left: 6.25px;
}

.blur-bg.yellow {
    background-color: #ffe070;
    left: 25px;
}

.money-glow {
    color: #000;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.money-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(99, 255, 164, 0.815) 0%, rgba(72, 187, 120, 0) 70%);
    filter: blur(6.25px);
    z-index: -1;
}

.benefits-list p {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
    margin-top: 0;
}

/* Visual Enhancements */
.icon-glow {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    z-index: 1;
}

.icon-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    filter: blur(15px);
    z-index: -1;
    opacity: 0.6;
}

.pink-glow::before {
    background: radial-gradient(circle, #ff69b4 0%, transparent 70%);
}

.blue-glow::before {
    background: radial-gradient(circle, #66b9fd 0%, transparent 70%);
}

.schedule-cta {
    margin-top: 3.75rem;
    text-align: center;
}

.schedule-cta p {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
}

.schedule-btn {
    background-color: #d1d5db;
    border: none;
    padding: 1rem 3.125rem;
    font-weight: bold;
    font-size: 1.375rem;
    cursor: pointer;
    border-radius: 0.625rem;
}

/* Footer Section */
.footer-section {
    /* margin-top: 2.5rem; */
    width: 100%;
}

.footer-top-divider {
    margin-bottom: 2.5rem;
    border-top-width: 3.75px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 3.75rem;
    margin-top: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}


.services-list {
    display: flex;
    width: fit-content;
    gap: 0.375rem;
    margin: 0 auto;
    margin-bottom:2rem;
}

.design-email {
    display:block;
    text-align: center;
}

.footer-graphic {
    position: relative;
    height: 225px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 100%;
    flex-wrap: wrap;
}

.large-cds {
    font-size: 12.5rem;
    font-weight: 500;
    letter-spacing: -.08em;
    color: #f3f4f6;

    line-height: 0.8;
    margin-right: 2.5rem;
}

.creative-text {
    font-size: 3.75rem;
    color: #e5e7eb;
    line-height: .75;
    text-align: left;
    margin-bottom: 1.25rem;
    margin-right: 5rem;
}

.rhino-graphic {
    filter: invert(.9);
}

.birds-flock {
    filter: invert(.9);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    gap: 3.75rem;
}

.birds-flock img {
    width: 45px;
    height: auto;
}

.birds-flock img:nth-child(1) {
    transform: rotate(-10deg);
}

.birds-flock img:nth-child(2) {
    transform: rotate(15deg) translateY(-12.5px);
}

.birds-flock img:nth-child(3) {
    transform: rotate(5deg);
}



.column-bird {
    width: 75px;
    transform: rotate(-10deg);
    transform: scaleX(-1);
}

/* Mobile Responsiveness */
@media (max-width: 960px) {
    .birds-flock {
        left: unset;
        top: -50px;
    }

    .footer-graphic {
        margin-top: 5rem;
        gap: 1.25rem;
    }


    .profile-group {
        margin-top: 2.5rem;
    }

    .profile-img {
        object-fit: cover;
        padding: unset;
        margin-bottom: 1rem;
        max-width: 100%;
        height: 160px;
        width: 160px;
    }

    .side-pane {
        display: none;
    }


    .blue-blur {
        top: -200px;
        position: absolute;
        width: 600px;
        height: 375px;
    }

    .brand-title {
        font-size: 1.688rem;
    }

    .vertical-divider {
        width: 2px;
        height: 75px;
        background-color: black;
    }

    .brand-by {
        font-size: 1.125rem;
    }

    .cds-watermark {
        font-size: 3.281rem;
    }

    .brand-name {
        font-size: 1.125rem;
    }

    .copy-section {
        >div {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
    }

    .inline-icon {
        width: 42px;
        height: auto;
        position: relative;
        z-index: 2;
    }

    .blur-bg {
        position: absolute;
        border-radius: 50%;
        filter: blur(8px);
        z-index: 1;
        width: 28px;
        height: 28px;
    }


    .benefits-list p {
        margin-bottom: 2rem;
        font-size: 1.25rem;
        margin-top: 0;
    }

    .footer-section {
        width: 100%;
    }

    .rhino-graphic {
        max-width: 40%;
        font-size: 8.125rem;
    }

    .large-cds {
        font-size: 8rem;
    }

    .creative-text {
        font-size: 1.75rem;
    }

    .birds-flock img {
        width: 34px;
        height: auto;
    }

    .birds-flock img:nth-child(2) {
        transform: rotate(15deg) translateY(-9px);
    }

}