/* Style Variables */
:root {
    --heroBg: #521818; /* Rich Maroon */
    --bodyBg: #faf8f5; /* Warm light cream */
    --textColorDark: #121212; /* Matte Black */
    --textColorLight: #faf8f5; /* Warm light cream */
    --accentGold: #dca53e; /* Yellowish Gold */
    --accentGoldHover: #c08d30; /* Darker Yellowish */
    --borderColor: #e8e3d7;
    --cardBgDark: #121212; /* Matte Black */
    --cardBgGold: #dca53e; /* Yellowish Gold */
    --fontSans: 'Inter', sans-serif;
    --fontDisplay: 'DM Serif Display', serif;
    --transitionSmooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bodyBg);
    color: var(--textColorDark);
    font-family: var(--fontSans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

/* Offset scroll position for fixed header */
#about,
#approach,
#work {
    scroll-margin-top: 8rem;
}

body {
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transitionSmooth);
}

/* Hero Banner (Forest Green background) */
.hero_banner {
    background-color: var(--heroBg);
    color: var(--textColorLight);
    padding: 9rem 300px 5rem 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero_banner_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
}

.banner_logo {
    font-family: var(--fontDisplay);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--textColorLight);
}

.hero_banner_content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder_frame_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.founder_frame {
    width: 320px;
    height: 420px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.founder_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold_star {
    position: absolute;
    color: var(--accentGold);
    font-size: 2rem;
    line-height: 1;
}

.star_one {
    top: -10px;
    right: -10px;
}

.star_two {
    bottom: 20px;
    left: -20px;
}

.hero_banner_intro {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
    color: #a3b2a6;
}

.hero_banner_right {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero_banner_title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin-bottom: 3rem;
}

.hero_title_line {
    display: block;
    white-space: nowrap;
}

.hero_banner_title span {
    font-family: var(--fontDisplay);
    font-size: 7.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.outline_text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accentGold);
}

.solid_text {
    color: var(--textColorLight);
}

.hero_banner_contacts {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    max-width: 400px;
}

.contact_row {
    display: flex;
    gap: 3rem;
    font-size: 1.05rem;
}

.contact_tag {
    font-family: var(--fontDisplay);
    color: var(--accentGold);
    width: 30px;
    font-weight: bold;
}

.contact_val {
    color: var(--textColorLight);
    font-weight: 500;
}

/* Scroll Down Button */
.scroll_down_container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.scroll_down_btn {
    background-color: var(--accentGold);
    color: var(--textColorDark);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--fontSans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    transition: var(--transitionSmooth);
}

.scroll_down_btn:hover {
    background-color: var(--accentGoldHover);
    transform: scale(1.05);
}

/* Main Navigation Bar (White background) */
.main_header {
    background-color: var(--heroBg);
    color: var(--textColorLight);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 300px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header_logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header_logo_img {
    height: 32px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.logo_text {
    font-family: var(--fontDisplay);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--textColorLight);
}

.desktop_nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav_link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--textColorLight);
}

.nav_link:hover {
    color: var(--accentGold);
}

.get_in_touch_btn {
    background-color: var(--accentGold);
    color: var(--textColorDark);
    padding: 0.8rem 1.8rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transitionSmooth);
}

.get_in_touch_btn:hover {
    background-color: var(--accentGoldHover);
    transform: translateY(-2px);
}

/* Mirrored 2-Column Body Layout */
.main_content_wrapper {
    padding: 6rem 300px;
}

.mirrored_grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}

.grid_column {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* LEFT COLUMN STYLES (Visuals, contact, skills, reasons) */
.left_column {
    border-right: 1px solid var(--borderColor);
    padding-right: 3rem;
    justify-content: center;
}

.portrait_block {
    position: relative;
    display: inline-block;
    align-self: center;
}

.circle_portrait_frame {
    width: 280px;
    height: 380px;
    border-radius: 5px; /* arched top style */
    overflow: hidden;
    background-color: var(--heroBg);
    border: 8px solid var(--heroBg);
}

.circle_portrait_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating_pill {
    position: absolute;
    background-color: var(--accentGold);
    color: var(--textColorDark);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pill_one {
    top: 50%;
    left: -40px;
}

.pill_two {
    bottom: 20px;
    right: -40px;
}

/* Contact Info Card (Black) */
.contact_card_dark {
    background-color: var(--cardBgDark);
    color: var(--textColorLight);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card_title_dark {
    font-family: var(--fontDisplay);
    font-size: 2rem;
    color: var(--textColorLight);
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.card_contact_row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon_dot {
    color: var(--accentGold);
    font-size: 0.6rem;
}

.contact_text_val {
    font-size: 1.05rem;
    font-weight: 500;
}

/* Column Section Titles */
.column_section_title {
    font-family: var(--fontDisplay);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: var(--textColorDark);
}

/* Skills Block */
.skills_block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skills_sub_section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skills_heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--textMuted);
}

.skills_pills_container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill_pill_badge {
    background-color: var(--textColorLight);
    border: 1px solid var(--borderColor);
    color: var(--textColorDark);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transitionSmooth);
}

.skill_pill_badge:hover {
    background-color: var(--heroBg);
    color: var(--textColorLight);
    border-color: var(--heroBg);
}

.skills_bullet_list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1.2rem;
}

.skills_bullet_list li {
    font-size: 1.1rem;
    font-weight: 600;
    list-style-type: square;
    color: var(--textColorDark);
}

/* Why Brands Work With Us */
.why_us_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why_us_item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--borderColor);
}

.reason_num {
    font-family: var(--fontDisplay);
    font-size: 1.4rem;
    color: var(--accentGold);
    font-weight: bold;
}

.reason_text_val {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}


/* RIGHT COLUMN STYLES (Intro, approach, clients, campaigns) */

/* Hello Intro */
.hello_intro_block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hello_heading {
    font-family: var(--fontDisplay);
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.9;
}

.name_heading {
    color: var(--heroBg);
    font-style: italic;
}

.hello_bio_para {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--textColorDark);
}

.social_action_btn {
    align-self: flex-start;
    background-color: var(--heroBg);
    color: var(--textColorLight);
    padding: 1rem 2.2rem;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transitionSmooth);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.social_action_btn:hover {
    background-color: var(--accentGold);
    color: var(--textColorDark);
    transform: translateY(-2px);
}

.btn_icon_svg {
    stroke: currentColor;
    vertical-align: middle;
    transition: var(--transitionSmooth);
}

/* Timeline/Approach Section */
.timeline_list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--borderColor);
}

.timeline_item {
    position: relative;
}

.timeline_marker {
    position: absolute;
    left: -2.6rem;
    top: 0;
    background-color: var(--bodyBg);
    color: var(--accentGold);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline_star {
    font-size: 1.2rem;
}

.timeline_title_step {
    font-family: var(--fontDisplay);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline_desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--textMuted);
}

/* Selected Client Work (Experience card gold) */
.experience_card_gold {
    background-color: var(--cardBgGold);
    color: var(--textColorDark);
    border-radius: 20px;
    padding: 3.5rem;
}

.card_gold_title {
    font-family: var(--fontDisplay);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
}

.experience_timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 1px dashed rgba(0,0,0,0.15);
}

.exp_item {
    position: relative;
}

.exp_marker {
    position: absolute;
    left: -2.1rem;
    top: 0;
    font-size: 1.1rem;
}

.exp_client_name {
    font-family: var(--fontDisplay);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exp_industry {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.exp_subsection {
    margin-bottom: 1rem;
}

.exp_label {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.exp_list {
    padding-left: 1.2rem;
}

.exp_list li {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    list-style-type: circle;
}

.exp_examples {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Campaign Highlights (Activities section) */
.activities_timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--borderColor);
}

.activity_item {
    position: relative;
}

.activity_marker {
    position: absolute;
    left: -2.6rem;
    top: 0;
    background-color: var(--bodyBg);
    color: var(--accentGold);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.activity_name_title {
    font-family: var(--fontDisplay);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.activity_views {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heroBg);
    margin-bottom: 0.5rem;
}

.activity_metrics {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.activity_metrics li {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    list-style-type: circle;
}

.activity_outcome {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--textMuted);
}

/* Footer */
.simple_footer {
    background-color: var(--textColorDark);
    color: var(--textColorLight);
    padding: 5rem 300px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.footer_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.footer_nav_link {
    font-weight: 600;
    transition: var(--transitionSmooth);
}

.footer_nav_link:hover {
    color: var(--accentGold);
}

.footer_get_in_touch {
    background-color: var(--accentGold);
    color: var(--textColorDark);
    padding: 0.6rem 1.4rem;
    border-radius: 20px;
}

.footer_get_in_touch:hover {
    background-color: var(--accentGoldHover);
    color: var(--textColorDark);
    transform: translateY(-2px);
}

.footer_bottom_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer_credit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7em;
}

.heart_svg {
    vertical-align: middle;
    display: inline-block;
}

.credit_link {
    color: var(--textColorLight);
    text-decoration: none;
    font-weight: inherit;
}

.credit_link:hover {
    color: var(--textColorLight);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero_banner_content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero_banner_title span {
        font-size: 8.5vw;
    }
    .mirrored_grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .hero_banner {
        padding: 8rem 40px 5rem 40px;
    }
    .main_header {
        padding: 1.5rem 40px;
    }
    .main_content_wrapper {
        padding: 4rem 40px;
    }
    .simple_footer {
        padding: 3rem 40px;
    }
    .left_column {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--borderColor);
        padding-bottom: 5rem;
    }
}

@media (max-width: 768px) {
    .main_content_wrapper {
        padding: 4rem 5%;
    }
    .main_header {
        padding: 1.5rem 5%;
    }
    .desktop_nav {
        display: none; /* simple fallback for responsive */
    }
    .hero_banner {
        padding: 8rem 5% 4rem 5%;
    }
    .founder_frame {
        width: 100%;
        max-width: 280px;
        height: 380px;
    }
    .circle_portrait_frame {
        width: 240px;
        height: 320px;
    }
    .hero_banner_title span {
        font-size: 9.5vw;
    }
    .hello_heading {
        font-size: 3.5rem;
    }
    .section_horizontal_title {
        font-size: 2.2rem;
    }
    .footer_nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer_bottom_meta {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Platform Badges & Contact Card SVGs */
.platforms_container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.platform_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--textColorLight);
    border: 1px solid var(--borderColor);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transitionSmooth);
}

.platform_badge:hover {
    background-color: var(--heroBg);
    color: var(--textColorLight);
    border-color: var(--heroBg);
}

.platform_svg {
    fill: currentColor;
    vertical-align: middle;
}

.contact_card_svg {
    color: var(--accentGold);
    vertical-align: middle;
}

/* Case Studies Sections Styling */

.case_study_section {
    padding: 8rem 300px;
    width: 100%;
}

.case_study_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.case_study_grid.row_reverse {
    direction: ltr; /* Ensure text flows correctly */
}

/* Allow row reversing by switching grid column order */
.case_study_grid.row_reverse .case_study_info {
    order: 2;
}

.case_study_grid.row_reverse .case_study_image_container {
    order: 1;
    justify-content: flex-end;
}

.case_study_info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case_study_tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.case_study_title {
    font-family: var(--fontDisplay);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
}

.case_study_industry {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.case_study_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

.details_block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.details_subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.details_list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
}

.details_list li {
    font-size: 0.95rem;
    line-height: 1.4;
    list-style-type: circle;
}

.case_study_header {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    align-items: center;
}

.case_study_examples {
    margin-top: 3.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    padding-top: 2rem;
    text-align: center;
}

/* Images frame */
.case_study_image_container {
    display: flex;
    justify-content: flex-start;
}

.case_study_image_frame {
    width: 100%;
    max-width: 440px;
    height: 580px;
    overflow: hidden;
    transition: var(--transitionSmooth);
}

.case_study_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transitionSmooth);
}

.case_study_image_frame:hover .case_study_img {
    transform: scale(1.03);
}

/* 1. Case Study One (Personal Brands) - Minimalist sand & espresso */
.case_study_one {
    background-color: #ede7db;
    color: #2c1e18;
}

.case_study_one .case_study_tag {
    color: var(--accentGold);
}

.case_study_one .case_study_title {
    color: var(--heroBg);
}

.case_study_one .details_subtitle {
    color: var(--heroBg);
}

.case_study_one .case_study_image_frame {
    border-radius: 5px;
    border: 1px solid var(--borderColor);
}

.case_study_one .case_study_examples {
    border-top: 1px solid var(--borderColor);
    color: #5c4e48;
}

/* 2. Case Study Two (Fashion & Youth) - Soft Premium Cream Editorial */
.case_study_two {
    background-color: #faf6f0;
    color: #2c1e18;
}

.case_study_two .case_study_tag {
    color: var(--heroBg);
}

.case_study_two .case_study_title {
    color: var(--heroBg);
}

.case_study_two .details_subtitle {
    color: var(--heroBg);
}

.case_study_two .case_study_image_frame {
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.case_study_two .case_study_examples {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #5c4e48;
}

/* 3. Case Study Three (Wellness & Skincare) - Calm soft rose clay */
.case_study_three {
    background-color: #f7ebe6;
    color: #3d2620;
}

.case_study_three .case_study_tag {
    color: var(--heroBg);
}

.case_study_three .case_study_title {
    color: var(--heroBg);
}

.case_study_three .details_subtitle {
    color: var(--heroBg);
}

.case_study_three .case_study_image_frame {
    border-radius: 5px; /* Arched style matching portrait */
    border: 4px solid #fff;
}

.case_study_three .case_study_examples {
    border-top: 1px solid rgba(61, 38, 32, 0.15);
    color: #5a423b;
}

/* Responsive Media Queries for Case Studies */
@media (max-width: 1024px) {
    .case_study_section {
        padding: 6rem 40px;
    }
    .case_study_grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .case_study_grid.row_reverse {
        grid-template-columns: 1fr;
    }
    .case_study_grid.row_reverse .case_study_info {
        order: 1;
    }
    .case_study_grid.row_reverse .case_study_image_container {
        order: 2;
    }
    .case_study_image_frame {
        max-width: 100%;
        height: 480px;
    }
    .case_study_title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .case_study_section {
        padding: 5rem 5%;
    }
    .case_study_details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .case_study_title {
        font-size: 2.3rem;
    }
}

/* Horizontal Sections Layouts */
.approach_section_horizontal {
    background-color: #f0eae1;
    padding: 8rem 300px;
    width: 100%;
}

.highlights_section_horizontal {
    background-color: var(--heroBg);
    color: #faf8f5;
    padding: 8rem 300px;
    width: 100%;
}

.why_us_bottom_section {
    padding: 8rem 300px;
    width: 100%;
}

.section_horizontal_title {
    font-family: var(--fontDisplay);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: var(--textColorDark);
    text-align: left;
}

.highlights_section_horizontal .section_horizontal_title {
    color: #faf8f5;
}

/* Our Approach Horizontal Grid */
.approach_grid_horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.approach_card_horizontal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 2px solid var(--borderColor);
    padding-top: 1.5rem;
    transition: var(--transitionSmooth);
}

.approach_card_horizontal:hover {
    border-top-color: var(--accentGold);
    transform: translateY(-2px);
}

.approach_step_num {
    font-family: var(--fontDisplay);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accentGold);
}

.approach_step_title {
    font-family: var(--fontDisplay);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--heroBg);
}

.approach_step_desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* Campaign Highlights Horizontal Grid */
.highlights_grid_horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.highlights_card_horizontal {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transitionSmooth);
}

.highlights_card_horizontal:hover {
    border-color: rgba(250, 248, 245, 0.6); /* Butter-white / warm light cream */
}

.highlight_name_title {
    font-family: var(--fontDisplay);
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.highlight_views {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accentGold);
}

.highlight_metrics {
    list-style-type: circle;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight_metrics li {
    font-size: 0.95rem;
    color: #e5cfcf;
}

.highlight_outcome {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e5cfcf;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
}

/* Why Brands Work With Us Horizontal Grid */
.why_us_bottom_section {
    background-color: var(--heroBg);
    color: var(--textColorLight);
}

.why_us_bottom_section .section_horizontal_title {
    color: var(--textColorLight);
}

.why_us_bottom_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 3rem;
}

.why_us_bottom_card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    transition: var(--transitionSmooth);
}

.why_us_bottom_card:hover {
    border-bottom-color: var(--accentGold);
}

.why_us_bottom_num {
    font-family: var(--fontDisplay);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accentGold);
    line-height: 1;
}

.why_us_bottom_text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #e5cfcf;
}

/* Skills block inside hello intro */
.skills_block_intro {
    margin-top: 3rem;
    border-top: 1px solid var(--borderColor);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.skills_intro_title {
    font-family: var(--fontDisplay);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--heroBg);
    margin-bottom: 0.5rem;
}

/* Responsive updates for horizontal elements */
@media (max-width: 1024px) {
    .approach_section_horizontal,
    .highlights_section_horizontal,
    .why_us_bottom_section {
        padding: 6rem 40px;
    }
    .approach_grid_horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlights_grid_horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    .why_us_bottom_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .approach_section_horizontal,
    .highlights_section_horizontal,
    .why_us_bottom_section {
        padding: 5rem 5%;
    }
    .approach_grid_horizontal {
        grid-template-columns: 1fr;
    }
    .highlights_grid_horizontal {
        grid-template-columns: 1fr;
    }
    .why_us_bottom_grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Bottom Section (Centered Vertical List) */
.contact_bottom_section {
    padding: 8rem 300px;
    width: 100%;
    background-color: #faf8f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.contact_bottom_section .section_horizontal_title {
    margin-bottom: 0;
    text-align: center;
}

.contact_bottom_grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact_bottom_item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    transition: var(--transitionSmooth);
    padding: 0.5rem 1.5rem;
}

.contact_bottom_item:hover {
    transform: translateY(-2px);
}

.contact_bottom_svg {
    color: var(--heroBg);
    transition: var(--transitionSmooth);
}

.contact_bottom_item:hover .contact_bottom_svg {
    color: var(--accentGold);
}

.contact_bottom_item span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--textColorDark);
    transition: var(--transitionSmooth);
}

.contact_bottom_item:hover span {
    color: var(--heroBg);
}

/* Responsive updates for contact bottom section */
@media (max-width: 1024px) {
    .contact_bottom_section {
        padding: 6rem 40px;
    }
}

@media (max-width: 768px) {
    .contact_bottom_section {
        padding: 5rem 5%;
    }
    .contact_bottom_item span {
        font-size: 1.1rem;
    }
}

/* Contact 2-Column Layout */
.contact_section_container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact_details_left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.contact_details_left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--textColorDark);
    opacity: 0.8;
}

.contact_links_stack {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-start;
}

.contact_links_stack .contact_bottom_item {
    padding: 0;
    background: none;
    font-size: 1.1rem;
}

.contact_form_card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.contact_form_card form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .contact_section_container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
/* Mobile Drawer Styles */
.mobile_menu_btn {
    display: none;
    background: none;
    border: none;
    color: var(--textColorLight);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile_menu_btn svg {
    display: block;
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.mobile_menu_btn line {
    transition: var(--transitionSmooth);
    transform-origin: center;
}

.mobile_menu_btn.open #midLine {
    opacity: 0;
}

.mobile_menu_btn.open #topLine {
    transform: translateY(6px) rotate(45deg);
}

.mobile_menu_btn.open #botLine {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile_drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 80%;
    background-color: var(--heroBg);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transform: translateX(100%);
    transition: var(--transitionSmooth);
    padding: 6rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile_drawer.open {
    transform: translateX(0);
}

.mobile_drawer_overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transitionSmooth);
}

.mobile_drawer_overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile_drawer_nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile_drawer_nav .nav_link {
    font-size: 1.5rem;
    font-family: var(--fontDisplay);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.mobile_drawer_nav .get_in_touch_btn {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .mobile_menu_btn {
        display: block;
    }
}

/* Contact Grid and Card Mobile Tweaks */
.contact_form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 576px) {
    .contact_form_grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact_form_card {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
}

/* Modal Popup Styles */
.modal_overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal_overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal_card {
    background-color: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal_overlay.open .modal_card {
    transform: translateY(0);
}

.modal_close_btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--textColorDark);
    opacity: 0.5;
    transition: var(--transitionSmooth);
}

.modal_close_btn:hover {
    opacity: 1;
}

.modal_title {
    font-family: var(--fontDisplay);
    font-size: 2.2rem;
    color: var(--heroBg);
    margin-bottom: 0.5rem;
}

.modal_subtitle {
    font-size: 1rem;
    color: var(--textColorDark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

@media (max-width: 576px) {
    .modal_card {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    .modal_title {
        font-size: 1.8rem;
    }
}

/* Slide In Animation from Right */
.slide_in_right {
    opacity: 0;
    transform: translateX(100px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.slide_in_right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Hero navigation buttons */
.hero_nav_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero_nav_btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--textColorLight);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transitionSmooth);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.hero_nav_btn:hover {
    background-color: var(--accentGold);
    color: var(--textColorDark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(220, 169, 90, 0.3);
    border-color: var(--accentGold);
}

@media (max-width: 576px) {
    .hero_nav_buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    .hero_nav_btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Hero vertical navigation buttons */
.hero_nav_subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accentGold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: block;
    
    /* Entry Slide-in Animation */
    opacity: 0;
    transform: translateX(150px);
    animation: slideInFromRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.05s;
}

.hero_vertical_nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero_vertical_btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #ffffff;
    color: var(--heroBg);
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transitionSmooth);
    width: 260px;
    cursor: pointer;
    
    /* Entry Slide-in Animation */
    opacity: 0;
    transform: translateX(150px);
    animation: slideInFromRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero_vertical_btn:nth-child(2) { animation-delay: 0.2s; }
.hero_vertical_btn:nth-child(3) { animation-delay: 0.4s; }
.hero_vertical_btn:nth-child(4) { animation-delay: 0.6s; }
.hero_vertical_btn:nth-child(5) { animation-delay: 0.8s; }

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero_vertical_btn:hover {
    box-shadow: 0 8px 25px rgba(220, 169, 90, 0.25);
    background-color: var(--accentGold);
    color: var(--textColorDark);
}

.btn_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: var(--heroBg);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    transition: var(--transitionSmooth);
}

.hero_vertical_btn:hover .btn_num {
    background-color: #ffffff;
    color: var(--textColorDark);
}

.btn_text {
    flex: 1;
}

@media (max-width: 992px) {
    .hero_banner_right {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero_vertical_nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }
    .hero_nav_subtitle {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    .hero_vertical_btn {
        width: auto;
        min-width: 220px;
    }
}

@media (max-width: 576px) {
    .hero_vertical_nav {
        flex-direction: column;
        align-items: center;
    }
    .hero_vertical_btn {
        width: 100%;
        max-width: 280px;
    }
}
